diff --git a/.gitignore b/.gitignore index b5d845e71b..66b8164320 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,11 @@ *.tar.gz *.exe -src/darkcoin -src/darkcoind -src/darkcoin-cli -src/test/test_darkcoin -src/qt/test/test_darkcoin-qt +src/dash +src/dashd +src/dash-cli +src/test/test_dash +src/qt/test/test_dash-qt Makefile.in aclocal.m4 @@ -13,8 +13,8 @@ autom4te.cache/ config.log config.status configure -src/darkcoin-config.h -src/darkcoin-config.h.in +src/dash-config.h +src/dash-config.h.in src/build-aux/ src/stamp-h1 share/setup.nsi @@ -36,7 +36,7 @@ src/qt/test/moc*.cpp *.o *.o-* *.patch -.darkcoin +.dash *.a *.pb.cc *.pb.h @@ -51,12 +51,12 @@ src/qt/test/moc*.cpp # Compilation and Qt preprocessor part *.qm Makefile -darkcoin-qt +dash-qt Dash-Qt.app # Unit-tests Makefile.test -darkcoin-qt_test +dash-qt_test # Resources cpp qrc_*.cpp @@ -76,7 +76,7 @@ build #lcov *.gcno /*.info -test_darkcoin.coverage/ +test_dash.coverage/ total.coverage/ coverage_percent.txt diff --git a/.tx/config b/.tx/config index 5025e86690..7fea3a3ad6 100644 --- a/.tx/config +++ b/.tx/config @@ -1,8 +1,8 @@ [main] host = https://www.transifex.com -[darkcoin.tx] -file_filter = src/qt/locale/darkcoin_.ts -source_file = src/qt/locale/darkcoin_en.ts +[dash.tx] +file_filter = src/qt/locale/dash_.ts +source_file = src/qt/locale/dash_en.ts source_lang = en type = QT diff --git a/INSTALL b/INSTALL index a1e53dbbd2..dd9b8408af 100644 --- a/INSTALL +++ b/INSTALL @@ -7,10 +7,10 @@ Use the autogen script to prepare the build environment. make Precompiled binaries are available at github, see -https://github.com/darkcoinproject/darkcoin-binaries +https://github.com/dashproject/dash-binaries Always verify the signatures and checksums. -See doc/build-*.md for instructions on building darkcoind, +See doc/build-*.md for instructions on building dashd, the intended-for-services, no-graphical-interface, reference implementation of Dash. diff --git a/Makefile.am b/Makefile.am index 1e9b89ccf7..ae9478660e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,9 +4,9 @@ SUBDIRS = src GZIP_ENV="-9n" -BITCOIND_BIN=$(top_builddir)/src/darkcoind$(EXEEXT) -BITCOIN_QT_BIN=$(top_builddir)/src/qt/darkcoin-qt$(EXEEXT) -BITCOIN_CLI_BIN=$(top_builddir)/src/darkcoin-cli$(EXEEXT) +BITCOIND_BIN=$(top_builddir)/src/dashd$(EXEEXT) +BITCOIN_QT_BIN=$(top_builddir)/src/qt/dash-qt$(EXEEXT) +BITCOIN_CLI_BIN=$(top_builddir)/src/dash-cli$(EXEEXT) BITCOIN_WIN_INSTALLER=$(PACKAGE)-$(PACKAGE_VERSION)-win$(WINDOWS_BITS)-setup$(EXEEXT) OSX_APP=Dash-Qt.app @@ -29,9 +29,9 @@ OSX_PACKAGING = $(OSX_DEPLOY_SCRIPT) $(OSX_FANCY_PLIST) $(OSX_INSTALLER_ICONS) \ $(top_srcdir)/contrib/macdeploy/DS_Store COVERAGE_INFO = baseline_filtered_combined.info baseline.info block_test.info \ - leveldb_baseline.info test_darkcoin_filtered.info total_coverage.info \ + leveldb_baseline.info test_dash_filtered.info total_coverage.info \ baseline_filtered.info block_test_filtered.info \ - leveldb_baseline_filtered.info test_darkcoin_coverage.info test_darkcoin.info + leveldb_baseline_filtered.info test_dash_coverage.info test_dash.info dist-hook: -$(MAKE) -C $(top_distdir)/src/leveldb clean @@ -119,16 +119,16 @@ leveldb_baseline_filtered.info: leveldb_baseline.info baseline_filtered_combined.info: leveldb_baseline_filtered.info baseline_filtered.info $(LCOV) -a leveldb_baseline_filtered.info -a baseline_filtered.info -o $@ -test_darkcoin.info: baseline_filtered_combined.info +test_dash.info: baseline_filtered_combined.info $(MAKE) -C src/ check - $(LCOV) -c -d $(abs_builddir)/src -t test_darkcoin -o $@ + $(LCOV) -c -d $(abs_builddir)/src -t test_dash -o $@ $(LCOV) -z -d $(abs_builddir)/src $(LCOV) -z -d $(abs_builddir)/src/leveldb -test_darkcoin_filtered.info: test_darkcoin.info +test_dash_filtered.info: test_dash.info $(LCOV) -r $< "/usr/include/*" -o $@ -block_test.info: test_darkcoin_filtered.info +block_test.info: test_dash_filtered.info $(MKDIR_P) qa/tmp -@TIMEOUT=15 qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool 0 $(LCOV) -c -d $(abs_builddir)/src --t BitcoinJBlockTest -o $@ @@ -138,13 +138,13 @@ block_test.info: test_darkcoin_filtered.info block_test_filtered.info: block_test.info $(LCOV) -r $< "/usr/include/*" -o $@ -test_darkcoin_coverage.info: baseline_filtered_combined.info test_darkcoin_filtered.info - $(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_darkcoin_filtered.info -o $@ +test_dash_coverage.info: baseline_filtered_combined.info test_dash_filtered.info + $(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_dash_filtered.info -o $@ -total_coverage.info: baseline_filtered_combined.info test_darkcoin_filtered.info block_test_filtered.info - $(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_darkcoin_filtered.info -a block_test_filtered.info -o $@ | $(GREP) "\%" | $(AWK) '{ print substr($$3,2,50) "/" $$5 }' > coverage_percent.txt +total_coverage.info: baseline_filtered_combined.info test_dash_filtered.info block_test_filtered.info + $(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_dash_filtered.info -a block_test_filtered.info -o $@ | $(GREP) "\%" | $(AWK) '{ print substr($$3,2,50) "/" $$5 }' > coverage_percent.txt -test_darkcoin.coverage/.dirstamp: test_darkcoin_coverage.info +test_dash.coverage/.dirstamp: test_dash_coverage.info $(GENHTML) -s $< -o $(@D) @touch $@ @@ -152,7 +152,7 @@ total.coverage/.dirstamp: total_coverage.info $(GENHTML) -s $< -o $(@D) @touch $@ -cov: test_darkcoin.coverage/.dirstamp total.coverage/.dirstamp +cov: test_dash.coverage/.dirstamp total.coverage/.dirstamp endif @@ -169,4 +169,4 @@ CLEANFILES = $(OSX_DMG) $(BITCOIN_WIN_INSTALLER) .INTERMEDIATE: $(COVERAGE_INFO) clean-local: - rm -rf test_darkcoin.coverage/ total.coverage/ $(OSX_APP) + rm -rf test_dash.coverage/ total.coverage/ $(OSX_APP) diff --git a/README.md b/README.md index defc3dd16a..64ed51201f 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Use the autogen script to prepare the build environment. **precompiled binaries** Precompiled binaries are available at github, see -https://github.com/darkcoinproject/darkcoin-binaries +https://github.com/dashproject/dash-binaries Always verify the signatures and checksums. @@ -68,7 +68,7 @@ to see it. **testnet and regtest modes** -Run with the -testnet option to run with "play darkcoins" on the test network, if you +Run with the -testnet option to run with "play dashs" on the test network, if you are testing multi-machine code that needs to operate across the internet. If you are testing something that can run on one machine, run with the -regtest option. diff --git a/configure.ac b/configure.ac index abb9d3095c..1539b38d7f 100644 --- a/configure.ac +++ b/configure.ac @@ -6,13 +6,13 @@ define(_CLIENT_VERSION_REVISION, 2) define(_CLIENT_VERSION_BUILD, 6) define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2015) -AC_INIT([Dash Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[info@dashcurrency.com],[darkcoin]) +AC_INIT([Dash Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[info@dashcurrency.com],[dash]) AC_CONFIG_AUX_DIR([src/build-aux]) AC_CONFIG_MACRO_DIR([src/m4]) AC_CANONICAL_HOST -AH_TOP([#ifndef DARKCOIN_CONFIG_H]) -AH_TOP([#define DARKCOIN_CONFIG_H]) -AH_BOTTOM([#endif //DARKCOIN_CONFIG_H]) +AH_TOP([#ifndef DASH_CONFIG_H]) +AH_TOP([#define DASH_CONFIG_H]) +AH_BOTTOM([#endif //DASH_CONFIG_H]) # This m4 will only be used if a system copy cannot be found. This is helpful # on systems where autotools are installed but the pkg-config macros are not in @@ -111,7 +111,7 @@ AC_ARG_WITH([protoc-bindir],[AS_HELP_STRING([--with-protoc-bindir=BIN_DIR],[spec AC_CONFIG_SRCDIR([src]) -AC_CONFIG_HEADERS([src/darkcoin-config.h]) +AC_CONFIG_HEADERS([src/dash-config.h]) dnl Checks for programs. AC_PROG_CXX @@ -312,7 +312,7 @@ dnl Check for pthread compile/link requirements AX_PTHREAD INCLUDES="$INCLUDES $PTHREAD_CFLAGS" -# The following macro will add the necessary defines to darkcoin-config.h, but +# The following macro will add the necessary defines to dash-config.h, but # they also need to be passed down to any subprojects. Pull the results out of # the cache and add them to CPPFLAGS. AC_SYS_LARGEFILE @@ -555,11 +555,11 @@ fi BITCOIN_QT_PATH_PROGS([PROTOC], [protoc],$protoc_bin_path) -AC_MSG_CHECKING([whether to build darkcoind]) +AC_MSG_CHECKING([whether to build dashd]) AM_CONDITIONAL([BUILD_BITCOIND], [test x$build_bitcoind = xyes]) AC_MSG_RESULT($build_bitcoind) -AC_MSG_CHECKING([whether to build darkcoin-cli]) +AC_MSG_CHECKING([whether to build dash-cli]) AM_CONDITIONAL([BUILD_BITCOIN_CLI], [test x$build_bitcoin_cli = xyes]) AC_MSG_RESULT($build_bitcoin_cli) @@ -652,7 +652,7 @@ if test x$bitcoin_enable_qt != xno; then AC_MSG_WARN("xgettext is required to update qt translations") fi - AC_MSG_CHECKING([whether to build test_darkcoin-qt]) + AC_MSG_CHECKING([whether to build test_dash-qt]) if test x$use_tests$bitcoin_enable_qt_test = xyesyes; then AC_MSG_RESULT([yes]) BUILD_TEST_QT="test" @@ -661,7 +661,7 @@ if test x$bitcoin_enable_qt != xno; then fi fi -AC_MSG_CHECKING([whether to build test_darkcoin]) +AC_MSG_CHECKING([whether to build test_dash]) if test x$use_tests = xyes; then AC_MSG_RESULT([yes]) BUILD_TEST="test" diff --git a/contrib/darkcoin-qt.pro b/contrib/dash-qt.pro similarity index 97% rename from contrib/darkcoin-qt.pro rename to contrib/dash-qt.pro index 72de1e4225..3f8f2f5c0e 100644 --- a/contrib/darkcoin-qt.pro +++ b/contrib/dash-qt.pro @@ -1,4 +1,4 @@ -# lupdate-qt4 ./darkcoin-qt.pro -ts ../src/qt/locale/darkcoin_en.ts +# lupdate-qt4 ./dash-qt.pro -ts ../src/qt/locale/dash_en.ts HEADERS += \ ../src/activemasternode.h \ @@ -7,7 +7,7 @@ HEADERS += \ ../src/allocators.h \ ../src/base58.h \ ../src/bignum.h \ - ../src/darkcoin-config.h \ + ../src/dash-config.h \ ../src/bloom.h \ ../src/chainparams.h \ ../src/checkpoints.h \ @@ -135,8 +135,8 @@ SOURCES += \ ../src/core.cpp \ ../src/crypter.cpp \ ../src/cubehash.c \ - ../src/darkcoin-cli.cpp \ - ../src/darkcoind.cpp \ + ../src/dash-cli.cpp \ + ../src/dashd.cpp \ ../src/darksend.cpp \ ../src/db.cpp \ ../src/echo.c \ @@ -213,7 +213,7 @@ SOURCES += \ ../src/test/serialize_tests.cpp \ ../src/test/sighash_tests.cpp \ ../src/test/sigopcount_tests.cpp \ - ../src/test/test_darkcoin.cpp \ + ../src/test/test_dash.cpp \ ../src/test/transaction_tests.cpp \ ../src/test/uint256_tests.cpp \ ../src/test/util_tests.cpp \ @@ -224,13 +224,13 @@ SOURCES += \ ../src/qt/bitcoinaddressvalidator.cpp \ ../src/qt/bitcoinamountfield.cpp \ ../src/qt/bitcoingui.cpp \ - ../src/qt/darkcoinstrings.cpp \ + ../src/qt/dashstrings.cpp \ ../src/qt/bitcoinunits.cpp \ ../src/qt/clientmodel.cpp \ ../src/qt/coincontroldialog.cpp \ ../src/qt/coincontroltreewidget.cpp \ ../src/qt/csvmodelwriter.cpp \ - ../src/qt/darkcoin.cpp \ + ../src/qt/dash.cpp \ ../src/qt/darksendconfig.cpp \ ../src/qt/editaddressdialog.cpp \ ../src/qt/guiutil.cpp \ @@ -288,7 +288,7 @@ SOURCES += \ ../src/qt/paymentrequest.pb.cc \ ../src/qt/paymentrequestplus.cpp \ ../src/qt/paymentserver.cpp \ - ../src/qt/qrc_darkcoin.cpp \ + ../src/qt/qrc_dash.cpp \ ../src/qt/qvalidatedlineedit.cpp \ ../src/qt/qvaluecombobox.cpp \ ../src/qt/receivecoinsdialog.cpp \ @@ -339,4 +339,4 @@ FORMS += \ ../src/qt/forms/transactiondescdialog.ui RESOURCES += \ - ../src/qt/darkcoin.qrc + ../src/qt/dash.qrc diff --git a/contrib/debian/README.md b/contrib/debian/README.md index 32a9f63573..55ff57497f 100644 --- a/contrib/debian/README.md +++ b/contrib/debian/README.md @@ -1,21 +1,21 @@ Debian ==================== -This directory contains files used to package darkcoind/darkcoin-qt -for Debian-based Linux systems. If you compile darkcoind/darkcoin-qt yourself, there are some useful files here. +This directory contains files used to package dashd/dash-qt +for Debian-based Linux systems. If you compile dashd/dash-qt yourself, there are some useful files here. -## darkcoin: URI support ## +## dash: URI support ## -darkcoin-qt.desktop (Gnome / Open Desktop) +dash-qt.desktop (Gnome / Open Desktop) To install: - sudo desktop-file-install darkcoin-qt.desktop + sudo desktop-file-install dash-qt.desktop sudo update-desktop-database If you build yourself, you will either need to modify the paths in -the .desktop file or copy or symlink your darkcoin-qt binary to `/usr/bin` -and the `../../share/pixmaps/darkcoin128.png` to `/usr/share/pixmaps` +the .desktop file or copy or symlink your dash-qt binary to `/usr/bin` +and the `../../share/pixmaps/dash128.png` to `/usr/share/pixmaps` -darkcoin-qt.protocol (KDE) +dash-qt.protocol (KDE) diff --git a/contrib/debian/changelog b/contrib/debian/changelog index 7ee0dbb926..df7a2837ea 100644 --- a/contrib/debian/changelog +++ b/contrib/debian/changelog @@ -359,8 +359,8 @@ bitcoin (0.3.19~dfsg-5) unstable; urgency=low bitcoin (0.3.19~dfsg-4) unstable; urgency=low [ Micah Anderson ] - * Provide example darkcoin.conf. - * Add bitcoind(1) and darkcoin.conf(5) man pages. + * Provide example dash.conf. + * Add bitcoind(1) and dash.conf(5) man pages. [ Jonas Smedegaard ] * Ease backporting: diff --git a/contrib/debian/darkcoin-qt.install b/contrib/debian/darkcoin-qt.install deleted file mode 100644 index 26763d3f62..0000000000 --- a/contrib/debian/darkcoin-qt.install +++ /dev/null @@ -1,6 +0,0 @@ -usr/local/bin/darkcoin-qt usr/bin -share/pixmaps/darkcoin32.xpm usr/share/pixmaps -share/pixmaps/darkcoin16.xpm usr/share/pixmaps -share/pixmaps/darkcoin128.png usr/share/pixmaps -debian/darkcoin-qt.desktop usr/share/applications -debian/darkcoin-qt.protocol usr/share/kde4/services/ diff --git a/contrib/debian/darkcoind.bash-completion b/contrib/debian/darkcoind.bash-completion deleted file mode 100644 index a3caff2f78..0000000000 --- a/contrib/debian/darkcoind.bash-completion +++ /dev/null @@ -1 +0,0 @@ -contrib/darkcoind.bash-completion darkcoind diff --git a/contrib/debian/darkcoind.examples b/contrib/debian/darkcoind.examples deleted file mode 100644 index 02387402fe..0000000000 --- a/contrib/debian/darkcoind.examples +++ /dev/null @@ -1 +0,0 @@ -debian/examples/darkcoin.conf diff --git a/contrib/debian/darkcoind.install b/contrib/debian/darkcoind.install deleted file mode 100644 index d32d80d756..0000000000 --- a/contrib/debian/darkcoind.install +++ /dev/null @@ -1,2 +0,0 @@ -usr/local/bin/darkcoind usr/bin -usr/local/bin/darkcoin-cli usr/bin diff --git a/contrib/debian/darkcoind.manpages b/contrib/debian/darkcoind.manpages deleted file mode 100644 index faedf1c2ca..0000000000 --- a/contrib/debian/darkcoind.manpages +++ /dev/null @@ -1,2 +0,0 @@ -debian/manpages/darkcoind.1 -debian/manpages/darkcoin.conf.5 diff --git a/contrib/debian/darkcoin-qt.desktop b/contrib/debian/dash-qt.desktop similarity index 77% rename from contrib/debian/darkcoin-qt.desktop rename to contrib/debian/dash-qt.desktop index 5d86f51cd1..2a2536ad6e 100644 --- a/contrib/debian/darkcoin-qt.desktop +++ b/contrib/debian/dash-qt.desktop @@ -4,9 +4,9 @@ Name=Dash Comment=Dash P2P Cryptocurrency Comment[fr]=Dash, monnaie virtuelle cryptographique pair à pair Comment[tr]=Dash, eşten eşe kriptografik sanal para birimi -Exec=darkcoin-qt %u +Exec=dash-qt %u Terminal=false Type=Application -Icon=darkcoin128 -MimeType=x-scheme-handler/darkcoin; +Icon=dash128 +MimeType=x-scheme-handler/dash; Categories=Office;Finance; diff --git a/contrib/debian/dash-qt.install b/contrib/debian/dash-qt.install new file mode 100644 index 0000000000..c034a13668 --- /dev/null +++ b/contrib/debian/dash-qt.install @@ -0,0 +1,6 @@ +usr/local/bin/dash-qt usr/bin +share/pixmaps/dash32.xpm usr/share/pixmaps +share/pixmaps/dash16.xpm usr/share/pixmaps +share/pixmaps/dash128.png usr/share/pixmaps +debian/dash-qt.desktop usr/share/applications +debian/dash-qt.protocol usr/share/kde4/services/ diff --git a/contrib/debian/darkcoind.lintian-overrides b/contrib/debian/dash-qt.lintian-overrides similarity index 53% rename from contrib/debian/darkcoind.lintian-overrides rename to contrib/debian/dash-qt.lintian-overrides index 98eef5f7ea..bfb8d9a84b 100644 --- a/contrib/debian/darkcoind.lintian-overrides +++ b/contrib/debian/dash-qt.lintian-overrides @@ -1,2 +1,2 @@ # Linked code is Expat - only Debian packaging is GPL-2+ -darkcoind: possible-gpl-code-linked-with-openssl +dash-qt: possible-gpl-code-linked-with-openssl diff --git a/contrib/debian/darkcoin-qt.protocol b/contrib/debian/dash-qt.protocol similarity index 73% rename from contrib/debian/darkcoin-qt.protocol rename to contrib/debian/dash-qt.protocol index 9f4871ee4e..7487092412 100644 --- a/contrib/debian/darkcoin-qt.protocol +++ b/contrib/debian/dash-qt.protocol @@ -1,6 +1,6 @@ [Protocol] -exec=darkcoin-qt '%u' -protocol=darkcoin +exec=dash-qt '%u' +protocol=dash input=none output=none helper=true diff --git a/contrib/debian/dashd.bash-completion b/contrib/debian/dashd.bash-completion new file mode 100644 index 0000000000..d92f33da7b --- /dev/null +++ b/contrib/debian/dashd.bash-completion @@ -0,0 +1 @@ +contrib/dashd.bash-completion dashd diff --git a/contrib/debian/dashd.examples b/contrib/debian/dashd.examples new file mode 100644 index 0000000000..0b6950852d --- /dev/null +++ b/contrib/debian/dashd.examples @@ -0,0 +1 @@ +debian/examples/dash.conf diff --git a/contrib/debian/dashd.install b/contrib/debian/dashd.install new file mode 100644 index 0000000000..65878933fa --- /dev/null +++ b/contrib/debian/dashd.install @@ -0,0 +1,2 @@ +usr/local/bin/dashd usr/bin +usr/local/bin/dash-cli usr/bin diff --git a/contrib/debian/darkcoin-qt.lintian-overrides b/contrib/debian/dashd.lintian-overrides similarity index 52% rename from contrib/debian/darkcoin-qt.lintian-overrides rename to contrib/debian/dashd.lintian-overrides index 7dd455c8bf..ef02ada1e0 100644 --- a/contrib/debian/darkcoin-qt.lintian-overrides +++ b/contrib/debian/dashd.lintian-overrides @@ -1,2 +1,2 @@ # Linked code is Expat - only Debian packaging is GPL-2+ -darkcoin-qt: possible-gpl-code-linked-with-openssl +dashd: possible-gpl-code-linked-with-openssl diff --git a/contrib/debian/dashd.manpages b/contrib/debian/dashd.manpages new file mode 100644 index 0000000000..949916bee2 --- /dev/null +++ b/contrib/debian/dashd.manpages @@ -0,0 +1,2 @@ +debian/manpages/dashd.1 +debian/manpages/dash.conf.5 diff --git a/contrib/debian/examples/darkcoin.conf b/contrib/debian/examples/dash.conf similarity index 77% rename from contrib/debian/examples/darkcoin.conf rename to contrib/debian/examples/dash.conf index 8f8618f138..c09570bb3e 100644 --- a/contrib/debian/examples/darkcoin.conf +++ b/contrib/debian/examples/dash.conf @@ -1,9 +1,9 @@ -# darkcoin.conf configuration file. Lines beginning with # are comments. +# dash.conf configuration file. Lines beginning with # are comments. # Network-related settings: -# Run on the test network instead of the real darkcoin network. +# Run on the test network instead of the real dash network. #testnet=1 # Connect via a socks4 proxy @@ -22,7 +22,7 @@ #maxconnections= -# JSON-RPC options (for controlling a running Dash/darkcoind process) +# JSON-RPC options (for controlling a running Dash/dashd process) # server=1 tells Dash to accept JSON-RPC commands. #server=1 @@ -40,12 +40,12 @@ # Listen for RPC connections on this TCP port: rpcport=9998 -# You can use Dash or darkcoind to send commands to Dash/darkcoind +# You can use Dash or dashd to send commands to Dash/dashd # running on another host using this option: rpcconnect=127.0.0.1 # Use Secure Sockets Layer (also known as TLS or HTTPS) to communicate -# with Dash -server or darkcoind +# with Dash -server or dashd #rpcssl=1 # OpenSSL settings used when rpcssl=1 @@ -56,17 +56,17 @@ rpcsslprivatekeyfile=server.pem # Miscellaneous options -# Set gen=1 to attempt to generate darkcoins +# Set gen=1 to attempt to generate dashs gen=0 -# Use SSE instructions to try to generate darkcoins faster. +# Use SSE instructions to try to generate dashs faster. #4way=1 # Pre-generate this many public/private key pairs, so wallet backups will be valid for # both prior transactions and several dozen future transactions. keypool=100 -# Pay an optional transaction fee every time you send darkcoins. Transactions with fees +# Pay an optional transaction fee every time you send dashs. Transactions with fees # are more likely than free transactions to be included in generated blocks, so may # be validated sooner. paytxfee=0.00 diff --git a/contrib/debian/manpages/darkcoin-qt.1 b/contrib/debian/manpages/dash-qt.1 similarity index 99% rename from contrib/debian/manpages/darkcoin-qt.1 rename to contrib/debian/manpages/dash-qt.1 index 9646fd2535..1e619fa586 100644 --- a/contrib/debian/manpages/darkcoin-qt.1 +++ b/contrib/debian/manpages/dash-qt.1 @@ -11,7 +11,7 @@ bitcoin\-qt [command\-line options] This help message .TP \fB\-conf=\fR -Specify configuration file (default: darkcoin.conf) +Specify configuration file (default: dash.conf) .TP \fB\-pid=\fR Specify pid file (default: bitcoind.pid) diff --git a/contrib/debian/manpages/darkcoin.conf.5 b/contrib/debian/manpages/dash.conf.5 similarity index 72% rename from contrib/debian/manpages/darkcoin.conf.5 rename to contrib/debian/manpages/dash.conf.5 index f9dc681c58..e4304d86cc 100644 --- a/contrib/debian/manpages/darkcoin.conf.5 +++ b/contrib/debian/manpages/dash.conf.5 @@ -1,19 +1,19 @@ -.TH DARKCOIN.CONF "5" "January 2011" "darkcoin.conf 3.19" +.TH DASH.CONF "5" "January 2011" "dash.conf 3.19" .SH NAME -darkcoin.conf \- darkcoin configuration file +dash.conf \- dash configuration file .SH SYNOPSIS All command-line options (except for '\-datadir' and '\-conf') may be specified in a configuration file, and all configuration file options may also be specified on the command line. Command-line options override values set in the configuration file. .TP The configuration file is a list of 'setting=value' pairs, one per line, with optional comments starting with the '#' character. .TP -The configuration file is not automatically created; you can create it using your favorite plain-text editor. By default, darkcoind(1) will look for a file named darkcoin.conf(5) in the darkcoin data directory, but both the data directory and the configuration file path may be changed using the '\-datadir' and '\-conf' command-line arguments. +The configuration file is not automatically created; you can create it using your favorite plain-text editor. By default, dashd(1) will look for a file named dash.conf(5) in the dash data directory, but both the data directory and the configuration file path may be changed using the '\-datadir' and '\-conf' command-line arguments. .SH LOCATION -darkcoin.conf should be located in $HOME/.darkcoin +dash.conf should be located in $HOME/.dash .SH NETWORK-RELATED SETTINGS .TP .TP \fBtestnet=\fR[\fI'1'\fR|\fI'0'\fR] -Enable or disable run on the test network instead of the real *darkcoin* network. +Enable or disable run on the test network instead of the real *dash* network. .TP \fBproxy=\fR\fI'127.0.0.1:9050'\fR Connect via a socks4 proxy. @@ -29,7 +29,7 @@ Maximum number of inbound+outbound connections. .SH JSON-RPC OPTIONS .TP \fBserver=\fR[\fI'1'\fR|\fI'0'\fR] -Tells *darkcoin* to accept or not accept JSON-RPC commands. +Tells *dash* to accept or not accept JSON-RPC commands. .TP \fBrpcuser=\fR\fI'username'\fR You must set *rpcuser* to secure the JSON-RPC api. @@ -44,10 +44,10 @@ By default, only RPC connections from localhost are allowed. Specify as many *rp Listen for RPC connections on this TCP port. .TP \fBrpcconnect=\fR\fI'127.0.0.1'\fR -You can use *darkcoin* or *darkcoind(1)* to send commands to *darkcoin*/*darkcoind(1)* running on another host using this option. +You can use *dash* or *dashd(1)* to send commands to *dash*/*dashd(1)* running on another host using this option. .TP \fBrpcssl=\fR\fI'1'\fR -Use Secure Sockets Layer (also known as TLS or HTTPS) to communicate with *darkcoin* '\-server' or *darkcoind(1)*. Example of OpenSSL settings used when *rpcssl*='1': +Use Secure Sockets Layer (also known as TLS or HTTPS) to communicate with *dash* '\-server' or *dashd(1)*. Example of OpenSSL settings used when *rpcssl*='1': .TP \fB\-rpcsslciphers=\fR Acceptable ciphers (default: TLSv1+HIGH:\:!SSLv2:\:!aNULL:\:!eNULL:\:!AH:\:!3DES:\:@STRENGTH) @@ -59,16 +59,16 @@ Acceptable ciphers (default: TLSv1+HIGH:\:!SSLv2:\:!aNULL:\:!eNULL:\:!AH:\:!3DES .SH MISCELLANEOUS OPTIONS .TP \fBgen=\fR[\fI'0'\fR|\fI'1'\fR] -Enable or disable attempt to generate darkcoins. +Enable or disable attempt to generate dashs. .TP \fB4way=\fR[\fI'0'\fR|\fI'1'\fR] -Enable or disable use SSE instructions to try to generate darkcoins faster. +Enable or disable use SSE instructions to try to generate dashs faster. .TP \fBkeypool=\fR\fI'100'\fR Pre-generate this many public/private key pairs, so wallet backups will be valid for both prior transactions and several dozen future transactions. .TP \fBpaytxfee=\fR\fI'0.00'\fR -Pay an optional transaction fee every time you send darkcoins. Transactions with fees are more likely than free transactions to be included in generated blocks, so may be validated sooner. +Pay an optional transaction fee every time you send dashs. Transactions with fees are more likely than free transactions to be included in generated blocks, so may be validated sooner. .TP \fBallowreceivebyip=\fR\fI'1'\fR Allow direct connections for the 'pay via IP address' feature. @@ -76,12 +76,12 @@ Allow direct connections for the 'pay via IP address' feature. .SH USER INTERFACE OPTIONS .TP \fBmin=\fR[\fI'0'\fR|\fI'1'\fR] -Enable or disable start darkcoind minimized. +Enable or disable start dashd minimized. .TP \fBminimizetotray=\fR[\fI'0'\fR|\fI'1'\fR] Enable or disable minimize to the system tray. .SH "SEE ALSO" -darkcoind(1) +dashd(1) .SH AUTHOR This manual page was written by Micah Anderson for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 3 or any later version published by the Free Software Foundation. diff --git a/contrib/debian/manpages/darkcoind.1 b/contrib/debian/manpages/dashd.1 similarity index 99% rename from contrib/debian/manpages/darkcoind.1 rename to contrib/debian/manpages/dashd.1 index eb735c06e9..fe0d744fda 100644 --- a/contrib/debian/manpages/darkcoind.1 +++ b/contrib/debian/manpages/dashd.1 @@ -13,7 +13,7 @@ Bitcoins can be sent easily through the Internet, without having to trust middle .SH OPTIONS .TP \fB\-conf=\fR -Specify configuration file (default: darkcoin.conf) +Specify configuration file (default: dash.conf) .TP \fB\-gen\fR Generate coins @@ -201,7 +201,7 @@ Checks that 'bitcoinaddress' looks like a proper bitcoin address. Returns an obj *note: ismine and address are only returned if the address is valid. .SH "SEE ALSO" -darkcoin.conf(5) +dash.conf(5) .SH AUTHOR This manual page was written by Micah Anderson for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 3 or any later version published by the Free Software Foundation. diff --git a/contrib/debian/rules b/contrib/debian/rules index ed9f6a0b9b..23f79be5a2 100755 --- a/contrib/debian/rules +++ b/contrib/debian/rules @@ -1,9 +1,9 @@ #!/usr/bin/make -f # -*- mode: makefile; coding: utf-8 -*- -#DEB_MAKE_CHECK_TARGET = test_darkcoin +#DEB_MAKE_CHECK_TARGET = test_dash #build/bitcoind:: -# $(if $(filter nocheck,$(DEB_BUILD_OPTIONS)),,src/test_darkcoin) +# $(if $(filter nocheck,$(DEB_BUILD_OPTIONS)),,src/test_dash) DEB_INSTALL_EXAMPLES_bitcoind += debian/examples/* DEB_INSTALL_MANPAGES_bitcoind += debian/manpages/* @@ -13,7 +13,7 @@ DEB_INSTALL_MANPAGES_bitcoind += debian/manpages/* override_dh_auto_clean: if [ -f Makefile ]; then $(MAKE) distclean; fi - rm -rf Makefile.in aclocal.m4 configure src/Makefile.in src/darkcoin-config.h.in src/build-aux src/qt/Makefile.in src/qt/test/Makefile.in src/test/Makefile.in + rm -rf Makefile.in aclocal.m4 configure src/Makefile.in src/dash-config.h.in src/build-aux src/qt/Makefile.in src/qt/test/Makefile.in src/test/Makefile.in # Yea, autogen should be run on the source archive, but I like doing git archive override_dh_auto_configure: diff --git a/contrib/devtools/README.md b/contrib/devtools/README.md index e440a534c4..8cfff884a9 100644 --- a/contrib/devtools/README.md +++ b/contrib/devtools/README.md @@ -64,10 +64,10 @@ If only supported symbols are used the return value will be 0 and the output wil If there are 'unsupported' symbols, the return value will be 1 a list like this will be printed: - .../64/test_darkcoin: symbol memcpy from unsupported version GLIBC_2.14 - .../64/test_darkcoin: symbol __fdelt_chk from unsupported version GLIBC_2.15 - .../64/test_darkcoin: symbol std::out_of_range::~out_of_range() from unsupported version GLIBCXX_3.4.15 - .../64/test_darkcoin: symbol _ZNSt8__detail15_List_nod from unsupported version GLIBCXX_3.4.15 + .../64/test_dash: symbol memcpy from unsupported version GLIBC_2.14 + .../64/test_dash: symbol __fdelt_chk from unsupported version GLIBC_2.15 + .../64/test_dash: symbol std::out_of_range::~out_of_range() from unsupported version GLIBCXX_3.4.15 + .../64/test_dash: symbol _ZNSt8__detail15_List_nod from unsupported version GLIBCXX_3.4.15 update-translations.py ======================= diff --git a/contrib/devtools/update-translations.py b/contrib/devtools/update-translations.py index 75c494c2a2..49b628e0ed 100755 --- a/contrib/devtools/update-translations.py +++ b/contrib/devtools/update-translations.py @@ -26,7 +26,7 @@ import xml.etree.ElementTree as ET # Name of transifex tool TX = 'tx' # Name of source language file -SOURCE_LANG = 'darkcoin_en.ts' +SOURCE_LANG = 'dash_en.ts' # Directory with locale files LOCALE_DIR = 'src/qt/locale' diff --git a/contrib/gitian-descriptors/README.md b/contrib/gitian-descriptors/README.md index babb28b089..1084cb070e 100644 --- a/contrib/gitian-descriptors/README.md +++ b/contrib/gitian-descriptors/README.md @@ -20,7 +20,7 @@ Sanity checks: Once you've got the right hardware and software: - git clone git://github.com/darkcoin/darkcoin.git + git clone git://github.com/dash/dash.git git clone git://github.com/devrandom/gitian-builder.git mkdir gitian-builder/inputs cd gitian-builder/inputs @@ -63,5 +63,5 @@ Here's a description of Gavin's setup on OSX 10.6: 5. Still inside Ubuntu, tell gitian-builder to use LXC, then follow the "Once you've got the right hardware and software" instructions above: export USE_LXC=1 - git clone git://github.com/darkcoin/darkcoin.git + git clone git://github.com/dash/dash.git ... etc diff --git a/contrib/gitian-descriptors/gitian-linux.yml b/contrib/gitian-descriptors/gitian-linux.yml index dd8440bb33..fad9f38d50 100755 --- a/contrib/gitian-descriptors/gitian-linux.yml +++ b/contrib/gitian-descriptors/gitian-linux.yml @@ -1,5 +1,5 @@ --- -name: "darkcoin" +name: "dash" suites: - "precise" architectures: @@ -22,8 +22,8 @@ packages: - "libqt4-test" reference_datetime: "2014-01-10 00:00:00" remotes: -- "url": "https://github.com/darkcoin/darkcoin.git" - "dir": "darkcoin" +- "url": "https://github.com/dash/dash.git" + "dir": "dash" files: - "bitcoin-deps-linux32-gitian-r9.zip" - "bitcoin-deps-linux64-gitian-r9.zip" @@ -49,7 +49,7 @@ script: | cd ../build # Avoid exporting *any* symbols from the executable - # This avoids conflicts between the libraries statically linked into darkcoin and any + # This avoids conflicts between the libraries statically linked into dash and any # libraries we may link dynamically (such as Qt and OpenSSL, see issue #4094). # It also avoids start-up overhead to not export any unnecessary symbols. # To do this, build a linker script that marks all symbols as local. @@ -59,14 +59,14 @@ script: | local: *; };' > $LINKER_SCRIPT function do_configure { - ./configure "$@" --enable-upnp-default --prefix=$STAGING --with-protoc-bindir=$STAGING/host/bin --with-qt-bindir=$STAGING/bin --with-boost=$STAGING --disable-maintainer-mode --disable-dependency-tracking PKG_CONFIG_PATH="$STAGING/lib/pkgconfig" CPPFLAGS="-I$STAGING/include ${OPTFLAGS}" LDFLAGS="-L$STAGING/lib -Wl,--version-script=$LINKER_SCRIPT ${OPTFLAGS}" CXXFLAGS="-frandom-seed=darkcoin ${OPTFLAGS}" BOOST_CHRONO_EXTRALIBS="-lrt" --enable-glibc-back-compat + ./configure "$@" --enable-upnp-default --prefix=$STAGING --with-protoc-bindir=$STAGING/host/bin --with-qt-bindir=$STAGING/bin --with-boost=$STAGING --disable-maintainer-mode --disable-dependency-tracking PKG_CONFIG_PATH="$STAGING/lib/pkgconfig" CPPFLAGS="-I$STAGING/include ${OPTFLAGS}" LDFLAGS="-L$STAGING/lib -Wl,--version-script=$LINKER_SCRIPT ${OPTFLAGS}" CXXFLAGS="-frandom-seed=dash ${OPTFLAGS}" BOOST_CHRONO_EXTRALIBS="-lrt" --enable-glibc-back-compat } # - cd darkcoin + cd dash ./autogen.sh do_configure make dist - DISTNAME=`echo darkcoin-*.tar.gz` + DISTNAME=`echo dash-*.tar.gz` # Build dynamic versions of everything # (with static linking to boost and openssl as well a some non-OS deps) @@ -83,4 +83,4 @@ script: | rm -rf $TEMPDIR mkdir -p $TEMPDIR cd $TEMPDIR - tar -xvf $HOME/build/darkcoin/$DISTNAME | sort | tar --no-recursion -cT /dev/stdin --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 --mtime="$REFERENCE_DATETIME" | gzip -n > $OUTDIR/src/$DISTNAME + tar -xvf $HOME/build/dash/$DISTNAME | sort | tar --no-recursion -cT /dev/stdin --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 --mtime="$REFERENCE_DATETIME" | gzip -n > $OUTDIR/src/$DISTNAME diff --git a/contrib/gitian-descriptors/gitian-osx-darkcoin.yml b/contrib/gitian-descriptors/gitian-osx-dash.yml similarity index 94% rename from contrib/gitian-descriptors/gitian-osx-darkcoin.yml rename to contrib/gitian-descriptors/gitian-osx-dash.yml index 075c222a9f..ba95a4a846 100755 --- a/contrib/gitian-descriptors/gitian-osx-darkcoin.yml +++ b/contrib/gitian-descriptors/gitian-osx-dash.yml @@ -1,5 +1,5 @@ --- -name: "darkcoin" +name: "dash" suites: - "precise" architectures: @@ -14,8 +14,8 @@ packages: reference_datetime: "2014-01-10 00:00:00" remotes: -- "url": "https://github.com/darkcoin/darkcoin.git" - "dir": "darkcoin" +- "url": "https://github.com/dash/dash.git" + "dir": "dash" files: - "osx-native-depends-r3.tar.gz" - "osx-depends-r7.tar.gz" @@ -41,7 +41,7 @@ script: | tar -C osx-cross-depends -xf osx-depends-qt-5.2.1-r6.tar.gz export PATH=`pwd`/osx-cross-depends/native-prefix/bin:$PATH - cd darkcoin + cd dash export ZERO_AR_DATE=1 export QT_RCC_TEST=1 @@ -50,7 +50,7 @@ script: | make dist mkdir -p distsrc cd distsrc - tar --strip-components=1 -xf ../darkcoin-*.tar* + tar --strip-components=1 -xf ../dash-*.tar* ./configure --host=${HOST} --with-boost=${PREFIX} CC=clang CXX=clang++ OBJC=clang OBJCXX=clang++ CFLAGS="-target ${HOST} -mmacosx-version-min=10.6 --sysroot ${SDK} -msse2 -Qunused-arguments" CXXFLAGS="-target ${HOST} -mmacosx-version-min=10.6 --sysroot ${SDK} -msse2 -Qunused-arguments" LDFLAGS="-B${NATIVEPREFIX}/bin -L${PREFIX}/lib -L${SDK}/usr/lib/i686-apple-darwin10/4.2.1" CPPFLAGS="-I${NATIVEPREFIX}/lib/clang/3.2/include -I${PREFIX}/include" SSL_LIBS="-lz -lssl -lcrypto" --disable-tests -with-gui=qt5 PKG_CONFIG_LIBDIR="${PREFIX}/lib/pkgconfig" --disable-dependency-tracking --disable-maintainer-mode make $MAKEOPTS export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1 diff --git a/contrib/gitian-descriptors/gitian-win.yml b/contrib/gitian-descriptors/gitian-win.yml index 88230b91c6..4c82d5c976 100755 --- a/contrib/gitian-descriptors/gitian-win.yml +++ b/contrib/gitian-descriptors/gitian-win.yml @@ -1,5 +1,5 @@ --- -name: "darkcoin" +name: "dash" suites: - "precise" architectures: @@ -19,8 +19,8 @@ packages: reference_datetime: "2014-01-10 00:00:00" remotes: -- "url": "https://github.com/darkcoin/darkcoin.git" - "dir": "darkcoin" +- "url": "https://github.com/dash/dash.git" + "dir": "dash" files: - "qt-win32-5.2.0-gitian-r3.zip" - "qt-win64-5.2.0-gitian-r3.zip" @@ -65,25 +65,25 @@ script: | unzip $INDIR/protobuf-win${BITS}-2.5.0-gitian-r4.zip if [ "$NEEDDIST" == "1" ]; then # Make source code archive which is architecture independent so it only needs to be done once - cd $HOME/build/darkcoin + cd $HOME/build/dash ./autogen.sh - ./configure --bindir=$OUTDIR --prefix=$STAGING --host=$HOST --with-qt-plugindir=$STAGING/plugins --with-qt-incdir=$STAGING/include --with-qt-bindir=$STAGING/host/bin --with-boost=$STAGING --disable-maintainer-mode --with-protoc-bindir=$STAGING/host/bin --disable-dependency-tracking CPPFLAGS="-I$STAGING/include ${OPTFLAGS}" LDFLAGS="-L$STAGING/lib ${OPTFLAGS}" CXXFLAGS="-frandom-seed=darkcoin ${OPTFLAGS}" + ./configure --bindir=$OUTDIR --prefix=$STAGING --host=$HOST --with-qt-plugindir=$STAGING/plugins --with-qt-incdir=$STAGING/include --with-qt-bindir=$STAGING/host/bin --with-boost=$STAGING --disable-maintainer-mode --with-protoc-bindir=$STAGING/host/bin --disable-dependency-tracking CPPFLAGS="-I$STAGING/include ${OPTFLAGS}" LDFLAGS="-L$STAGING/lib ${OPTFLAGS}" CXXFLAGS="-frandom-seed=dash ${OPTFLAGS}" make dist - DISTNAME=`echo darkcoin-*.tar.gz` + DISTNAME=`echo dash-*.tar.gz` NEEDDIST=0 fi # Build platform-dependent executables from source archive cd $BUILDDIR mkdir -p distsrc cd distsrc - tar --strip-components=1 -xf $HOME/build/darkcoin/$DISTNAME - ./configure --enable-upnp-default --bindir=$BINDIR --prefix=$STAGING --host=$HOST --with-qt-plugindir=$STAGING/plugins --with-qt-incdir=$STAGING/include --with-qt-bindir=$STAGING/host/bin --with-boost=$STAGING --disable-maintainer-mode --with-protoc-bindir=$STAGING/host/bin --disable-dependency-tracking CPPFLAGS="-I$STAGING/include ${OPTFLAGS}" LDFLAGS="-L$STAGING/lib ${OPTFLAGS}" CXXFLAGS="-frandom-seed=darkcoin ${OPTFLAGS}" + tar --strip-components=1 -xf $HOME/build/dash/$DISTNAME + ./configure --enable-upnp-default --bindir=$BINDIR --prefix=$STAGING --host=$HOST --with-qt-plugindir=$STAGING/plugins --with-qt-incdir=$STAGING/include --with-qt-bindir=$STAGING/host/bin --with-boost=$STAGING --disable-maintainer-mode --with-protoc-bindir=$STAGING/host/bin --disable-dependency-tracking CPPFLAGS="-I$STAGING/include ${OPTFLAGS}" LDFLAGS="-L$STAGING/lib ${OPTFLAGS}" CXXFLAGS="-frandom-seed=dash ${OPTFLAGS}" export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1 export FAKETIME=$REFERENCE_DATETIME make $MAKEOPTS make deploy make install-strip - cp -f darkcoin-*setup*.exe $BINDIR/ + cp -f dash-*setup*.exe $BINDIR/ unset LD_PRELOAD unset FAKETIME done # for BITS in @@ -93,5 +93,5 @@ script: | rm -rf $TEMPDIR mkdir -p $TEMPDIR cd $TEMPDIR - tar -xvf $HOME/build/darkcoin/$DISTNAME | sort | tar --no-recursion -cT /dev/stdin --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 --mtime="$REFERENCE_DATETIME" | gzip -n > $OUTDIR/src/$DISTNAME + tar -xvf $HOME/build/dash/$DISTNAME | sort | tar --no-recursion -cT /dev/stdin --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 --mtime="$REFERENCE_DATETIME" | gzip -n > $OUTDIR/src/$DISTNAME diff --git a/contrib/spendfrom/README.md b/contrib/spendfrom/README.md index 1207b572d6..9a6924dca8 100644 --- a/contrib/spendfrom/README.md +++ b/contrib/spendfrom/README.md @@ -7,7 +7,7 @@ address (or addresses). Depends on [jsonrpc](http://json-rpc.org/). spendfrom.py --from=FROMADDRESS1[,FROMADDRESS2] --to=TOADDRESS --amount=amount \ - --fee=fee --datadir=/path/to/.darkcoin --testnet --dry_run + --fee=fee --datadir=/path/to/.dash --testnet --dry_run With no arguments, outputs a list of amounts associated with addresses. @@ -16,7 +16,7 @@ With arguments, sends coins received by the `FROMADDRESS` addresses to the `TOAD ### Notes ### - You may explicitly specify how much fee to pay (a fee more than 1% of the amount -will fail, though, to prevent darkcoin-losing accidents). Spendfrom may fail if +will fail, though, to prevent dash-losing accidents). Spendfrom may fail if it thinks the transaction would never be confirmed (if the amount being sent is too small, or if the transaction is too many bytes for the fee). diff --git a/contrib/spendfrom/spendfrom.py b/contrib/spendfrom/spendfrom.py index bef71df871..e8d3d9fd77 100755 --- a/contrib/spendfrom/spendfrom.py +++ b/contrib/spendfrom/spendfrom.py @@ -1,13 +1,13 @@ #!/usr/bin/env python # -# Use the raw transactions API to spend darkcoins received on particular addresses, +# Use the raw transactions API to spend dashs received on particular addresses, # and send any change back to that same address. # # Example usage: # spendfrom.py # Lists available funds # spendfrom.py --from=ADDRESS --to=ADDRESS --amount=11.00 # -# Assumes it will talk to a darkcoind or Dash-Qt running +# Assumes it will talk to a dashd or Dash-Qt running # on localhost. # # Depends on jsonrpc @@ -33,15 +33,15 @@ def check_json_precision(): raise RuntimeError("JSON encode/decode loses precision") def determine_db_dir(): - """Return the default location of the darkcoin data directory""" + """Return the default location of the dash data directory""" if platform.system() == "Darwin": return os.path.expanduser("~/Library/Application Support/Dash/") elif platform.system() == "Windows": return os.path.join(os.environ['APPDATA'], "Dash") - return os.path.expanduser("~/.darkcoin") + return os.path.expanduser("~/.dash") def read_bitcoin_config(dbdir): - """Read the darkcoin.conf file from dbdir, returns dictionary of settings""" + """Read the dash.conf file from dbdir, returns dictionary of settings""" from ConfigParser import SafeConfigParser class FakeSecHead(object): @@ -59,11 +59,11 @@ def read_bitcoin_config(dbdir): return s config_parser = SafeConfigParser() - config_parser.readfp(FakeSecHead(open(os.path.join(dbdir, "darkcoin.conf")))) + config_parser.readfp(FakeSecHead(open(os.path.join(dbdir, "dash.conf")))) return dict(config_parser.items("all")) def connect_JSON(config): - """Connect to a darkcoin JSON-RPC server""" + """Connect to a dash JSON-RPC server""" testnet = config.get('testnet', '0') testnet = (int(testnet) > 0) # 0/1 in config file, convert to True/False if not 'rpcport' in config: @@ -72,7 +72,7 @@ def connect_JSON(config): try: result = ServiceProxy(connect) # ServiceProxy is lazy-connect, so send an RPC command mostly to catch connection errors, - # but also make sure the darkcoind we're talking to is/isn't testnet: + # but also make sure the dashd we're talking to is/isn't testnet: if result.getmininginfo()['testnet'] != testnet: sys.stderr.write("RPC server at "+connect+" testnet setting mismatch\n") sys.exit(1) @@ -81,36 +81,36 @@ def connect_JSON(config): sys.stderr.write("Error connecting to RPC server at "+connect+"\n") sys.exit(1) -def unlock_wallet(darkcoind): - info = darkcoind.getinfo() +def unlock_wallet(dashd): + info = dashd.getinfo() if 'unlocked_until' not in info: return True # wallet is not encrypted t = int(info['unlocked_until']) if t <= time.time(): try: passphrase = getpass.getpass("Wallet is locked; enter passphrase: ") - darkcoind.walletpassphrase(passphrase, 5) + dashd.walletpassphrase(passphrase, 5) except: sys.stderr.write("Wrong passphrase\n") - info = darkcoind.getinfo() + info = dashd.getinfo() return int(info['unlocked_until']) > time.time() -def list_available(darkcoind): +def list_available(dashd): address_summary = dict() address_to_account = dict() - for info in darkcoind.listreceivedbyaddress(0): + for info in dashd.listreceivedbyaddress(0): address_to_account[info["address"]] = info["account"] - unspent = darkcoind.listunspent(0) + unspent = dashd.listunspent(0) for output in unspent: # listunspent doesn't give addresses, so: - rawtx = darkcoind.getrawtransaction(output['txid'], 1) + rawtx = dashd.getrawtransaction(output['txid'], 1) vout = rawtx["vout"][output['vout']] pk = vout["scriptPubKey"] - # This code only deals with ordinary pay-to-darkcoin-address + # This code only deals with ordinary pay-to-dash-address # or pay-to-script-hash outputs right now; anything exotic is ignored. if pk["type"] != "pubkeyhash" and pk["type"] != "scripthash": continue @@ -139,8 +139,8 @@ def select_coins(needed, inputs): n += 1 return (outputs, have-needed) -def create_tx(darkcoind, fromaddresses, toaddress, amount, fee): - all_coins = list_available(darkcoind) +def create_tx(dashd, fromaddresses, toaddress, amount, fee): + all_coins = list_available(dashd) total_available = Decimal("0.0") needed = amount+fee @@ -159,7 +159,7 @@ def create_tx(darkcoind, fromaddresses, toaddress, amount, fee): # Note: # Python's json/jsonrpc modules have inconsistent support for Decimal numbers. # Instead of wrestling with getting json.dumps() (used by jsonrpc) to encode - # Decimals, I'm casting amounts to float before sending them to darkcoind. + # Decimals, I'm casting amounts to float before sending them to dashd. # outputs = { toaddress : float(amount) } (inputs, change_amount) = select_coins(needed, potential_inputs) @@ -170,8 +170,8 @@ def create_tx(darkcoind, fromaddresses, toaddress, amount, fee): else: outputs[change_address] = float(change_amount) - rawtx = darkcoind.createrawtransaction(inputs, outputs) - signed_rawtx = darkcoind.signrawtransaction(rawtx) + rawtx = dashd.createrawtransaction(inputs, outputs) + signed_rawtx = dashd.signrawtransaction(rawtx) if not signed_rawtx["complete"]: sys.stderr.write("signrawtransaction failed\n") sys.exit(1) @@ -179,10 +179,10 @@ def create_tx(darkcoind, fromaddresses, toaddress, amount, fee): return txdata -def compute_amount_in(darkcoind, txinfo): +def compute_amount_in(dashd, txinfo): result = Decimal("0.0") for vin in txinfo['vin']: - in_info = darkcoind.getrawtransaction(vin['txid'], 1) + in_info = dashd.getrawtransaction(vin['txid'], 1) vout = in_info['vout'][vin['vout']] result = result + vout['value'] return result @@ -193,12 +193,12 @@ def compute_amount_out(txinfo): result = result + vout['value'] return result -def sanity_test_fee(darkcoind, txdata_hex, max_fee): +def sanity_test_fee(dashd, txdata_hex, max_fee): class FeeError(RuntimeError): pass try: - txinfo = darkcoind.decoderawtransaction(txdata_hex) - total_in = compute_amount_in(darkcoind, txinfo) + txinfo = dashd.decoderawtransaction(txdata_hex) + total_in = compute_amount_in(dashd, txinfo) total_out = compute_amount_out(txinfo) if total_in-total_out > max_fee: raise FeeError("Rejecting transaction, unreasonable fee of "+str(total_in-total_out)) @@ -221,15 +221,15 @@ def main(): parser = optparse.OptionParser(usage="%prog [options]") parser.add_option("--from", dest="fromaddresses", default=None, - help="addresses to get darkcoins from") + help="addresses to get dashs from") parser.add_option("--to", dest="to", default=None, - help="address to get send darkcoins to") + help="address to get send dashs to") parser.add_option("--amount", dest="amount", default=None, help="amount to send") parser.add_option("--fee", dest="fee", default="0.0", help="fee to include") parser.add_option("--datadir", dest="datadir", default=determine_db_dir(), - help="location of darkcoin.conf file with RPC username/password (default: %default)") + help="location of dash.conf file with RPC username/password (default: %default)") parser.add_option("--testnet", dest="testnet", default=False, action="store_true", help="Use the test network") parser.add_option("--dry_run", dest="dry_run", default=False, action="store_true", @@ -240,10 +240,10 @@ def main(): check_json_precision() config = read_bitcoin_config(options.datadir) if options.testnet: config['testnet'] = True - darkcoind = connect_JSON(config) + dashd = connect_JSON(config) if options.amount is None: - address_summary = list_available(darkcoind) + address_summary = list_available(dashd) for address,info in address_summary.iteritems(): n_transactions = len(info['outputs']) if n_transactions > 1: @@ -253,14 +253,14 @@ def main(): else: fee = Decimal(options.fee) amount = Decimal(options.amount) - while unlock_wallet(darkcoind) == False: + while unlock_wallet(dashd) == False: pass # Keep asking for passphrase until they get it right - txdata = create_tx(darkcoind, options.fromaddresses.split(","), options.to, amount, fee) - sanity_test_fee(darkcoind, txdata, amount*Decimal("0.01")) + txdata = create_tx(dashd, options.fromaddresses.split(","), options.to, amount, fee) + sanity_test_fee(dashd, txdata, amount*Decimal("0.01")) if options.dry_run: print(txdata) else: - txid = darkcoind.sendrawtransaction(txdata) + txid = dashd.sendrawtransaction(txdata) print(txid) if __name__ == '__main__': diff --git a/doc/build-osx.md b/doc/build-osx.md index 90083a845a..ed522d6f95 100644 --- a/doc/build-osx.md +++ b/doc/build-osx.md @@ -1,6 +1,6 @@ Mac OS X Build Instructions and Notes ==================================== -This guide will show you how to build darkcoind(headless client) for OSX. +This guide will show you how to build dashd(headless client) for OSX. Notes ----- @@ -73,19 +73,19 @@ These rest of these commands are run inside brew interactive mode: /private/tmp/berkeley-db4-UGpd0O $ exit ``` -After exiting, you'll get a warning that the install is keg-only, which means it wasn't symlinked to `/usr/local`. You don't need it to link it to build darkcoin, but if you want to, here's how: +After exiting, you'll get a warning that the install is keg-only, which means it wasn't symlinked to `/usr/local`. You don't need it to link it to build dash, but if you want to, here's how: $ brew --force link berkeley-db4 -### Building `darkcoind` +### Building `dashd` 1. Clone the github tree to get the source code and go into the directory. - git clone https://github.com/darkcoin/darkcoin.git - cd darkcoin + git clone https://github.com/dash/dash.git + cd dash -2. Build darkcoind: +2. Build dashd: ./autogen.sh ./configure @@ -97,11 +97,11 @@ After exiting, you'll get a warning that the install is keg-only, which means it Creating a release build ------------------------ -You can ignore this section if you are building `darkcoind` for your own use. +You can ignore this section if you are building `dashd` for your own use. -darkcoind/darkcoin-cli binaries are not included in the Bitcoin-Qt.app bundle. +dashd/dash-cli binaries are not included in the Bitcoin-Qt.app bundle. -If you are building `darkcoind` or `Bitcoin-Qt` for others, your build machine should be set up +If you are building `dashd` or `Bitcoin-Qt` for others, your build machine should be set up as follows for maximum compatibility: All dependencies should be compiled with these flags: @@ -116,14 +116,14 @@ bundle is packaged and signed to create the .dmg disk image that is distributed. Running ------- -It's now available at `./darkcoind`, provided that you are still in the `src` +It's now available at `./dashd`, provided that you are still in the `src` directory. We have to first create the RPC configuration file, though. -Run `./darkcoind` to get the filename where it should be put, or just try these +Run `./dashd` to get the filename where it should be put, or just try these commands: - echo -e "rpcuser=darkcoinrpc\nrpcpassword=$(xxd -l 16 -p /dev/urandom)" > "/Users/${USER}/Library/Application Support/Dash/darkcoin.conf" - chmod 600 "/Users/${USER}/Library/Application Support/Dash/darkcoin.conf" + echo -e "rpcuser=dashrpc\nrpcpassword=$(xxd -l 16 -p /dev/urandom)" > "/Users/${USER}/Library/Application Support/Dash/dash.conf" + chmod 600 "/Users/${USER}/Library/Application Support/Dash/dash.conf" When next you run it, it will start downloading the blockchain, but it won't output anything while it's doing this. This process may take several hours; @@ -133,6 +133,6 @@ you can monitor its process by looking at the debug.log file, like this: Other commands: - ./darkcoind -daemon # to start the darkcoin daemon. - ./darkcoin-cli --help # for a list of command-line options. - ./darkcoin-cli help # When the daemon is running, to get a list of RPC commands + ./dashd -daemon # to start the dash daemon. + ./dash-cli --help # for a list of command-line options. + ./dash-cli help # When the daemon is running, to get a list of RPC commands diff --git a/doc/guide-startmany.md b/doc/guide-startmany.md index 152abec4cc..34018f1ab1 100644 --- a/doc/guide-startmany.md +++ b/doc/guide-startmany.md @@ -95,7 +95,7 @@ Issue the following: Make note of the hash (which is your collaterla_output) and index. ### Enter your MasterNode details into your masternode.conf file -[From the darkcoin github repo](https://github.com/darkcoin/darkcoin/blob/master/doc/masternode_conf.md) +[From the dash github repo](https://github.com/dash/dash/blob/master/doc/masternode_conf.md) The new masternode.conf format consists of a space seperated text file. Each line consisting of an alias, IP address followed by port, masternode private key, collateral output transaction id and collateral output index, donation address and donation percentage (the latter two are optional and should be in format "address:percantage"). @@ -112,20 +112,20 @@ mn01 127.0.0.1:9999 93HaYBVUCYjEMeeH1Y4sBGLALQZE1Yc1K64xiqgX37tGBDQL8Xg 2bcd3c84 mn02 127.0.0.2:9999 93WaAb3htPJEV8E9aQcN23Jt97bPex7YvWfgMDTUdWJvzmrMqey aa9f1034d973377a5e733272c3d0eced1de22555ad45d6b24abadff8087948d4 0 7gnwGHt17heGpG9Crfeh4KGpYNFugPhJdh:25 ``` -## What about the darkcoin.conf file? +## What about the dash.conf file? -If you are using a masternode.conf file you no longer need the darkcoin.conf file. The exception is if you need custom settings (thanks oblox). +If you are using a masternode.conf file you no longer need the dash.conf file. The exception is if you need custom settings (thanks oblox). -## Update darkcoin.conf on server +## Update dash.conf on server -If you generated a new masternode private key, you will need to update the remote darkcoin.conf files. +If you generated a new masternode private key, you will need to update the remote dash.conf files. Shut down the daemon and then edit the file. -```sudo nano .darkcoin/darkcoin.conf``` +```sudo nano .dash/dash.conf``` ### Edit the masternodeprivkey -If you generated a new masternode private key, you will need to update the masternodeprivkey value in your remote darkcoin.conf file. +If you generated a new masternode private key, you will need to update the masternodeprivkey value in your remote dash.conf file. ## Start your MasterNodes @@ -135,7 +135,7 @@ If your remote server is not running, start your remote daemon as you normally w I usually confirm that remote is on the correct block by issuing: -```darkcoind getinfo``` +```dashd getinfo``` And compare with the official explorer at http://explorer.dashcurrency.com/chain/Dash diff --git a/doc/keepass.md b/doc/keepass.md index 19a3218bda..6b9756f77e 100644 --- a/doc/keepass.md +++ b/doc/keepass.md @@ -12,7 +12,7 @@ The implementation is dependent on the following: ###What's new### -The following new options are available for darkcoind and darkcoin-qt: +The following new options are available for dashd and dash-qt: - _-keepass_ Use KeePass 2 integration using KeePassHttp plugin (default: 0) - _-keepassport=_ Connect to KeePassHttp on port (default: 19455) - _-keepasskey=_ KeePassHttp key for AES encrypted communication with KeePass @@ -22,27 +22,27 @@ The following new options are available for darkcoind and darkcoin-qt: The following rpc commands are available: - _keepass genkey_: generates a base64 encoded 256 bit AES key that can be used for the communication with KeePassHttp. Only necessary for manual configuration. Use init for automatic configuration. - - _keepass init_: sets up the association between darkcoind and keepass by generating an AES key and sending an association message to KeePassHttp. This will trigger KeePass to ask for an Id for the association. Returns the association and the base64 encoded string for the AES key. + - _keepass init_: sets up the association between dashd and keepass by generating an AES key and sending an association message to KeePassHttp. This will trigger KeePass to ask for an Id for the association. Returns the association and the base64 encoded string for the AES key. - _keepass setpassphrase_: updates the passphrase in KeePassHttp to a new value. This should match the passphrase you intend to use for the wallet. Please note that the standard RPC commands _walletpassphrasechange_ and the wallet encrption from the QT GUI already send the updates to KeePassHttp, so this is only necessary for manual manipulation of the password. ###How to setup### -Sample initialization flow from _darkcoin-qt_ console (this needs to be done only once to set up the association): +Sample initialization flow from _dash-qt_ console (this needs to be done only once to set up the association): - Have KeePass running with an open database - - Start _darkcoin-qt_ + - Start _dash-qt_ - Open console - - Type "_keepass init_" in darkcoin-qt console + - Type "_keepass init_" in dash-qt console - Keepass pops up and asks for an association id, fill that in, for example, "_mydrkwallet_" - - You should get a response like this "_Association successful. Id: mydrkwalletdarkcoin - Key: AgQkcs6cI7v9tlSYKjG/+s8wJrGALHl3jLosJpPLzUE=_" - - Edit _darkcoin.conf_ and fill in these values + - You should get a response like this "_Association successful. Id: mydrkwalletdash - Key: AgQkcs6cI7v9tlSYKjG/+s8wJrGALHl3jLosJpPLzUE=_" + - Edit _dash.conf_ and fill in these values ``` keepass=1 keepasskey=AgQkcs6cI7v9tlSYKjG/+s8wJrGALHl3jLosJpPLzUE= keepassid=mydrkwallet keepassname=testwallet ``` - - Restart _darkcoin-qt_ + - Restart _dash-qt_ At this point, the association is made. The next action depends on your particular situation: @@ -51,4 +51,4 @@ At this point, the association is made. The next action depends on your particul At this point, the passphrase is stored in KeePassHttp. When Unlocking the wallet, one can use _keepass_ as the passphrase to trigger retrieval of the password. This works from the RPC commands as well as the GUI. -Extended guide with screenshots is also available: https://darkcointalk.org/threads/keepass-integration.3620/ +Extended guide with screenshots is also available: https://dashtalk.org/threads/keepass-integration.3620/ diff --git a/doc/masternode_conf.md b/doc/masternode_conf.md index 77441ddb63..a60867352e 100644 --- a/doc/masternode_conf.md +++ b/doc/masternode_conf.md @@ -4,7 +4,7 @@ Multi masternode config The multi masternode config allows to control multiple masternodes from a single wallet. The wallet needs to have a valid collaral output of 1000 coins for each masternode. To use this, place a file named masternode.conf in the data directory of your install: * Windows: %APPDATA%\Dash\ * Mac OS: ~/Library/Application Support/Dash/ - * Unix/Linux: ~/.darkcoin/ + * Unix/Linux: ~/.dash/ The new masternode.conf format consists of a space seperated text file. Each line consisting of an alias, IP address followed by port, masternode private key, collateral output transaction id, collateral output index, donation address and donation percentage (the latter two are optional and should be in format "address:percantage"). @@ -16,7 +16,7 @@ mn3 127.0.0.4:19999 92Da1aYg6sbenP6uwskJgEY2XWB5LwJ7bXRqc3UPeShtHWJDjDv db478e78 ``` In the example above: -* the collateral for mn1 consists of transaction http://test.explorer.darkcoin.fr/tx/2bcd3c84c84f87eaa86e4e56834c92927a07f9e18718810b92e0d0324456a67c, output index 0 has amount 1000 +* the collateral for mn1 consists of transaction http://test.explorer.dash.fr/tx/2bcd3c84c84f87eaa86e4e56834c92927a07f9e18718810b92e0d0324456a67c, output index 0 has amount 1000 * masternode 2 will donate 33% of its income * masternode 3 will donate 100% of its income diff --git a/doc/release-notes/release-notes-0.11.0.md b/doc/release-notes/release-notes-0.11.0.md index d8febf9a65..9da766b37c 100644 --- a/doc/release-notes/release-notes-0.11.0.md +++ b/doc/release-notes/release-notes-0.11.0.md @@ -1,7 +1,7 @@ 0.11.0 Release notes ==================== -Dash Core 0.11.0 is forked off the Bitcoin Core 0.9.3. The old darkcoin +Dash Core 0.11.0 is forked off the Bitcoin Core 0.9.3. The old dash versions 0.10.x were forked from the Litecoin 0.8 tree. The following changes are introduced in this major release. This list is compiled from the release notes of Bitcoin Core 0.9.0, 0.9.1, 0.9.2, 0.9.2.1, 0.9.3 and was completed @@ -27,7 +27,7 @@ Dash Core: - Fixed wallet locking after sending coins - Add `-regtest` mode, similar to testnet but private with instant block generation with `setgenerate` RPC. -- Add separate darkcoin-cli client +- Add separate dash-cli client - Implemented KeyPass integration for CLI, RPC and Qt: `keepass`, `keepassport`, `keepasskey`, `keepassid`, `keepassname` @@ -100,13 +100,13 @@ Command-line options: - New option: -nospendzeroconfchange to never spend unconfirmed change outputs - New option: -zapwallettxes to rebuild the wallet's transaction information - Rename option '-tor' to '-onion' to better reflect what it does -- Add '-disablewallet' mode to let darkcoind run entirely without wallet (when +- Add '-disablewallet' mode to let dashd run entirely without wallet (when built with wallet) - Update default '-rpcsslciphers' to include TLSv1.2 - make '-logtimestamps' default on and rework help-message - RPC client option: '-rpcwait', to wait for server start - Remove '-logtodebugger' -- Allow `-noserver` with darkcoind +- Allow `-noserver` with dashd - Make -proxy set all network types, avoiding a connect leak. @@ -206,7 +206,7 @@ GUI: - Optionally add third party links to transaction context menu - Check for !pixmap() before trying to export QR code (avoids crashes when no QR code could be generated) -- Fix "Start darkcoin on system login" +- Fix "Start dash on system login" - Switch to Qt 5.2.0 for Windows build - Add payment request (BIP 0070) support - Improve options dialog @@ -223,14 +223,14 @@ GUI: - Move initialization/shutdown to a thread. This prevents "Not responding" messages during startup. Also show a window during shutdown. - Don't regenerate autostart link on every client startup -- Show and store message of normal darkcoin:URI +- Show and store message of normal dash:URI - Fix richtext detection hang issue on very old Qt versions - OS X: Make use of the 10.8+ user notification center to display Growl-like notifications - OS X: Added NSHighResolutionCapable flag to Info.plist for better font rendering on Retina displays. -- OS X: Fix darkcoin-qt startup crash when clicking dock icon -- Linux: Fix Gnome darkcoin: URI handler +- OS X: Fix dash-qt startup crash when clicking dock icon +- Linux: Fix Gnome dash: URI handler Validation: diff --git a/doc/release-notes/release-notes-0.11.2.md b/doc/release-notes/release-notes-0.11.2.md index 5ec073e564..83e04cc120 100644 --- a/doc/release-notes/release-notes-0.11.2.md +++ b/doc/release-notes/release-notes-0.11.2.md @@ -10,7 +10,7 @@ Dash Core version 0.11.2 is now available from: Please report bugs using the issue tracker at github: - https://github.com/darkcoin/darkcoin/issues + https://github.com/dash/dash/issues Mining and relay policy enhancements @@ -59,7 +59,7 @@ How to Upgrade If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes for older versions), then run the installer (on Windows) or just copy over /Applications/Dash-Qt (on Mac) or -darkcoind/darkcoin-qt (on Linux). +dashd/dash-qt (on Linux). 0.11.2 changelog @@ -75,4 +75,4 @@ Thanks to who contributed to this release, at least: - *to do ..* -As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/darkcoin/). +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/dash/). diff --git a/doc/release-notes/release-notes-0.3.20.2.md b/doc/release-notes/release-notes-0.3.20.2.md index bf27de6eae..10ad225143 100644 --- a/doc/release-notes/release-notes-0.3.20.2.md +++ b/doc/release-notes/release-notes-0.3.20.2.md @@ -9,7 +9,7 @@ The Amazon Machine Images I used to do the builds are available: (mac build will be done soon) -If you have already downloaded version 0.3.20.1, please either add this to your darkcoin.conf file: +If you have already downloaded version 0.3.20.1, please either add this to your dash.conf file: maxsendbuffer=10000 maxreceivebuffer=10000 diff --git a/doc/release-notes/release-notes-0.8.0.md b/doc/release-notes/release-notes-0.8.0.md index cdfa8fb5b6..1825269f5c 100644 --- a/doc/release-notes/release-notes-0.8.0.md +++ b/doc/release-notes/release-notes-0.8.0.md @@ -61,7 +61,7 @@ contrib/spendfrom is a python-language command-line utility that demonstrates how to use the "raw transactions" JSON-RPC api to send coins received from particular addresses (also known as "coin control"). -New/changed settings (command-line or darkcoin.conf file) +New/changed settings (command-line or dash.conf file) -------------------------------------------------------- dbcache : controls LevelDB memory usage. diff --git a/doc/release-process.md b/doc/release-process.md index 175f9aea0c..befc9140b8 100644 --- a/doc/release-process.md +++ b/doc/release-process.md @@ -104,21 +104,21 @@ Release Process e2e403e1a08869c7eed4d4293bce13d51ec6a63592918b90ae215a0eceb44cb4 protobuf-win32-2.5.0-gitian-r4.zip a0999037e8b0ef9ade13efd88fee261ba401f5ca910068b7e0cd3262ba667db0 protobuf-win64-2.5.0-gitian-r4.zip - Build darkcoind and darkcoin-qt on Linux32, Linux64, and Win32: + Build dashd and dash-qt on Linux32, Linux64, and Win32: - ./bin/gbuild --commit darkcoin=v${VERSION} ../darkcoin/contrib/gitian-descriptors/gitian-linux.yml - ./bin/gsign --signer $SIGNER --release ${VERSION} --destination ../gitian.sigs/ ../darkcoin/contrib/gitian-descriptors/gitian-linux.yml + ./bin/gbuild --commit dash=v${VERSION} ../dash/contrib/gitian-descriptors/gitian-linux.yml + ./bin/gsign --signer $SIGNER --release ${VERSION} --destination ../gitian.sigs/ ../dash/contrib/gitian-descriptors/gitian-linux.yml pushd build/out - zip -r darkcoin-${VERSION}-linux-gitian.zip * - mv darkcoin-${VERSION}-linux-gitian.zip ../../../ + zip -r dash-${VERSION}-linux-gitian.zip * + mv dash-${VERSION}-linux-gitian.zip ../../../ popd - ./bin/gbuild --commit darkcoin=v${VERSION} ../darkcoin/contrib/gitian-descriptors/gitian-win.yml - ./bin/gsign --signer $SIGNER --release ${VERSION}-win --destination ../gitian.sigs/ ../darkcoin/contrib/gitian-descriptors/gitian-win.yml + ./bin/gbuild --commit dash=v${VERSION} ../dash/contrib/gitian-descriptors/gitian-win.yml + ./bin/gsign --signer $SIGNER --release ${VERSION}-win --destination ../gitian.sigs/ ../dash/contrib/gitian-descriptors/gitian-win.yml pushd build/out - zip -r darkcoin-${VERSION}-win-gitian.zip * - mv darkcoin-${VERSION}-win-gitian.zip ../../../ + zip -r dash-${VERSION}-win-gitian.zip * + mv dash-${VERSION}-win-gitian.zip ../../../ popd - ./bin/gbuild --commit darkcoin=v${VERSION} ../darkcoin/contrib/gitian-descriptors/gitian-osx-bitcoin.yml + ./bin/gbuild --commit dash=v${VERSION} ../dash/contrib/gitian-descriptors/gitian-osx-bitcoin.yml ./bin/gsign --signer $SIGNER --release ${VERSION}-osx --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-osx-bitcoin.yml pushd build/out mv Dash-Qt.dmg ../../../ diff --git a/doc/tor.md b/doc/tor.md index 7f869ad12c..64484da74a 100644 --- a/doc/tor.md +++ b/doc/tor.md @@ -1,4 +1,4 @@ -TOR SUPPORT IN DARKCOIN +TOR SUPPORT IN DASH ======================= It is possible to run Dash as a Tor hidden service, and connect to such services. @@ -10,7 +10,7 @@ port. See [Tor Project FAQ:TBBSocksPort](https://www.torproject.org/docs/faq.htm for how to properly configure Tor. -1. Run darkcoin behind a Tor proxy +1. Run dash behind a Tor proxy ---------------------------------- The first step is running Dash behind a Tor proxy. This will already make all @@ -42,31 +42,31 @@ outgoing connections be anonymized, but more is possible. An example how to start the client if the Tor proxy is running on local host on port 9050 and only allows .onion nodes to connect: - ./darkcoind -onion=127.0.0.1:9050 -onlynet=tor -listen=0 -addnode=ssapp53tmftyjmjb.onion + ./dashd -onion=127.0.0.1:9050 -onlynet=tor -listen=0 -addnode=ssapp53tmftyjmjb.onion In a typical situation, this suffices to run behind a Tor proxy: - ./darkcoind -proxy=127.0.0.1:9050 + ./dashd -proxy=127.0.0.1:9050 -2. Run a darkcoin hidden server +2. Run a dash hidden server ------------------------------- If you configure your Tor system accordingly, it is possible to make your node also reachable from the Tor network. Add these lines to your /etc/tor/torrc (or equivalent config file): - HiddenServiceDir /var/lib/tor/darkcoin-service/ + HiddenServiceDir /var/lib/tor/dash-service/ HiddenServicePort 9999 127.0.0.1:9999 HiddenServicePort 19999 127.0.0.1:19999 The directory can be different of course, but (both) port numbers should be equal to -your darkcoind's P2P listen port (9999 by default). +your dashd's P2P listen port (9999 by default). - -externalip=X You can tell darkcoin about its publicly reachable address using + -externalip=X You can tell dash about its publicly reachable address using this option, and this can be a .onion address. Given the above configuration, you can find your onion address in - /var/lib/tor/darkcoin-service/hostname. Onion addresses are given + /var/lib/tor/dash-service/hostname. Onion addresses are given preference for your node to advertize itself with, for connections coming from unroutable addresses (such as 127.0.0.1, where the Tor proxy typically runs). @@ -83,26 +83,26 @@ your darkcoind's P2P listen port (9999 by default). In a typical situation, where you're only reachable via Tor, this should suffice: - ./darkcoind -proxy=127.0.0.1:9050 -externalip=ssapp53tmftyjmjb.onion -listen + ./dashd -proxy=127.0.0.1:9050 -externalip=ssapp53tmftyjmjb.onion -listen (obviously, replace the Onion address with your own). If you don't care too much about hiding your node, and want to be reachable on IPv4 as well, additionally specify: - ./darkcoind ... -discover + ./dashd ... -discover and open port 9999 on your firewall (or use -upnp). If you only want to use Tor to reach onion addresses, but not use it as a proxy for normal IPv4/IPv6 communication, use: - ./darkcoind -onion=127.0.0.1:9050 -externalip=ssapp53tmftyjmjb.onion -discover + ./dashd -onion=127.0.0.1:9050 -externalip=ssapp53tmftyjmjb.onion -discover -3. List of known darkcoin Tor relays +3. List of known dash Tor relays ------------------------------------ -* [darkcoinie7ghp67.onion](http://darkcoinie7ghp67.onion/) +* [dashie7ghp67.onion](http://dashie7ghp67.onion/) * [drktalkwaybgxnoq.onion](http://drktalkwaybgxnoq.onion/) * [drkcoinooditvool.onion](http://drkcoinooditvool.onion/) * [darkcoxbtzggpmcc.onion](http://darkcoxbtzggpmcc.onion/) diff --git a/doc/translation_process.md b/doc/translation_process.md index f18c5f6688..fa22992da0 100644 --- a/doc/translation_process.md +++ b/doc/translation_process.md @@ -7,18 +7,18 @@ handle those translations. Files and Folders ----------------- -### darkcoin-qt.pro +### dash-qt.pro This file takes care of generating `.qm` files from `.ts` files. It is mostly automated. -### src/qt/darkcoin.qrc +### src/qt/dash.qrc This file must be updated whenever a new translation is added. Please note that files must end with `.qm`, not `.ts`. - locale/darkcoin_en.qm + locale/dash_en.qm ... @@ -26,25 +26,25 @@ files must end with `.qm`, not `.ts`. This directory contains all translations. Filenames must adhere to this format: - darkcoin_xx_YY.ts or darkcoin_xx.ts + dash_xx_YY.ts or dash_xx.ts -#### darkcoin_en.ts (Source file) +#### dash_en.ts (Source file) -`src/qt/locale/darkcoin_en.ts` is treated in a special way. It is used as the +`src/qt/locale/dash_en.ts` is treated in a special way. It is used as the source for all other translations. Whenever a string in the code is changed this file must be updated to reflect those changes. A custom script is used to extract strings from the non-Qt parts. This script makes use of `gettext`, so make sure that utility is installed (ie, `apt-get install gettext` on Ubuntu/Debian). Once this has been updated, lupdate-qt4 (included in the Qt SDK) -is used to update darkcoin_en.ts. Simply run: +is used to update dash_en.ts. Simply run: - lupdate-qt4 ./contrib/darkcoin-qt.pro -ts ./src/qt/locale/darkcoin_en.ts + lupdate-qt4 ./contrib/dash-qt.pro -ts ./src/qt/locale/dash_en.ts ##### Handling of plurals in the source file When new plurals are added to the source file, it's important to do the following steps: -1. Open darkcoin_en.ts in Qt Linguist (also included in the Qt SDK) +1. Open dash_en.ts in Qt Linguist (also included in the Qt SDK) 2. Search for `%n`, which will take you to the parts in the translation that use plurals 3. Look for empty `English Translation (Singular)` and `English Translation (Plural)` fields 4. Add the appropriate strings for the singular and plural form of the base string @@ -60,7 +60,7 @@ in Transifex and can be translated. To create the pull-request you have to do: - git add src/qt/darkcoinstrings.cpp src/qt/locale/darkcoin_en.ts + git add src/qt/dashstrings.cpp src/qt/locale/dash_en.ts git commit Syncing with Transifex @@ -68,7 +68,7 @@ Syncing with Transifex We are using https://transifex.com as a frontend for translating the client. -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ The "Transifex client" (see: http://support.transifex.com/customer/portal/topics/440187-transifex-client/articles) is used to fetch new translations from Transifex. The configuration for this client (`.tx/config`) @@ -80,8 +80,8 @@ postprocessing steps before committing the translations. ### Fetching new translations 1. `python contrib/devtools/update-translations.py` -2. update `src/qt/darkcoin.qrc` manually or via - `ls src/qt/locale/*ts|xargs -n1 basename|sed 's/\(darkcoin_\(.*\)\).ts/ locale\/\1.qm<\/file>/'` +2. update `src/qt/dash.qrc` manually or via + `ls src/qt/locale/*ts|xargs -n1 basename|sed 's/\(dash_\(.*\)\).ts/ locale\/\1.qm<\/file>/'` 3. update `src/qt/Makefile.am` manually or via - `ls src/qt/locale/*ts|xargs -n1 basename|sed 's/\(darkcoin_\(.*\)\).ts/ locale\/\1.ts \\/'` + `ls src/qt/locale/*ts|xargs -n1 basename|sed 's/\(dash_\(.*\)\).ts/ locale\/\1.ts \\/'` 4. `git add` new translations from `src/qt/locale/` diff --git a/doc/unit-tests.md b/doc/unit-tests.md index fe4104a18c..409c231773 100644 --- a/doc/unit-tests.md +++ b/doc/unit-tests.md @@ -6,7 +6,7 @@ and tests weren't explicitly disabled. After configuring, they can be run with 'make check'. -To run the bitcoind tests manually, launch src/test/test_darkcoin . +To run the bitcoind tests manually, launch src/test/test_dash . To add more bitcoind tests, add `BOOST_AUTO_TEST_CASE` functions to the existing .cpp files in the test/ directory or add new .cpp files that diff --git a/qa/pull-tester/build-tests.sh.in b/qa/pull-tester/build-tests.sh.in index 23098f1194..d20c80eaba 100755 --- a/qa/pull-tester/build-tests.sh.in +++ b/qa/pull-tester/build-tests.sh.in @@ -59,11 +59,11 @@ if [ -d "$OUT_DIR" -a -w "$OUT_DIR" ]; then set +e # Windows: cp @abs_top_srcdir@/win32-build/src/bitcoind.exe $OUT_DIR/bitcoind.exe - cp @abs_top_srcdir@/win32-build/src/test/test_darkcoin.exe $OUT_DIR/test_darkcoin.exe + cp @abs_top_srcdir@/win32-build/src/test/test_dash.exe $OUT_DIR/test_dash.exe cp @abs_top_srcdir@/win32-build/src/qt/bitcoind-qt.exe $OUT_DIR/bitcoin-qt.exe # Linux: cp @abs_top_srcdir@/linux-build/src/bitcoind $OUT_DIR/bitcoind - cp @abs_top_srcdir@/linux-build/src/test/test_darkcoin $OUT_DIR/test_darkcoin + cp @abs_top_srcdir@/linux-build/src/test/test_dash $OUT_DIR/test_dash cp @abs_top_srcdir@/linux-build/src/qt/bitcoind-qt $OUT_DIR/bitcoin-qt set -e fi diff --git a/qa/pull-tester/run-bitcoind-for-test.sh.in b/qa/pull-tester/run-bitcoind-for-test.sh.in index a087d88ca6..6661259da2 100755 --- a/qa/pull-tester/run-bitcoind-for-test.sh.in +++ b/qa/pull-tester/run-bitcoind-for-test.sh.in @@ -3,14 +3,14 @@ # Distributed under the MIT/X11 software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. # -DATADIR="@abs_top_builddir@/.darkcoin" +DATADIR="@abs_top_builddir@/.dash" rm -rf "$DATADIR" mkdir -p "$DATADIR"/regtest touch "$DATADIR/regtest/debug.log" tail -q -n 1 -F "$DATADIR/regtest/debug.log" | grep -m 1 -q "Done loading" & WAITER=$! PORT=`expr $BASHPID + 10000` -"@abs_top_builddir@/src/darkcoind@EXEEXT@" -connect=0.0.0.0 -datadir="$DATADIR" -rpcuser=user -rpcpassword=pass -listen -keypool=3 -debug -debug=net -logtimestamps -port=$PORT -regtest -rpcport=`expr $PORT + 1` & +"@abs_top_builddir@/src/dashd@EXEEXT@" -connect=0.0.0.0 -datadir="$DATADIR" -rpcuser=user -rpcpassword=pass -listen -keypool=3 -debug -debug=net -logtimestamps -port=$PORT -regtest -rpcport=`expr $PORT + 1` & BITCOIND=$! #Install a watchdog. diff --git a/qa/rpc-tests/util.py b/qa/rpc-tests/util.py index 1032bf2a3c..cd904de9d0 100644 --- a/qa/rpc-tests/util.py +++ b/qa/rpc-tests/util.py @@ -62,26 +62,26 @@ def initialize_chain(test_dir): """ Create (or copy from cache) a 200-block-long chain and 4 wallets. - darkcoind and darkcoin-cli must be in search path. + dashd and dash-cli must be in search path. """ if not os.path.isdir(os.path.join("cache", "node0")): devnull = open("/dev/null", "w+") - # Create cache directories, run darkcoinds: + # Create cache directories, run dashds: for i in range(4): datadir = os.path.join("cache", "node"+str(i)) os.makedirs(datadir) - with open(os.path.join(datadir, "darkcoin.conf"), 'w') as f: + with open(os.path.join(datadir, "dash.conf"), 'w') as f: f.write("regtest=1\n"); f.write("rpcuser=rt\n"); f.write("rpcpassword=rt\n"); f.write("port="+str(START_P2P_PORT+i)+"\n"); f.write("rpcport="+str(START_RPC_PORT+i)+"\n"); - args = [ "darkcoind", "-keypool=1", "-datadir="+datadir ] + args = [ "dashd", "-keypool=1", "-datadir="+datadir ] if i > 0: args.append("-connect=127.0.0.1:"+str(START_P2P_PORT)) bitcoind_processes.append(subprocess.Popen(args)) - subprocess.check_call([ "darkcoin-cli", "-datadir="+datadir, + subprocess.check_call([ "dash-cli", "-datadir="+datadir, "-rpcwait", "getblockcount"], stdout=devnull) devnull.close() rpcs = [] @@ -114,13 +114,13 @@ def initialize_chain(test_dir): shutil.copytree(from_dir, to_dir) def start_nodes(num_nodes, dir): - # Start darkcoinds, and wait for RPC interface to be up and running: + # Start dashds, and wait for RPC interface to be up and running: devnull = open("/dev/null", "w+") for i in range(num_nodes): datadir = os.path.join(dir, "node"+str(i)) - args = [ "darkcoind", "-datadir="+datadir ] + args = [ "dashd", "-datadir="+datadir ] bitcoind_processes.append(subprocess.Popen(args)) - subprocess.check_call([ "darkcoin-cli", "-datadir="+datadir, + subprocess.check_call([ "dash-cli", "-datadir="+datadir, "-rpcwait", "getblockcount"], stdout=devnull) devnull.close() # Create&return JSON-RPC connections diff --git a/qa/rpc-tests/util.sh b/qa/rpc-tests/util.sh index b030ea3303..ea92cfe422 100644 --- a/qa/rpc-tests/util.sh +++ b/qa/rpc-tests/util.sh @@ -12,7 +12,7 @@ function echoerr { # Usage: ExtractKey "" # Warning: this will only work for the very-well-behaved -# JSON produced by darkcoind, do NOT use it to try to +# JSON produced by dashd, do NOT use it to try to # parse arbitrary/nested/etc JSON. function ExtractKey { echo $2 | tr -d ' "{}\n' | awk -v RS=',' -F: "\$1 ~ /$1/ { print \$2}" @@ -21,7 +21,7 @@ function ExtractKey { function CreateDataDir { DIR=$1 mkdir -p $DIR - CONF=$DIR/darkcoin.conf + CONF=$DIR/dash.conf echo "regtest=1" >> $CONF echo "keypool=2" >> $CONF echo "rpcuser=rt" >> $CONF diff --git a/qa/rpc-tests/walletbackup.sh b/qa/rpc-tests/walletbackup.sh index c8f2645f41..8c81b62421 100755 --- a/qa/rpc-tests/walletbackup.sh +++ b/qa/rpc-tests/walletbackup.sh @@ -40,8 +40,8 @@ if [ $# -lt 1 ]; then exit 1 fi -BITCOIND=${1}/darkcoind -CLI=${1}/darkcoin-cli +BITCOIND=${1}/dashd +CLI=${1}/dash-cli DIR="${BASH_SOURCE%/*}" SENDANDWAIT="${DIR}/send.sh" @@ -65,7 +65,7 @@ B4PID=$! function CreateConfDir { DIR=$1 mkdir -p $DIR - CONF=$DIR/darkcoin.conf + CONF=$DIR/dash.conf echo "regtest=1" >> $CONF echo "rpcuser=rt" >> $CONF echo "rpcpassword=rt" >> $CONF diff --git a/share/pixmaps/darkcoin128.png b/share/pixmaps/dash128.png similarity index 100% rename from share/pixmaps/darkcoin128.png rename to share/pixmaps/dash128.png diff --git a/share/pixmaps/darkcoin16.xpm b/share/pixmaps/dash16.xpm similarity index 100% rename from share/pixmaps/darkcoin16.xpm rename to share/pixmaps/dash16.xpm diff --git a/share/pixmaps/darkcoin32.xpm b/share/pixmaps/dash32.xpm similarity index 100% rename from share/pixmaps/darkcoin32.xpm rename to share/pixmaps/dash32.xpm diff --git a/share/qt/Info.plist.in b/share/qt/Info.plist.in index 322cbb307a..d069df62ee 100644 --- a/share/qt/Info.plist.in +++ b/share/qt/Info.plist.in @@ -32,7 +32,7 @@ Dash-Qt CFBundleIdentifier - org.darkcoinfoundation.Dash-Qt + org.dashfoundation.Dash-Qt CFBundleURLTypes @@ -40,10 +40,10 @@ CFBundleTypeRole Editor CFBundleURLName - io.darkcoin.DarkcoinPayment + io.dash.DarkcoinPayment CFBundleURLSchemes - darkcoin + dash @@ -52,7 +52,7 @@ UTTypeIdentifier - io.darkcoin.paymentrequest + io.dash.paymentrequest UTTypeDescription Dash payment request UTTypeConformsTo @@ -62,10 +62,10 @@ UTTypeTagSpecification public.mime-type - application/x-darkcoin-payment-request + application/x-dash-payment-request public.filename-extension - darkcoinpaymentrequest + dashpaymentrequest @@ -78,7 +78,7 @@ Editor LSItemContentTypes - io.darkcoin.paymentrequest + io.dash.paymentrequest LSHandlerRank Owner diff --git a/share/qt/extract_strings_qt.py b/share/qt/extract_strings_qt.py index 728f279e02..8e5e3d9fa3 100755 --- a/share/qt/extract_strings_qt.py +++ b/share/qt/extract_strings_qt.py @@ -8,7 +8,7 @@ import glob import operator import os -OUT_CPP="src/qt/darkcoinstrings.cpp" +OUT_CPP="src/qt/dashstrings.cpp" EMPTY=['""'] def parse_po(text): @@ -72,10 +72,10 @@ f.write(""" #define UNUSED #endif """) -f.write('static const char UNUSED *darkcoin_strings[] = {\n') +f.write('static const char UNUSED *dash_strings[] = {\n') messages.sort(key=operator.itemgetter(0)) for (msgid, msgstr) in messages: if msgid != EMPTY: - f.write('QT_TRANSLATE_NOOP("darkcoin-core", %s),\n' % ('\n'.join(msgid))) + f.write('QT_TRANSLATE_NOOP("dash-core", %s),\n' % ('\n'.join(msgid))) f.write('};\n') f.close() diff --git a/share/setup.nsi.in b/share/setup.nsi.in index c13c62f4a3..8c73b8fe0e 100644 --- a/share/setup.nsi.in +++ b/share/setup.nsi.in @@ -20,7 +20,7 @@ SetCompressor /SOLID lzma !define MUI_STARTMENUPAGE_REGISTRY_KEY ${REGKEY} !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME StartMenuGroup !define MUI_STARTMENUPAGE_DEFAULTFOLDER "@PACKAGE_NAME@" -!define MUI_FINISHPAGE_RUN $INSTDIR\darkcoin-qt.exe +!define MUI_FINISHPAGE_RUN $INSTDIR\dash-qt.exe !define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico" !define MUI_UNWELCOMEFINISHPAGE_BITMAP "@abs_top_srcdir@/share/pixmaps/nsis-wizard.bmp" !define MUI_UNFINISHPAGE_NOAUTOCLOSE @@ -48,7 +48,7 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile @abs_top_srcdir@/darkcoin-${VERSION}-win@WINDOWS_BITS@-setup.exe +OutFile @abs_top_srcdir@/dash-${VERSION}-win@WINDOWS_BITS@-setup.exe !if "@WINDOWS_BITS@" == "64" InstallDir $PROGRAMFILES64\Dash !else @@ -73,19 +73,19 @@ ShowUninstDetails show Section -Main SEC0000 SetOutPath $INSTDIR SetOverwrite on - File @abs_top_srcdir@/release/darkcoin-qt.exe + File @abs_top_srcdir@/release/dash-qt.exe File /oname=COPYING.txt @abs_top_srcdir@/COPYING File /oname=readme.txt @abs_top_srcdir@/doc/README_windows.txt SetOutPath $INSTDIR\daemon - File @abs_top_srcdir@/release/darkcoind.exe - File @abs_top_srcdir@/release/darkcoin-cli.exe + File @abs_top_srcdir@/release/dashd.exe + File @abs_top_srcdir@/release/dash-cli.exe SetOutPath $INSTDIR\doc File /r @abs_top_srcdir@/doc\*.* SetOutPath $INSTDIR WriteRegStr HKCU "${REGKEY}\Components" Main 1 - # Remove old wxwidgets-based-darkcoin executable and locales: - Delete /REBOOTOK $INSTDIR\darkcoin.exe + # Remove old wxwidgets-based-dash executable and locales: + Delete /REBOOTOK $INSTDIR\dash.exe RMDir /r /REBOOTOK $INSTDIR\locale SectionEnd @@ -95,7 +95,7 @@ Section -post SEC0001 WriteUninstaller $INSTDIR\uninstall.exe !insertmacro MUI_STARTMENU_WRITE_BEGIN Application CreateDirectory $SMPROGRAMS\$StartMenuGroup - CreateShortcut "$SMPROGRAMS\$StartMenuGroup\$(^Name).lnk" $INSTDIR\darkcoin-qt.exe + CreateShortcut "$SMPROGRAMS\$StartMenuGroup\$(^Name).lnk" $INSTDIR\dash-qt.exe CreateShortcut "$SMPROGRAMS\$StartMenuGroup\Uninstall $(^Name).lnk" $INSTDIR\uninstall.exe !insertmacro MUI_STARTMENU_WRITE_END WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" DisplayName "$(^Name)" @@ -106,10 +106,10 @@ Section -post SEC0001 WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" UninstallString $INSTDIR\uninstall.exe WriteRegDWORD HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" NoModify 1 WriteRegDWORD HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" NoRepair 1 - WriteRegStr HKCR "darkcoin" "URL Protocol" "" - WriteRegStr HKCR "darkcoin" "" "URL:Dash" - WriteRegStr HKCR "darkcoin\DefaultIcon" "" $INSTDIR\darkcoin-qt.exe - WriteRegStr HKCR "darkcoin\shell\open\command" "" '"$INSTDIR\darkcoin-qt.exe" "%1"' + WriteRegStr HKCR "dash" "URL Protocol" "" + WriteRegStr HKCR "dash" "" "URL:Dash" + WriteRegStr HKCR "dash\DefaultIcon" "" $INSTDIR\dash-qt.exe + WriteRegStr HKCR "dash\shell\open\command" "" '"$INSTDIR\dash-qt.exe" "%1"' SectionEnd # Macro for selecting uninstaller sections @@ -127,7 +127,7 @@ done${UNSECTION_ID}: # Uninstaller sections Section /o -un.Main UNSEC0000 - Delete /REBOOTOK $INSTDIR\darkcoin-qt.exe + Delete /REBOOTOK $INSTDIR\dash-qt.exe Delete /REBOOTOK $INSTDIR\COPYING.txt Delete /REBOOTOK $INSTDIR\readme.txt RMDir /r /REBOOTOK $INSTDIR\daemon @@ -147,7 +147,7 @@ Section -un.post UNSEC0001 DeleteRegValue HKCU "${REGKEY}" Path DeleteRegKey /IfEmpty HKCU "${REGKEY}\Components" DeleteRegKey /IfEmpty HKCU "${REGKEY}" - DeleteRegKey HKCR "darkcoin" + DeleteRegKey HKCR "dash" RmDir /REBOOTOK $SMPROGRAMS\$StartMenuGroup RmDir /REBOOTOK $INSTDIR Push $R0 diff --git a/src/Makefile.am b/src/Makefile.am index 251cb47971..560db65d48 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -3,27 +3,27 @@ include Makefile.include AM_CPPFLAGS += -I$(builddir) noinst_LIBRARIES = \ - libdarkcoin_server.a \ - libdarkcoin_common.a \ - libdarkcoin_cli.a + libdash_server.a \ + libdash_common.a \ + libdash_cli.a if ENABLE_WALLET -noinst_LIBRARIES += libdarkcoin_wallet.a +noinst_LIBRARIES += libdash_wallet.a endif bin_PROGRAMS = if BUILD_BITCOIND - bin_PROGRAMS += darkcoind + bin_PROGRAMS += dashd endif if BUILD_BITCOIN_CLI - bin_PROGRAMS += darkcoin-cli + bin_PROGRAMS += dash-cli endif SUBDIRS = . $(BUILD_QT) $(BUILD_TEST) DIST_SUBDIRS = . qt test .PHONY: FORCE -# darkcoin core # +# dash core # BITCOIN_CORE_H = \ activemasternode.h \ addrman.h \ @@ -109,7 +109,7 @@ obj/build.h: FORCE $(abs_top_srcdir) version.o: obj/build.h -libdarkcoin_server_a_SOURCES = \ +libdash_server_a_SOURCES = \ activemasternode.cpp \ addrman.cpp \ alert.cpp \ @@ -135,7 +135,7 @@ libdarkcoin_server_a_SOURCES = \ $(JSON_H) \ $(BITCOIN_CORE_H) -libdarkcoin_wallet_a_SOURCES = \ +libdash_wallet_a_SOURCES = \ activemasternode.cpp \ db.cpp \ crypter.cpp \ @@ -146,7 +146,7 @@ libdarkcoin_wallet_a_SOURCES = \ keepass.cpp \ $(BITCOIN_CORE_H) -libdarkcoin_common_a_SOURCES = \ +libdash_common_a_SOURCES = \ activemasternode.cpp \ base58.cpp \ allocators.cpp \ @@ -184,47 +184,47 @@ libdarkcoin_common_a_SOURCES = \ $(BITCOIN_CORE_H) if GLIBC_BACK_COMPAT -libdarkcoin_common_a_SOURCES += compat/glibc_compat.cpp -libdarkcoin_common_a_SOURCES += compat/glibcxx_compat.cpp +libdash_common_a_SOURCES += compat/glibc_compat.cpp +libdash_common_a_SOURCES += compat/glibcxx_compat.cpp endif -libdarkcoin_cli_a_SOURCES = \ +libdash_cli_a_SOURCES = \ rpcclient.cpp \ $(BITCOIN_CORE_H) -nodist_libdarkcoin_common_a_SOURCES = $(top_srcdir)/src/obj/build.h +nodist_libdash_common_a_SOURCES = $(top_srcdir)/src/obj/build.h # -# darkcoind binary # -darkcoind_LDADD = \ - libdarkcoin_server.a \ - libdarkcoin_cli.a \ - libdarkcoin_common.a \ +# dashd binary # +dashd_LDADD = \ + libdash_server.a \ + libdash_cli.a \ + libdash_common.a \ $(LIBLEVELDB) \ $(LIBMEMENV) if ENABLE_WALLET -darkcoind_LDADD += libdarkcoin_wallet.a +dashd_LDADD += libdash_wallet.a endif -darkcoind_SOURCES = darkcoind.cpp +dashd_SOURCES = dashd.cpp # if TARGET_WINDOWS -darkcoind_SOURCES += darkcoind-res.rc +dashd_SOURCES += dashd-res.rc endif AM_CPPFLAGS += $(BDB_CPPFLAGS) -darkcoind_LDADD += $(BOOST_LIBS) $(BDB_LIBS) +dashd_LDADD += $(BOOST_LIBS) $(BDB_LIBS) -# darkcoin-cli binary # -darkcoin_cli_LDADD = \ - libdarkcoin_cli.a \ - libdarkcoin_common.a \ +# dash-cli binary # +dash_cli_LDADD = \ + libdash_cli.a \ + libdash_common.a \ $(BOOST_LIBS) -darkcoin_cli_SOURCES = darkcoin-cli.cpp +dash_cli_SOURCES = dash-cli.cpp # if TARGET_WINDOWS -darkcoin_cli_SOURCES += darkcoin-cli-res.rc +dash_cli_SOURCES += dash-cli-res.rc endif # NOTE: This dependency is not strictly necessary, but without it make may try to build both in parallel, which breaks the LevelDB build system in a race @@ -235,7 +235,7 @@ leveldb/%.a: CC="$(CC)" PLATFORM=$(TARGET_OS) AR="$(AR)" $(LEVELDB_TARGET_FLAGS) \ OPT="$(CXXFLAGS) $(CPPFLAGS)" -qt/darkcoinstrings.cpp: $(libdarkcoin_server_a_SOURCES) $(libdarkcoin_common_a_SOURCES) $(libdarkcoin_cli_a_SOURCES) +qt/dashstrings.cpp: $(libdash_server_a_SOURCES) $(libdash_common_a_SOURCES) $(libdash_cli_a_SOURCES) @test -n $(XGETTEXT) || echo "xgettext is required for updating translations" @cd $(top_srcdir); XGETTEXT=$(XGETTEXT) share/qt/extract_strings_qt.py diff --git a/src/Makefile.include b/src/Makefile.include index 499c69dfbe..7b9639852f 100644 --- a/src/Makefile.include +++ b/src/Makefile.include @@ -12,11 +12,11 @@ AM_CPPFLAGS = $(INCLUDES) \ AM_CPPFLAGS += $(LEVELDB_CPPFLAGS) AM_LDFLAGS = $(PTHREAD_CFLAGS) -LIBBITCOIN_SERVER=$(top_builddir)/src/libdarkcoin_server.a -LIBBITCOIN_WALLET=$(top_builddir)/src/libdarkcoin_wallet.a -LIBBITCOIN_COMMON=$(top_builddir)/src/libdarkcoin_common.a -LIBBITCOIN_CLI=$(top_builddir)/src/libdarkcoin_cli.a -LIBBITCOINQT=$(top_builddir)/src/qt/libdarkcoinqt.a +LIBBITCOIN_SERVER=$(top_builddir)/src/libdash_server.a +LIBBITCOIN_WALLET=$(top_builddir)/src/libdash_wallet.a +LIBBITCOIN_COMMON=$(top_builddir)/src/libdash_common.a +LIBBITCOIN_CLI=$(top_builddir)/src/libdash_cli.a +LIBBITCOINQT=$(top_builddir)/src/qt/libdashqt.a $(LIBBITCOIN): $(MAKE) -C $(top_builddir)/src $(@F) diff --git a/src/activemasternode.cpp b/src/activemasternode.cpp index 05207235ae..c37fac0824 100644 --- a/src/activemasternode.cpp +++ b/src/activemasternode.cpp @@ -105,7 +105,7 @@ void CActiveMasternode::ManageStatus() return; } - /* donations are not supported in darkcoin.conf */ + /* donations are not supported in dash.conf */ CScript donationAddress = CScript(); int donationPercentage = 0; diff --git a/src/chainparams.cpp b/src/chainparams.cpp index b155de8ffe..7ebc660bb9 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -63,7 +63,7 @@ public: assert(genesis.hashMerkleRoot == uint256("0xe0028eb9648db56b1ac77cf090b99048a8007e2bb64b68f092c03c7f56a662c7")); vSeeds.push_back(CDNSSeedData("dashcurrency.com", "dnsseed.dashcurrency.com")); - vSeeds.push_back(CDNSSeedData("darkcoin.qa", "dnsseed.darkcoin.qa")); + vSeeds.push_back(CDNSSeedData("dash.qa", "dnsseed.dash.qa")); vSeeds.push_back(CDNSSeedData("masternode.io", "dnsseed.masternode.io")); base58Prefixes[PUBKEY_ADDRESS] = list_of( 76); // Dash addresses start with 'X' @@ -131,15 +131,15 @@ public: vFixedSeeds.clear(); vSeeds.clear(); vSeeds.push_back(CDNSSeedData("dashcurrency.com", "testnet-seed.dashcurrency.com")); - vSeeds.push_back(CDNSSeedData("darkcoin.qa", "testnet-seed.darkcoin.qa")); + vSeeds.push_back(CDNSSeedData("dash.qa", "testnet-seed.dash.qa")); vSeeds.push_back(CDNSSeedData("masternode.io", "test.dnsseed.masternode.io")); - base58Prefixes[PUBKEY_ADDRESS] = list_of(139); // Testnet darkcoin addresses start with 'x' or 'y' - base58Prefixes[SCRIPT_ADDRESS] = list_of( 19); // Testnet darkcoin script addresses start with '8' or '9' + base58Prefixes[PUBKEY_ADDRESS] = list_of(139); // Testnet dash addresses start with 'x' or 'y' + base58Prefixes[SCRIPT_ADDRESS] = list_of( 19); // Testnet dash script addresses start with '8' or '9' base58Prefixes[SECRET_KEY] = list_of(239); // Testnet private keys start with '9' or 'c' (Bitcoin defaults) - base58Prefixes[EXT_PUBLIC_KEY] = list_of(0x3a)(0x80)(0x61)(0xa0); // Testnet darkcoin BIP32 pubkeys start with 'DRKV' - base58Prefixes[EXT_SECRET_KEY] = list_of(0x3a)(0x80)(0x58)(0x37); // Testnet darkcoin BIP32 prvkeys start with 'DRKP' - base58Prefixes[EXT_COIN_TYPE] = list_of(0x80000001); // Testnet darkcoin BIP44 coin type is '5' (All coin's testnet default) + base58Prefixes[EXT_PUBLIC_KEY] = list_of(0x3a)(0x80)(0x61)(0xa0); // Testnet dash BIP32 pubkeys start with 'DRKV' + base58Prefixes[EXT_SECRET_KEY] = list_of(0x3a)(0x80)(0x58)(0x37); // Testnet dash BIP32 prvkeys start with 'DRKP' + base58Prefixes[EXT_COIN_TYPE] = list_of(0x80000001); // Testnet dash BIP44 coin type is '5' (All coin's testnet default) } virtual Network NetworkID() const { return CChainParams::TESTNET; } }; diff --git a/src/clientversion.h b/src/clientversion.h index 894b54dd6e..43294d8ae7 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -2,13 +2,13 @@ #define CLIENTVERSION_H #if defined(HAVE_CONFIG_H) -#include "darkcoin-config.h" +#include "dash-config.h" #else // // client versioning and copyright year // -// These need to be macros, as version.cpp's and darkcoin-qt.rc's voodoo requires it +// These need to be macros, as version.cpp's and dash-qt.rc's voodoo requires it #define CLIENT_VERSION_MAJOR 0 #define CLIENT_VERSION_MINOR 11 #define CLIENT_VERSION_REVISION 2 diff --git a/src/coins.h b/src/coins.h index 99d4b37a6b..3da9d5d914 100644 --- a/src/coins.h +++ b/src/coins.h @@ -334,7 +334,7 @@ public: // Calculate the size of the cache (in number of transactions) unsigned int GetCacheSize(); - /** Amount of darkcoins coming in to a transaction + /** Amount of dashs coming in to a transaction Note that lightweight clients may not know anything besides the hash of previous transactions, so may not be able to calculate this. diff --git a/src/compat/glibc_compat.cpp b/src/compat/glibc_compat.cpp index bc19333544..e8eef7eea5 100644 --- a/src/compat/glibc_compat.cpp +++ b/src/compat/glibc_compat.cpp @@ -1,4 +1,4 @@ -#include "darkcoin-config.h" +#include "dash-config.h" #include #include diff --git a/src/darksend.cpp b/src/darksend.cpp index 5c5e4d2dcd..506d1b0bf7 100644 --- a/src/darksend.cpp +++ b/src/darksend.cpp @@ -38,7 +38,7 @@ CActiveMasternode activeMasternode; // Count peers we've requested the list from int RequestedMasterNodeList = 0; -/* *** BEGIN DARKSEND MAGIC - DARKCOIN ********** +/* *** BEGIN DARKSEND MAGIC - DASH ********** Copyright (c) 2014-2015, Dash Developers eduffield - evan@dashcurrency.com udjinm6 - udjinm6@dashcurrency.com @@ -2604,7 +2604,7 @@ void ThreadCheckDarkSendPool() if(fLiteMode) return; //disable all Darksend/Masternode related functionality // Make this thread recognisable as the wallet flushing thread - RenameThread("darkcoin-darksend"); + RenameThread("dash-darksend"); unsigned int c = 0; std::string errorMessage; diff --git a/src/darksend.h b/src/darksend.h index 1f24ee833a..9d25b7afa6 100644 --- a/src/darksend.h +++ b/src/darksend.h @@ -534,7 +534,7 @@ public: void GetDenominationsToString(int nDenom, std::string& strDenom); - /// Get the denominations for a specific amount of darkcoin. + /// Get the denominations for a specific amount of dash. int GetDenominationsByAmount(int64_t nAmount, int nDenomTarget=0); int GetDenominationsByAmounts(std::vector& vecAmount); diff --git a/src/darkcoin-cli-res.rc b/src/dash-cli-res.rc similarity index 93% rename from src/darkcoin-cli-res.rc rename to src/dash-cli-res.rc index 4f3114132f..7693271cb7 100644 --- a/src/darkcoin-cli-res.rc +++ b/src/dash-cli-res.rc @@ -20,10 +20,10 @@ BEGIN VALUE "CompanyName", "Dash" VALUE "FileDescription", "Dash-cli (OSS RPC client for Dash)" VALUE "FileVersion", VER_FILEVERSION_STR - VALUE "InternalName", "darkcoin-cli" + VALUE "InternalName", "dash-cli" VALUE "LegalCopyright", COPYRIGHT_STR VALUE "LegalTrademarks1", "Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php." - VALUE "OriginalFilename", "darkcoin-cli.exe" + VALUE "OriginalFilename", "dash-cli.exe" VALUE "ProductName", "Dash-cli" VALUE "ProductVersion", VER_PRODUCTVERSION_STR END diff --git a/src/darkcoin-cli.cpp b/src/dash-cli.cpp similarity index 89% rename from src/darkcoin-cli.cpp rename to src/dash-cli.cpp index 1f50e69bea..f7414fda45 100644 --- a/src/darkcoin-cli.cpp +++ b/src/dash-cli.cpp @@ -45,9 +45,9 @@ static bool AppInitRPC(int argc, char* argv[]) // First part of help message is specific to RPC client std::string strUsage = _("Dash Core RPC client version") + " " + FormatFullVersion() + "\n\n" + _("Usage:") + "\n" + - " darkcoin-cli [options] [params] " + _("Send command to Dash Core") + "\n" + - " darkcoin-cli [options] help " + _("List commands") + "\n" + - " darkcoin-cli [options] help " + _("Get help for a command") + "\n"; + " dash-cli [options] [params] " + _("Send command to Dash Core") + "\n" + + " dash-cli [options] help " + _("List commands") + "\n" + + " dash-cli [options] help " + _("Get help for a command") + "\n"; strUsage += "\n" + HelpMessageCli(true); diff --git a/src/darkcoind-res.rc b/src/dashd-res.rc similarity index 93% rename from src/darkcoind-res.rc rename to src/dashd-res.rc index 6ca1cd0edf..cd9d90349f 100644 --- a/src/darkcoind-res.rc +++ b/src/dashd-res.rc @@ -20,10 +20,10 @@ BEGIN VALUE "CompanyName", "Dash" VALUE "FileDescription", "Darkcoind (OSS daemon/client for Dash)" VALUE "FileVersion", VER_FILEVERSION_STR - VALUE "InternalName", "darkcoind" + VALUE "InternalName", "dashd" VALUE "LegalCopyright", COPYRIGHT_STR VALUE "LegalTrademarks1", "Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php." - VALUE "OriginalFilename", "darkcoind.exe" + VALUE "OriginalFilename", "dashd.exe" VALUE "ProductName", "Darkcoind" VALUE "ProductVersion", VER_PRODUCTVERSION_STR END diff --git a/src/darkcoind.cpp b/src/dashd.cpp similarity index 88% rename from src/darkcoind.cpp rename to src/dashd.cpp index 090c361e3b..4d9cd956c1 100644 --- a/src/darkcoind.cpp +++ b/src/dashd.cpp @@ -65,7 +65,7 @@ bool AppInit(int argc, char* argv[]) // // Parameters // - // If Qt is used, parameters/darkcoin.conf are parsed in qt/darkcoin.cpp's main() + // If Qt is used, parameters/dash.conf are parsed in qt/dash.cpp's main() ParseParameters(argc, argv); if (!boost::filesystem::is_directory(GetDataDir(false))) { @@ -95,14 +95,14 @@ bool AppInit(int argc, char* argv[]) if (mapArgs.count("-?") || mapArgs.count("--help")) { - // First part of help message is specific to darkcoind / RPC client + // First part of help message is specific to dashd / RPC client std::string strUsage = _("Dash Core Daemon") + " " + _("version") + " " + FormatFullVersion() + "\n\n" + _("Usage:") + "\n" + - " darkcoind [options] " + _("Start Dash Core Daemon") + "\n" + - _("Usage (deprecated, use darkcoin-cli):") + "\n" + - " darkcoind [options] [params] " + _("Send command to Dash Core") + "\n" + - " darkcoind [options] help " + _("List commands") + "\n" + - " darkcoind [options] help " + _("Get help for a command") + "\n"; + " dashd [options] " + _("Start Dash Core Daemon") + "\n" + + _("Usage (deprecated, use dash-cli):") + "\n" + + " dashd [options] [params] " + _("Send command to Dash Core") + "\n" + + " dashd [options] help " + _("List commands") + "\n" + + " dashd [options] help " + _("Get help for a command") + "\n"; strUsage += "\n" + HelpMessage(HMM_BITCOIND); strUsage += "\n" + HelpMessageCli(false); @@ -114,7 +114,7 @@ bool AppInit(int argc, char* argv[]) // Command-line RPC bool fCommandLine = false; for (int i = 1; i < argc; i++) - if (!IsSwitchChar(argv[i][0]) && !boost::algorithm::istarts_with(argv[i], "darkcoin:")) + if (!IsSwitchChar(argv[i][0]) && !boost::algorithm::istarts_with(argv[i], "dash:")) fCommandLine = true; if (fCommandLine) @@ -186,7 +186,7 @@ int main(int argc, char* argv[]) bool fRet = false; - // Connect darkcoind signal handlers + // Connect dashd signal handlers noui_connect(); fRet = AppInit(argc, argv); diff --git a/src/init.cpp b/src/init.cpp index c91748d6a9..2dd81ec68e 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -5,7 +5,7 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) -#include "darkcoin-config.h" +#include "dash-config.h" #endif #include "init.h" @@ -138,7 +138,7 @@ void Shutdown() TRY_LOCK(cs_Shutdown, lockShutdown); if (!lockShutdown) return; - RenameThread("darkcoin-shutoff"); + RenameThread("dash-shutoff"); mempool.AddTransactionsUpdated(1); StopRPCThreads(); ShutdownRPCMining(); @@ -224,7 +224,7 @@ std::string HelpMessage(HelpMessageMode hmm) strUsage += " -blocknotify= " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n"; strUsage += " -checkblocks= " + _("How many blocks to check at startup (default: 288, 0 = all)") + "\n"; strUsage += " -checklevel= " + _("How thorough the block verification of -checkblocks is (0-4, default: 3)") + "\n"; - strUsage += " -conf= " + _("Specify configuration file (default: darkcoin.conf)") + "\n"; + strUsage += " -conf= " + _("Specify configuration file (default: dash.conf)") + "\n"; if (hmm == HMM_BITCOIND) { #if !defined(WIN32) @@ -237,7 +237,7 @@ std::string HelpMessage(HelpMessageMode hmm) strUsage += " -maxorphanblocks= " + strprintf(_("Keep at most unconnectable blocks in memory (default: %u)"), DEFAULT_MAX_ORPHAN_BLOCKS) + "\n"; strUsage += " -maxorphantx= " + strprintf(_("Keep at most unconnectable transactions in memory (default: %u)"), DEFAULT_MAX_ORPHAN_TRANSACTIONS) + "\n"; strUsage += " -par= " + strprintf(_("Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d)"), -(int)boost::thread::hardware_concurrency(), MAX_SCRIPTCHECK_THREADS, DEFAULT_SCRIPTCHECK_THREADS) + "\n"; - strUsage += " -pid= " + _("Specify pid file (default: darkcoind.pid)") + "\n"; + strUsage += " -pid= " + _("Specify pid file (default: dashd.pid)") + "\n"; strUsage += " -reindex " + _("Rebuild block chain index from current blk000??.dat files") + " " + _("on startup") + "\n"; strUsage += " -txindex " + _("Maintain a full transaction index (default: 0)") + "\n"; @@ -347,7 +347,7 @@ std::string HelpMessage(HelpMessageMode hmm) strUsage += "\n" + _("Darksend options:") + "\n"; strUsage += " -enabledarksend= " + _("Enable use of automated darksend for funds stored in this wallet (0-1, default: 0)") + "\n"; strUsage += " -darksendrounds= " + _("Use N separate masternodes to anonymize funds (2-8, default: 2)") + "\n"; - strUsage += " -anonymizedarkcoinamount= " + _("Keep N darkcoin anonymized (default: 0)") + "\n"; + strUsage += " -anonymizedashamount= " + _("Keep N dash anonymized (default: 0)") + "\n"; strUsage += " -liquidityprovider= " + _("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)") + "\n"; strUsage += "\n" + _("InstantX options:") + "\n"; @@ -391,7 +391,7 @@ struct CImportingNow void ThreadImport(std::vector vImportFiles) { - RenameThread("darkcoin-loadblk"); + RenameThread("dash-loadblk"); // -reindex if (fReindex) { @@ -458,7 +458,7 @@ bool InitSanityCheck(void) return true; } -/** Initialize darkcoin. +/** Initialize dash. * @pre Parameters should be parsed and config file should be read. */ bool AppInit2(boost::thread_group& threadGroup) @@ -1207,7 +1207,7 @@ bool AppInit2(boost::thread_group& threadGroup) nDarksendRounds = 99999; } - nAnonymizeDarkcoinAmount = GetArg("-anonymizedarkcoinamount", 0); + nAnonymizeDarkcoinAmount = GetArg("-anonymizedashamount", 0); if(nAnonymizeDarkcoinAmount > 999999) nAnonymizeDarkcoinAmount = 999999; if(nAnonymizeDarkcoinAmount < 2) nAnonymizeDarkcoinAmount = 2; diff --git a/src/keepass.cpp b/src/keepass.cpp index 328a9b86cf..9c967cc659 100644 --- a/src/keepass.cpp +++ b/src/keepass.cpp @@ -176,7 +176,7 @@ std::string CKeePassIntegrator::constructHTTPPost(const std::string& strMsg, con { std::ostringstream s; s << "POST / HTTP/1.1\r\n" - << "User-Agent: darkcoin-json-rpc/" << FormatFullVersion() << "\r\n" + << "User-Agent: dash-json-rpc/" << FormatFullVersion() << "\r\n" << "Host: localhost\r\n" << "Content-Type: application/json\r\n" << "Content-Length: " << strMsg.size() << "\r\n" @@ -335,7 +335,7 @@ void CKeePassIntegrator::rpcSetLogin(const SecureString& strWalletPass, const Se if(fDebug) LogPrintf("CKeePassIntegrator::rpcSetLogin - send Url: %s\n", sUrl.c_str()); //request.addStrParameter("SubmitUrl", sSubmitUrl); // Is used to construct the entry title - request.addStrParameter("Login", SecureString("darkcoin")); + request.addStrParameter("Login", SecureString("dash")); request.addStrParameter("Password", strWalletPass); if(sEntryId.size() != 0) { diff --git a/src/m4/bitcoin_qt.m4 b/src/m4/bitcoin_qt.m4 index eda6ebd1fd..19775182d6 100644 --- a/src/m4/bitcoin_qt.m4 +++ b/src/m4/bitcoin_qt.m4 @@ -3,7 +3,7 @@ dnl Output: If qt version is auto, set bitcoin_enable_qt to false. Else, exit. AC_DEFUN([BITCOIN_QT_FAIL],[ if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then if test x$bitcoin_enable_qt != xno; then - AC_MSG_WARN([$1; darkcoin-qt frontend will not be built]) + AC_MSG_WARN([$1; dash-qt frontend will not be built]) fi bitcoin_enable_qt=no else diff --git a/src/main.cpp b/src/main.cpp index f944daac84..7438c7531d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1582,7 +1582,7 @@ unsigned int static KimotoGravityWell(const CBlockIndex* pindexLast, const CBloc } unsigned int static DarkGravityWave(const CBlockIndex* pindexLast, const CBlockHeader *pblock) { - /* current difficulty formula, darkcoin - DarkGravity v3, written by Evan Duffield - evan@dashcurrency.com */ + /* current difficulty formula, dash - DarkGravity v3, written by Evan Duffield - evan@dashcurrency.com */ const CBlockIndex *BlockLastSolved = pindexLast; const CBlockIndex *BlockReading = pindexLast; int64_t nActualTimespan = 0; @@ -2158,7 +2158,7 @@ bool FindUndoPos(CValidationState &state, int nFile, CDiskBlockPos &pos, unsigne static CCheckQueue scriptcheckqueue(128); void ThreadScriptCheck() { - RenameThread("darkcoin-scriptch"); + RenameThread("dash-scriptch"); scriptcheckqueue.Thread(); } diff --git a/src/main.h b/src/main.h index 8cbf585f2a..ef07592d06 100644 --- a/src/main.h +++ b/src/main.h @@ -8,7 +8,7 @@ #define BITCOIN_MAIN_H #if defined(HAVE_CONFIG_H) -#include "darkcoin-config.h" +#include "dash-config.h" #endif #include "bignum.h" diff --git a/src/miner.cpp b/src/miner.cpp index 5c9d548730..7614d8196c 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -521,7 +521,7 @@ void static BitcoinMiner(CWallet *pwallet) { LogPrintf("DarkcoinMiner started\n"); SetThreadPriority(THREAD_PRIORITY_LOWEST); - RenameThread("darkcoin-miner"); + RenameThread("dash-miner"); // Each thread has its own key and counter CReserveKey reservekey(pwallet); diff --git a/src/net.cpp b/src/net.cpp index 3ed9974836..083c075063 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -5,7 +5,7 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) -#include "darkcoin-config.h" +#include "dash-config.h" #endif #include "net.h" diff --git a/src/netbase.h b/src/netbase.h index c18cdc86f5..14901feab9 100644 --- a/src/netbase.h +++ b/src/netbase.h @@ -6,7 +6,7 @@ #define BITCOIN_NETBASE_H #if defined(HAVE_CONFIG_H) -#include "darkcoin-config.h" +#include "dash-config.h" #endif #include "compat.h" diff --git a/src/noui.cpp b/src/noui.cpp index 05c2c6ec91..6f0bc50203 100644 --- a/src/noui.cpp +++ b/src/noui.cpp @@ -42,7 +42,7 @@ static void noui_InitMessage(const std::string &message) void noui_connect() { - // Connect darkcoind signal handlers + // Connect dashd signal handlers uiInterface.ThreadSafeMessageBox.connect(noui_ThreadSafeMessageBox); uiInterface.InitMessage.connect(noui_InitMessage); } diff --git a/src/qt/Makefile.am b/src/qt/Makefile.am index c3a2617703..d90081dec5 100755 --- a/src/qt/Makefile.am +++ b/src/qt/Makefile.am @@ -5,41 +5,41 @@ AM_CPPFLAGS += -I$(top_srcdir)/src \ -I$(top_builddir)/src/qt/forms \ $(PROTOBUF_CFLAGS) \ $(QR_CFLAGS) -bin_PROGRAMS = darkcoin-qt -noinst_LIBRARIES = libdarkcoinqt.a +bin_PROGRAMS = dash-qt +noinst_LIBRARIES = libdashqt.a SUBDIRS = . $(BUILD_TEST_QT) DIST_SUBDIRS = . test -# darkcoin qt core # +# dash qt core # QT_TS = \ - locale/darkcoin_bar.ts \ - locale/darkcoin_bg.ts \ - locale/darkcoin_ca.ts \ - locale/darkcoin_cmn.ts \ - locale/darkcoin_cs.ts \ - locale/darkcoin_da.ts \ - locale/darkcoin_de.ts \ - locale/darkcoin_el.ts \ - locale/darkcoin_en.ts \ - locale/darkcoin_eo.ts \ - locale/darkcoin_es.ts \ - locale/darkcoin_fi.ts \ - locale/darkcoin_fr.ts \ - locale/darkcoin_hu_HU.ts \ - locale/darkcoin_it.ts \ - locale/darkcoin_lv_LV.ts \ - locale/darkcoin_nb.ts \ - locale/darkcoin_nl.ts \ - locale/darkcoin_pl.ts \ - locale/darkcoin_pt.ts \ - locale/darkcoin_pt_BR.ts \ - locale/darkcoin_ru.ts \ - locale/darkcoin_sk.ts \ - locale/darkcoin_sv.ts \ - locale/darkcoin_tr.ts \ - locale/darkcoin_vi.ts \ - locale/darkcoin_zh_CN.ts \ - locale/darkcoin_zh_HK.ts + locale/dash_bar.ts \ + locale/dash_bg.ts \ + locale/dash_ca.ts \ + locale/dash_cmn.ts \ + locale/dash_cs.ts \ + locale/dash_da.ts \ + locale/dash_de.ts \ + locale/dash_el.ts \ + locale/dash_en.ts \ + locale/dash_eo.ts \ + locale/dash_es.ts \ + locale/dash_fi.ts \ + locale/dash_fr.ts \ + locale/dash_hu_HU.ts \ + locale/dash_it.ts \ + locale/dash_lv_LV.ts \ + locale/dash_nb.ts \ + locale/dash_nl.ts \ + locale/dash_pl.ts \ + locale/dash_pt.ts \ + locale/dash_pt_BR.ts \ + locale/dash_ru.ts \ + locale/dash_sk.ts \ + locale/dash_sv.ts \ + locale/dash_tr.ts \ + locale/dash_vi.ts \ + locale/dash_zh_CN.ts \ + locale/dash_zh_HK.ts QT_FORMS_UI = \ forms/aboutdialog.ui \ @@ -112,13 +112,13 @@ BITCOIN_MM = \ macnotificationhandler.mm QT_MOC = \ - darkcoin.moc \ + dash.moc \ intro.moc \ overviewpage.moc \ rpcconsole.moc -QT_QRC_CPP = qrc_darkcoin.cpp -QT_QRC = darkcoin.qrc +QT_QRC_CPP = qrc_dash.cpp +QT_QRC = dash.qrc PROTOBUF_CC = paymentrequest.pb.cc PROTOBUF_H = paymentrequest.pb.h @@ -226,7 +226,7 @@ RES_ICONS = \ BITCOIN_QT_CPP = \ - darkcoin.cpp \ + dash.cpp \ bitcoinaddressvalidator.cpp \ bitcoinamountfield.cpp \ bitcoingui.cpp \ @@ -283,7 +283,7 @@ RES_IMAGES = \ res/images/about.png \ res/images/splash.png \ res/images/splash_testnet.png \ - res/images/darkcoin_logo_horizontal.png \ + res/images/dash_logo_horizontal.png \ res/images/drkblue_downArrow.png \ res/images/drkblue_downArrow_small.png \ res/images/drkblue_upArrow_small.png \ @@ -296,40 +296,40 @@ RES_CSS = \ RES_MOVIES = $(wildcard res/movies/spinner-*.png) -DARKCOIN_RC = res/darkcoin-qt-res.rc +DASH_RC = res/dash-qt-res.rc -libdarkcoinqt_a_CPPFLAGS = $(AM_CPPFLAGS) $(QT_INCLUDES) \ +libdashqt_a_CPPFLAGS = $(AM_CPPFLAGS) $(QT_INCLUDES) \ -I$(top_srcdir)/src/qt/forms $(QT_DBUS_INCLUDES) -libdarkcoinqt_a_SOURCES = $(BITCOIN_QT_CPP) $(BITCOIN_QT_H) $(QT_FORMS_UI) \ +libdashqt_a_SOURCES = $(BITCOIN_QT_CPP) $(BITCOIN_QT_H) $(QT_FORMS_UI) \ $(QT_QRC) $(QT_TS) $(PROTOBUF_PROTO) $(RES_ICONS) $(RES_IMAGES) $(RES_MOVIES) $(RES_CSS) -nodist_libdarkcoinqt_a_SOURCES = $(QT_MOC_CPP) $(QT_MOC) $(PROTOBUF_CC) \ +nodist_libdashqt_a_SOURCES = $(QT_MOC_CPP) $(QT_MOC) $(PROTOBUF_CC) \ $(PROTOBUF_H) $(QT_QRC_CPP) -BUILT_SOURCES = $(nodist_libdarkcoinqt_a_SOURCES) +BUILT_SOURCES = $(nodist_libdashqt_a_SOURCES) #Generating these with a half-written protobuf header leads to wacky results. #This makes sure it's done. $(QT_MOC): $(PROTOBUF_H) $(QT_MOC_CPP): $(PROTOBUF_H) -# darkcoin-qt binary # -darkcoin_qt_CPPFLAGS = $(AM_CPPFLAGS) $(QT_INCLUDES) \ +# dash-qt binary # +dash_qt_CPPFLAGS = $(AM_CPPFLAGS) $(QT_INCLUDES) \ -I$(top_srcdir)/src/qt/forms -darkcoin_qt_SOURCES = darkcoin.cpp +dash_qt_SOURCES = dash.cpp if TARGET_DARWIN - darkcoin_qt_SOURCES += $(BITCOIN_MM) + dash_qt_SOURCES += $(BITCOIN_MM) endif if TARGET_WINDOWS - darkcoin_qt_SOURCES += $(DARKCOIN_RC) + dash_qt_SOURCES += $(DASH_RC) endif -darkcoin_qt_LDADD = libdarkcoinqt.a $(LIBBITCOIN_SERVER) +dash_qt_LDADD = libdashqt.a $(LIBBITCOIN_SERVER) if ENABLE_WALLET -darkcoin_qt_LDADD += $(LIBBITCOIN_WALLET) +dash_qt_LDADD += $(LIBBITCOIN_WALLET) endif -darkcoin_qt_LDADD += $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBLEVELDB) $(LIBMEMENV) \ +dash_qt_LDADD += $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBLEVELDB) $(LIBMEMENV) \ $(BOOST_LIBS) $(QT_LIBS) $(QT_DBUS_LIBS) $(QR_LIBS) $(PROTOBUF_LIBS) $(BDB_LIBS) -darkcoin_qt_LDFLAGS = $(QT_LDFLAGS) +dash_qt_LDFLAGS = $(QT_LDFLAGS) # forms/foo.h -> forms/ui_foo.h QT_FORMS_H=$(join $(dir $(QT_FORMS_UI)),$(addprefix ui_, $(notdir $(QT_FORMS_UI:.ui=.h)))) @@ -340,15 +340,15 @@ QT_QM=$(QT_TS:.ts=.qm) .PHONY: FORCE .SECONDARY: $(QT_QM) -darkcoinstrings.cpp: FORCE - $(MAKE) -C $(top_srcdir)/src qt/darkcoinstrings.cpp +dashstrings.cpp: FORCE + $(MAKE) -C $(top_srcdir)/src qt/dashstrings.cpp -translate: darkcoinstrings.cpp $(QT_FORMS_UI) $(QT_FORMS_UI) $(BITCOIN_QT_CPP) $(BITCOIN_QT_H) $(BITCOIN_MM) +translate: dashstrings.cpp $(QT_FORMS_UI) $(QT_FORMS_UI) $(BITCOIN_QT_CPP) $(BITCOIN_QT_H) $(BITCOIN_MM) @test -n $(LUPDATE) || echo "lupdate is required for updating translations" - @QT_SELECT=$(QT_SELECT) $(LUPDATE) $^ -locations relative -no-obsolete -ts locale/darkcoin_en.ts + @QT_SELECT=$(QT_SELECT) $(LUPDATE) $^ -locations relative -no-obsolete -ts locale/dash_en.ts $(QT_QRC_CPP): $(QT_QRC) $(QT_QM) $(QT_FORMS_H) $(RES_ICONS) $(RES_IMAGES) $(RES_MOVIES) $(RES_CSS) $(PROTOBUF_H) - @cd $(abs_srcdir); test -f $(RCC) && QT_SELECT=$(QT_SELECT) $(RCC) -name darkcoin -o $(abs_builddir)/$@ $< || \ + @cd $(abs_srcdir); test -f $(RCC) && QT_SELECT=$(QT_SELECT) $(RCC) -name dash -o $(abs_builddir)/$@ $< || \ echo error: could not build $@ $(SED) -e '/^\*\*.*Created:/d' $@ > $@.n && mv $@{.n,} $(SED) -e '/^\*\*.*by:/d' $@ > $@.n && mv $@{.n,} diff --git a/src/qt/addressbookpage.cpp b/src/qt/addressbookpage.cpp index ff83b1296f..6756892ddd 100644 --- a/src/qt/addressbookpage.cpp +++ b/src/qt/addressbookpage.cpp @@ -4,7 +4,7 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) -#include "darkcoin-config.h" +#include "dash-config.h" #endif #include "addressbookpage.h" diff --git a/src/qt/askpassphrasedialog.cpp b/src/qt/askpassphrasedialog.cpp index 969d17eb36..79ffcfb8b1 100644 --- a/src/qt/askpassphrasedialog.cpp +++ b/src/qt/askpassphrasedialog.cpp @@ -110,7 +110,7 @@ void AskPassphraseDialog::accept() break; } QMessageBox::StandardButton retval = QMessageBox::question(this, tr("Confirm wallet encryption"), - tr("Warning: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR DARKCOINS!") + "

" + tr("Are you sure you wish to encrypt your wallet?"), + tr("Warning: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR DASHS!") + "

" + tr("Are you sure you wish to encrypt your wallet?"), QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Cancel); if(retval == QMessageBox::Yes) @@ -123,7 +123,7 @@ void AskPassphraseDialog::accept() "" + tr("Dash will close now to finish the encryption process. " "Remember that encrypting your wallet cannot fully protect " - "your darkcoins from being stolen by malware infecting your computer.") + + "your dashs from being stolen by malware infecting your computer.") + "

" + tr("IMPORTANT: Any previous backups you have made of your wallet file " "should be replaced with the newly generated, encrypted wallet file. " diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 699dced6b2..59fdb50e27 100755 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -249,7 +249,7 @@ void BitcoinGUI::createActions(bool fIsTestnet) tabGroup->addAction(sendCoinsAction); receiveCoinsAction = new QAction(QIcon(":/icons/receiving_addresses"), tr("&Receive"), this); - receiveCoinsAction->setStatusTip(tr("Request payments (generates QR codes and darkcoin: URIs)")); + receiveCoinsAction->setStatusTip(tr("Request payments (generates QR codes and dash: URIs)")); receiveCoinsAction->setToolTip(receiveCoinsAction->statusTip()); receiveCoinsAction->setCheckable(true); #ifdef Q_OS_MAC @@ -337,7 +337,7 @@ void BitcoinGUI::createActions(bool fIsTestnet) usedReceivingAddressesAction->setStatusTip(tr("Show the list of used receiving addresses and labels")); openAction = new QAction(QApplication::style()->standardIcon(QStyle::SP_FileIcon), tr("Open &URI..."), this); - openAction->setStatusTip(tr("Open a darkcoin: URI or payment request")); + openAction->setStatusTip(tr("Open a dash: URI or payment request")); showHelpMessageAction = new QAction(QApplication::style()->standardIcon(QStyle::SP_MessageBoxInformation), tr("&Command-line options"), this); showHelpMessageAction->setStatusTip(tr("Show the Dash Core help message to get a list with possible Dash command-line options")); diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index ece3427d11..7bdb16abd4 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -6,7 +6,7 @@ #define BITCOINGUI_H #if defined(HAVE_CONFIG_H) -#include "darkcoin-config.h" +#include "dash-config.h" #endif #include diff --git a/src/qt/bitcoinunits.cpp b/src/qt/bitcoinunits.cpp index a0350d66de..deecfc47de 100644 --- a/src/qt/bitcoinunits.cpp +++ b/src/qt/bitcoinunits.cpp @@ -17,7 +17,7 @@ QList BitcoinUnits::availableUnits() { QList unitlist; unitlist.append(DASH); - unitlist.append(mDRK); + unitlist.append(mDASH); unitlist.append(uDRK); unitlist.append(duffs); return unitlist; @@ -28,7 +28,7 @@ bool BitcoinUnits::valid(int unit) switch(unit) { case DASH: - case mDRK: + case mDASH: case uDRK: case duffs: return true; @@ -44,7 +44,7 @@ QString BitcoinUnits::name(int unit) switch(unit) { case DASH: return QString("DASH"); - case mDRK: return QString("mDRK"); + case mDASH: return QString("mDASH"); case uDRK: return QString::fromUtf8("μDASH"); case duffs: return QString::fromUtf8("duffs"); default: return QString("???"); @@ -55,7 +55,7 @@ QString BitcoinUnits::name(int unit) switch(unit) { case DASH: return QString("tDRK"); - case mDRK: return QString("mtDRK"); + case mDASH: return QString("mtDRK"); case uDRK: return QString::fromUtf8("μtDRK"); case duffs: return QString::fromUtf8("tduffs"); default: return QString("???"); @@ -70,7 +70,7 @@ QString BitcoinUnits::description(int unit) switch(unit) { case DASH: return QString("Darkcoins"); - case mDRK: return QString("Milli-Darkcoins (1 / 1,000)"); + case mDASH: return QString("Milli-Darkcoins (1 / 1,000)"); case uDRK: return QString("Micro-Darkcoins (1 / 1,000,000)"); case duffs: return QString("Ten Nano-Darkcoins (1 / 100,000,000)"); default: return QString("???"); @@ -80,10 +80,10 @@ QString BitcoinUnits::description(int unit) { switch(unit) { - case DASH: return QString("Testdarkcoins"); - case mDRK: return QString("Milli-Testdarkcoins (1 / 1,000)"); - case uDRK: return QString("Micro-Testdarkcoins (1 / 1,000,000)"); - case duffs: return QString("Ten Nano-Testdarkcoins (1 / 100,000,000)"); + case DASH: return QString("Testdashs"); + case mDASH: return QString("Milli-Testdashs (1 / 1,000)"); + case uDRK: return QString("Micro-Testdashs (1 / 1,000,000)"); + case duffs: return QString("Ten Nano-Testdashs (1 / 100,000,000)"); default: return QString("???"); } } @@ -94,7 +94,7 @@ qint64 BitcoinUnits::factor(int unit) switch(unit) { case DASH: return 100000000; - case mDRK: return 100000; + case mDASH: return 100000; case uDRK: return 100; case duffs: return 1; default: return 100000000; @@ -106,7 +106,7 @@ qint64 BitcoinUnits::maxAmount(int unit) switch(unit) { case DASH: return Q_INT64_C(21000000); - case mDRK: return Q_INT64_C(21000000000); + case mDASH: return Q_INT64_C(21000000000); case uDRK: return Q_INT64_C(21000000000000); case duffs: return Q_INT64_C(2100000000000000); default: return 0; @@ -118,7 +118,7 @@ int BitcoinUnits::amountDigits(int unit) switch(unit) { case DASH: return 8; // 21,000,000 (# digits, without commas) - case mDRK: return 11; // 21,000,000,000 + case mDASH: return 11; // 21,000,000,000 case uDRK: return 14; // 21,000,000,000,000 case duffs: return 16; // 2,100,000,000,000,000 default: return 0; @@ -130,7 +130,7 @@ int BitcoinUnits::decimals(int unit) switch(unit) { case DASH: return 8; - case mDRK: return 5; + case mDASH: return 5; case uDRK: return 2; case duffs: return 0; default: return 0; diff --git a/src/qt/bitcoinunits.h b/src/qt/bitcoinunits.h index b9453dbe93..0501391205 100644 --- a/src/qt/bitcoinunits.h +++ b/src/qt/bitcoinunits.h @@ -27,7 +27,7 @@ public: enum Unit { DASH, - mDRK, + mDASH, uDRK, duffs }; diff --git a/src/qt/coincontroldialog.cpp b/src/qt/coincontroldialog.cpp index 6eb0d90ab0..ec0bb56992 100755 --- a/src/qt/coincontroldialog.cpp +++ b/src/qt/coincontroldialog.cpp @@ -721,7 +721,7 @@ void CoinControlDialog::updateView() { sAddress = CBitcoinAddress(outputAddress).ToString().c_str(); - // if listMode or change => show darkcoin address. In tree mode, address is not shown again for direct wallet address outputs + // if listMode or change => show dash address. In tree mode, address is not shown again for direct wallet address outputs if (!treeMode || (!(sAddress == sWalletAddress))) itemOutput->setText(COLUMN_ADDRESS, sAddress); diff --git a/src/qt/darkcoinstrings.cpp b/src/qt/darkcoinstrings.cpp deleted file mode 100644 index 30ef1815c5..0000000000 --- a/src/qt/darkcoinstrings.cpp +++ /dev/null @@ -1,390 +0,0 @@ - -// Copyright (c) 2009-2014 The Bitcoin developers -// Copyright (c) 2014-2015 The Dash developers - -//! This file is generated by share/qt/extract_strings_qt.py - -#include - -// Automatically generated by extract_strings.py -#ifdef __GNUC__ -#define UNUSED __attribute__((unused)) -#else -#define UNUSED -#endif -static const char UNUSED *darkcoin_strings[] = { -QT_TRANSLATE_NOOP("darkcoin-core", "" -"%s, you must set a rpcpassword in the configuration file:\n" -"%s\n" -"It is recommended you use the following random password:\n" -"rpcuser=darkcoinrpc\n" -"rpcpassword=%s\n" -"(you do not need to remember this password)\n" -"The username and password MUST NOT be the same.\n" -"If the file does not exist, create it with owner-readable-only file " -"permissions.\n" -"It is also recommended to set alertnotify so you are notified of problems;\n" -"for example: alertnotify=echo %%s | mail -s \"Dash Alert\" admin@foo." -"com\n"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!" -"3DES:@STRENGTH)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"An error occurred while setting up the RPC port %u for listening on IPv4: %s"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"An error occurred while setting up the RPC port %u for listening on IPv6, " -"falling back to IPv4: %s"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Bind to given address and always listen on it. Use [host]:port notation for " -"IPv6"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Cannot obtain a lock on data directory %s. Dash Core is probably already " -"running."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Continuously rate-limit free transactions to *1000 bytes per minute " -"(default:15)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Darksend uses exact denominated amounts to send funds, you might simply need " -"to anonymize some more coins."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Disable all Masternode and Darksend related functionality (0-1, default: 0)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Enable instantx, show confirmations for locked transactions (bool, default: " -"true)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Enable use of automated darksend for funds stored in this wallet (0-1, " -"default: 0)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Enter regression test mode, which uses a special chain in which blocks can " -"be solved instantly. This is intended for regression testing tools and app " -"development."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Enter regression test mode, which uses a special chain in which blocks can " -"be solved instantly."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Error: Listening for incoming connections failed (listen returned error %s)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Error: The transaction was rejected! This might happen if some of the coins " -"in your wallet were already spent, such as if you used a copy of wallet.dat " -"and coins were spent in the copy but not marked as spent here."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Error: This transaction requires a transaction fee of at least %s because of " -"its amount, complexity, or use of recently received funds!"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Error: Wallet unlocked for anonymization only, unable to create transaction."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Execute command when a relevant alert is received or we see a really long " -"fork (%s in cmd is replaced by message)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Execute command when a wallet transaction changes (%s in cmd is replaced by " -"TxID)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Execute command when the best block changes (%s in cmd is replaced by block " -"hash)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Fees smaller than this are considered zero fee (for transaction creation) " -"(default:"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Flush database activity from memory pool to disk log every megabytes " -"(default: 100)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Found unconfirmed denominated outputs, will wait till they confirm to " -"continue."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"How thorough the block verification of -checkblocks is (0-4, default: 3)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"In this mode -genproclimit controls how many blocks are generated " -"immediately."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"InstantX requires inputs with at least 6 confirmations, you might need to " -"wait a few minutes and try again."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Listen for JSON-RPC connections on (default: 9998 or testnet: 19998)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Name to construct url for KeePass entry that stores the wallet passphrase"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Number of seconds to keep misbehaving peers from reconnecting (default: " -"86400)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Output debugging information (default: 0, supplying is optional)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Provide liquidity to Darksend by infrequently mixing coins on a continual " -"basis (0-100, default: 0, 1=very frequent, high fees, 100=very infrequent, " -"low fees)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Query for peer addresses via DNS lookup, if low on addresses (default: 1 " -"unless -connect)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Set external address:port to get to this masternode (example: address:port)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Set maximum size of high-priority/low-fee transactions in bytes (default: %d)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Set the number of script verification threads (%u to %d, 0 = auto, <0 = " -"leave that many cores free, default: %d)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Set the processor limit for when generation is on (-1 = unlimited, default: " -"-1)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Show N confirmations for a successfully locked transaction (0-9999, default: " -"1)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"This is a pre-release test build - use at your own risk - do not use for " -"mining or merchant applications"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Unable to bind to %s on this computer. Dash Core is probably already " -"running."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Unable to locate enough Darksend denominated funds for this transaction."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Unable to locate enough Darksend non-denominated funds for this transaction " -"that are not equal 1000 DASH."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Unable to locate enough Darksend non-denominated funds for this transaction."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -" -"proxy)"), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Warning: -paytxfee is set very high! This is the transaction fee you will " -"pay if you send a transaction."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Warning: Please check that your computer's date and time are correct! If " -"your clock is wrong Dash will not work properly."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Warning: The network does not appear to fully agree! Some miners appear to " -"be experiencing issues."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Warning: We do not appear to fully agree with our peers! You may need to " -"upgrade, or other nodes may need to upgrade."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Warning: error reading wallet.dat! All keys read correctly, but transaction " -"data or address book entries might be missing or incorrect."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as " -"wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect " -"you should restore from a backup."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"You must set rpcpassword= in the configuration file:\n" -"%s\n" -"If the file does not exist, create it with owner-readable-only file " -"permissions."), -QT_TRANSLATE_NOOP("darkcoin-core", "" -"You must specify a masternodeprivkey in the configuration. Please see " -"documentation for help."), -QT_TRANSLATE_NOOP("darkcoin-core", "(default: 1)"), -QT_TRANSLATE_NOOP("darkcoin-core", "(default: wallet.dat)"), -QT_TRANSLATE_NOOP("darkcoin-core", " can be:"), -QT_TRANSLATE_NOOP("darkcoin-core", "Accept command line and JSON-RPC commands"), -QT_TRANSLATE_NOOP("darkcoin-core", "Accept connections from outside (default: 1 if no -proxy or -connect)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Add a node to connect to and attempt to keep the connection open"), -QT_TRANSLATE_NOOP("darkcoin-core", "Allow DNS lookups for -addnode, -seednode and -connect"), -QT_TRANSLATE_NOOP("darkcoin-core", "Allow JSON-RPC connections from specified IP address"), -QT_TRANSLATE_NOOP("darkcoin-core", "Already have that input."), -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", "Block creation options:"), -QT_TRANSLATE_NOOP("darkcoin-core", "Can't denominate: no compatible inputs left."), -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 -externalip address: '%s'"), -QT_TRANSLATE_NOOP("darkcoin-core", "Cannot write default address"), -QT_TRANSLATE_NOOP("darkcoin-core", "Clear list of wallet transactions (diagnostic tool; implies -rescan)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Collateral is not valid."), -QT_TRANSLATE_NOOP("darkcoin-core", "Collateral not valid."), -QT_TRANSLATE_NOOP("darkcoin-core", "Connect only to the specified node(s)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Connect through SOCKS proxy"), -QT_TRANSLATE_NOOP("darkcoin-core", "Connect to JSON-RPC on (default: 9998 or testnet: 19998)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Connect to KeePassHttp on port (default: 19455)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Connect to a node to retrieve peer addresses, and disconnect"), -QT_TRANSLATE_NOOP("darkcoin-core", "Connection options:"), -QT_TRANSLATE_NOOP("darkcoin-core", "Corrupted block database detected"), -QT_TRANSLATE_NOOP("darkcoin-core", "Dash Core Daemon"), -QT_TRANSLATE_NOOP("darkcoin-core", "Dash Core RPC client version"), -QT_TRANSLATE_NOOP("darkcoin-core", "Darksend is disabled."), -QT_TRANSLATE_NOOP("darkcoin-core", "Darksend options:"), -QT_TRANSLATE_NOOP("darkcoin-core", "Debugging/Testing options:"), -QT_TRANSLATE_NOOP("darkcoin-core", "Disable safemode, override a real safe mode event (default: 0)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Discover own IP address (default: 1 when listening and no -externalip)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Do not load the wallet and disable wallet RPC calls"), -QT_TRANSLATE_NOOP("darkcoin-core", "Do you want to rebuild the block database now?"), -QT_TRANSLATE_NOOP("darkcoin-core", "Done loading"), -QT_TRANSLATE_NOOP("darkcoin-core", "Downgrading and trying again."), -QT_TRANSLATE_NOOP("darkcoin-core", "Enable the client to act as a masternode (0-1, default: 0)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Entries are full."), -QT_TRANSLATE_NOOP("darkcoin-core", "Error connecting to masternode."), -QT_TRANSLATE_NOOP("darkcoin-core", "Error initializing block database"), -QT_TRANSLATE_NOOP("darkcoin-core", "Error initializing wallet database environment %s!"), -QT_TRANSLATE_NOOP("darkcoin-core", "Error loading block database"), -QT_TRANSLATE_NOOP("darkcoin-core", "Error loading wallet.dat"), -QT_TRANSLATE_NOOP("darkcoin-core", "Error loading wallet.dat: Wallet corrupted"), -QT_TRANSLATE_NOOP("darkcoin-core", "Error loading wallet.dat: Wallet requires newer version of Dash"), -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 recovering public key."), -QT_TRANSLATE_NOOP("darkcoin-core", "Error"), -QT_TRANSLATE_NOOP("darkcoin-core", "Error: Disk space is low!"), -QT_TRANSLATE_NOOP("darkcoin-core", "Error: Wallet locked, unable to create transaction!"), -QT_TRANSLATE_NOOP("darkcoin-core", "Error: You already have pending entries in the Darksend pool"), -QT_TRANSLATE_NOOP("darkcoin-core", "Error: system error: "), -QT_TRANSLATE_NOOP("darkcoin-core", "Failed to listen on any port. Use -listen=0 if you want this."), -QT_TRANSLATE_NOOP("darkcoin-core", "Failed to read block info"), -QT_TRANSLATE_NOOP("darkcoin-core", "Failed to read block"), -QT_TRANSLATE_NOOP("darkcoin-core", "Failed to sync block index"), -QT_TRANSLATE_NOOP("darkcoin-core", "Failed to write block index"), -QT_TRANSLATE_NOOP("darkcoin-core", "Failed to write block info"), -QT_TRANSLATE_NOOP("darkcoin-core", "Failed to write block"), -QT_TRANSLATE_NOOP("darkcoin-core", "Failed to write file info"), -QT_TRANSLATE_NOOP("darkcoin-core", "Failed to write to coin database"), -QT_TRANSLATE_NOOP("darkcoin-core", "Failed to write transaction index"), -QT_TRANSLATE_NOOP("darkcoin-core", "Failed to write undo data"), -QT_TRANSLATE_NOOP("darkcoin-core", "Fee per kB to add to transactions you send"), -QT_TRANSLATE_NOOP("darkcoin-core", "Fees smaller than this are considered zero fee (for relaying) (default:"), -QT_TRANSLATE_NOOP("darkcoin-core", "Force safe mode (default: 0)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Generate coins (default: 0)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Get help for a command"), -QT_TRANSLATE_NOOP("darkcoin-core", "How many blocks to check at startup (default: 288, 0 = all)"), -QT_TRANSLATE_NOOP("darkcoin-core", "If is not supplied, output all debugging information."), -QT_TRANSLATE_NOOP("darkcoin-core", "Ignore masternodes less than version (example: 70050; default : 0)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Importing..."), -QT_TRANSLATE_NOOP("darkcoin-core", "Imports blocks from external blk000??.dat file"), -QT_TRANSLATE_NOOP("darkcoin-core", "Incompatible mode."), -QT_TRANSLATE_NOOP("darkcoin-core", "Incompatible version."), -QT_TRANSLATE_NOOP("darkcoin-core", "Incorrect or no genesis block found. Wrong datadir for network?"), -QT_TRANSLATE_NOOP("darkcoin-core", "Information"), -QT_TRANSLATE_NOOP("darkcoin-core", "Initialization sanity check failed. Dash Core is shutting down."), -QT_TRANSLATE_NOOP("darkcoin-core", "Input is not valid."), -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 -proxy address: '%s'"), -QT_TRANSLATE_NOOP("darkcoin-core", "Invalid amount for -minrelaytxfee=: '%s'"), -QT_TRANSLATE_NOOP("darkcoin-core", "Invalid amount for -mintxfee=: '%s'"), -QT_TRANSLATE_NOOP("darkcoin-core", "Invalid amount for -paytxfee=: '%s'"), -QT_TRANSLATE_NOOP("darkcoin-core", "Invalid amount"), -QT_TRANSLATE_NOOP("darkcoin-core", "Invalid masternodeprivkey. Please see documenation."), -QT_TRANSLATE_NOOP("darkcoin-core", "Invalid private key."), -QT_TRANSLATE_NOOP("darkcoin-core", "Invalid script detected."), -QT_TRANSLATE_NOOP("darkcoin-core", "KeePassHttp id for the established association"), -QT_TRANSLATE_NOOP("darkcoin-core", "KeePassHttp key for AES encrypted communication with KeePass"), -QT_TRANSLATE_NOOP("darkcoin-core", "Keep N darkcoin anonymized (default: 0)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Keep at most unconnectable blocks in memory (default: %u)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Keep at most unconnectable transactions in memory (default: %u)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Last Darksend was too recent."), -QT_TRANSLATE_NOOP("darkcoin-core", "Last successful darksend action was too recent."), -QT_TRANSLATE_NOOP("darkcoin-core", "Limit size of signature cache to entries (default: 50000)"), -QT_TRANSLATE_NOOP("darkcoin-core", "List commands"), -QT_TRANSLATE_NOOP("darkcoin-core", "Listen for connections on (default: 9999 or testnet: 19999)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Loading addresses..."), -QT_TRANSLATE_NOOP("darkcoin-core", "Loading block index..."), -QT_TRANSLATE_NOOP("darkcoin-core", "Loading masternode cache..."), -QT_TRANSLATE_NOOP("darkcoin-core", "Loading wallet... (%3.2f %%)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Loading wallet..."), -QT_TRANSLATE_NOOP("darkcoin-core", "Log transaction priority and fee per kB when mining blocks (default: 0)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Maintain a full transaction index (default: 0)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Maintain at most connections to peers (default: 125)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Masternode options:"), -QT_TRANSLATE_NOOP("darkcoin-core", "Masternode queue is full."), -QT_TRANSLATE_NOOP("darkcoin-core", "Masternode:"), -QT_TRANSLATE_NOOP("darkcoin-core", "Maximum per-connection receive buffer, *1000 bytes (default: 5000)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Maximum per-connection send buffer, *1000 bytes (default: 1000)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Missing input transaction information."), -QT_TRANSLATE_NOOP("darkcoin-core", "No compatible masternode found."), -QT_TRANSLATE_NOOP("darkcoin-core", "No funds detected in need of denominating."), -QT_TRANSLATE_NOOP("darkcoin-core", "No masternodes detected."), -QT_TRANSLATE_NOOP("darkcoin-core", "No matching denominations found for mixing."), -QT_TRANSLATE_NOOP("darkcoin-core", "Non-standard public key detected."), -QT_TRANSLATE_NOOP("darkcoin-core", "Not compatible with existing transactions."), -QT_TRANSLATE_NOOP("darkcoin-core", "Not enough file descriptors available."), -QT_TRANSLATE_NOOP("darkcoin-core", "Not in the masternode list."), -QT_TRANSLATE_NOOP("darkcoin-core", "Only accept block chain matching built-in checkpoints (default: 1)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Only connect to nodes in network (IPv4, IPv6 or Tor)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Options:"), -QT_TRANSLATE_NOOP("darkcoin-core", "Password for JSON-RPC connections"), -QT_TRANSLATE_NOOP("darkcoin-core", "Prepend debug output with timestamp (default: 1)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Print block on startup, if found in block index"), -QT_TRANSLATE_NOOP("darkcoin-core", "Print block tree on startup (default: 0)"), -QT_TRANSLATE_NOOP("darkcoin-core", "RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions)"), -QT_TRANSLATE_NOOP("darkcoin-core", "RPC client options:"), -QT_TRANSLATE_NOOP("darkcoin-core", "RPC server options:"), -QT_TRANSLATE_NOOP("darkcoin-core", "Randomly drop 1 of every network messages"), -QT_TRANSLATE_NOOP("darkcoin-core", "Randomly fuzz 1 of every network messages"), -QT_TRANSLATE_NOOP("darkcoin-core", "Rebuild block chain index from current blk000??.dat files"), -QT_TRANSLATE_NOOP("darkcoin-core", "Rescan the block chain for missing wallet transactions"), -QT_TRANSLATE_NOOP("darkcoin-core", "Rescanning..."), -QT_TRANSLATE_NOOP("darkcoin-core", "Run a thread to flush wallet periodically (default: 1)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Run in the background as a daemon and accept commands"), -QT_TRANSLATE_NOOP("darkcoin-core", "SSL options: (see the Bitcoin Wiki for SSL setup instructions)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Select SOCKS version for -proxy (4 or 5, default: 5)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Send command to Dash Core"), -QT_TRANSLATE_NOOP("darkcoin-core", "Send commands to node running on (default: 127.0.0.1)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Send trace/debug info to console instead of debug.log file"), -QT_TRANSLATE_NOOP("darkcoin-core", "Server certificate file (default: server.cert)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Server private key (default: server.pem)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Session not complete!"), -QT_TRANSLATE_NOOP("darkcoin-core", "Session timed out (30 seconds), please resubmit."), -QT_TRANSLATE_NOOP("darkcoin-core", "Set database cache size in megabytes (%d to %d, default: %d)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Set key pool size to (default: 100)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Set maximum block size in bytes (default: %d)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Set minimum block size in bytes (default: 0)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Set the masternode private key"), -QT_TRANSLATE_NOOP("darkcoin-core", "Set the number of threads to service RPC calls (default: 4)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Sets the DB_PRIVATE flag in the wallet db environment (default: 1)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Show all debugging options (usage: --help -help-debug)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Show benchmark information (default: 0)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Shrink debug.log file on client startup (default: 1 when no -debug)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Signing failed."), -QT_TRANSLATE_NOOP("darkcoin-core", "Signing timed out, please resubmit."), -QT_TRANSLATE_NOOP("darkcoin-core", "Signing transaction failed"), -QT_TRANSLATE_NOOP("darkcoin-core", "Specify configuration file (default: darkcoin.conf)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Specify connection timeout in milliseconds (default: 5000)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Specify data directory"), -QT_TRANSLATE_NOOP("darkcoin-core", "Specify masternode configuration file (default: masternode.conf)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Specify pid file (default: darkcoind.pid)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Specify wallet file (within data directory)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Specify your own public address"), -QT_TRANSLATE_NOOP("darkcoin-core", "Spend unconfirmed change when sending transactions (default: 1)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Start Dash Core Daemon"), -QT_TRANSLATE_NOOP("darkcoin-core", "System error: "), -QT_TRANSLATE_NOOP("darkcoin-core", "This help message"), -QT_TRANSLATE_NOOP("darkcoin-core", "This is intended for regression testing tools and app development."), -QT_TRANSLATE_NOOP("darkcoin-core", "This is not a masternode."), -QT_TRANSLATE_NOOP("darkcoin-core", "Threshold for disconnecting misbehaving peers (default: 100)"), -QT_TRANSLATE_NOOP("darkcoin-core", "To use the %s option"), -QT_TRANSLATE_NOOP("darkcoin-core", "Transaction amount too small"), -QT_TRANSLATE_NOOP("darkcoin-core", "Transaction amounts must be positive"), -QT_TRANSLATE_NOOP("darkcoin-core", "Transaction created successfully."), -QT_TRANSLATE_NOOP("darkcoin-core", "Transaction fees are too high."), -QT_TRANSLATE_NOOP("darkcoin-core", "Transaction not valid."), -QT_TRANSLATE_NOOP("darkcoin-core", "Transaction too large"), -QT_TRANSLATE_NOOP("darkcoin-core", "Unable to bind to %s on this computer (bind returned error %s)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Unable to sign masternode payment winner, wrong key?"), -QT_TRANSLATE_NOOP("darkcoin-core", "Unable to sign spork message, wrong key?"), -QT_TRANSLATE_NOOP("darkcoin-core", "Unknown -socks proxy version requested: %i"), -QT_TRANSLATE_NOOP("darkcoin-core", "Unknown network specified in -onlynet: '%s'"), -QT_TRANSLATE_NOOP("darkcoin-core", "Upgrade wallet to latest format"), -QT_TRANSLATE_NOOP("darkcoin-core", "Usage (deprecated, use darkcoin-cli):"), -QT_TRANSLATE_NOOP("darkcoin-core", "Usage:"), -QT_TRANSLATE_NOOP("darkcoin-core", "Use KeePass 2 integration using KeePassHttp plugin (default: 0)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Use N separate masternodes to anonymize funds (2-8, default: 2)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Use OpenSSL (https) for JSON-RPC connections"), -QT_TRANSLATE_NOOP("darkcoin-core", "Use UPnP to map the listening port (default: 0)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Use UPnP to map the listening port (default: 1 when listening)"), -QT_TRANSLATE_NOOP("darkcoin-core", "Use the test network"), -QT_TRANSLATE_NOOP("darkcoin-core", "Username for JSON-RPC connections"), -QT_TRANSLATE_NOOP("darkcoin-core", "Value more than Darksend pool maximum allows."), -QT_TRANSLATE_NOOP("darkcoin-core", "Verifying blocks..."), -QT_TRANSLATE_NOOP("darkcoin-core", "Verifying wallet..."), -QT_TRANSLATE_NOOP("darkcoin-core", "Wait for RPC server to start"), -QT_TRANSLATE_NOOP("darkcoin-core", "Wallet %s resides outside data directory %s"), -QT_TRANSLATE_NOOP("darkcoin-core", "Wallet is locked."), -QT_TRANSLATE_NOOP("darkcoin-core", "Wallet needed to be rewritten: restart Dash to complete"), -QT_TRANSLATE_NOOP("darkcoin-core", "Wallet options:"), -QT_TRANSLATE_NOOP("darkcoin-core", "Warning"), -QT_TRANSLATE_NOOP("darkcoin-core", "Warning: Deprecated argument -debugnet ignored, use -debug=net"), -QT_TRANSLATE_NOOP("darkcoin-core", "Warning: This version is obsolete, upgrade required!"), -QT_TRANSLATE_NOOP("darkcoin-core", "You need to rebuild the database using -reindex to change -txindex"), -QT_TRANSLATE_NOOP("darkcoin-core", "Zapping all transactions from wallet..."), -QT_TRANSLATE_NOOP("darkcoin-core", "on startup"), -QT_TRANSLATE_NOOP("darkcoin-core", "version"), -QT_TRANSLATE_NOOP("darkcoin-core", "wallet.dat corrupt, salvage failed"), -}; diff --git a/src/qt/darkcoin.cpp b/src/qt/dash.cpp similarity index 98% rename from src/qt/darkcoin.cpp rename to src/qt/dash.cpp index f5c9927492..0553600d39 100644 --- a/src/qt/darkcoin.cpp +++ b/src/qt/dash.cpp @@ -4,7 +4,7 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) -#include "darkcoin-config.h" +#include "dash-config.h" #endif #include "bitcoingui.h" @@ -75,7 +75,7 @@ static void InitMessage(const std::string &message) */ static std::string Translate(const char* psz) { - return QCoreApplication::translate("darkcoin-core", psz).toStdString(); + return QCoreApplication::translate("dash-core", psz).toStdString(); } /** Set up translations */ @@ -115,11 +115,11 @@ static void initTranslations(QTranslator &qtTranslatorBase, QTranslator &qtTrans if (qtTranslator.load("qt_" + lang_territory, QLibraryInfo::location(QLibraryInfo::TranslationsPath))) QApplication::installTranslator(&qtTranslator); - // Load e.g. bitcoin_de.qm (shortcut "de" needs to be defined in darkcoin.qrc) + // Load e.g. bitcoin_de.qm (shortcut "de" needs to be defined in dash.qrc) if (translatorBase.load(lang, ":/translations/")) QApplication::installTranslator(&translatorBase); - // Load e.g. bitcoin_de_DE.qm (shortcut "de_DE" needs to be defined in darkcoin.qrc) + // Load e.g. bitcoin_de_DE.qm (shortcut "de_DE" needs to be defined in dash.qrc) if (translator.load(lang_territory, ":/translations/")) QApplication::installTranslator(&translator); } @@ -222,7 +222,7 @@ private: void startThread(); }; -#include "darkcoin.moc" +#include "dash.moc" BitcoinCore::BitcoinCore(): QObject() @@ -424,7 +424,7 @@ void BitcoinApplication::initializeResult(int retval) } #ifdef ENABLE_WALLET // Now that initialization/startup is done, process any command-line - // darkcoin: URIs or payment requests: + // dash: URIs or payment requests: connect(paymentServer, SIGNAL(receivedPaymentRequest(SendCoinsRecipient)), window, SLOT(handlePaymentRequest(SendCoinsRecipient))); connect(window, SIGNAL(receivedURI(QString)), @@ -476,7 +476,7 @@ int main(int argc, char *argv[]) QTextCodec::setCodecForCStrings(QTextCodec::codecForTr()); #endif - Q_INIT_RESOURCE(darkcoin); + Q_INIT_RESOURCE(dash); GUIUtil::SubstituteFonts(); @@ -518,7 +518,7 @@ int main(int argc, char *argv[]) // User language is set up: pick a data directory Intro::pickDataDirectory(); - /// 6. Determine availability of data directory and parse darkcoin.conf + /// 6. Determine availability of data directory and parse dash.conf /// - Do not call GetDataDir(true) before this step finishes if (!boost::filesystem::is_directory(GetDataDir(false))) { @@ -578,7 +578,7 @@ int main(int argc, char *argv[]) exit(0); // Start up the payment server early, too, so impatient users that click on - // darkcoin: links repeatedly have their payment requests routed to this process: + // dash: links repeatedly have their payment requests routed to this process: app.createPaymentServer(); #endif diff --git a/src/qt/darkcoin.qrc b/src/qt/dash.qrc similarity index 80% rename from src/qt/darkcoin.qrc rename to src/qt/dash.qrc index 9bcea8869d..6ab3246935 100755 --- a/src/qt/darkcoin.qrc +++ b/src/qt/dash.qrc @@ -51,7 +51,7 @@ res/images/about.png - res/images/darkcoin_logo_horizontal.png + res/images/dash_logo_horizontal.png res/images/drkblue_downArrow.png res/images/drkblue_downArrow_small.png res/images/drkblue_upArrow_small.png @@ -99,31 +99,31 @@ res/movies/spinner-034.png - locale/darkcoin_bar.qm - locale/darkcoin_ca.qm - locale/darkcoin_cmn.qm - locale/darkcoin_cs.qm - locale/darkcoin_da.qm - locale/darkcoin_de.qm - locale/darkcoin_el.qm - locale/darkcoin_en.qm - locale/darkcoin_eo.qm - locale/darkcoin_es.qm - locale/darkcoin_fi.qm - locale/darkcoin_fr.qm - locale/darkcoin_hu_HU.qm - locale/darkcoin_it.qm - locale/darkcoin_lv_LV.qm - locale/darkcoin_nl.qm - locale/darkcoin_pl.qm - locale/darkcoin_pt.qm - locale/darkcoin_pt_BR.qm - locale/darkcoin_ru.qm - locale/darkcoin_sk.qm - locale/darkcoin_sv.qm - locale/darkcoin_tr.qm - locale/darkcoin_vi.qm - locale/darkcoin_zh_CN.qm - locale/darkcoin_zh_HK.qm + locale/dash_bar.qm + locale/dash_ca.qm + locale/dash_cmn.qm + locale/dash_cs.qm + locale/dash_da.qm + locale/dash_de.qm + locale/dash_el.qm + locale/dash_en.qm + locale/dash_eo.qm + locale/dash_es.qm + locale/dash_fi.qm + locale/dash_fr.qm + locale/dash_hu_HU.qm + locale/dash_it.qm + locale/dash_lv_LV.qm + locale/dash_nl.qm + locale/dash_pl.qm + locale/dash_pt.qm + locale/dash_pt_BR.qm + locale/dash_ru.qm + locale/dash_sk.qm + locale/dash_sv.qm + locale/dash_tr.qm + locale/dash_vi.qm + locale/dash_zh_CN.qm + locale/dash_zh_HK.qm diff --git a/src/qt/dashstrings.cpp b/src/qt/dashstrings.cpp new file mode 100644 index 0000000000..2d2df2d9b9 --- /dev/null +++ b/src/qt/dashstrings.cpp @@ -0,0 +1,390 @@ + +// Copyright (c) 2009-2014 The Bitcoin developers +// Copyright (c) 2014-2015 The Dash developers + +//! This file is generated by share/qt/extract_strings_qt.py + +#include + +// Automatically generated by extract_strings.py +#ifdef __GNUC__ +#define UNUSED __attribute__((unused)) +#else +#define UNUSED +#endif +static const char UNUSED *dash_strings[] = { +QT_TRANSLATE_NOOP("dash-core", "" +"%s, you must set a rpcpassword in the configuration file:\n" +"%s\n" +"It is recommended you use the following random password:\n" +"rpcuser=dashrpc\n" +"rpcpassword=%s\n" +"(you do not need to remember this password)\n" +"The username and password MUST NOT be the same.\n" +"If the file does not exist, create it with owner-readable-only file " +"permissions.\n" +"It is also recommended to set alertnotify so you are notified of problems;\n" +"for example: alertnotify=echo %%s | mail -s \"Dash Alert\" admin@foo." +"com\n"), +QT_TRANSLATE_NOOP("dash-core", "" +"Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!" +"3DES:@STRENGTH)"), +QT_TRANSLATE_NOOP("dash-core", "" +"An error occurred while setting up the RPC port %u for listening on IPv4: %s"), +QT_TRANSLATE_NOOP("dash-core", "" +"An error occurred while setting up the RPC port %u for listening on IPv6, " +"falling back to IPv4: %s"), +QT_TRANSLATE_NOOP("dash-core", "" +"Bind to given address and always listen on it. Use [host]:port notation for " +"IPv6"), +QT_TRANSLATE_NOOP("dash-core", "" +"Cannot obtain a lock on data directory %s. Dash Core is probably already " +"running."), +QT_TRANSLATE_NOOP("dash-core", "" +"Continuously rate-limit free transactions to *1000 bytes per minute " +"(default:15)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Darksend uses exact denominated amounts to send funds, you might simply need " +"to anonymize some more coins."), +QT_TRANSLATE_NOOP("dash-core", "" +"Disable all Masternode and Darksend related functionality (0-1, default: 0)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Enable instantx, show confirmations for locked transactions (bool, default: " +"true)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Enable use of automated darksend for funds stored in this wallet (0-1, " +"default: 0)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Enter regression test mode, which uses a special chain in which blocks can " +"be solved instantly. This is intended for regression testing tools and app " +"development."), +QT_TRANSLATE_NOOP("dash-core", "" +"Enter regression test mode, which uses a special chain in which blocks can " +"be solved instantly."), +QT_TRANSLATE_NOOP("dash-core", "" +"Error: Listening for incoming connections failed (listen returned error %s)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Error: The transaction was rejected! This might happen if some of the coins " +"in your wallet were already spent, such as if you used a copy of wallet.dat " +"and coins were spent in the copy but not marked as spent here."), +QT_TRANSLATE_NOOP("dash-core", "" +"Error: This transaction requires a transaction fee of at least %s because of " +"its amount, complexity, or use of recently received funds!"), +QT_TRANSLATE_NOOP("dash-core", "" +"Error: Wallet unlocked for anonymization only, unable to create transaction."), +QT_TRANSLATE_NOOP("dash-core", "" +"Execute command when a relevant alert is received or we see a really long " +"fork (%s in cmd is replaced by message)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Execute command when a wallet transaction changes (%s in cmd is replaced by " +"TxID)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Execute command when the best block changes (%s in cmd is replaced by block " +"hash)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Fees smaller than this are considered zero fee (for transaction creation) " +"(default:"), +QT_TRANSLATE_NOOP("dash-core", "" +"Flush database activity from memory pool to disk log every megabytes " +"(default: 100)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Found unconfirmed denominated outputs, will wait till they confirm to " +"continue."), +QT_TRANSLATE_NOOP("dash-core", "" +"How thorough the block verification of -checkblocks is (0-4, default: 3)"), +QT_TRANSLATE_NOOP("dash-core", "" +"In this mode -genproclimit controls how many blocks are generated " +"immediately."), +QT_TRANSLATE_NOOP("dash-core", "" +"InstantX requires inputs with at least 6 confirmations, you might need to " +"wait a few minutes and try again."), +QT_TRANSLATE_NOOP("dash-core", "" +"Listen for JSON-RPC connections on (default: 9998 or testnet: 19998)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Name to construct url for KeePass entry that stores the wallet passphrase"), +QT_TRANSLATE_NOOP("dash-core", "" +"Number of seconds to keep misbehaving peers from reconnecting (default: " +"86400)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Output debugging information (default: 0, supplying is optional)"), +QT_TRANSLATE_NOOP("dash-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("dash-core", "" +"Query for peer addresses via DNS lookup, if low on addresses (default: 1 " +"unless -connect)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Set external address:port to get to this masternode (example: address:port)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Set maximum size of high-priority/low-fee transactions in bytes (default: %d)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Set the number of script verification threads (%u to %d, 0 = auto, <0 = " +"leave that many cores free, default: %d)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Set the processor limit for when generation is on (-1 = unlimited, default: " +"-1)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Show N confirmations for a successfully locked transaction (0-9999, default: " +"1)"), +QT_TRANSLATE_NOOP("dash-core", "" +"This is a pre-release test build - use at your own risk - do not use for " +"mining or merchant applications"), +QT_TRANSLATE_NOOP("dash-core", "" +"Unable to bind to %s on this computer. Dash Core is probably already " +"running."), +QT_TRANSLATE_NOOP("dash-core", "" +"Unable to locate enough Darksend denominated funds for this transaction."), +QT_TRANSLATE_NOOP("dash-core", "" +"Unable to locate enough Darksend non-denominated funds for this transaction " +"that are not equal 1000 DASH."), +QT_TRANSLATE_NOOP("dash-core", "" +"Unable to locate enough Darksend non-denominated funds for this transaction."), +QT_TRANSLATE_NOOP("dash-core", "" +"Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -" +"proxy)"), +QT_TRANSLATE_NOOP("dash-core", "" +"Warning: -paytxfee is set very high! This is the transaction fee you will " +"pay if you send a transaction."), +QT_TRANSLATE_NOOP("dash-core", "" +"Warning: Please check that your computer's date and time are correct! If " +"your clock is wrong Dash will not work properly."), +QT_TRANSLATE_NOOP("dash-core", "" +"Warning: The network does not appear to fully agree! Some miners appear to " +"be experiencing issues."), +QT_TRANSLATE_NOOP("dash-core", "" +"Warning: We do not appear to fully agree with our peers! You may need to " +"upgrade, or other nodes may need to upgrade."), +QT_TRANSLATE_NOOP("dash-core", "" +"Warning: error reading wallet.dat! All keys read correctly, but transaction " +"data or address book entries might be missing or incorrect."), +QT_TRANSLATE_NOOP("dash-core", "" +"Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as " +"wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect " +"you should restore from a backup."), +QT_TRANSLATE_NOOP("dash-core", "" +"You must set rpcpassword= in the configuration file:\n" +"%s\n" +"If the file does not exist, create it with owner-readable-only file " +"permissions."), +QT_TRANSLATE_NOOP("dash-core", "" +"You must specify a masternodeprivkey in the configuration. Please see " +"documentation for help."), +QT_TRANSLATE_NOOP("dash-core", "(default: 1)"), +QT_TRANSLATE_NOOP("dash-core", "(default: wallet.dat)"), +QT_TRANSLATE_NOOP("dash-core", " can be:"), +QT_TRANSLATE_NOOP("dash-core", "Accept command line and JSON-RPC commands"), +QT_TRANSLATE_NOOP("dash-core", "Accept connections from outside (default: 1 if no -proxy or -connect)"), +QT_TRANSLATE_NOOP("dash-core", "Add a node to connect to and attempt to keep the connection open"), +QT_TRANSLATE_NOOP("dash-core", "Allow DNS lookups for -addnode, -seednode and -connect"), +QT_TRANSLATE_NOOP("dash-core", "Allow JSON-RPC connections from specified IP address"), +QT_TRANSLATE_NOOP("dash-core", "Already have that input."), +QT_TRANSLATE_NOOP("dash-core", "Always query for peer addresses via DNS lookup (default: 0)"), +QT_TRANSLATE_NOOP("dash-core", "Attempt to recover private keys from a corrupt wallet.dat"), +QT_TRANSLATE_NOOP("dash-core", "Block creation options:"), +QT_TRANSLATE_NOOP("dash-core", "Can't denominate: no compatible inputs left."), +QT_TRANSLATE_NOOP("dash-core", "Cannot downgrade wallet"), +QT_TRANSLATE_NOOP("dash-core", "Cannot resolve -bind address: '%s'"), +QT_TRANSLATE_NOOP("dash-core", "Cannot resolve -externalip address: '%s'"), +QT_TRANSLATE_NOOP("dash-core", "Cannot write default address"), +QT_TRANSLATE_NOOP("dash-core", "Clear list of wallet transactions (diagnostic tool; implies -rescan)"), +QT_TRANSLATE_NOOP("dash-core", "Collateral is not valid."), +QT_TRANSLATE_NOOP("dash-core", "Collateral not valid."), +QT_TRANSLATE_NOOP("dash-core", "Connect only to the specified node(s)"), +QT_TRANSLATE_NOOP("dash-core", "Connect through SOCKS proxy"), +QT_TRANSLATE_NOOP("dash-core", "Connect to JSON-RPC on (default: 9998 or testnet: 19998)"), +QT_TRANSLATE_NOOP("dash-core", "Connect to KeePassHttp on port (default: 19455)"), +QT_TRANSLATE_NOOP("dash-core", "Connect to a node to retrieve peer addresses, and disconnect"), +QT_TRANSLATE_NOOP("dash-core", "Connection options:"), +QT_TRANSLATE_NOOP("dash-core", "Corrupted block database detected"), +QT_TRANSLATE_NOOP("dash-core", "Dash Core Daemon"), +QT_TRANSLATE_NOOP("dash-core", "Dash Core RPC client version"), +QT_TRANSLATE_NOOP("dash-core", "Darksend is disabled."), +QT_TRANSLATE_NOOP("dash-core", "Darksend options:"), +QT_TRANSLATE_NOOP("dash-core", "Debugging/Testing options:"), +QT_TRANSLATE_NOOP("dash-core", "Disable safemode, override a real safe mode event (default: 0)"), +QT_TRANSLATE_NOOP("dash-core", "Discover own IP address (default: 1 when listening and no -externalip)"), +QT_TRANSLATE_NOOP("dash-core", "Do not load the wallet and disable wallet RPC calls"), +QT_TRANSLATE_NOOP("dash-core", "Do you want to rebuild the block database now?"), +QT_TRANSLATE_NOOP("dash-core", "Done loading"), +QT_TRANSLATE_NOOP("dash-core", "Downgrading and trying again."), +QT_TRANSLATE_NOOP("dash-core", "Enable the client to act as a masternode (0-1, default: 0)"), +QT_TRANSLATE_NOOP("dash-core", "Entries are full."), +QT_TRANSLATE_NOOP("dash-core", "Error connecting to masternode."), +QT_TRANSLATE_NOOP("dash-core", "Error initializing block database"), +QT_TRANSLATE_NOOP("dash-core", "Error initializing wallet database environment %s!"), +QT_TRANSLATE_NOOP("dash-core", "Error loading block database"), +QT_TRANSLATE_NOOP("dash-core", "Error loading wallet.dat"), +QT_TRANSLATE_NOOP("dash-core", "Error loading wallet.dat: Wallet corrupted"), +QT_TRANSLATE_NOOP("dash-core", "Error loading wallet.dat: Wallet requires newer version of Dash"), +QT_TRANSLATE_NOOP("dash-core", "Error opening block database"), +QT_TRANSLATE_NOOP("dash-core", "Error reading from database, shutting down."), +QT_TRANSLATE_NOOP("dash-core", "Error recovering public key."), +QT_TRANSLATE_NOOP("dash-core", "Error"), +QT_TRANSLATE_NOOP("dash-core", "Error: Disk space is low!"), +QT_TRANSLATE_NOOP("dash-core", "Error: Wallet locked, unable to create transaction!"), +QT_TRANSLATE_NOOP("dash-core", "Error: You already have pending entries in the Darksend pool"), +QT_TRANSLATE_NOOP("dash-core", "Error: system error: "), +QT_TRANSLATE_NOOP("dash-core", "Failed to listen on any port. Use -listen=0 if you want this."), +QT_TRANSLATE_NOOP("dash-core", "Failed to read block info"), +QT_TRANSLATE_NOOP("dash-core", "Failed to read block"), +QT_TRANSLATE_NOOP("dash-core", "Failed to sync block index"), +QT_TRANSLATE_NOOP("dash-core", "Failed to write block index"), +QT_TRANSLATE_NOOP("dash-core", "Failed to write block info"), +QT_TRANSLATE_NOOP("dash-core", "Failed to write block"), +QT_TRANSLATE_NOOP("dash-core", "Failed to write file info"), +QT_TRANSLATE_NOOP("dash-core", "Failed to write to coin database"), +QT_TRANSLATE_NOOP("dash-core", "Failed to write transaction index"), +QT_TRANSLATE_NOOP("dash-core", "Failed to write undo data"), +QT_TRANSLATE_NOOP("dash-core", "Fee per kB to add to transactions you send"), +QT_TRANSLATE_NOOP("dash-core", "Fees smaller than this are considered zero fee (for relaying) (default:"), +QT_TRANSLATE_NOOP("dash-core", "Force safe mode (default: 0)"), +QT_TRANSLATE_NOOP("dash-core", "Generate coins (default: 0)"), +QT_TRANSLATE_NOOP("dash-core", "Get help for a command"), +QT_TRANSLATE_NOOP("dash-core", "How many blocks to check at startup (default: 288, 0 = all)"), +QT_TRANSLATE_NOOP("dash-core", "If is not supplied, output all debugging information."), +QT_TRANSLATE_NOOP("dash-core", "Ignore masternodes less than version (example: 70050; default : 0)"), +QT_TRANSLATE_NOOP("dash-core", "Importing..."), +QT_TRANSLATE_NOOP("dash-core", "Imports blocks from external blk000??.dat file"), +QT_TRANSLATE_NOOP("dash-core", "Incompatible mode."), +QT_TRANSLATE_NOOP("dash-core", "Incompatible version."), +QT_TRANSLATE_NOOP("dash-core", "Incorrect or no genesis block found. Wrong datadir for network?"), +QT_TRANSLATE_NOOP("dash-core", "Information"), +QT_TRANSLATE_NOOP("dash-core", "Initialization sanity check failed. Dash Core is shutting down."), +QT_TRANSLATE_NOOP("dash-core", "Input is not valid."), +QT_TRANSLATE_NOOP("dash-core", "InstantX options:"), +QT_TRANSLATE_NOOP("dash-core", "Insufficient funds"), +QT_TRANSLATE_NOOP("dash-core", "Insufficient funds."), +QT_TRANSLATE_NOOP("dash-core", "Invalid -onion address: '%s'"), +QT_TRANSLATE_NOOP("dash-core", "Invalid -proxy address: '%s'"), +QT_TRANSLATE_NOOP("dash-core", "Invalid amount for -minrelaytxfee=: '%s'"), +QT_TRANSLATE_NOOP("dash-core", "Invalid amount for -mintxfee=: '%s'"), +QT_TRANSLATE_NOOP("dash-core", "Invalid amount for -paytxfee=: '%s'"), +QT_TRANSLATE_NOOP("dash-core", "Invalid amount"), +QT_TRANSLATE_NOOP("dash-core", "Invalid masternodeprivkey. Please see documenation."), +QT_TRANSLATE_NOOP("dash-core", "Invalid private key."), +QT_TRANSLATE_NOOP("dash-core", "Invalid script detected."), +QT_TRANSLATE_NOOP("dash-core", "KeePassHttp id for the established association"), +QT_TRANSLATE_NOOP("dash-core", "KeePassHttp key for AES encrypted communication with KeePass"), +QT_TRANSLATE_NOOP("dash-core", "Keep N dash anonymized (default: 0)"), +QT_TRANSLATE_NOOP("dash-core", "Keep at most unconnectable blocks in memory (default: %u)"), +QT_TRANSLATE_NOOP("dash-core", "Keep at most unconnectable transactions in memory (default: %u)"), +QT_TRANSLATE_NOOP("dash-core", "Last Darksend was too recent."), +QT_TRANSLATE_NOOP("dash-core", "Last successful darksend action was too recent."), +QT_TRANSLATE_NOOP("dash-core", "Limit size of signature cache to entries (default: 50000)"), +QT_TRANSLATE_NOOP("dash-core", "List commands"), +QT_TRANSLATE_NOOP("dash-core", "Listen for connections on (default: 9999 or testnet: 19999)"), +QT_TRANSLATE_NOOP("dash-core", "Loading addresses..."), +QT_TRANSLATE_NOOP("dash-core", "Loading block index..."), +QT_TRANSLATE_NOOP("dash-core", "Loading masternode cache..."), +QT_TRANSLATE_NOOP("dash-core", "Loading wallet... (%3.2f %%)"), +QT_TRANSLATE_NOOP("dash-core", "Loading wallet..."), +QT_TRANSLATE_NOOP("dash-core", "Log transaction priority and fee per kB when mining blocks (default: 0)"), +QT_TRANSLATE_NOOP("dash-core", "Maintain a full transaction index (default: 0)"), +QT_TRANSLATE_NOOP("dash-core", "Maintain at most connections to peers (default: 125)"), +QT_TRANSLATE_NOOP("dash-core", "Masternode options:"), +QT_TRANSLATE_NOOP("dash-core", "Masternode queue is full."), +QT_TRANSLATE_NOOP("dash-core", "Masternode:"), +QT_TRANSLATE_NOOP("dash-core", "Maximum per-connection receive buffer, *1000 bytes (default: 5000)"), +QT_TRANSLATE_NOOP("dash-core", "Maximum per-connection send buffer, *1000 bytes (default: 1000)"), +QT_TRANSLATE_NOOP("dash-core", "Missing input transaction information."), +QT_TRANSLATE_NOOP("dash-core", "No compatible masternode found."), +QT_TRANSLATE_NOOP("dash-core", "No funds detected in need of denominating."), +QT_TRANSLATE_NOOP("dash-core", "No masternodes detected."), +QT_TRANSLATE_NOOP("dash-core", "No matching denominations found for mixing."), +QT_TRANSLATE_NOOP("dash-core", "Non-standard public key detected."), +QT_TRANSLATE_NOOP("dash-core", "Not compatible with existing transactions."), +QT_TRANSLATE_NOOP("dash-core", "Not enough file descriptors available."), +QT_TRANSLATE_NOOP("dash-core", "Not in the masternode list."), +QT_TRANSLATE_NOOP("dash-core", "Only accept block chain matching built-in checkpoints (default: 1)"), +QT_TRANSLATE_NOOP("dash-core", "Only connect to nodes in network (IPv4, IPv6 or Tor)"), +QT_TRANSLATE_NOOP("dash-core", "Options:"), +QT_TRANSLATE_NOOP("dash-core", "Password for JSON-RPC connections"), +QT_TRANSLATE_NOOP("dash-core", "Prepend debug output with timestamp (default: 1)"), +QT_TRANSLATE_NOOP("dash-core", "Print block on startup, if found in block index"), +QT_TRANSLATE_NOOP("dash-core", "Print block tree on startup (default: 0)"), +QT_TRANSLATE_NOOP("dash-core", "RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions)"), +QT_TRANSLATE_NOOP("dash-core", "RPC client options:"), +QT_TRANSLATE_NOOP("dash-core", "RPC server options:"), +QT_TRANSLATE_NOOP("dash-core", "Randomly drop 1 of every network messages"), +QT_TRANSLATE_NOOP("dash-core", "Randomly fuzz 1 of every network messages"), +QT_TRANSLATE_NOOP("dash-core", "Rebuild block chain index from current blk000??.dat files"), +QT_TRANSLATE_NOOP("dash-core", "Rescan the block chain for missing wallet transactions"), +QT_TRANSLATE_NOOP("dash-core", "Rescanning..."), +QT_TRANSLATE_NOOP("dash-core", "Run a thread to flush wallet periodically (default: 1)"), +QT_TRANSLATE_NOOP("dash-core", "Run in the background as a daemon and accept commands"), +QT_TRANSLATE_NOOP("dash-core", "SSL options: (see the Bitcoin Wiki for SSL setup instructions)"), +QT_TRANSLATE_NOOP("dash-core", "Select SOCKS version for -proxy (4 or 5, default: 5)"), +QT_TRANSLATE_NOOP("dash-core", "Send command to Dash Core"), +QT_TRANSLATE_NOOP("dash-core", "Send commands to node running on (default: 127.0.0.1)"), +QT_TRANSLATE_NOOP("dash-core", "Send trace/debug info to console instead of debug.log file"), +QT_TRANSLATE_NOOP("dash-core", "Server certificate file (default: server.cert)"), +QT_TRANSLATE_NOOP("dash-core", "Server private key (default: server.pem)"), +QT_TRANSLATE_NOOP("dash-core", "Session not complete!"), +QT_TRANSLATE_NOOP("dash-core", "Session timed out (30 seconds), please resubmit."), +QT_TRANSLATE_NOOP("dash-core", "Set database cache size in megabytes (%d to %d, default: %d)"), +QT_TRANSLATE_NOOP("dash-core", "Set key pool size to (default: 100)"), +QT_TRANSLATE_NOOP("dash-core", "Set maximum block size in bytes (default: %d)"), +QT_TRANSLATE_NOOP("dash-core", "Set minimum block size in bytes (default: 0)"), +QT_TRANSLATE_NOOP("dash-core", "Set the masternode private key"), +QT_TRANSLATE_NOOP("dash-core", "Set the number of threads to service RPC calls (default: 4)"), +QT_TRANSLATE_NOOP("dash-core", "Sets the DB_PRIVATE flag in the wallet db environment (default: 1)"), +QT_TRANSLATE_NOOP("dash-core", "Show all debugging options (usage: --help -help-debug)"), +QT_TRANSLATE_NOOP("dash-core", "Show benchmark information (default: 0)"), +QT_TRANSLATE_NOOP("dash-core", "Shrink debug.log file on client startup (default: 1 when no -debug)"), +QT_TRANSLATE_NOOP("dash-core", "Signing failed."), +QT_TRANSLATE_NOOP("dash-core", "Signing timed out, please resubmit."), +QT_TRANSLATE_NOOP("dash-core", "Signing transaction failed"), +QT_TRANSLATE_NOOP("dash-core", "Specify configuration file (default: dash.conf)"), +QT_TRANSLATE_NOOP("dash-core", "Specify connection timeout in milliseconds (default: 5000)"), +QT_TRANSLATE_NOOP("dash-core", "Specify data directory"), +QT_TRANSLATE_NOOP("dash-core", "Specify masternode configuration file (default: masternode.conf)"), +QT_TRANSLATE_NOOP("dash-core", "Specify pid file (default: dashd.pid)"), +QT_TRANSLATE_NOOP("dash-core", "Specify wallet file (within data directory)"), +QT_TRANSLATE_NOOP("dash-core", "Specify your own public address"), +QT_TRANSLATE_NOOP("dash-core", "Spend unconfirmed change when sending transactions (default: 1)"), +QT_TRANSLATE_NOOP("dash-core", "Start Dash Core Daemon"), +QT_TRANSLATE_NOOP("dash-core", "System error: "), +QT_TRANSLATE_NOOP("dash-core", "This help message"), +QT_TRANSLATE_NOOP("dash-core", "This is intended for regression testing tools and app development."), +QT_TRANSLATE_NOOP("dash-core", "This is not a masternode."), +QT_TRANSLATE_NOOP("dash-core", "Threshold for disconnecting misbehaving peers (default: 100)"), +QT_TRANSLATE_NOOP("dash-core", "To use the %s option"), +QT_TRANSLATE_NOOP("dash-core", "Transaction amount too small"), +QT_TRANSLATE_NOOP("dash-core", "Transaction amounts must be positive"), +QT_TRANSLATE_NOOP("dash-core", "Transaction created successfully."), +QT_TRANSLATE_NOOP("dash-core", "Transaction fees are too high."), +QT_TRANSLATE_NOOP("dash-core", "Transaction not valid."), +QT_TRANSLATE_NOOP("dash-core", "Transaction too large"), +QT_TRANSLATE_NOOP("dash-core", "Unable to bind to %s on this computer (bind returned error %s)"), +QT_TRANSLATE_NOOP("dash-core", "Unable to sign masternode payment winner, wrong key?"), +QT_TRANSLATE_NOOP("dash-core", "Unable to sign spork message, wrong key?"), +QT_TRANSLATE_NOOP("dash-core", "Unknown -socks proxy version requested: %i"), +QT_TRANSLATE_NOOP("dash-core", "Unknown network specified in -onlynet: '%s'"), +QT_TRANSLATE_NOOP("dash-core", "Upgrade wallet to latest format"), +QT_TRANSLATE_NOOP("dash-core", "Usage (deprecated, use dash-cli):"), +QT_TRANSLATE_NOOP("dash-core", "Usage:"), +QT_TRANSLATE_NOOP("dash-core", "Use KeePass 2 integration using KeePassHttp plugin (default: 0)"), +QT_TRANSLATE_NOOP("dash-core", "Use N separate masternodes to anonymize funds (2-8, default: 2)"), +QT_TRANSLATE_NOOP("dash-core", "Use OpenSSL (https) for JSON-RPC connections"), +QT_TRANSLATE_NOOP("dash-core", "Use UPnP to map the listening port (default: 0)"), +QT_TRANSLATE_NOOP("dash-core", "Use UPnP to map the listening port (default: 1 when listening)"), +QT_TRANSLATE_NOOP("dash-core", "Use the test network"), +QT_TRANSLATE_NOOP("dash-core", "Username for JSON-RPC connections"), +QT_TRANSLATE_NOOP("dash-core", "Value more than Darksend pool maximum allows."), +QT_TRANSLATE_NOOP("dash-core", "Verifying blocks..."), +QT_TRANSLATE_NOOP("dash-core", "Verifying wallet..."), +QT_TRANSLATE_NOOP("dash-core", "Wait for RPC server to start"), +QT_TRANSLATE_NOOP("dash-core", "Wallet %s resides outside data directory %s"), +QT_TRANSLATE_NOOP("dash-core", "Wallet is locked."), +QT_TRANSLATE_NOOP("dash-core", "Wallet needed to be rewritten: restart Dash to complete"), +QT_TRANSLATE_NOOP("dash-core", "Wallet options:"), +QT_TRANSLATE_NOOP("dash-core", "Warning"), +QT_TRANSLATE_NOOP("dash-core", "Warning: Deprecated argument -debugnet ignored, use -debug=net"), +QT_TRANSLATE_NOOP("dash-core", "Warning: This version is obsolete, upgrade required!"), +QT_TRANSLATE_NOOP("dash-core", "You need to rebuild the database using -reindex to change -txindex"), +QT_TRANSLATE_NOOP("dash-core", "Zapping all transactions from wallet..."), +QT_TRANSLATE_NOOP("dash-core", "on startup"), +QT_TRANSLATE_NOOP("dash-core", "version"), +QT_TRANSLATE_NOOP("dash-core", "wallet.dat corrupt, salvage failed"), +}; diff --git a/src/qt/forms/aboutdialog.ui b/src/qt/forms/aboutdialog.ui index 204f9c8562..e2e44176b4 100644 --- a/src/qt/forms/aboutdialog.ui +++ b/src/qt/forms/aboutdialog.ui @@ -23,7 +23,7 @@ - :/images/about + :/images/about @@ -151,7 +151,7 @@ This product includes software developed by the OpenSSL Project for use in the O - + diff --git a/src/qt/forms/addressbookpage.ui b/src/qt/forms/addressbookpage.ui index c9821bab60..f58cd42a0d 100644 --- a/src/qt/forms/addressbookpage.ui +++ b/src/qt/forms/addressbookpage.ui @@ -60,7 +60,7 @@ &New - + :/icons/add:/icons/add @@ -74,7 +74,7 @@ &Copy - + :/icons/editcopy:/icons/editcopy @@ -88,7 +88,7 @@ &Delete - + :/icons/remove:/icons/remove @@ -115,7 +115,7 @@ &Export - + :/icons/export:/icons/export @@ -138,7 +138,7 @@ - + diff --git a/src/qt/forms/helpmessagedialog.ui b/src/qt/forms/helpmessagedialog.ui index c0373f5a35..9d967db61f 100644 --- a/src/qt/forms/helpmessagedialog.ui +++ b/src/qt/forms/helpmessagedialog.ui @@ -28,7 +28,7 @@ - :/images/about + :/images/about @@ -89,7 +89,7 @@ - + diff --git a/src/qt/forms/optionsdialog.ui b/src/qt/forms/optionsdialog.ui index 15941a65a8..e2f79190ec 100755 --- a/src/qt/forms/optionsdialog.ui +++ b/src/qt/forms/optionsdialog.ui @@ -522,7 +522,7 @@ Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ true diff --git a/src/qt/forms/receivecoinsdialog.ui b/src/qt/forms/receivecoinsdialog.ui index 588a42538a..01cf9abb1d 100644 --- a/src/qt/forms/receivecoinsdialog.ui +++ b/src/qt/forms/receivecoinsdialog.ui @@ -141,7 +141,7 @@ &Request payment - + :/icons/receiving_addresses:/icons/receiving_addresses @@ -161,7 +161,7 @@ Clear - + :/icons/remove:/icons/remove @@ -267,7 +267,7 @@ false - + :/icons/edit:/icons/edit @@ -284,7 +284,7 @@ false - + :/icons/remove:/icons/remove @@ -328,7 +328,7 @@ removeRequestButton - + diff --git a/src/qt/forms/rpcconsole.ui b/src/qt/forms/rpcconsole.ui index 3b537b5baf..739ceb4802 100644 --- a/src/qt/forms/rpcconsole.ui +++ b/src/qt/forms/rpcconsole.ui @@ -401,7 +401,7 @@ - + :/icons/remove:/icons/remove @@ -682,7 +682,7 @@ - + diff --git a/src/qt/forms/sendcoinsdialog.ui b/src/qt/forms/sendcoinsdialog.ui index 80ec556e9f..fb68202d05 100644 --- a/src/qt/forms/sendcoinsdialog.ui +++ b/src/qt/forms/sendcoinsdialog.ui @@ -671,7 +671,7 @@ S&end - + :/icons/send:/icons/send @@ -694,7 +694,7 @@ Clear &All - + :/icons/remove:/icons/remove @@ -714,7 +714,7 @@ Add &Recipient - + :/icons/add:/icons/add @@ -812,7 +812,7 @@ - + diff --git a/src/qt/forms/sendcoinsentry.ui b/src/qt/forms/sendcoinsentry.ui index 2b33a386ea..04c788b6dc 100644 --- a/src/qt/forms/sendcoinsentry.ui +++ b/src/qt/forms/sendcoinsentry.ui @@ -64,7 +64,7 @@ - + :/icons/address-book:/icons/address-book @@ -81,7 +81,7 @@ - + :/icons/editpaste:/icons/editpaste @@ -98,7 +98,7 @@ - + :/icons/remove:/icons/remove @@ -154,7 +154,7 @@ - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. Qt::PlainText @@ -622,7 +622,7 @@ - + :/icons/remove:/icons/remove @@ -1158,7 +1158,7 @@ - + :/icons/remove:/icons/remove @@ -1230,7 +1230,7 @@ deleteButton_s - + diff --git a/src/qt/forms/signverifymessagedialog.ui b/src/qt/forms/signverifymessagedialog.ui index 80c27ccd39..6ca3d9fa72 100644 --- a/src/qt/forms/signverifymessagedialog.ui +++ b/src/qt/forms/signverifymessagedialog.ui @@ -58,7 +58,7 @@ - + :/icons/address-book:/icons/address-book @@ -78,7 +78,7 @@ - + :/icons/editpaste:/icons/editpaste @@ -134,7 +134,7 @@ - + :/icons/editcopy:/icons/editcopy @@ -155,7 +155,7 @@ Sign &Message - + :/icons/edit:/icons/edit @@ -172,7 +172,7 @@ Clear &All - + :/icons/remove:/icons/remove @@ -268,7 +268,7 @@ - + :/icons/address-book:/icons/address-book @@ -298,7 +298,7 @@ Verify &Message - + :/icons/transaction_0:/icons/transaction_0 @@ -315,7 +315,7 @@ Clear &All - + :/icons/remove:/icons/remove @@ -381,7 +381,7 @@ - + diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index 34dd7c9996..7895b53ee1 100755 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -115,8 +115,8 @@ void setupAmountWidget(QLineEdit *widget, QWidget *parent) bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out) { - // return if URI is not valid or is no darkcoin: URI - if(!uri.isValid() || uri.scheme() != QString("darkcoin")) + // return if URI is not valid or is no dash: URI + if(!uri.isValid() || uri.scheme() != QString("dash")) return false; SendCoinsRecipient rv; @@ -172,13 +172,13 @@ bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out) bool parseBitcoinURI(QString uri, SendCoinsRecipient *out) { - // Convert darkcoin:// to darkcoin: + // Convert dash:// to dash: // - // Cannot handle this later, because darkcoin:// will cause Qt to see the part after // as host, + // Cannot handle this later, because dash:// will cause Qt to see the part after // as host, // which will lower-case it (and thus invalidate the address). - if(uri.startsWith("darkcoin://", Qt::CaseInsensitive)) + if(uri.startsWith("dash://", Qt::CaseInsensitive)) { - uri.replace(0, 11, "darkcoin:"); + uri.replace(0, 11, "dash:"); } QUrl uriInstance(uri); return parseBitcoinURI(uriInstance, out); @@ -186,7 +186,7 @@ bool parseBitcoinURI(QString uri, SendCoinsRecipient *out) QString formatBitcoinURI(const SendCoinsRecipient &info) { - QString ret = QString("darkcoin:%1").arg(info.address); + QString ret = QString("dash:%1").arg(info.address); int paramCount = 0; if (info.amount) @@ -379,7 +379,7 @@ void openConfigfile() { boost::filesystem::path pathConfig = GetConfigFile(); - /* Open darkcoin.conf with the associated application */ + /* Open dash.conf with the associated application */ if (boost::filesystem::exists(pathConfig)) QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathConfig))); } @@ -630,7 +630,7 @@ boost::filesystem::path static GetAutostartDir() boost::filesystem::path static GetAutostartFilePath() { - return GetAutostartDir() / "darkcoin.desktop"; + return GetAutostartDir() / "dash.desktop"; } bool GetStartOnSystemStartup() @@ -668,7 +668,7 @@ bool SetStartOnSystemStartup(bool fAutoStart) boost::filesystem::ofstream optionFile(GetAutostartFilePath(), std::ios_base::out|std::ios_base::trunc); if (!optionFile.good()) return false; - // Write a darkcoin.desktop file to the autostart directory: + // Write a dash.desktop file to the autostart directory: optionFile << "[Desktop Entry]\n"; optionFile << "Type=Application\n"; optionFile << "Name=Dash\n"; @@ -690,7 +690,7 @@ bool SetStartOnSystemStartup(bool fAutoStart) LSSharedFileListItemRef findStartupItemInList(LSSharedFileListRef list, CFURLRef findUrl); LSSharedFileListItemRef findStartupItemInList(LSSharedFileListRef list, CFURLRef findUrl) { - // loop through the list of startup items and try to find the darkcoin app + // loop through the list of startup items and try to find the dash app CFArrayRef listSnapshot = LSSharedFileListCopySnapshot(list, NULL); for(int i = 0; i < CFArrayGetCount(listSnapshot); i++) { LSSharedFileListItemRef item = (LSSharedFileListItemRef)CFArrayGetValueAtIndex(listSnapshot, i); @@ -724,7 +724,7 @@ bool SetStartOnSystemStartup(bool fAutoStart) LSSharedFileListItemRef foundItem = findStartupItemInList(loginItems, bitcoinAppUrl); if(fAutoStart && !foundItem) { - // add darkcoin app to startup item list + // add dash app to startup item list LSSharedFileListInsertItemURL(loginItems, kLSSharedFileListItemBeforeFirst, NULL, NULL, bitcoinAppUrl, NULL, NULL); } else if(!fAutoStart && foundItem) { diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index ff3a8a5deb..ad3168f81a 100755 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -104,7 +104,7 @@ namespace GUIUtil // Open debug.log void openDebugLogfile(); - // Open darkcoin.conf + // Open dash.conf void openConfigfile(); /** Qt event filter that intercepts ToolTipChange events, and replaces the tooltip with a rich text diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp index d09d0ef634..115b762993 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -191,8 +191,8 @@ void Intro::pickDataDirectory() settings.setValue("strDataDir", dataDir); } /* Only override -datadir if different from the default, to make it possible to - * override -datadir in the darkcoin.conf file in the default data directory - * (to be consistent with darkcoind behavior) + * override -datadir in the dash.conf file in the default data directory + * (to be consistent with dashd behavior) */ if(dataDir != getDefaultDataDirectory()) SoftSetArg("-datadir", GUIUtil::qstringToBoostPath(dataDir).string()); // use OS locale for path setting diff --git a/src/qt/locale/darkcoin_nb.ts b/src/qt/locale/darkcoin_nb.ts index ea99e29932..0a141ef002 100644 --- a/src/qt/locale/darkcoin_nb.ts +++ b/src/qt/locale/darkcoin_nb.ts @@ -276,8 +276,8 @@ Dette produktet inneholder programvare utviklet av OpenSSL Projektet for bruk i - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - Advarsel: Hvis du krypterer lommeboka og mister adgangsfrasen vil du <b>MISTE ALLE DINE DARKCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Advarsel: Hvis du krypterer lommeboka og mister adgangsfrasen vil du <b>MISTE ALLE DINE DASHS</b>! @@ -292,8 +292,8 @@ Dette produktet inneholder programvare utviklet av OpenSSL Projektet for bruk i - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. - Dash vil lukke seg nå for å fullføre krypteringsprosessen. Husk at kryptering av lommeboka ikke fullstendig kan beskytte dine darkcoins fra å bli stjålet av virus som kan infisere datamaskinen din. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + Dash vil lukke seg nå for å fullføre krypteringsprosessen. Husk at kryptering av lommeboka ikke fullstendig kan beskytte dine dashs fra å bli stjålet av virus som kan infisere datamaskinen din. @@ -398,8 +398,8 @@ Dette produktet inneholder programvare utviklet av OpenSSL Projektet for bruk i - Request payments (generates QR codes and darkcoin: URIs) - Etterspør betalinger (genererer QR-koder og darkcoin: URIer) + Request payments (generates QR codes and dash: URIs) + Etterspør betalinger (genererer QR-koder og dash: URIer) @@ -596,8 +596,8 @@ Dette produktet inneholder programvare utviklet av OpenSSL Projektet for bruk i - Open a darkcoin: URI or payment request - Åpne en darkcoin: URI eller betalingsforespørsel + Open a dash: URI or payment request + Åpne en dash: URI eller betalingsforespørsel @@ -780,7 +780,7 @@ Adresse: %4 Lommeboken er <b>kryptert</b> og for tiden <b>låst</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. En fatal feil har oppstått. Dash kan ikke lenger fortsette trygt og vil avsluttes. @@ -1632,9 +1632,9 @@ Adresse: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ Manglende språk eller ufullstendig oversettelse? Hjelp med oversettelser her: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2062,7 +2062,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler @@ -2145,35 +2145,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. Feil: Spesifisert datamappe "%1" finnes ikke. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Feil: Kan ikke lese konfigurasjonsfil: %1. Bruk kun syntaksen nøkkel=verdi. - + Error reading masternode configuration file: %1 - + Error: Invalid combination of -regtest and -testnet. Feil: Ugyldig kombinasjon av -regtest og -testnet. - + Dash Core didn't yet exit safely... @@ -2982,7 +2982,7 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. @@ -3919,13 +3919,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3936,1314 +3936,1314 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - + Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) - + Fees smaller than this are considered zero fee (for transaction creation) (default: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. Fant ubekreftede denominerte outputs, vil vente med å gå videre til de bekreftes. - + How thorough the block verification of -checkblocks is (0-4, default: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. InstantX trenger inputs med minst 6 bekreftelser, du trenger kanskje å vente noen minutter før du prøver igjen. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Vis debug-informasjon (standard: 0, Å oppgi <kategori> er frivillig) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + (default: 1) - + (default: wallet.dat) - + <category> can be: - + Accept command line and JSON-RPC commands - + Accept connections from outside (default: 1 if no -proxy or -connect) - + Add a node to connect to and attempt to keep the connection open - + Allow DNS lookups for -addnode, -seednode and -connect - + Allow JSON-RPC connections from specified IP address - + Already have that input. Har allerede den inputen. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat - + Block creation options: - + Can't denominate: no compatible inputs left. Kan ikke denominere: Ingen kompatible inputs eksisterer. - + Cannot downgrade wallet - + Cannot resolve -bind address: '%s' - + Cannot resolve -externalip address: '%s' - + Cannot write default address - + Clear list of wallet transactions (diagnostic tool; implies -rescan) - + Collateral is not valid. - + Collateral not valid. - + Connect only to the specified node(s) - + Connect through SOCKS proxy - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) - + Connect to a node to retrieve peer addresses, and disconnect - + Connection options: - + Corrupted block database detected - + Dash Core Daemon - + Dash Core RPC client version - + Darksend is disabled. - + Darksend options: - + Debugging/Testing options: - + Disable safemode, override a real safe mode event (default: 0) - + Discover own IP address (default: 1 when listening and no -externalip) - + Do not load the wallet and disable wallet RPC calls - + Do you want to rebuild the block database now? - + Done loading - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) - + Entries are full. - + Error connecting to masternode. - + Error initializing block database - + Error initializing wallet database environment %s! - + Error loading block database - + Error loading wallet.dat - + Error loading wallet.dat: Wallet corrupted - + Error loading wallet.dat: Wallet requires newer version of Dash - + Error opening block database - + Error reading from database, shutting down. - + Error recovering public key. - + Error Feil - + Error: Disk space is low! - + Error: Wallet locked, unable to create transaction! - + Error: You already have pending entries in the Darksend pool - + Error: system error: - + Failed to listen on any port. Use -listen=0 if you want this. - + Failed to read block info - + Failed to read block - + Failed to sync block index - + Failed to write block index - + Failed to write block info - + Failed to write block - + Failed to write file info - + Failed to write to coin database - + Failed to write transaction index - + Failed to write undo data - + Fee per kB to add to transactions you send - + Fees smaller than this are considered zero fee (for relaying) (default: - + Force safe mode (default: 0) - + Generate coins (default: 0) - + Get help for a command - + How many blocks to check at startup (default: 288, 0 = all) - + If <category> is not supplied, output all debugging information. Hvis <kategori> ikke er oppgitt, vis all debug-informasjon. - + Ignore masternodes less than version (example: 70050; default : 0) - + Importing... - + Imports blocks from external blk000??.dat file - + Incompatible mode. - + Incompatible version. - + Incorrect or no genesis block found. Wrong datadir for network? - + Information Informasjon - + Initialization sanity check failed. Dash Core is shutting down. - + Input is not valid. Input er ikke gyldig. - + InstantX options: - + Insufficient funds - + Insufficient funds. - + Invalid -onion address: '%s' - + Invalid -proxy address: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' - + Invalid amount - + Invalid masternodeprivkey. Please see documenation. - + Invalid private key. - + Invalid script detected. - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. - + Last successful darksend action was too recent. - + Limit size of signature cache to <n> entries (default: 50000) - + List commands - + Listen for connections on <port> (default: 9999 or testnet: 19999) - + Loading addresses... - + Loading block index... - + Loading masternode list... - + Loading wallet... (%3.2f %%) - + Loading wallet... - + Log transaction priority and fee per kB when mining blocks (default: 0) - + Maintain a full transaction index (default: 0) - + Maintain at most <n> connections to peers (default: 125) - + Masternode options: - + Masternode queue is full. - + Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Missing input transaction information. Mangler transaksjoninformasjon for input. - + No compatible masternode found. - + No funds detected in need of denominating. - + No masternodes detected. - + No matching denominations found for mixing. - + Non-standard public key detected. - + Not compatible with existing transactions. - + Not enough file descriptors available. - + Not in the masternode list. - + Only accept block chain matching built-in checkpoints (default: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + Options: - + Password for JSON-RPC connections - + Prepend debug output with timestamp (default: 1) Foranstill debug-visning med tidsstempel (standard: 1) - + Print block on startup, if found in block index - + Print block tree on startup (default: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + RPC client options: - + RPC server options: - + Randomly drop 1 of every <n> network messages - + Randomly fuzz 1 of every <n> network messages - + Rebuild block chain index from current blk000??.dat files - + Rescan the block chain for missing wallet transactions - + Rescanning... - + Run a thread to flush wallet periodically (default: 1) - + Run in the background as a daemon and accept commands - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Select SOCKS version for -proxy (4 or 5, default: 5) - + Send command to Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Session not complete! - + Session timed out (30 seconds), please resubmit. - + Set database cache size in megabytes (%d to %d, default: %d) - + Set key pool size to <n> (default: 100) - + Set maximum block size in bytes (default: %d) - + Set minimum block size in bytes (default: 0) - + Set the masternode private key - + Set the number of threads to service RPC calls (default: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) - + Show all debugging options (usage: --help -help-debug) - + Show benchmark information (default: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) - + Signing failed. - + Signing timed out, please resubmit. - + Signing transaction failed - - Specify configuration file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) - + Specify data directory - + Specify masternode configuration file (default: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) - + Specify wallet file (within data directory) - + Specify your own public address - + Spend unconfirmed change when sending transactions (default: 1) - + Start Dash Core Daemon - + System error: - + This help message - + This is intended for regression testing tools and app development. - + This is not a masternode. - + Threshold for disconnecting misbehaving peers (default: 100) - + To use the %s option - + Transaction amount too small - + Transaction amounts must be positive - + Transaction created successfully. - + Transaction fees are too high. - + Transaction not valid. - + Transaction too large - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i - + Unknown network specified in -onlynet: '%s' - + Upgrade wallet to latest format - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): - + Usage: Bruk: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) - + Use OpenSSL (https) for JSON-RPC connections - + Use UPnP to map the listening port (default: 0) - + Use UPnP to map the listening port (default: 1 when listening) - + Use the test network - + Username for JSON-RPC connections - + Value more than Darksend pool maximum allows. - + Verifying blocks... - + Verifying wallet... - + Wait for RPC server to start - + Wallet %s resides outside data directory %s - + Wallet is locked. - + Wallet needed to be rewritten: restart Dash to complete - + Wallet options: - + Warning Advarsel - + Warning: Deprecated argument -debugnet ignored, use -debug=net - + Warning: This version is obsolete, upgrade required! @@ -5252,27 +5252,27 @@ If the file does not exist, create it with owner-readable-only file permissions. - + You need to rebuild the database using -reindex to change -txindex - + Zapping all transactions from wallet... - + on startup - + version versjon - + wallet.dat corrupt, salvage failed diff --git a/src/qt/locale/darkcoin_nl.ts b/src/qt/locale/darkcoin_nl.ts index 02168cb856..e1c732932a 100644 --- a/src/qt/locale/darkcoin_nl.ts +++ b/src/qt/locale/darkcoin_nl.ts @@ -275,8 +275,8 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - Opgelet: Wanneer u uw beurs encrypteert en paswoordzin verliest, de zal u <b>AL UW DARKCOINS VERLIEZEN</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Opgelet: Wanneer u uw beurs encrypteert en paswoordzin verliest, de zal u <b>AL UW DASHS VERLIEZEN</b>! @@ -291,8 +291,8 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. - Dash zal nu sluiten om het encrypteerproces te voltooien. Onthoud dat het encrypteren de beurs niet volledig kan beschermen tegen het stelen van darkcoins door malware die uw computer besmet. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + Dash zal nu sluiten om het encrypteerproces te voltooien. Onthoud dat het encrypteren de beurs niet volledig kan beschermen tegen het stelen van dashs door malware die uw computer besmet. @@ -397,8 +397,8 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d - Request payments (generates QR codes and darkcoin: URIs) - Vraag betaling (genereert QR codes en darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) + Vraag betaling (genereert QR codes en dash: URIs) @@ -595,8 +595,8 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d - Open a darkcoin: URI or payment request - Open een darkcoin: URI of betalingsverzoek + Open a dash: URI or payment request + Open een dash: URI of betalingsverzoek @@ -780,7 +780,7 @@ Adres: %4 Portemonnee is <b>versleuteld</b> en momenteel <b>gesloten</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Een fatale fout is opgetreden. Dash kan niet langer veilig opereren en zal sluiten. @@ -1632,7 +1632,7 @@ Adres: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2061,7 +2061,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler @@ -2144,35 +2144,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. Fout: Opgegeven gegevensmap "%1" bestaat niet. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Fout: Kan configuratiebestand niet parsen: %1. Gebruik enkel de key=value syntax. - + Error reading masternode configuration file: %1 - + Error: Invalid combination of -regtest and -testnet. Fout: Ongeldige combinatie van -regtest en -testnet - + Dash Core didn't yet exit safely... @@ -2981,8 +2981,8 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. - Een boodschap die was bijgevoegd aan de darkcoin: URI die met de transactie voor uw referentie wordt opgeslagen. Opmerking: Dit bericht zal niet over het Dash netwerk worden verzonden. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + Een boodschap die was bijgevoegd aan de dash: URI die met de transactie voor uw referentie wordt opgeslagen. Opmerking: Dit bericht zal niet over het Dash netwerk worden verzonden. @@ -3918,13 +3918,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3935,1314 +3935,1314 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - + Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) - + Fees smaller than this are considered zero fee (for transaction creation) (default: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. - + How thorough the block verification of -checkblocks is (0-4, default: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + Output debugging information (default: 0, supplying <category> is optional) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Waarschuwing: -paytxfee is erg hoog ingesteld! Dit bedrag wordt in rekening gebracht bij het uitvoeren van een transactie. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. Waarschuwing: Controleer a.u.b. de datum en tijd van uw computer! Dash zal niet goed functioneren indien dit niet correct is ingesteld. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + (default: 1) - + (default: wallet.dat) - + <category> can be: - + Accept command line and JSON-RPC commands - + Accept connections from outside (default: 1 if no -proxy or -connect) - + Add a node to connect to and attempt to keep the connection open - + Allow DNS lookups for -addnode, -seednode and -connect - + Allow JSON-RPC connections from specified IP address - + Already have that input. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat - + Block creation options: - + Can't denominate: no compatible inputs left. - + Cannot downgrade wallet - + Cannot resolve -bind address: '%s' - + Cannot resolve -externalip address: '%s' - + Cannot write default address - + Clear list of wallet transactions (diagnostic tool; implies -rescan) - + Collateral is not valid. - + Collateral not valid. - + Connect only to the specified node(s) - + Connect through SOCKS proxy - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) - + Connect to a node to retrieve peer addresses, and disconnect - + Connection options: - + Corrupted block database detected - + Dash Core Daemon Dash Core Daemon - + Dash Core RPC client version - + Darksend is disabled. - + Darksend options: Darksend opties: - + Debugging/Testing options: - + Disable safemode, override a real safe mode event (default: 0) - + Discover own IP address (default: 1 when listening and no -externalip) - + Do not load the wallet and disable wallet RPC calls - + Do you want to rebuild the block database now? - + Done loading Klaar met laden - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) - + Entries are full. - + Error connecting to masternode. - + Error initializing block database - + Error initializing wallet database environment %s! - + Error loading block database Fout tijdens laden van block database - + Error loading wallet.dat Fout bij het laden van wallet.dat - + Error loading wallet.dat: Wallet corrupted - + Error loading wallet.dat: Wallet requires newer version of Dash - + Error opening block database - + Error reading from database, shutting down. - + Error recovering public key. - + Error Fout - + Error: Disk space is low! Fout: Schijfruimte is laag! - + Error: Wallet locked, unable to create transaction! - + Error: You already have pending entries in the Darksend pool - + Error: system error: - + Failed to listen on any port. Use -listen=0 if you want this. - + Failed to read block info - + Failed to read block - + Failed to sync block index - + Failed to write block index - + Failed to write block info - + Failed to write block - + Failed to write file info - + Failed to write to coin database - + Failed to write transaction index - + Failed to write undo data - + Fee per kB to add to transactions you send - + Fees smaller than this are considered zero fee (for relaying) (default: - + Force safe mode (default: 0) - + Generate coins (default: 0) - + Get help for a command - + How many blocks to check at startup (default: 288, 0 = all) - + If <category> is not supplied, output all debugging information. - + Ignore masternodes less than version (example: 70050; default : 0) - + Importing... - + Imports blocks from external blk000??.dat file - + Incompatible mode. - + Incompatible version. - + Incorrect or no genesis block found. Wrong datadir for network? - + Information Informatie - + Initialization sanity check failed. Dash Core is shutting down. - + Input is not valid. - + InstantX options: - + Insufficient funds - + Insufficient funds. - + Invalid -onion address: '%s' - + Invalid -proxy address: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' - + Invalid amount - + Invalid masternodeprivkey. Please see documenation. - + Invalid private key. - + Invalid script detected. - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. - + Last successful darksend action was too recent. - + Limit size of signature cache to <n> entries (default: 50000) - + List commands - + Listen for connections on <port> (default: 9999 or testnet: 19999) - + Loading addresses... - + Loading block index... - + Loading masternode list... - + Loading wallet... (%3.2f %%) - + Loading wallet... - + Log transaction priority and fee per kB when mining blocks (default: 0) - + Maintain a full transaction index (default: 0) - + Maintain at most <n> connections to peers (default: 125) - + Masternode options: - + Masternode queue is full. - + Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Missing input transaction information. - + No compatible masternode found. - + No funds detected in need of denominating. - + No masternodes detected. - + No matching denominations found for mixing. - + Non-standard public key detected. - + Not compatible with existing transactions. - + Not enough file descriptors available. - + Not in the masternode list. - + Only accept block chain matching built-in checkpoints (default: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + Options: - + Password for JSON-RPC connections - + Prepend debug output with timestamp (default: 1) - + Print block on startup, if found in block index - + Print block tree on startup (default: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + RPC client options: - + RPC server options: - + Randomly drop 1 of every <n> network messages - + Randomly fuzz 1 of every <n> network messages - + Rebuild block chain index from current blk000??.dat files - + Rescan the block chain for missing wallet transactions - + Rescanning... - + Run a thread to flush wallet periodically (default: 1) - + Run in the background as a daemon and accept commands - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Select SOCKS version for -proxy (4 or 5, default: 5) - + Send command to Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Session not complete! - + Session timed out (30 seconds), please resubmit. - + Set database cache size in megabytes (%d to %d, default: %d) - + Set key pool size to <n> (default: 100) - + Set maximum block size in bytes (default: %d) - + Set minimum block size in bytes (default: 0) - + Set the masternode private key Stel de masternode private key in - + Set the number of threads to service RPC calls (default: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) - + Show all debugging options (usage: --help -help-debug) - + Show benchmark information (default: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) - + Signing failed. - + Signing timed out, please resubmit. - + Signing transaction failed - - Specify configuration file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) - + Specify data directory - + Specify masternode configuration file (default: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) - + Specify wallet file (within data directory) - + Specify your own public address - + Spend unconfirmed change when sending transactions (default: 1) - + Start Dash Core Daemon - + System error: - + This help message - + This is intended for regression testing tools and app development. - + This is not a masternode. - + Threshold for disconnecting misbehaving peers (default: 100) - + To use the %s option - + Transaction amount too small - + Transaction amounts must be positive Transactiebedrag moet positief zijn - + Transaction created successfully. - + Transaction fees are too high. - + Transaction not valid. - + Transaction too large Transactie te groot - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i - + Unknown network specified in -onlynet: '%s' - + Upgrade wallet to latest format Upgrade portemonnee naar nieuwste format - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): - + Usage: Gebruik: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) - + Use OpenSSL (https) for JSON-RPC connections - + Use UPnP to map the listening port (default: 0) - + Use UPnP to map the listening port (default: 1 when listening) - + Use the test network - + Username for JSON-RPC connections - + Value more than Darksend pool maximum allows. - + Verifying blocks... - + Verifying wallet... - + Wait for RPC server to start - + Wallet %s resides outside data directory %s - + Wallet is locked. - + Wallet needed to be rewritten: restart Dash to complete - + Wallet options: - + Warning Waarschuwing - + Warning: Deprecated argument -debugnet ignored, use -debug=net Waarschuwing: Verouderd parameter -debugnet niet uitgevoerd, gebruik -debug=net - + Warning: This version is obsolete, upgrade required! @@ -5251,27 +5251,27 @@ If the file does not exist, create it with owner-readable-only file permissions. - + You need to rebuild the database using -reindex to change -txindex - + Zapping all transactions from wallet... - + on startup - + version versie - + wallet.dat corrupt, salvage failed diff --git a/src/qt/locale/darkcoin_pl.ts b/src/qt/locale/darkcoin_pl.ts index 97630a40c1..c7488db957 100644 --- a/src/qt/locale/darkcoin_pl.ts +++ b/src/qt/locale/darkcoin_pl.ts @@ -276,8 +276,8 @@ Ten produkt zawiera oprogramowanie opracowane przez Projekt OpenSSL do użycia w - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - Ostrzeżenie: Jeśli zaszyfrujesz swój portfel i zgubisz swoje hasło, <b>STRACISZ WSZYSTKIE DARKCOINY</b> + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Ostrzeżenie: Jeśli zaszyfrujesz swój portfel i zgubisz swoje hasło, <b>STRACISZ WSZYSTKIE DASHY</b> @@ -292,7 +292,7 @@ Ten produkt zawiera oprogramowanie opracowane przez Projekt OpenSSL do użycia w - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. Dash zostanie teraz zamknięty aby zakończyć proces szyfrowania. Pamiętaj, że zaszyfrowanie portfela nie gwarantuje pełnej ochrony przed kradzieżą twoich monet przez złośliwe oprogramowanie. @@ -398,8 +398,8 @@ Ten produkt zawiera oprogramowanie opracowane przez Projekt OpenSSL do użycia w - Request payments (generates QR codes and darkcoin: URIs) - Poproś o płatności (tworzy kod QR oraz darkcoin: link) + Request payments (generates QR codes and dash: URIs) + Poproś o płatności (tworzy kod QR oraz dash: link) @@ -596,8 +596,8 @@ Ten produkt zawiera oprogramowanie opracowane przez Projekt OpenSSL do użycia w - Open a darkcoin: URI or payment request - Otwórz darkcoin: Link lub żądanie zapłaty + Open a dash: URI or payment request + Otwórz dash: Link lub żądanie zapłaty @@ -780,7 +780,7 @@ Adres: %4 Portfel jest <b>zaszyfrowany</b> i obecnie <b>zablokowany</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Wystąpił poważny błąd. Dash zostanie zamknięty. @@ -1632,9 +1632,9 @@ Adres: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ Dash Core nie został przetłumaczony na twój język? Tłumaczenie jest niepełne lub niepoprawne? Możesz pomóc nam tłumaczyć tutaj: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2062,8 +2062,8 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler - Nie można włączyć darkcoin: kliknij-aby-zapłacić ubsługującemu. + Cannot start dash: click-to-pay handler + Nie można włączyć dash: kliknij-aby-zapłacić ubsługującemu. @@ -2145,35 +2145,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. Błąd: Określony folder danych "%1" nie istnieje. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Błąd: Nie można przetworzyć pliku konfiguracyjnego: %1. Używaj tylko składni klucz=wartość. - + Error reading masternode configuration file: %1 Błąd podczas wczytywania pliku z konfiguracją masternoda: %1 - + Error: Invalid combination of -regtest and -testnet. Błąd: Niepoprawna kombinacja -regtest i -testnet. - + Dash Core didn't yet exit safely... Dash Core jeszcze się nie wyłaczył... @@ -2982,8 +2982,8 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. - Wiadomość, która została dołączona do darkcoin: Link, który zostanie zapisany wraz z transakcją do wglądu w przyszłości. Zauważ. że sama wiadomość nie zostanie wysłana przez sieć Darkcoina. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + Wiadomość, która została dołączona do dash: Link, który zostanie zapisany wraz z transakcją do wglądu w przyszłości. Zauważ. że sama wiadomość nie zostanie wysłana przez sieć Darkcoina. @@ -3919,13 +3919,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3936,7 +3936,7 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com %s, musisz ustawić hasło rpc w pliku konfiguracji: %s Zalecane jest abyś użył te o to losowo stworzone hasło -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (Nie musisz pamiętać tego hasła) Twoje hasło NIE MOŻE być takie samo jak twój login. @@ -3945,247 +3945,247 @@ Zaleca się również aby ustawić alarm powiadomień tzw. alertnotify, aby dać - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Akceptowane szyfry (domyślny: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH)) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s Wystąpił błąd podczas zakładania portu %u RPC służącego do nasłuchu na IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Wystąpił błąd podczas ustawiania portu %u służącego do nasłuchu na IPv6 przez co nastąpił powrót do do IPv4: s% - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Związany z danym adresem oraz zawsze prowadzący na nim nasłuch. Użyj [host]:oznaczenie dla IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. Nie można zablokować katalogu danych %s. Prawdopodobnie Dash jest już uruchomiony. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) Utrzymuj limit tempa darmowych transakcji do <n>*1000 bitów na minutę (domyślnie: 15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. Darksend używa dokładnych denominowanych kwot do przesyłania środków, możliwe że musisz zanonimizować trochę więcej monet. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) Wyłącz wszystkie funkcje związane z Masternode i Darksend - + Enable instantx, show confirmations for locked transactions (bool, default: true) Włącz instantx, pokaż potwierdzenia dla zamkniętych transakcji (bool, domyślnie: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) Włącz możliwość automatyzacji Darksend dla środków zgromadzonych w tym portfelu (0-1, domyślnie: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. Wejdź w regresyjny tryb testowy, który używa specjalnego łańcucha, w którym bloki mogą być rozwiązywane natychmiastowo. Tryb ten został stworzony dla narzędzi do testowania regresyjnego oraz dla tworzenia aplikacji. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Wejdź w regresyjny tryb testowy, który używa specjalnego łańcucha, w którym bloki mogą być rozwiązywane natychmiastowo. - + Error: Listening for incoming connections failed (listen returned error %s) Błąd: Nie powiodło się nasłuchiwanie połączeń przychodzących (nasłuch zwrócił błąd %s) - + 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 and coins were spent in the copy but not marked as spent here. Transakcja została odrzucona! Może się to zdarzyć jeśli część monet z portfela została już wydana używając kopii pliku wallet.dat i nie zostało to tutaj uwzględnione. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Błąd: Z powodu wielkości kwoty, swojego skomplikowania, lub użycia niedawno otrzymanych monet, transakcja ta wymaga uiszczenia opłaty o wysokości co najmniej %s - + Error: Wallet unlocked for anonymization only, unable to create transaction. Błąd: Portfel jest odblokowany tylko dla celu anonimizacji, nie możliwe jest przeprowadzenie transakcji. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Wykonaj komendę po otrzymaniu odpowiedniego zawiadomienia lub po obserwacji bardzo długiego rozszczepienia (%s w konsoli jest zastąpiony przez wiadomość) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Wykonaj komendę kiedy zmienia się transakcja portfela (%s w konsoli jest zastąpione przez TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Wykonaj komendę przy zmianie najlepszego bloku (%s w konsoli jest zastąpione przez hasz bloku) - + Fees smaller than this are considered zero fee (for transaction creation) (default: Opłaty mniejsze niż ta, są uważane są za równoznaczne z brakiem opłat (dla przeprowadzenia transakcji) (domyślnie: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) Zrzuć zapisy aktywności bazy danych z pamięci na dysk co <n> megabajtów (domyślnie: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. Znaleziono niepotwierdzone denominowane transakcje wyjściowe, poczekam aż zostaną one potwierdzone aby móc kontynuować dalej. - + How thorough the block verification of -checkblocks is (0-4, default: 3) Jak szczegółowa jest weryfikacja bloków (0-4, domyślnie: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. W tym trybie -genproclimit kontroluje ile bloków jest generowanych natychmiastowo. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. InstantX potrzebuje aby transakcja wejściowa miała co najmniej 6 potwierdzeń. Poczekaj kilka minut i spróbuj ponownie. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) Prowadź nasłuch połączeń JSON-RPC na <port> (domyślnie: 9998 lub testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase Nazwa służąca do stworzenia linka do KeePass w którym trzymane jest hasło portfela - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Ilość czasu liczonego w sekundach jaki musi upłynąć zanim wadliwy peer znowu może spróbować nawiązać połączenie (domyślnie 86400) - + Output debugging information (default: 0, supplying <category> is optional) . - + 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) Dostarcz Darksend płynności przez rzadkie ale ciągłe mieszanie monet (0-100, domyślnie: 0, 1=bardzo często, wysokie opłaty, 100=bardzo rzadko, małe opłaty) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Jeśli pula adresów jest niska, pytaj o adresy peer przez podgląd DNS (domyślnie: 1 chyba że -connect) - + Set external address:port to get to this masternode (example: address:port) Ustaw zewnętrzny adres:port aby połączyć się z tym masternodem (na przykład: adres:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Ustaw maksymalny rozmiar transakcji o wysokim/niskim priorytecie w bajtach (domyślny: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Ustaw liczbę wątków weryfikacji skryptu (%u do %d, 0 = auto, <0 = zostaw tyle rdzeni wolnych, domyślnie: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) Ustaw limit na pracę procesora kiedy generowanie jest włączone (-1 = brak limitu, domyślnie: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) Pokaż N potwierdzeń dla skutecznie zamkniętej transakcji (0-9999, domyślnie: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Ta wersja nie jest jeszcze gotowa na oficjalne wydanie - używaj jej na własne ryzyko - nie używaj tej wersji do kopania monet lub do świadczenia usług komercyjnych. - + Unable to bind to %s on this computer. Dash Core is probably already running. Niezdolny do związania z %s na tym komputerze. Prawdopodobnie Dash jest już uruchomiony. - + Unable to locate enough Darksend denominated funds for this transaction. Nie znaleziono wystarczających denominowanych środków Darksend do wykonania tej transakcji. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. Nie znaleziono wystarczającej ilości nie zdenominowanych środków Darksend dla tej transakcji, które nie równają się 1000 DASH - + Unable to locate enough Darksend non-denominated funds for this transaction. Nie znaleziono wystarczającej ilości zdenominowanych środków Darksend dla tej transakcji. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Użyj osobnego proxy SOCK5 aby połączyć się z peerami przez sieć Tor (domyślnie: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Uwaga: -paytxfee jest bardzo wysoka! To jest opłata którą będziesz musiał uiścić jeśli dokonasz transakcji. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. Uwaga: Proszę sprawdzić czy data i czas na twoim komputerze są poprawne! Jeśli twój zegar nie pokazuje prawidłowej godziny to Dash może nie działać poprawnie. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Uwaga: Wygląda na to, że istnieją pewne rozbieżności w sieci! Możliwe, że niektórzy kopacze doświadczają problemów technicznych. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. dadf - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Uwaga: wystąpił błąd podczas odczytu pliku wallet.dat! Wszystkie klucze są odczytywane poprawnie ale dane transakcji lub wpis w bazie adresów jest niepoprawny lub nie istnieje. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Uwaga: plik wallet.dat jest uszkodzony, ale dane zostały odzyskane! Oryginalny plik wallet.dat został zapisany jako wallet.{timestamp}.bak w %s; jeżeli twoje saldo lub transakcje są nieprawidłowe powinieneś przwyrócić ten plik z kopi zapasowej. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4194,1067 +4194,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. Jeżeli plik ten nie istnieje, stwórz go z uprawnieniami tylko do odczytu przez właściciela. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. Musisz sprecyzować masternodeprivkey w konfiguracji. Proszę przeglądnij dokumentacje w celu pomocy. - + (default: 1) (standardowo: 1) - + (default: wallet.dat) (standardowo: wallet.dat) - + <category> can be: <category> może być: - + Accept command line and JSON-RPC commands Zaakceptuj linie poleceń oraz polecenia JSON-RPC - + Accept connections from outside (default: 1 if no -proxy or -connect) Pozwól na połączenia z zewnątrz (domyślnie: 1 jeśli nie -proxy lub -connect) - + Add a node to connect to and attempt to keep the connection open Dodaj węzeł do połączenia się oraz spróbuj utrzymać połączenie otwarte - + Allow DNS lookups for -addnode, -seednode and -connect Pozwól na wyszukiwanie DNS dla -addnode, -seednode oraz -connect - + Allow JSON-RPC connections from specified IP address Pozwól na połączenia JSON-RPC z określonego adresu IP - + Already have that input. Ta wartość wejściowa już istnieje - + Always query for peer addresses via DNS lookup (default: 0) Zawsze wysyłaj zapytanie o adres peera przez podgląd DNS (domyślnie: 0) - + Attempt to recover private keys from a corrupt wallet.dat Spróbuj odzyskać prywatne klucze z uszkodzonego wallet.dat - + Block creation options: Opcje tworzenia bloku - + Can't denominate: no compatible inputs left. Niemożna denominować: Nie ma kompatybilnych transakcji wejściowych. - + Cannot downgrade wallet Nie można obniżyć wersji portfela - + Cannot resolve -bind address: '%s' Nie można rozwiązać -bind dla adresu adresu: '%s' - + Cannot resolve -externalip address: '%s' Nie można rozwiązać -externalip dla adresu: '%s' - + Cannot write default address Nie można zapisać domyślnych adresów - + Clear list of wallet transactions (diagnostic tool; implies -rescan) Wyczyść listę transakcji w portfelu (opcja diagnostyczna; oznacza -rescan) - + Collateral is not valid. Transakcja pod zastaw jest nie niewłaściwa. - + Collateral not valid. Transakcja pod zastaw jest nie niewłaściwa. - + Connect only to the specified node(s) Podłącz tylko do wyszczególnionych węzła(ów) - + Connect through SOCKS proxy Połączenie poprzez SOCKS proxy - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) Podłącz do JSON-RPC na porcie <port> (domyślny: 9998 lub sieć testowa: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) Podłącz do KeePassHttp na porcie <port> (domyślny: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Podłącz do węzła aby odzyskać adresy peerów, a potem odłącz - + Connection options: Opcje połączenia: - + Corrupted block database detected Wykryto uszkodzoną bazę danych bloków - + Dash Core Daemon Dash Core Daemon - + Dash Core RPC client version Wersja klienta Dash Core RPC - + Darksend is disabled. Darksend jest wyłączony. - + Darksend options: Opcje Darksend: - + Debugging/Testing options: Opcje debugowania/testowania: - + Disable safemode, override a real safe mode event (default: 0) Wyłącz tryb awaryjny, nadpisz przawdziwy tryb awaryjny (domyślny:0) - + Discover own IP address (default: 1 when listening and no -externalip) Wykryj własny adres IP (domyślny:1 kiedy nasłuchuje oraz nie ma -externalip) - + Do not load the wallet and disable wallet RPC calls Nie wczytuj portfela oraz wyłącz połączenia RPC - + Do you want to rebuild the block database now? Czy chcesz teraz przebudować bazę danych bloków? - + Done loading Wczytywanie zakończone - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) Upoważnia klienta aby działał jako masternode (0-1, domyślny: 0) - + Entries are full. Wpisy są pełne. - + Error connecting to masternode. Błąd podłączania do masternoda. - + Error initializing block database Błąd podczas inicjowania bazy dancyh bloku - + Error initializing wallet database environment %s! Błąd podczas inicjowania środowiska bazy danych portfela - + Error loading block database Błąd wczytywania bloku bazy danych - + Error loading wallet.dat Błąd wczytywania wallet.dat - + Error loading wallet.dat: Wallet corrupted Błąd wczytywania wallet.dat: Portfel uszkodzony - + Error loading wallet.dat: Wallet requires newer version of Dash Błą wczytywania wallet.dat: Portfel wymaga nowszej wersji Dash - + Error opening block database Błąd otwarcia bloku bazy danych - + Error reading from database, shutting down. Błąd odczytu bazy danych, następuje zamknięcie. - + Error recovering public key. Błąd odzyskiwania klucza publicznego. - + Error Błąd - + Error: Disk space is low! Błąd: Przestrzeń dyskowa jest niska! - + Error: Wallet locked, unable to create transaction! Błąd: Portfel zamknięty, stworzenie transakcji jest niemożliwe! - + Error: You already have pending entries in the Darksend pool Błąd: Już masz oczekujące wejścia do puli Darksend - + Error: system error: Błąd systemu - + Failed to listen on any port. Use -listen=0 if you want this. Nie powiódł się nasłuch żadnego z portów. Użyj -listen=0 jeśli chcesz. - + Failed to read block info Niepowodzenie przy odczycie informacji o bloku - + Failed to read block Niepowodzenie przy odczycie bloku - + Failed to sync block index Niepowodzenie przy synchronizacji indeksu bloku - + Failed to write block index Niepowodzenie przy próbie zapisu indeksu bloku - + Failed to write block info Niepowodzenie przy zapisie informacji o bloku - + Failed to write block Niepowodzenie przy próbie zapisu bloku - + Failed to write file info Niepowodzenie przy zapisie informacji o pliku - + Failed to write to coin database Niepowodzenie przy zapisie do bazy danych monet - + Failed to write transaction index NIepowodzenie przy zapisie indeksu transakcji - + Failed to write undo data NIepowodzenie przy zapisie cofniętych danych - + Fee per kB to add to transactions you send Opłata za kB do dodania do transakcji, którą wysyłasz - + Fees smaller than this are considered zero fee (for relaying) (default: Opłaty mniejsze niż te, są uważane za zerowe opłaty (dla przekazywania) (domyślny: - + Force safe mode (default: 0) Wymuś tryb bezpieczny (domyślny: 0) - + Generate coins (default: 0) Generuj monety (domyślny: 0) - + Get help for a command Poproś o pomoc dla polecenia - + How many blocks to check at startup (default: 288, 0 = all) Ile bloków do sprawdzenia podczas uruchomienia (domyślny: 280, 0 = wszystkie) - + If <category> is not supplied, output all debugging information. Jeśli <kategoria> nie jest dostarczona, utwórz informacje o debugowaniu. - + Ignore masternodes less than version (example: 70050; default : 0) Ignoruj masternody niższe wersją od (przykład: 70050; domyślny: 0) - + Importing... Importuje... - + Imports blocks from external blk000??.dat file Importuje bloki z zewnętrznego pliku blk000??.dat - + Incompatible mode. Niekompatybilny tryb. - + Incompatible version. Niekompatybilna wersja. - + Incorrect or no genesis block found. Wrong datadir for network? Znaleziono nieprawidłowy blok lub brak bloku początkowego. Nieprawidłowy katalog danych dla sieci - + Information Informacja - + Initialization sanity check failed. Dash Core is shutting down. Inicjalizacja kontroli poprawności nie powiodła się. Trwa zamykanie Dash Core - + Input is not valid. Transakcja wejściowa jest niewłaściwa. - + InstantX options: Opcje InstantX: - + Insufficient funds Niewystarczające środki - + Insufficient funds. Niewystarczające środki - + Invalid -onion address: '%s' Nieprawidłowy adres -onion: '%s' - + Invalid -proxy address: '%s' Nieprawidłowy adres -proxy: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' Nieprawidłowa kwota dla -minrelaytxfee=<kwota>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' Nieprawidłowa kwota dla -mintxfee=<kwota>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Nieprawidłowa kwota dla -paytxfee=<kwota>: '%s' - + Invalid amount Niewłaściwa ilość - + Invalid masternodeprivkey. Please see documenation. Nieprawidłowy klucz prywatny masternoda. Przeczytaj dokumentację. - + Invalid private key. Nieprawidłowy klucz prywatny. - + Invalid script detected. Wykryto nieprawidłowy skrypt. - + KeePassHttp id for the established association ID KeePassHttp dla ustanowionego skojażenia - + KeePassHttp key for AES encrypted communication with KeePass Klucz KeePassHttp dla zaszyfrowanego metodą AES połączenia z KeePass - - Keep N darkcoin anonymized (default: 0) - Utrzymuj N zanonimizowanych darkcoin (domyślny: 0) + + Keep N dash anonymized (default: 0) + Utrzymuj N zanonimizowanych dash (domyślny: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) Utrzymuj najwyżej <n> niepodłączalnych bloków w pamięci (domyślny: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) Utrzymuj najwyżej <n> niepodłączalnych transakcji w pamięci (domyślny: %u) - + Last Darksend was too recent. Za mało czasu upłynęło od ostatniej transakcji Darksend. - + Last successful darksend action was too recent. Za mało czasu upłynęło od ostatniej udanej transakcji Darksend. - + Limit size of signature cache to <n> entries (default: 50000) Ogranicz rozmiar pamięci podrecznej podpisu do <n> wejść (domyślny: 50000) - + List commands Lista poleceń - + Listen for connections on <port> (default: 9999 or testnet: 19999) Nasłuchuj połączeń na <port> (domyślny: 9999 lub sieć testowa: 19999) - + Loading addresses... Ładuje adresy... - + Loading block index... Ładuje indeks bloków - + Loading masternode list... Ładuję listę masternodów... - + Loading wallet... (%3.2f %%) Ładuje portfel... (%3.2f %%) - + Loading wallet... Ładuje portfel... - + Log transaction priority and fee per kB when mining blocks (default: 0) Rejestruj priorytet transakcji oraz opłatę za kB podczas wykopywania bloków (domyślny: 0) - + Maintain a full transaction index (default: 0) Utrzymuj indeks pełnych transakcji (domyślny: 0) - + Maintain at most <n> connections to peers (default: 125) Utrzymuj najwyżej <n> połączeń do peerów (domyślny: 125) - + Masternode options: Opcje masternodów: - + Masternode queue is full. Kolejka masternodów jest pełna. - + Masternode: Masternod: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Maksymalny bufor odbierający na każde połączenie, <n>*1000 bajtów (domyślny: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Maksymalny bufor wysyłania na każde połączenie, <n>*1000 bajtów (domyślny: 1000) - + Missing input transaction information. Brak informacji o transakcji wejściowej. - + No compatible masternode found. Nie znaleziono kompatybilnego masternoda. - + No funds detected in need of denominating. Nie odnaleziono środków w celu denominacji. - + No masternodes detected. Nie wykryto żadnych masternodów. - + No matching denominations found for mixing. Nie znaleziono pasujących denominacji w celu miksowania. - + Non-standard public key detected. Wykryto niestandardowy klucz publiczny. - + Not compatible with existing transactions. Nie kompatybilny z istniejącymi transakcjami. - + Not enough file descriptors available. Dostępny niewystarczający opis pliku. - + Not in the masternode list. Nieobecny na liście masternodów. - + Only accept block chain matching built-in checkpoints (default: 1) Akceptuj tylko łańcuch bloków pasujący do wbudowanych punktów kontrolnych (domyślny: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Połącz tylko do węzłów (node) w sieci <net> (IPv4, IPv6 lub Tor) - + Options: Opcje: - + Password for JSON-RPC connections Hasło dla połączeń JSON-RPC - + Prepend debug output with timestamp (default: 1) Wyjście debugowania poprzedzone znacznikiem czasu (domyślny: 1) - + Print block on startup, if found in block index Pokaż blok podczas startu, jeśli istnieje w indeksie bloków - + Print block tree on startup (default: 0) Pokaż drzewo bloków podczas startu (domyślny: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opcje RPC SSL: (przeglądnij Bitcoin Wiki po instrukcje ustawień SSL) - + RPC client options: Opcje klienta RPC: - + RPC server options: Opcje serwera RPC: - + Randomly drop 1 of every <n> network messages Losowo odrzuć 1 co każde <n> komunikatów sieciowych - + Randomly fuzz 1 of every <n> network messages Rozmyj losowo 1 co każde <n> komunikatów sieciowych - + Rebuild block chain index from current blk000??.dat files Odbuduj łańcuch bloków (block chain) od bieżącego pliku blk000??.dat - + Rescan the block chain for missing wallet transactions Skanuj ponownie łańcuch bloków (block chain) dla brakujących transakcji w portfelu - + Rescanning... Ponowne skanowanie... - + Run a thread to flush wallet periodically (default: 1) Włącz wątek aby od czasu do czasu wyrównać portfel (domyślny: 1) - + Run in the background as a daemon and accept commands Działaj w tle jako daemon i akceptuj polecenia - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opcje SSL: (przeglądnij Bitcoin Wiki po instrukcje ustawień SSL) - + Select SOCKS version for -proxy (4 or 5, default: 5) Wybierz wersję SOCKS dla -proxy (4 lub 5, domyślny: 5) - + Send command to Dash Core Wyślij polecenie do Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) Wyślij polecenie do węzła (node) działającego na <ip> (domyślny: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Wyślij informacje o debugowaniu/śladach do konsoli zamiast do pliku debug.log - + Server certificate file (default: server.cert) Serwer pliku certyfikatu (domyślny: server.cert) - + Server private key (default: server.pem) Serwer klucza prywatnego (domyślny: server.pem) - + Session not complete! Sesja nie została ukończona! - + Session timed out (30 seconds), please resubmit. Sesja wygasła (30 sekund), proszę spróbuj ponownie. - + Set database cache size in megabytes (%d to %d, default: %d) Ustaw pamięć podręczną bazy danych w megabajtach (%d to %d, domyślny: %d) - + Set key pool size to <n> (default: 100) Ustaw ilość kluczy w key pool do <n> (domyślny: 100) - + Set maximum block size in bytes (default: %d) Ustaw maksymalny rozmiar bloku w bajtach (domyślny: %d) - + Set minimum block size in bytes (default: 0) Ustaw minimalny rozmiar bloku w bajtach (domyślny: 0) - + Set the masternode private key Ustaw klucz prywatny masternoda - + Set the number of threads to service RPC calls (default: 4) Ustaw liczbę wątków dla usługi połączen RPC (domyślny: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) Ustaw flagę DB_PRIVATE w środowisku db portfela (domyślny: 1) - + Show all debugging options (usage: --help -help-debug) Pokaż wszystkie opcje debugowania (użyj: --help -help-debug) - + Show benchmark information (default: 0) Pokaż nformacje o benchmarku (domyślny: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Zmniejsz plik debug.log podczas włączania klienta (domyślny: 1 kiedy nie ma -debug) - + Signing failed. Przypisywanie nie powiodło się. - + Signing timed out, please resubmit. Sesja logowania wygasła, proszę spróbować ponownie. - + Signing transaction failed Podpisywanie transakcji nie powiodło się - - Specify configuration file (default: darkcoin.conf) - Sprecyzuj plik konfiguracyjny (domyślny: darkcoin.conf) + + Specify configuration file (default: dash.conf) + Sprecyzuj plik konfiguracyjny (domyślny: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Sprecyzuj limit czasu połączenia w milisekundach (domyślny: 5000) - + Specify data directory Sprecyzuj katalog danych - + Specify masternode configuration file (default: masternode.conf) Sprecyzuj plik konfiguracji masternoda (domyślny: masternode.conf) - - Specify pid file (default: darkcoind.pid) - Sprecyjzuj plik pid (domyślny: darkcoind.pid) + + Specify pid file (default: dashd.pid) + Sprecyjzuj plik pid (domyślny: dashd.pid) - + Specify wallet file (within data directory) Sprecyzuj plik wallet (w katalogu danych) - + Specify your own public address Sprecyzuj swój adres publiczny - + Spend unconfirmed change when sending transactions (default: 1) Zużyj niepotwierdzoną resztę podczas wysyłania transakcji (domuślny: 1) - + Start Dash Core Daemon Włącz Dash Core Daemon - + System error: Błąd systemu: - + This help message Ten komunikat pomocny - + This is intended for regression testing tools and app development. Używa się tego dla regresywnego testowania narzędzi (opcji) oraz rozwoju aplikacji. - + This is not a masternode. To nie jest masternod. - + Threshold for disconnecting misbehaving peers (default: 100) Próg dla niewłaściwie działających, odłączających sie peerów (domyślny: 100) - + To use the %s option Aby użyć opcję %s - + Transaction amount too small Zbyt mała kwota - + Transaction amounts must be positive Kwota musi być dodatnia - + Transaction created successfully. Skutecznie utworzono transakcję. - + Transaction fees are too high. Opłaty za transakcję są zbyt wysokie. - + Transaction not valid. Transakcja niewłaściwa. - + Transaction too large Za duża transakcja - + Unable to bind to %s on this computer (bind returned error %s) Nie udało się powiązać do %s na tym komputerze (powiązanie zwróciło błąd %s) - + Unable to sign masternode payment winner, wrong key? Nie można podpisać zwyciezcy płatności masternoda, nieprawidłowy klucz? - + Unable to sign spork message, wrong key? Niemożliwe podpisanie wiadomości spork, nieprawidłowy klucz? - + Unknown -socks proxy version requested: %i Nieznana wersja -socks proxy zażądana: %i - + Unknown network specified in -onlynet: '%s' Nieznana sieć określona w -onlynet: '%s' - + Upgrade wallet to latest format Ulepsz plik wallet.dat do nowego formatu - - Usage (deprecated, use darkcoin-cli): - Użycie (niewłaściwy, użyj darkcoin-cli): + + Usage (deprecated, use dash-cli): + Użycie (niewłaściwy, użyj dash-cli): - + Usage: Użycie: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) Użyj zintegrowany KeePass 2 używając wtyczkę KeePass Http (domyślny: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) Użyj N oddzielnych masternodów aby zanonimizować pieniądze (2-8, domyślny: 2) - + Use OpenSSL (https) for JSON-RPC connections Użyj OpenSSL (https) dal połączeń JSON-RPC - + Use UPnP to map the listening port (default: 0) Użyj UPnP aby zmapować używany port (domyślny: 0) - + Use UPnP to map the listening port (default: 1 when listening) Użyj UPnP aby zmapować używany port (domyślny: 1 kiedy nasłuchuje) - + Use the test network Użyj sieci testowej - + Username for JSON-RPC connections Nazwa użytkownika dla połączeń JSON-RPC - + Value more than Darksend pool maximum allows. Wartość jest większa niż ta maksymalnie dopuszczalna przez Darksend pool - + Verifying blocks... Weryfikacja bloków... - + Verifying wallet... Weryfikacja portfela... - + Wait for RPC server to start Zaczekaj na start serwera RPC - + Wallet %s resides outside data directory %s Plik wallet %s znajduje się poza katalogiem danych %s - + Wallet is locked. Portfel jest zamknięty. - + Wallet needed to be rewritten: restart Dash to complete Portfel musi zostać ponownie zapisany: uruchom Dash ponownie aby dokończyć operacje - + Wallet options: Opcje portfela: - + Warning Ostrzeżenie - + Warning: Deprecated argument -debugnet ignored, use -debug=net Ostrzeżenie: Niewłaściwy argument -debugnet zignorowany, użyj -debug=net - + Warning: This version is obsolete, upgrade required! Ostrzeżenie: Wersja nieaktualna, zalecana aktualizacja! @@ -5263,27 +5263,27 @@ Jeżeli plik ten nie istnieje, stwórz go z uprawnieniami tylko do odczytu przez - + You need to rebuild the database using -reindex to change -txindex Musisz odnowić bazę danych używając -reindex aby zmienić -txindex - + Zapping all transactions from wallet... Zappowanie wszystkich transakcji z portfela - + on startup podczas uruchomienia - + version wersja - + wallet.dat corrupt, salvage failed Plik wallet.dat zepsuty, odzyskiwanie nie powiodło się diff --git a/src/qt/locale/darkcoin_pt.ts b/src/qt/locale/darkcoin_pt.ts index 98a78272e4..9fe67a7d58 100644 --- a/src/qt/locale/darkcoin_pt.ts +++ b/src/qt/locale/darkcoin_pt.ts @@ -276,8 +276,8 @@ Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no Open - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - Atenção: Se cifrar a carteira e perder a palavra-passe, irá <b>PERDER TODAS AS SUAS MOEDAS DARKCOIN</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Atenção: Se cifrar a carteira e perder a palavra-passe, irá <b>PERDER TODAS AS SUAS MOEDAS DASH</b>! @@ -292,8 +292,8 @@ Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no Open - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. - O cliente Dash irá fechar para finalizar o processo de cifra. Lembre-se que cifrar a sua carteira não consegue proteger totalmente as suas darkcoins contra roubos feitos por malware presente no seu computador. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + O cliente Dash irá fechar para finalizar o processo de cifra. Lembre-se que cifrar a sua carteira não consegue proteger totalmente as suas dashs contra roubos feitos por malware presente no seu computador. @@ -398,8 +398,8 @@ Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no Open - Request payments (generates QR codes and darkcoin: URIs) - Solicitar pagamentos (gera códigos QR e darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) + Solicitar pagamentos (gera códigos QR e dash: URIs) @@ -596,8 +596,8 @@ Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no Open - Open a darkcoin: URI or payment request - Abre um darkcoin: URI ou solicitação de pagamento + Open a dash: URI or payment request + Abre um dash: URI ou solicitação de pagamento @@ -780,7 +780,7 @@ Endereço: %4 A carteira encontra-se <b>cifrada</b> e actualmente <b>bloqueada</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Ocorreu um erro fatal. O cliente Dash não pode continuar de forma segura e irá fechar. @@ -1632,9 +1632,9 @@ Endereço: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ Linguagem não encontrada ou tradução incompleta? Ajude a traduzir aqui: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2062,8 +2062,8 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler - Não é possível iniciar o darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler + Não é possível iniciar o dash: click-to-pay handler @@ -2145,35 +2145,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. Erro: A pasta de dados especificada "%1" não existe. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Erro: Não foi possível carregar o ficheiro de configuração: %1. Use somente a sintaxe chave=valor. - + Error reading masternode configuration file: %1 Erro ao ler o ficheiro de configuração de masternodes: %1. - + Error: Invalid combination of -regtest and -testnet. Erro: Combinação inválida de -regtest e -testnet. - + Dash Core didn't yet exit safely... Dash Core ainda não terminou de forma segura... @@ -2982,8 +2982,8 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. - Mensagem que foi anexada ao darkcoin: URI e que será guardada com a transacção para sua referência. Nota: Esta mensagem não será enviada para a rede Dash. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + Mensagem que foi anexada ao dash: URI e que será guardada com a transacção para sua referência. Nota: Esta mensagem não será enviada para a rede Dash. @@ -3919,13 +3919,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3936,7 +3936,7 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com %s, necessita colocar uma entrada rpcpassword no ficheiro de configuração: %s É recomendados que utilize a seguinte palavra-passe aleatória: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (não necessita decorar esta palavra-passe) O nome de utilizador e a palavra-passe não podem ser iguais. @@ -3945,247 +3945,247 @@ Também é recomendado que configure o sistema de alertas para poder ser avisado exemplo: alertnotify=echo %%s | mail -s "Alerta Dash" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Cifras suportadas (omissão: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s Ocorreu um erro ao configurar a porta RPC %u para aceitar ligações em IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Ocorreu um erro ao configurar a porta RPC %u para aceitar ligações em IPv6, a reverter para IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Vincular a um determinado endereço e ouvir sempre aí. Use a notação [endereço]:porta para IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. Não foi possível obter acesso exclusivo à pasta de dados %s. Possivelmente o Dash Core já se encontra em execução. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) Continuamente limitar o número de transacções gratuitas por minuto a <n>*1000 bytes (omissão: 15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. O Darksend usa denominações exactas para enviar fundos, pode necessitar simplesmente de anonimizar mais algumas moedas. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) Desactivar todas as funcionalidades relacionadas com Masternodes e Darksend (0-1, omissão:0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) Activar instantx, mostrar confirmações para transacções bloqueadas (bool, omissão: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) Activar o uso de darksend automatizado para os fundos guardados nesta carteira (0-1, omissão: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. Entrar no modo de testes de regressão, que usa uma cadeia de blocos especial onde cada bloco é resolvido instantaneamente. O objectivo ser usado com ferramentas de testes de regressão e no desenvolvimento da aplicação. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Entrar no modo de testes de regressão, que usa uma cadeia de blocos especial onde cada bloco é resolvido instantaneamente. - + Error: Listening for incoming connections failed (listen returned error %s) Erro: A escuta por ligações de entrada falhou (a escuta devolveu o erro %s) - + 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 and coins were spent in the copy but not marked as spent here. Erro: A transacção foi rejeitada! Isto pode acontecer se algumas das moedas da sua carteira tiverem sido gastas, tal como se usou uma copia do ficheiro wallet.dat e moedas tiverem sido gastas nessa cópia mas não aqui. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Erro: Esta transacção necessita de uma taxa de pelo menos %s devido à quantia, complexidade ou uso de fundos recebidos recentemente! - + Error: Wallet unlocked for anonymization only, unable to create transaction. Erro: Carteira desbloqueada somente para anonimização, não foi possível criar a transacção. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Executar comando quando é recebido um alerta ou vemos uma longa bifurcação na cadeia de blocos (%s no comando é substituído pela mensagem) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Executar comando quando muda uma transacção na carteira (%s no comando é substituído pelo TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Executar comando quando o melhor bloco muda (%s no comando é substituído pela hash do bloco) - + Fees smaller than this are considered zero fee (for transaction creation) (default: Taxas inferiores a esta serão consideradas zero (para a criação da transacção) (omissão: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) Consolidar a actividade de dados de memoria para disco a cada <n> megabytes (omissão: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. Foram encontradas saídas denominadas não confirmadas, a aguardar pela confirmação para prosseguir. - + How thorough the block verification of -checkblocks is (0-4, default: 3) Quão minuciosa é a verificação dos blocos do -checkblocks (0-4, omissão: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. Neste modo o -genproclimit controla quantos blocos são gerados imediatamente. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. O InstantX necessita de entradas com pelo menos 6 confirmações, pode ser necessário aguardar mais uns minutos e tentar de novo. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) Escutar por ligações JSON-RPC na porta <port> (omissão: 9998 ou rede de testes: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase Nome para construir o url para a entrada KeePass que guarda a palavra-passe da carteira - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Número de segundos a não permitir ligações de nós com comportamento inadequado (omissão: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Informação de depuração de saída (omissão: 0, fornecer <category> é opcional) - + 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) Providenciar liquidez para o Darksend misturando moedas continuamente com baixa frequência (0-100, omissão: 0, 1=muito frequente taxas elevadas, 100=pouco frequente, taxas reduzidas) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Questionar por endereços dos nós através de pesquisas DNS caso tenha poucos endereços (omissão: 1 excepto -connect) - + Set external address:port to get to this masternode (example: address:port) Definir endereço:porta externo para ligação a este masternode (ex: endereço:porta) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Definir tamanho máximo de transacções com alta-prioridade/taxa-reduzida em bytes (omissão: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Definir número de processos de verificação de scripts (%u a %d, 0 = auto, <0 = deixar este número de cores livres, omissão: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) Definir o limite de processador quando a geração está activa (-1 = ilimitado, omissão: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) Mostrar N confirmações para uma transacção bloqueada com sucesso (0-9999, omissão:1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Esta é uma compilação prévia de teste - use por sua conta e risco - não use para minar nem em aplicações comerciais - + Unable to bind to %s on this computer. Dash Core is probably already running. Não foi possível vincular a %s neste computador. Provavelmente o Dash Core já está a ser executado. - + Unable to locate enough Darksend denominated funds for this transaction. Não foi possível localizar fundos Darksend denominados suficientes para esta transacção. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. Não foi possível localizar fundos Darksend não denominados suficientes para esta transacção que não sejam igual a 1000DRK. - + Unable to locate enough Darksend non-denominated funds for this transaction. Não foi possível localizar fundos Darksend não denominados suficientes para esta transacção. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Usar um proxy SOCKS5 diferente para ligar aos nós através dos serviços escondidos Tor (omissão: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Aviso: -paytxfee tem um valor muito elevado! Esta é a taxa de transacção que será paga se enviar uma transacção. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. Aviso: Por favor verifique que a data e a hora do computador está correcta! Se o relógio estiver errado o Dash não vai funcionar correctamente. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Aviso: A rede não parece estar concordar! Parece haver alguns mineiros com problemas. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Aviso: Parece que não estamos de acordo com outros nós! Talvez necessite actualizar a aplicação ou os outros nós necessitem actualizar. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Aviso: erro ao carregar wallet.dat! Todas as chaves estão correctas mas os dados das transacções ou as entradas do livro de endereços podem estar ausentes ou incorrectas. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Aviso: wallet.dar corrompido mas os dados foram recuperados! A carteira original foi gravada como wallet{data/hora}.bak in %s; se o seu saldo ou transacções forem incorrectos deverá recuperar a partir de uma cópia de segurança. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4194,1067 +4194,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. Se o ficheiro não existir, deve criá-lo só com permissões de leitura para o dono. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. Tem que especificar uma masternodeprivkey na configuração. Por favor verifique a documentação para ajuda. - + (default: 1) (omissão: 1) - + (default: wallet.dat) (omissão: wallet.dat) - + <category> can be: <category> pode ser: - + Accept command line and JSON-RPC commands Aceitar comandos da linha de comandos e JSON-RPC - + Accept connections from outside (default: 1 if no -proxy or -connect) Aceitar ligações do exterior (omissão: 1 se não tiver usado -proxy ou -connect) - + Add a node to connect to and attempt to keep the connection open Adicionar um nó ao qual efectuar ligação e tentar manter a ligação aberta - + Allow DNS lookups for -addnode, -seednode and -connect Permitir pesquisas de DNS para -addnode, -deednode e -connect - + Allow JSON-RPC connections from specified IP address Permitir ligações JSON-RPC a partir do endereço IP especificado - + Already have that input. Entrada existente. - + Always query for peer addresses via DNS lookup (default: 0) Questionar sempre por endereços de nós através de pesquisas DNS (omissão: 0) - + Attempt to recover private keys from a corrupt wallet.dat Tentar recuperar as chaves privadas a partir de um ficheiro wallet.dat corrompido - + Block creation options: Opções de criação de blocos: - + Can't denominate: no compatible inputs left. Não é possível denominar: não existem mais entradas compatíveis. - + Cannot downgrade wallet Não é possível reverter para uma versão anterior da carteira - + Cannot resolve -bind address: '%s' Não foi possível resolver endereço de vínculo: '%s' - + Cannot resolve -externalip address: '%s' Não foi possível resolver endereço -externalip: '%s' - + Cannot write default address Não foi possível escrever endereço por omissão - + Clear list of wallet transactions (diagnostic tool; implies -rescan) Limpar lista de transacções da carteira (ferramenta de diagnóstico; implica -rescan) - + Collateral is not valid. O colateral não é válido. - + Collateral not valid. Colateral inválido. - + Connect only to the specified node(s) Ligar apenas ao(s) nó(s) especificados - + Connect through SOCKS proxy Ligar através de proxy SOCKS - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) Ligar ao JSON-RPC na porta <port> (omissão: 9998 ou rede de testes: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) Ligar ao KeePassHttp na porta <port> (omissão: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Efectuar ligação a um nó para obter os endereços de outros clientes e desligar - + Connection options: Opções de ligação: - + Corrupted block database detected Detectada corrupção na base de dados dos blocos - + Dash Core Daemon Serviço Dash Core - + Dash Core RPC client version Versão do cliente RPC Dash Core - + Darksend is disabled. O Darksend encontra-se desactivado. - + Darksend options: Opções Darksend: - + Debugging/Testing options: Opções de Depuração/Teste - + Disable safemode, override a real safe mode event (default: 0) Desabilitar modo de segurança, sobrepõe-se a um evento real de modo de segurança (omissão: 0) - + Discover own IP address (default: 1 when listening and no -externalip) Descobrir endereço de IP próprio (omissão: 1 quando em escuta e -externalip não definido) - + Do not load the wallet and disable wallet RPC calls Não carregar a carteira e desabilitar as chamadas RPC - + Do you want to rebuild the block database now? Quer reconstruir agora a base de dados dos blocos? - + Done loading Carregamento completo - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) Permitir ao cliente actuar como um masternode (0-1, omissão: 0) - + Entries are full. Entradas completas. - + Error connecting to masternode. Erro ao ligar ao masternode. - + Error initializing block database Erro ao inicializar a base de dados dos blocos - + Error initializing wallet database environment %s! Erro ao inicializar o ambiente de base de dados da carteira %s! - + Error loading block database Erro ao carregar base de dados de blocos - + Error loading wallet.dat Erro ao carregar wallet.dat - + Error loading wallet.dat: Wallet corrupted Erro ao carregar wallet.dat: A carteira está corrompida - + Error loading wallet.dat: Wallet requires newer version of Dash Erro ao carregar wallet.dat: A carteira necessita de uma versão Dash mais recente - + Error opening block database Erro ao abrir base de dados de blocos - + Error reading from database, shutting down. Erro ao ler da base de dados, a encerrar. - + Error recovering public key. Erro ao recuperar chave pública. - + Error Erro - + Error: Disk space is low! Erro: Pouco espaço em disco! - + Error: Wallet locked, unable to create transaction! Erro: Carteira bloqueada, não foi possível criar a transacção! - + Error: You already have pending entries in the Darksend pool Erro: Já tem entradas pendentes no conjunto Darksend - + Error: system error: Erro: erro de sistema: - + Failed to listen on any port. Use -listen=0 if you want this. Falhou a escuta em qualquer porta. Use -listen=0 se é isto que deseja. - + Failed to read block info Falha ao ler informação de bloco - + Failed to read block Falha ao ler bloco - + Failed to sync block index Falha ao sincronizar o índice de blocos - + Failed to write block index Falha ao escrever índice de blocos - + Failed to write block info Falha ao escrever informação de bloco - + Failed to write block Falha ao escrever bloco - + Failed to write file info Falha ao escrever informação de ficheiro - + Failed to write to coin database Falha ao escrever na base de dados de moedas - + Failed to write transaction index Falha ao escrever o índice de transacções - + Failed to write undo data Falha ao escrever dados de recuperação - + Fee per kB to add to transactions you send Taxa por kB a adicionar à transacção que vai enviar - + Fees smaller than this are considered zero fee (for relaying) (default: Taxas inferiores a esta serão consideradas zero (para retransmissão) (omissão: - + Force safe mode (default: 0) Forçar modo de segurança (omissão: 0) - + Generate coins (default: 0) Gerar moedas (omissão: 0) - + Get help for a command Obter ajuda para um comando - + How many blocks to check at startup (default: 288, 0 = all) Quanto blocos deve verificar no arranque (omissão: 288, 0 = all) - + If <category> is not supplied, output all debugging information. Se a <category> não for fornecida, mostrar toda a informação de depuração. - + Ignore masternodes less than version (example: 70050; default : 0) Ignorar masternodes com versão inferior a (ex: 70050; omissão: 0) - + Importing... A importar... - + Imports blocks from external blk000??.dat file Importa blocos a partir de ficheiros blk000??.dat externos - + Incompatible mode. Modo incompatível. - + Incompatible version. Versão incompatível. - + Incorrect or no genesis block found. Wrong datadir for network? Bloco original não encontrado ou incorrecto. Pasta de dados errada para esta rede? - + Information Informação - + Initialization sanity check failed. Dash Core is shutting down. A verificação de consistência no arranque falhou. O Dash Core está a encerrar. - + Input is not valid. A entrada não é válida. - + InstantX options: Opções InstantX - + Insufficient funds Fundos insuficientes - + Insufficient funds. Fundos insuficientes. - + Invalid -onion address: '%s' Endereço -onion inválido: '%s' - + Invalid -proxy address: '%s' Endereço -proxy inválido: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' Quantia inválida para -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' Quantia inválida para -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Quantia inválida para -paytxfee=<amount>: '%s' - + Invalid amount Quantia inválida - + Invalid masternodeprivkey. Please see documenation. masternodeprivkey inválida. Por favor reveja a documentação. - + Invalid private key. Chave privada inválida. - + Invalid script detected. Script inválido detectado. - + KeePassHttp id for the established association Identificador KeePassHttp para a associação estabelecida - + KeePassHttp key for AES encrypted communication with KeePass Chave KeePassHttp para usar na comunicação cifrada AES com o KeePass - - Keep N darkcoin anonymized (default: 0) - Manter N darkcoin anonimizadas (omissão: 0) + + Keep N dash anonymized (default: 0) + Manter N dash anonimizadas (omissão: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) Manter no máximo <n> blocos não conectáveis em memória (omissão: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) Manter no máximo <n> transacções não conectáveis em memória (omissão: %u) - + Last Darksend was too recent. O último Darksend é muito recente. - + Last successful darksend action was too recent. A última acção de Darksend é muito recente. - + Limit size of signature cache to <n> entries (default: 50000) Limitar o tamanho da cache de assinaturas a <n> elementos (omissão: 50000) - + List commands Listar comandos - + Listen for connections on <port> (default: 9999 or testnet: 19999) Escutar ligações na <port> (omissão: 9999 ou rede de testes: 19999) - + Loading addresses... A carregar endereços... - + Loading block index... A carregar índice de blocos... - + Loading masternode list... A carregar lista de masternodes... - + Loading wallet... (%3.2f %%) A carregar carteira... (%3.2f %%) - + Loading wallet... A carregar carteira... - + Log transaction priority and fee per kB when mining blocks (default: 0) Salvar prioridade e taxa da transacção por kB quando minar blocos (omissão: 0) - + Maintain a full transaction index (default: 0) Manter um índice completo de transacções (omissão: 0) - + Maintain at most <n> connections to peers (default: 125) Manter no máximo <n> ligações a outros nós (omissão: 125) - + Masternode options: Opções de masternode: - + Masternode queue is full. A fila do masternode está cheia. - + Masternode: Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Tamanho máximo da memória intermédia de recepção por ligação, <n>*1000 bytes (omissão: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Tamanho máximo da memória intermédia de envio por ligação, <n>*1000 bytes (omissão: 1000) - + Missing input transaction information. A informação da transacção de entrada não foi encontrada. - + No compatible masternode found. Nenhum masternode compatível encontrado. - + No funds detected in need of denominating. Não foram detectados fundos a necessitar de denominação. - + No masternodes detected. Nenhum masternode detectado. - + No matching denominations found for mixing. Não foram encontradas denominações correspondentes para misturar. - + Non-standard public key detected. Detectada chave pública fora do padrão. - + Not compatible with existing transactions. Não é compatível com as transacções existentes. - + Not enough file descriptors available. Número insuficiente de descritores de ficheiros disponíveis. - + Not in the masternode list. Não se encontra na lista de masternodes. - + Only accept block chain matching built-in checkpoints (default: 1) Somente aceitar pontos de inspecção apropriados presentes na cadeia de blocos (omissão: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Somente ligar a nós na rede <net> (IPv4, IPv6 ou Tor) - + Options: Opções: - + Password for JSON-RPC connections Palavra-passe para as ligações JSON-RPC - + Prepend debug output with timestamp (default: 1) Adicionar data/hora à informação de depuração (omissão: 1) - + Print block on startup, if found in block index Imprimir bloco ao iniciar se existir no índice de blocos - + Print block tree on startup (default: 0) Imprimir árvore de blocos ao iniciar (omissão: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opções RPC SSL: (para instruções de configuração SSL dirija-se à Dash Wiki) - + RPC client options: Opções do cliente RPC: - + RPC server options: Opções do servidor RPC: - + Randomly drop 1 of every <n> network messages Ignorar aleatoriamente 1 de cada <n> mensagens da rede - + Randomly fuzz 1 of every <n> network messages Esfiapar aleatoriamente 1 de cada <n> mensagens da rede - + Rebuild block chain index from current blk000??.dat files Reconstruir o índice da cadeia de blocos a partir dos ficheiros actuais blk000??.dat - + Rescan the block chain for missing wallet transactions Examinar novamente a cadeia de blocos para encontrar transacções inexistentes na carteira - + Rescanning... A examinar novamente... - + Run a thread to flush wallet periodically (default: 1) Executar periodicamente um processo para consolidar a carteira (omissão: 1) - + Run in the background as a daemon and accept commands Executar em segundo plano como um serviço e aceitar comandos - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opções SSL: (ver o Wiki Dash para obter instruções de configuração SSL) - + Select SOCKS version for -proxy (4 or 5, default: 5) Seleccionar a versão para o -proxy (4 ou 5, omissão: 5) - + Send command to Dash Core Enviar comando para o Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) Enviar comandos para o nó que corre em <ip> (omissão: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Enviar informação de execução/depuração para a consola em vez de enviar para o ficheiro debug.log - + Server certificate file (default: server.cert) Ficheiro de certificado do servidor (omissão: server.cert) - + Server private key (default: server.pem) Chave privada do servidor (omissão: server.pem) - + Session not complete! Sessão incompleta! - + Session timed out (30 seconds), please resubmit. A sessão excedeu o tempo limite (30 segundos), por favor volte a enviar. - + Set database cache size in megabytes (%d to %d, default: %d) Define o tamanho máximo da cache de dados em megabytes (%d até %d, omissão %d) - + Set key pool size to <n> (default: 100) Define o tamanho do conjunto de chaves para <n> (omissão: 100) - + Set maximum block size in bytes (default: %d) Define o tamanho máximo do bloco em bytes (omissão %d) - + Set minimum block size in bytes (default: 0) Define o tamanho mínimo do bloco em bytes (omissão: 0) - + Set the masternode private key Define a chave privada do masternode - + Set the number of threads to service RPC calls (default: 4) Define o número de threads que processam os pedidos RPC (omissão: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) Activa a opção DB_PRIVATE no ambiente de dados da carteira (omissão: 1) - + Show all debugging options (usage: --help -help-debug) Mostrar todas as opções de depuração (uso: --help -help-debug) - + Show benchmark information (default: 0) Mostrar informação de referência (omissão: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Diminuir o ficheiro debug.log ao iniciar o cliente (omissão: 1 quando não usa opção -debug) - + Signing failed. A assinatura falhou. - + Signing timed out, please resubmit. A assinatura excedeu o tempo limite, por favor volte a enviar. - + Signing transaction failed A assinatura da transacção falhou - - Specify configuration file (default: darkcoin.conf) - Especificar ficheiro de configuração (omissão: darkcoin.conf) + + Specify configuration file (default: dash.conf) + Especificar ficheiro de configuração (omissão: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Especificar o limite de tempo de ligação em milissegundos (omissão: 5000) - + Specify data directory Especificar a pasta de dados - + Specify masternode configuration file (default: masternode.conf) Especificar o ficheiro de configuração de masternodes (omissão: masternode.conf) - - Specify pid file (default: darkcoind.pid) - Especificar o ficheiro pid (omissão: darkcoind.pid) + + Specify pid file (default: dashd.pid) + Especificar o ficheiro pid (omissão: dashd.pid) - + Specify wallet file (within data directory) Especificar o ficheiro da carteira (dentro da pasta de dados) - + Specify your own public address Especificar o seu endereço público - + Spend unconfirmed change when sending transactions (default: 1) Gastar o troco não confirmado ao enviar transacções (omissão: 1) - + Start Dash Core Daemon Iniciar o Serviço Dash Core - + System error: Erro de sistema: - + This help message Esta mensagem de ajuda - + This is intended for regression testing tools and app development. Esta opção destina-se a ferramentas de testes de regressão e desenvolvimento de aplicativos. - + This is not a masternode. Este não é um masternode. - + Threshold for disconnecting misbehaving peers (default: 100) Limiar para desligar nós com comportamento inadequado (omissão: 100) - + To use the %s option Para usar a opção %s - + Transaction amount too small Quantia da transacção demasiado pequena - + Transaction amounts must be positive As quantias da transacção tem que ser positivas - + Transaction created successfully. Transacção criada com sucesso. - + Transaction fees are too high. As taxas da transacção são demasiado elevadas. - + Transaction not valid. A transacção não é válida. - + Transaction too large Transacção demasiado grande - + Unable to bind to %s on this computer (bind returned error %s) Não foi possível vincular a %s neste computador (o vínculo retornou o erro %s) - + Unable to sign masternode payment winner, wrong key? Não foi possível assinar o masternode vencedor para pagamento, chave incorrecta? - + Unable to sign spork message, wrong key? Não foi possível assinar a mensagem spork, chave incorrecta? - + Unknown -socks proxy version requested: %i Versão solicitada de proxy -socks desconhecida: %i - + Unknown network specified in -onlynet: '%s' Rede especificada desconhecida em -onlynet: '%s' - + Upgrade wallet to latest format Actualizar carteira para o formato mais recente - - Usage (deprecated, use darkcoin-cli): - Utilização (obsoleta, use darkcoin-cli): + + Usage (deprecated, use dash-cli): + Utilização (obsoleta, use dash-cli): - + Usage: Utilização: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) Usar integração KeePass 2 usando o KeePassHttp plugin (omissão: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) Usar N masternodes distintos para anonimizar fundos (2-8, omissão: 2) - + Use OpenSSL (https) for JSON-RPC connections Usar OpenSSl (https) para as ligações JSON-RPC - + Use UPnP to map the listening port (default: 0) Usar UPnP para mapear a porta de entrada (omissão: 0) - + Use UPnP to map the listening port (default: 1 when listening) Usar UPnP para mapear a porta de entrada (omissão: 1 quando em escuta) - + Use the test network Usar a rede de testes - + Username for JSON-RPC connections Utilizador para as ligações JSON-RPC - + Value more than Darksend pool maximum allows. Valor mais elevado do que o máximo permitido pelo Darksend. - + Verifying blocks... A verificar blocos... - + Verifying wallet... A verificar carteira... - + Wait for RPC server to start Aguarde o inicio do servidor RPC - + Wallet %s resides outside data directory %s A carteira %s encontra-se fora da pasta de dados %s - + Wallet is locked. A carteira encontra-se bloqueada. - + Wallet needed to be rewritten: restart Dash to complete A carteira necessita ser rescrita: reinicie o Dash para concluir - + Wallet options: Opções da carteira: - + Warning Aviso - + Warning: Deprecated argument -debugnet ignored, use -debug=net Aviso: Argumento -debugnet obsoleto e ignorado, utilize -debug=net - + Warning: This version is obsolete, upgrade required! Aviso: Esta versão é obsoleta, actualização necessária! @@ -5263,27 +5263,27 @@ Se o ficheiro não existir, deve criá-lo só com permissões de leitura para o - + You need to rebuild the database using -reindex to change -txindex Necessita reconstruir a base de dados usando -reindex para alterar -txindex - + Zapping all transactions from wallet... A apagar todas as transacções da carteira... - + on startup no arranque - + version versão - + wallet.dat corrupt, salvage failed wallet.dat corrompido, recuperação falhou diff --git a/src/qt/locale/darkcoin_pt_BR.ts b/src/qt/locale/darkcoin_pt_BR.ts index 3a3ba00c07..cbd83dcc7f 100644 --- a/src/qt/locale/darkcoin_pt_BR.ts +++ b/src/qt/locale/darkcoin_pt_BR.ts @@ -275,8 +275,8 @@ Este produto inclui software desenvolvido pelo Projeto OpenSSL para uso no OpenS - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - Aviso: Se você encriptar sua wallet e perder sua senha, você vai <b>PERDER TODAS AS SUAS DARKCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Aviso: Se você encriptar sua wallet e perder sua senha, você vai <b>PERDER TODAS AS SUAS DASHS</b>! @@ -291,7 +291,7 @@ Este produto inclui software desenvolvido pelo Projeto OpenSSL para uso no OpenS - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. A Dash vai fechar agora para finalizar o procedimento de encriptação. Lembre-se que mesmo encriptando sua wallet, suas Darkcoins não estão totalmente protegidas de serem roubadas por algum malware que venha a infectar seu computador. @@ -397,8 +397,8 @@ Este produto inclui software desenvolvido pelo Projeto OpenSSL para uso no OpenS - Request payments (generates QR codes and darkcoin: URIs) - Solicite pagamentos (gera códigos QR e darkcoin:URIs) + Request payments (generates QR codes and dash: URIs) + Solicite pagamentos (gera códigos QR e dash:URIs) @@ -595,8 +595,8 @@ Este produto inclui software desenvolvido pelo Projeto OpenSSL para uso no OpenS - Open a darkcoin: URI or payment request - Abre um darkcoin:URI ou solicitação de pagamento + Open a dash: URI or payment request + Abre um dash:URI ou solicitação de pagamento @@ -778,7 +778,7 @@ Endereço: %4 Carteira está <b>criptografada</b> e atualmente <b>bloqueada</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Ocorreu um erro fatal. A Dash não pode mais continuar de forma segura, e irá fechar @@ -1490,7 +1490,7 @@ Endereço: %4 Amount of Dash to keep anonymized - Quantidade de darkcoins para manter anonimizado + Quantidade de dashs para manter anonimizado @@ -1630,7 +1630,7 @@ Endereço: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2058,7 +2058,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler @@ -2141,35 +2141,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Erro: Não foi possível interpretar arquivo de configuração: %1. Utilize apenas a sintaxe chave=valor. - + Error reading masternode configuration file: %1 - + Error: Invalid combination of -regtest and -testnet. Erro: Combinação inválida de-regtest e testnet. - + Dash Core didn't yet exit safely... @@ -2978,7 +2978,7 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. @@ -3915,13 +3915,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3932,1314 +3932,1314 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - + Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) - + Fees smaller than this are considered zero fee (for transaction creation) (default: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. - + How thorough the block verification of -checkblocks is (0-4, default: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + Output debugging information (default: 0, supplying <category> is optional) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. Aviso: Por favor. verifique se a data e hora do seu computador estão corretas! Se estiverem erradas, Dash não funcionará corretamente. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + (default: 1) - + (default: wallet.dat) - + <category> can be: - + Accept command line and JSON-RPC commands - + Accept connections from outside (default: 1 if no -proxy or -connect) - + Add a node to connect to and attempt to keep the connection open - + Allow DNS lookups for -addnode, -seednode and -connect - + Allow JSON-RPC connections from specified IP address - + Already have that input. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat - + Block creation options: - + Can't denominate: no compatible inputs left. - + Cannot downgrade wallet - + Cannot resolve -bind address: '%s' - + Cannot resolve -externalip address: '%s' - + Cannot write default address - + Clear list of wallet transactions (diagnostic tool; implies -rescan) - + Collateral is not valid. - + Collateral not valid. - + Connect only to the specified node(s) - + Connect through SOCKS proxy - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) - + Connect to a node to retrieve peer addresses, and disconnect - + Connection options: Opções de conexão: - + Corrupted block database detected - + Dash Core Daemon - + Dash Core RPC client version - + Darksend is disabled. - + Darksend options: - + Debugging/Testing options: - + Disable safemode, override a real safe mode event (default: 0) - + Discover own IP address (default: 1 when listening and no -externalip) - + Do not load the wallet and disable wallet RPC calls - + Do you want to rebuild the block database now? - + Done loading - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) - + Entries are full. Entradas estão cheias. - + Error connecting to masternode. - + Error initializing block database - + Error initializing wallet database environment %s! - + Error loading block database - + Error loading wallet.dat Erro ao carregar carteira.dat - + Error loading wallet.dat: Wallet corrupted Erro ao carregar carteira.dat: Carteira corrompida - + Error loading wallet.dat: Wallet requires newer version of Dash - + Error opening block database - + Error reading from database, shutting down. - + Error recovering public key. Erro ao recuperar chave pública. - + Error Erro - + Error: Disk space is low! Erro: Pouco espaço em disco! - + Error: Wallet locked, unable to create transaction! Erro: Carteira bloqueada, incapaz de criar transação! - + Error: You already have pending entries in the Darksend pool - + Error: system error: Erro: erro de sistema: - + Failed to listen on any port. Use -listen=0 if you want this. - + Failed to read block info Falha ao ler informação do bloco - + Failed to read block Falha ao ler bloco - + Failed to sync block index - + Failed to write block index - + Failed to write block info - + Failed to write block Falha ao escrever bloco - + Failed to write file info - + Failed to write to coin database - + Failed to write transaction index - + Failed to write undo data - + Fee per kB to add to transactions you send - + Fees smaller than this are considered zero fee (for relaying) (default: - + Force safe mode (default: 0) Forçar modo seguro (default: 0) - + Generate coins (default: 0) - + Get help for a command - + How many blocks to check at startup (default: 288, 0 = all) - + If <category> is not supplied, output all debugging information. - + Ignore masternodes less than version (example: 70050; default : 0) - + Importing... Importando... - + Imports blocks from external blk000??.dat file - + Incompatible mode. - + Incompatible version. Versão incompatível. - + Incorrect or no genesis block found. Wrong datadir for network? - + Information Informação - + Initialization sanity check failed. Dash Core is shutting down. - + Input is not valid. - + InstantX options: Opções do InstantX: - + Insufficient funds Saldo insuficiente - + Insufficient funds. Saldo insuficiente. - + Invalid -onion address: '%s' - + Invalid -proxy address: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' - + Invalid amount Quantia inválida - + Invalid masternodeprivkey. Please see documenation. - + Invalid private key. Chave privada inválida. - + Invalid script detected. - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. - + Last successful darksend action was too recent. - + Limit size of signature cache to <n> entries (default: 50000) - + List commands Lista de comandos - + Listen for connections on <port> (default: 9999 or testnet: 19999) - + Loading addresses... Carregando endereços... - + Loading block index... - + Loading masternode list... - + Loading wallet... (%3.2f %%) - + Loading wallet... Carregando carteira... - + Log transaction priority and fee per kB when mining blocks (default: 0) - + Maintain a full transaction index (default: 0) - + Maintain at most <n> connections to peers (default: 125) - + Masternode options: - + Masternode queue is full. - + Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Missing input transaction information. - + No compatible masternode found. - + No funds detected in need of denominating. - + No masternodes detected. - + No matching denominations found for mixing. - + Non-standard public key detected. - + Not compatible with existing transactions. - + Not enough file descriptors available. - + Not in the masternode list. - + Only accept block chain matching built-in checkpoints (default: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + Options: Opções: - + Password for JSON-RPC connections - + Prepend debug output with timestamp (default: 1) - + Print block on startup, if found in block index - + Print block tree on startup (default: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + RPC client options: - + RPC server options: - + Randomly drop 1 of every <n> network messages - + Randomly fuzz 1 of every <n> network messages - + Rebuild block chain index from current blk000??.dat files - + Rescan the block chain for missing wallet transactions - + Rescanning... Escaneando... - + Run a thread to flush wallet periodically (default: 1) - + Run in the background as a daemon and accept commands - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Select SOCKS version for -proxy (4 or 5, default: 5) - + Send command to Dash Core Enviar comando para Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Session not complete! Sessão não completa! - + Session timed out (30 seconds), please resubmit. - + Set database cache size in megabytes (%d to %d, default: %d) - + Set key pool size to <n> (default: 100) - + Set maximum block size in bytes (default: %d) - + Set minimum block size in bytes (default: 0) - + Set the masternode private key - + Set the number of threads to service RPC calls (default: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) - + Show all debugging options (usage: --help -help-debug) - + Show benchmark information (default: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) - + Signing failed. - + Signing timed out, please resubmit. - + Signing transaction failed - - Specify configuration file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) - + Specify data directory Especificar diretório de dados - + Specify masternode configuration file (default: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) - + Specify wallet file (within data directory) - + Specify your own public address Especificar seu próprio endereço público - + Spend unconfirmed change when sending transactions (default: 1) - + Start Dash Core Daemon - + System error: Erro do sistema: - + This help message Essa mensagem de ajuda - + This is intended for regression testing tools and app development. - + This is not a masternode. - + Threshold for disconnecting misbehaving peers (default: 100) - + To use the %s option - + Transaction amount too small Quantia da transação muito pequena - + Transaction amounts must be positive - + Transaction created successfully. Transação criada com sucesso. - + Transaction fees are too high. Taxa de transação muito alta. - + Transaction not valid. Transação inválida. - + Transaction too large Transação muito grande - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i - + Unknown network specified in -onlynet: '%s' - + Upgrade wallet to latest format - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): - + Usage: Uso: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) - + Use OpenSSL (https) for JSON-RPC connections - + Use UPnP to map the listening port (default: 0) - + Use UPnP to map the listening port (default: 1 when listening) - + Use the test network Usar a rede de teste - + Username for JSON-RPC connections - + Value more than Darksend pool maximum allows. - + Verifying blocks... Verificando blocos... - + Verifying wallet... Verificando carteira... - + Wait for RPC server to start - + Wallet %s resides outside data directory %s - + Wallet is locked. Carteira está bloqueada. - + Wallet needed to be rewritten: restart Dash to complete - + Wallet options: Opções da carteira: - + Warning Atenção - + Warning: Deprecated argument -debugnet ignored, use -debug=net - + Warning: This version is obsolete, upgrade required! Aviso: Esta versão está obsoleta. Atualização obrigatória! @@ -5248,27 +5248,27 @@ If the file does not exist, create it with owner-readable-only file permissions. - + You need to rebuild the database using -reindex to change -txindex - + Zapping all transactions from wallet... Fazendo o Zapping de todas as transações da wallet... - + on startup - + version versão - + wallet.dat corrupt, salvage failed O arquivo "wallet.dat" está corrompido, a recuperação falhou diff --git a/src/qt/locale/darkcoin_ru.ts b/src/qt/locale/darkcoin_ru.ts index cfd083e3dc..4a24811e51 100644 --- a/src/qt/locale/darkcoin_ru.ts +++ b/src/qt/locale/darkcoin_ru.ts @@ -276,7 +276,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! Внимание: если Вы зашифруете бумажник и потеряете пароль, вы <b>ПОТЕРЯЕТЕ ВСЕ ВАШИ ДАРККОЙНЫ</b>! @@ -292,7 +292,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. Сейчас программа закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши дарккойны от кражи с помощью инфицирования вашего компьютера вредоносным ПО. @@ -398,8 +398,8 @@ This product includes software developed by the OpenSSL Project for use in the O - Request payments (generates QR codes and darkcoin: URIs) - Запросить платежи (создать QR-коды и darkcoin: URI) + Request payments (generates QR codes and dash: URIs) + Запросить платежи (создать QR-коды и dash: URI) @@ -596,8 +596,8 @@ This product includes software developed by the OpenSSL Project for use in the O - Open a darkcoin: URI or payment request - Открыть darkcoin: URI или запрос платежа + Open a dash: URI or payment request + Открыть dash: URI или запрос платежа @@ -780,7 +780,7 @@ Address: %4 Бумажник <b>зашифрован</b> и в настоящее время <b>заблокирован</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Произошла критическая ошибка. Дальнейшая безопасная работа Dash невозможна, приложение будет закрыто. @@ -1632,9 +1632,9 @@ Address: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ Нет Вашего языка или перевод неполон? Помогите нам сделать перевод лучше: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2062,8 +2062,8 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler - Не удаётся запустить обработчик darkcoin: click-to-pay + Cannot start dash: click-to-pay handler + Не удаётся запустить обработчик dash: click-to-pay @@ -2145,35 +2145,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. Ошибка: Указанная папка данных "%1" не существует. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Ошибка: не могу прочитать файл настроек: %1. Используйте для настроек только строки ключ=значение. - + Error reading masternode configuration file: %1 Ошибка чтения файла конфигурации мастернод: %1 - + Error: Invalid combination of -regtest and -testnet. Ошибка: недопустимая комбинация опций -regtest и -testnet. - + Dash Core didn't yet exit safely... Dash Core еще не завершил работу... @@ -2982,7 +2982,7 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. К bitcoin: URI было прикреплено сообщение, которое будет сохранено вместе с транзакцией для вашего сведения. Обратите внимание: сообщение не будет отправлено через сеть Dash. @@ -3919,13 +3919,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3936,7 +3936,7 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com %s, вы должны установить опцию rpcpassword в конфигурационном файле: %s Рекомендуется использовать следующий случайный пароль: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (вам не нужно запоминать этот пароль) Имя и пароль ДОЛЖНЫ различаться. @@ -3946,247 +3946,247 @@ rpcpassword=%s - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Допустимое шифрование (по умолчанию: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s Произошла ошибка при настройке прослушивания RPC порта %u на IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Произошла ошибка при настройке прослушивания RPC порта %u на IP6, откатываемся обратно на IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Привязаться к указанному адресу и всегда прослушивать только его. Используйте [хост]:порт для IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. Не удалось установить блокировку на каталог данных %s. Возможно, Dash Core уже запущен. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) Постоянно ограничивать бесплатные транзакции до <n>*1000 байт в минуту (по умолчанию:15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. При отправке Darksend использует только деноминированные средства, возможно, Вам просто нужно анонимизировать немного больше монет. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) Отключить всю функциональность, связанную с мастернодами и Darksend (0-1, по умолчанию: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) Включить instantx, показывать подтверждения для заблокированных транзакций (булевое, по умолчанию: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) Включить автоматическое перемешивание Darksend для средств, хранящихся в этом бумажнике (0-1, по умолчанию: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. Перейти в регрессионный тестовый режим, в котором используется специальная цепочка с мгновенным нахождением блоков. Этот режим предназначен для инструментов регрессионного тестирования и разработки приложения. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Войти в режим регрессионного тестирования, в котором используется специальная цепочка, где блоки находятся мгновенно. - + Error: Listening for incoming connections failed (listen returned error %s) Ошибка: не удалось начать прослушивание входящих подключений (прослушивание вернуло ошибку %s) - + 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 and coins were spent in the copy but not marked as spent here. Ошибка: транзакция была отклонена! Это могло произойти в случае, если некоторые монеты в вашем бумажнике уже были потрачены, например, если вы используете копию wallet.dat, и монеты были использованы в копии, но не отмечены как потраченные здесь. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Ошибка: эта транзакция требует комиссию как минимум %s из-за суммы, сложности или использования недавно полученных средств! - + Error: Wallet unlocked for anonymization only, unable to create transaction. Ошибка: Бумажник разблокирован только для анонимизации, создание транзакции невозможно. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Выполнить команду, когда приходит соответствующее сообщение о тревоге или наблюдается очень длинная альтернативная цепочка блоков (%s в команде заменяется на сообщение) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Выполнить команду, когда меняется транзакция в бумажнике (%s в команде заменяется на TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Выполнить команду при появлении нового блока (%s в команде заменяется на хэш блока) - + Fees smaller than this are considered zero fee (for transaction creation) (default: Комиссия меньше этого значения считается нулевой (для создания транзакции) (по умолчанию: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) Сохранять активность базы данных из пула памяти в лог на диске каждые <n> мегабайт (по умолчанию: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. Найдены неподтверждённые номиналы, процесс продолжится после их подтверждения. - + How thorough the block verification of -checkblocks is (0-4, default: 3) Насколько тщательна проверка контрольных блоков -checkblocks (0-4, по умолчанию: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. В этом режиме -genproclimit определяет, сколько блоков генерируется немедленно. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. InstantX требует наличия средств с хотя бы 6 подтверждениями, возможно Вам нужно подождать пару минут и попробовать снова. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) Слушать JSON-RPC соединения на порту <port> (по умолчанию: 9998 или testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase Имя для создания ссылки на запись KeePass, хранящую пароль к бумажнику - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Количество секунд, в течение которых запрещать переподключаться неправильно ведущим себя участникам (по умолчанию: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Вывод отладочной информации (по умолчанию: 0, указание <category> необязательно) - + 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) Предоставлять ликвидность для Darksend путем редкого участия в перемешивании монет на постоянной основе (0-100, по умолчанию: 0, 1=очень часто, высокая комиссия, 100=очень редко, низкая комиссия) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Запрашивать адреса участников с помощью DNS, если адресов мало (по умолчанию: 1, если не указан -connect) - + Set external address:port to get to this masternode (example: address:port) Указать внешний адрес:порт для доступа к этой мастерноде (например: адрес:порт) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Задать максимальный размер высокоприоритетных/низкокомиссионных транзакций в байтах (по умолчанию: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Задать число потоков проверки скрипта (от %u до %d, 0=авто, <0 = оставить столько ядер свободными, по умолчанию: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) Установить лимит процессоров для генерации монет (-1 = неограничено, по умолчанию: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) Показывать N подтверждений для успешно заблокированной транзакции (0-9999, по умолчанию: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Это пре-релизная тестовая сборка - используйте на свой страх и риск - не используйте для добычи или торговых приложений - + Unable to bind to %s on this computer. Dash Core is probably already running. Не удалось привязаться к %s на этом компьютере. Возможно, Dash Core уже запущен. - + Unable to locate enough Darksend denominated funds for this transaction. Не удалось обнаружить достаточных для выполнения этой транзакции номиналов Darksend. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. Не удалось обнаружить достаточных для выполнения этой транзакции неденоминированных средств, отличающихся от 1000DRK. - + Unable to locate enough Darksend non-denominated funds for this transaction. Не удалось обнаружить достаточных для выполнения этой транзакции неденоминированных средств. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Использовать отдельный SOCKS5 прокси для подключения к участникам через скрытые сервисы Tor (по умолчанию: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Внимание: установлено очень большое значение -paytxfee. Это комиссия, которую Вы заплатите при проведении транзакции. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. Внимание: пожалуйста, убедитесь что дата и время на Вашем компьютере выставлены правильно! Dash не сможет работать корректно, если часы настроены неверно. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Внимание: похоже, что в сети нет полного согласия! Некоторый майнеры, возможно, испытывают проблемы. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Внимание: обнаружено несогласие с подключенными участниками! Вам или другим участникам, возможно, следует обновиться. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Внимание: ошибка чтения wallet.dat! Все ключи прочитаны верно, но данные транзакций или записи адресной книги могут отсутствовать или быть неправильными. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Внимание: wallet.dat повреждён, данные спасены! Оригинальный wallet.dat сохранён как wallet.{timestamp}.bak в %s. Если Ваш баланс или транзакции некорректны, Вы должны восстановить файл из резервной копии. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4195,1067 +4195,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. Если файл не существует, то создайте его с разрешением на чтение только для владельца файла. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. Необходимо указать masternodeprivkey в файле конфигурации. Пожалуйста, ознакомьтесь с документацией. - + (default: 1) (по умолчанию: 1) - + (default: wallet.dat) (по умолчанию: wallet.dat) - + <category> can be: <category> может быть: - + Accept command line and JSON-RPC commands Принимать командную строку и команды JSON-RPC - + Accept connections from outside (default: 1 if no -proxy or -connect) Принимать подключения извне (по умолчанию: 1, если не используется -proxy или -connect) - + Add a node to connect to and attempt to keep the connection open Добавить узел для подключения и пытаться поддерживать соединение открытым - + Allow DNS lookups for -addnode, -seednode and -connect Разрешить поиск в DNS для -addnode, -seednode и -connect - + Allow JSON-RPC connections from specified IP address Разрешить JSON-RPC соединения с указанного IP-адреса - + Already have that input. Уже есть этот вход. - + Always query for peer addresses via DNS lookup (default: 0) Всегда запрашивать адреса участников через DNS (по умолчанию: 0) - + Attempt to recover private keys from a corrupt wallet.dat Попытаться восстановить закрытые ключи из повреждённого wallet.dat - + Block creation options: Параметры создания блоков: - + Can't denominate: no compatible inputs left. Разбиение на номиналы невозможно: не осталось совместимых монет. - + Cannot downgrade wallet Не удаётся понизить версию бумажника - + Cannot resolve -bind address: '%s' Не удаётся разрешить адрес в параметре -bind: '%s' - + Cannot resolve -externalip address: '%s' Не удаётся разрешить адрес в параметре -externalip: '%s' - + Cannot write default address Не удаётся записать адрес по умолчанию - + Clear list of wallet transactions (diagnostic tool; implies -rescan) Очистить список транзакций в бумажнике (диагностический инструмент; выполняет -rescan) - + Collateral is not valid. Обеспечительная транзакция некорректна. - + Collateral not valid. Обеспечительная транзакция некорректна. - + Connect only to the specified node(s) Подключаться только к указанному узлу(ам) - + Connect through SOCKS proxy Соединяться через SOCKS прокси - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) Соединяться к JSON-RPC по порту <port> (по умолчанию: 9998 или testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) Соединяться c KeePassHttp по порту <port> (по умолчанию: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Подключиться к участнику, чтобы получить список адресов других участников, и отключиться - + Connection options: Параметры подключения: - + Corrupted block database detected База данных блоков повреждена - + Dash Core Daemon Демон Dash Core - + Dash Core RPC client version Версия RPC-клиента Dash Core - + Darksend is disabled. Darksend выключен. - + Darksend options: Параметры Darksend: - + Debugging/Testing options: Параметры отладки/тестирования: - + Disable safemode, override a real safe mode event (default: 0) Отменить безопасный режим, перекрывает реальные события о переходе в безопасный режим (по умолчанию: 0) - + Discover own IP address (default: 1 when listening and no -externalip) Определить свой IP (по умолчанию: 1 при прослушивании и если не используется -externalip) - + Do not load the wallet and disable wallet RPC calls Не загружать бумажник и запретить обращения к нему через RPC - + Do you want to rebuild the block database now? Перестроить базу данных блоков прямо сейчас? - + Done loading Загрузка завершена - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) Разрешить этому клиенту работать в качестве мастерноды (0-1, по умолчанию: 0) - + Entries are full. Очередь переполнена. - + Error connecting to masternode. Ошибка соединения с мастернодой. - + Error initializing block database Ошибка инициализации базы данных блоков - + Error initializing wallet database environment %s! Ошибка инициализации окружения БД бумажника %s! - + Error loading block database Ошибка загрузки базы данных блоков - + Error loading wallet.dat Ошибка при загрузке wallet.dat - + Error loading wallet.dat: Wallet corrupted Ошибка загрузки wallet.dat: бумажник поврежден - + Error loading wallet.dat: Wallet requires newer version of Dash Ошибка загрузки wallet.dat: бумажник требует более новой версии Dash - + Error opening block database Не удалось открыть базу данных блоков - + Error reading from database, shutting down. Ошибка чтения базы данных, завершение работы. - + Error recovering public key. Ошибка восстановления открытого ключа. - + Error Ошибка - + Error: Disk space is low! Ошибка: мало места на диске! - + Error: Wallet locked, unable to create transaction! Ошибка: бумажник заблокирован, создание транзакции невозможно! - + Error: You already have pending entries in the Darksend pool Ошибка: у Вас уже есть ожидающие записи в пуле Darksend - + Error: system error: Ошибка: системная ошибка: - + Failed to listen on any port. Use -listen=0 if you want this. Не удалось начать прослушивание на порту. Используйте -listen=0, если вас это устраивает. - + Failed to read block info Ошибка чтения информации о блоке - + Failed to read block Ошибка чтения блока - + Failed to sync block index Ошибка синхронизации индекса блока - + Failed to write block index Ошибка записи индекса блока - + Failed to write block info Ошибка записи информации о блоке - + Failed to write block Ошибка записи блока - + Failed to write file info Ошибка записи информации о файле - + Failed to write to coin database Ошибка записи в базу данных монет - + Failed to write transaction index Ошибка записи индекса транзакции - + Failed to write undo data Ошибка записи данных для отмены - + Fee per kB to add to transactions you send Комиссия за кБ, добавляемая к отправляемым Вами транзакциями - + Fees smaller than this are considered zero fee (for relaying) (default: Комиссия меньше этого значения считается нулевой (для создания транзакции) (по умолчанию: - + Force safe mode (default: 0) Принудительный безопасный режим (по умолчанию: 0) - + Generate coins (default: 0) Генерировать монеты (по умолчанию: 0) - + Get help for a command Получить помощь по команде - + How many blocks to check at startup (default: 288, 0 = all) Сколько блоков проверять на старте (по умолчанию: 288, 0 = все) - + If <category> is not supplied, output all debugging information. Если <category> не предоставлена, выводить всю отладочную информацию. - + Ignore masternodes less than version (example: 70050; default : 0) Игнорировать мастерноды, имеющие версию ниже указанной (например: 70050; по умолчанию: 0) - + Importing... Импорт ... - + Imports blocks from external blk000??.dat file Импортировать блоки из внешнего файла blk000??.dat - + Incompatible mode. Несовместимый режим. - + Incompatible version. Несовместимая версия. - + Incorrect or no genesis block found. Wrong datadir for network? Неверный или отсутствующий начальный блок. Неправильный каталог данных для сети? - + Information Информация - + Initialization sanity check failed. Dash Core is shutting down. Проверка на непротиворечивость закончилась неудачно. Dash Core выключается. - + Input is not valid. Вход некорректен. - + InstantX options: Параметры InstantX: - + Insufficient funds Недостаточно средств - + Insufficient funds. Недостаточно средств. - + Invalid -onion address: '%s' Неверный -onion адрес: '%s' - + Invalid -proxy address: '%s' Неверный адрес -proxy: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' Неверная сумма в параметре -minrelaytxfee=<кол-во>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' Неверная сумма в параметре -mintxfee=<кол-во>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Неверная сумма в параметре -paytxfee=<кол-во>: '%s' - + Invalid amount Неверная сумма - + Invalid masternodeprivkey. Please see documenation. Неправильное значение masternodeprivkey. Пожалуйста, ознакомьтесь с документацией. - + Invalid private key. Некорректный закрытый ключ. - + Invalid script detected. Обнаружен некорректный скрипт. - + KeePassHttp id for the established association Идентификатор KeePassHttp для установленной ассоциации - + KeePassHttp key for AES encrypted communication with KeePass Ключ KeePassHttp для зашифрованной коммуникации с KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) Держать N дарккойнов анонимизированными (по умолчанию: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) Хранить максимум <n> несоединённых блоков в памяти (по умолчанию: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) Держать в памяти до <n> несвязных транзакций (по умолчанию: %u) - + Last Darksend was too recent. Последнее действие Darksend было слишком недавно. - + Last successful darksend action was too recent. Последнее успешное действие Darksend было слишком недавно. - + Limit size of signature cache to <n> entries (default: 50000) Ограничить размер кэша подписей до <n> записей (по умолчанию: 50000) - + List commands Вывести команды - + Listen for connections on <port> (default: 9999 or testnet: 19999) Принимать входящие подключения на порт <port> (по умолчанию: 9999 или testnet:19999) - + Loading addresses... Загрузка адресов... - + Loading block index... Загрузка индекса блоков... - + Loading masternode list... Загрузка списка мастернод... - + Loading wallet... (%3.2f %%) Загрузка бумажника... (%3.2f %%) - + Loading wallet... Загрузка бумажника... - + Log transaction priority and fee per kB when mining blocks (default: 0) Записывать в лог приоритет транзакции и комиссию за килобайт во время добычи блоков (по умолчанию: 0) - + Maintain a full transaction index (default: 0) Держать полный индекс транзакций (по умолчанию: 0) - + Maintain at most <n> connections to peers (default: 125) Поддерживать не более <n> подключений к узлам (по умолчанию: 125) - + Masternode options: Параметры мастерноды: - + Masternode queue is full. Очередь на мастерноде переполнена. - + Masternode: Мастернода: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Максимальный размер буфера приёма на одно соединение, <n>*1000 байт (по умолчанию: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Максимальный размер буфера отправки на соединение, <n>*1000 байт (по умолчанию: 1000) - + Missing input transaction information. Отсутствует информация о входной транзакции. - + No compatible masternode found. Отсутствуют совместимые мастерноды. - + No funds detected in need of denominating. Не обнаружено средств для дальнейшего разбиения на номиналы. - + No masternodes detected. Ни одной мастерноды не найдено. - + No matching denominations found for mixing. Отсутствуют совпадающие для перемешивания номиналы. - + Non-standard public key detected. Обнаружен нестандартный открытый ключ. - + Not compatible with existing transactions. Не совместимо с существующими транзакциями. - + Not enough file descriptors available. Недостаточно файловых дескрипторов. - + Not in the masternode list. Отсутствует в списке мастернод. - + Only accept block chain matching built-in checkpoints (default: 1) Принимать цепочку блоков только в том случае, если она соответствует встроенным контрольным точкам (по умолчанию: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Соединяться только по сети <net> (ipv4, ipv6 или Tor) - + Options: Параметры: - + Password for JSON-RPC connections Пароль для подключений JSON-RPC - + Prepend debug output with timestamp (default: 1) Дописывать в начало отладочного вывода отметки времени (по умолчанию: 1) - + Print block on startup, if found in block index Печатать блок при запуске, если он найден в индексе блоков - + Print block tree on startup (default: 0) Печатать дерево блоков при запуске (по умолчанию: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) Параметры RPC SSL: (см. Bitcoin вики для инструкций по настройке SSL) - + RPC client options: Параметры RPC-клиента: - + RPC server options: Параметры сервера RPC: - + Randomly drop 1 of every <n> network messages Случайно отбрасывать 1 из каждых <n> сетевых сообщений - + Randomly fuzz 1 of every <n> network messages Случайно разбрасывать 1 из каждых <n> сетевых сообщений - + Rebuild block chain index from current blk000??.dat files Перестроить индекс цепочки блоков из текущих файлов blk000??.dat - + Rescan the block chain for missing wallet transactions Перепроверить цепочку блоков на предмет отсутствующих в бумажнике транзакций - + Rescanning... Сканирование... - + Run a thread to flush wallet periodically (default: 1) Запустить поток для периодического сохранения бумажника (по умолчанию: 1) - + Run in the background as a daemon and accept commands Запускаться в фоне как демон и принимать команды - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Параметры SSL: (см. Bitcoin вики для инструкций по настройке SSL) - + Select SOCKS version for -proxy (4 or 5, default: 5) Выбор версии SOCKS для прокси (4 или 5, по умолчанию: 5) - + Send command to Dash Core Отправить команду Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) Отправляет команду ноде, работающей на IP-адресе <ip> (по умолчанию: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Выводить информацию трассировки/отладки на консоль вместо файла debug.log - + Server certificate file (default: server.cert) Файл сертификата сервера (по умолчанию: server.cert) - + Server private key (default: server.pem) Закрытый ключ сервера (по умолчанию: server.pem) - + Session not complete! Сессия не закончена! - + Session timed out (30 seconds), please resubmit. Сессия прекращена по тайм-ауту (30 секунд), пожалуйста, отправьте заново. - + Set database cache size in megabytes (%d to %d, default: %d) Установить размер кэша БД в мегабайтах(от %d до %d, по умолчанию: %d) - + Set key pool size to <n> (default: 100) Установить размер пула ключей в <n> (по умолчанию: 100) - + Set maximum block size in bytes (default: %d) Установить максимальный размер блока в байтах (по умолчанию: %d) - + Set minimum block size in bytes (default: 0) Установить минимальный размер блока в байтах (по умолчанию: 0) - + Set the masternode private key Установить закрытый ключ мастерноды - + Set the number of threads to service RPC calls (default: 4) Задать число потоков выполнения запросов RPC (по умолчанию: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) Установить флаг DB_PRIVATE в окружении базы данных бумажника (по умолчанию: 1) - + Show all debugging options (usage: --help -help-debug) Показать все отладочные параметры (использование: --help -help-debug) - + Show benchmark information (default: 0) Показывать информацию бенчмарка (по умолчанию: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Сжимать файл debug.log при запуске клиента (по умолчанию: 1, если нет -debug) - + Signing failed. Подписание завершилось неудачно. - + Signing timed out, please resubmit. Подписание прекращено по тайм-ауту, пожалуйста, отправьте заново. - + Signing transaction failed Подписание транзакции завершилось неудачно. - - Specify configuration file (default: darkcoin.conf) - Указать конфигурационный файл (по умолчанию: darkcoin.conf) + + Specify configuration file (default: dash.conf) + Указать конфигурационный файл (по умолчанию: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Указать тайм-аут соединения в миллисекундах (по умолчанию: 5000) - + Specify data directory Задать каталог данных - + Specify masternode configuration file (default: masternode.conf) Указать конфигурационный файл для мастернод (по умолчанию: masternode.conf) - - Specify pid file (default: darkcoind.pid) - Указать pid-файл (по умолчанию: darkcoind.pid) + + Specify pid file (default: dashd.pid) + Указать pid-файл (по умолчанию: dashd.pid) - + Specify wallet file (within data directory) Укажите файл бумажника (внутри каталога данных) - + Specify your own public address Укажите Ваш собственный публичный адрес - + Spend unconfirmed change when sending transactions (default: 1) Тратить неподтвержденную сдачу при отправке транзакций (по умолчанию: 1) - + Start Dash Core Daemon Запустить демона Dash Core - + System error: Системная ошибка: - + This help message Эта справка - + This is intended for regression testing tools and app development. Это рассчитано на инструменты регрессионного тестирования и разработку приложений. - + This is not a masternode. Это не мастернода. - + Threshold for disconnecting misbehaving peers (default: 100) Порог для отключения неправильно ведущих себя участников (по умолчанию: 100) - + To use the %s option Чтобы использовать параметр %s - + Transaction amount too small Сумма транзакции слишком мала - + Transaction amounts must be positive Сумма транзакции должна быть положительна - + Transaction created successfully. Создание транзакции прошло успешно. - + Transaction fees are too high. Комиссия по транзакции слишком большая. - + Transaction not valid. Транзакция некорректна. - + Transaction too large Транзакция слишком большая - + Unable to bind to %s on this computer (bind returned error %s) Невозможно привязаться к %s на этом компьютере (привязка вернула ошибку %s) - + Unable to sign masternode payment winner, wrong key? Невозможно подписать сообщение о мастерноде-победителе. Неправильный ключ? - + Unable to sign spork message, wrong key? Не удалось подписать spork-сообщение. Неправильный ключ? - + Unknown -socks proxy version requested: %i Запрошена неизвестная версия -socks прокси: %i - + Unknown network specified in -onlynet: '%s' В параметре -onlynet указана неизвестная сеть: '%s' - + Upgrade wallet to latest format Обновить бумажник до последнего формата - - Usage (deprecated, use darkcoin-cli): - Использование (устарело, используйте darkcoin-cli): + + Usage (deprecated, use dash-cli): + Использование (устарело, используйте dash-cli): - + Usage: Использование: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) Использовать интеграцию с KeePass 2 через плагин KeePassHttp (по умолчанию: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) Использовать N отдельных мастернод для анонимизации средств (2-8, по умолчанию: 2) - + Use OpenSSL (https) for JSON-RPC connections Использовать OpenSSL (https) для подключений JSON-RPC - + Use UPnP to map the listening port (default: 0) Использовать UPnP для проброса порта (по умолчанию: 0) - + Use UPnP to map the listening port (default: 1 when listening) Использовать UPnP для проброса порта (по умолчанию: 1, если используется прослушивание) - + Use the test network Использовать тестовую сеть - + Username for JSON-RPC connections Имя для подключений JSON-RPC - + Value more than Darksend pool maximum allows. Превышено значение допустимой для пула Darksend суммы. - + Verifying blocks... Проверка блоков... - + Verifying wallet... Проверка бумажника... - + Wait for RPC server to start Дождаться старта RPC сервера - + Wallet %s resides outside data directory %s Бумажник %s располагается вне каталога данных %s - + Wallet is locked. Бумажник заблокирован. - + Wallet needed to be rewritten: restart Dash to complete Необходимо перезаписать бумажник: перезапустите Dash для завершения операции - + Wallet options: Параметры бумажника: - + Warning Внимание - + Warning: Deprecated argument -debugnet ignored, use -debug=net Внимание: опция -debugnet устарела и проигнорирована, используйте -debug=net - + Warning: This version is obsolete, upgrade required! Внимание: эта версия устарела, требуется обновление! @@ -5264,27 +5264,27 @@ If the file does not exist, create it with owner-readable-only file permissions. - + You need to rebuild the database using -reindex to change -txindex Вам необходимо пересобрать базы данных с помощью -reindex, чтобы изменить -txindex - + Zapping all transactions from wallet... Удаление всех транзакций из кошелька... - + on startup при запуске - + version версия - + wallet.dat corrupt, salvage failed wallet.dat повреждён, спасение данных не удалось diff --git a/src/qt/locale/darkcoin_sk.ts b/src/qt/locale/darkcoin_sk.ts index 9fbe2c2440..c73fd523f0 100644 --- a/src/qt/locale/darkcoin_sk.ts +++ b/src/qt/locale/darkcoin_sk.ts @@ -275,8 +275,8 @@ Tento výrobok obsahuje sofvér, ktorý vyvynul OpenSSL Project pre použitie v - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - Upozornenie: Ak zašifrujete vašu peňaženku a stratíte prístupové heslo, potom <b>prídete o všetky svoje DARKCOIN-y</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Upozornenie: Ak zašifrujete vašu peňaženku a stratíte prístupové heslo, potom <b>prídete o všetky svoje DASH-y</b>! @@ -291,7 +291,7 @@ Tento výrobok obsahuje sofvér, ktorý vyvynul OpenSSL Project pre použitie v - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. @@ -397,7 +397,7 @@ Tento výrobok obsahuje sofvér, ktorý vyvynul OpenSSL Project pre použitie v - Request payments (generates QR codes and darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) @@ -595,7 +595,7 @@ Tento výrobok obsahuje sofvér, ktorý vyvynul OpenSSL Project pre použitie v - Open a darkcoin: URI or payment request + Open a dash: URI or payment request @@ -778,7 +778,7 @@ Adresa: %4 Peňaženka je <b>zašifrovaná</b> a momentálne <b>zamknutá</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Došlo k závažnej chybe. Dash už nemôže pokračovať bezpečne a bude ukončený. @@ -1630,7 +1630,7 @@ Adresa: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2058,7 +2058,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler @@ -2141,35 +2141,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. Chyba: Uvedený priečinok s dátami "%1" neexistuje. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Chyba: Nedá sa rozlúštit súbor s nastaveniami: %1. Používajte výlučne kľúč=hodnota syntax. - + Error reading masternode configuration file: %1 - + Error: Invalid combination of -regtest and -testnet. Chyba: Nesprávna kombinácia -regtest a -testnet. - + Dash Core didn't yet exit safely... @@ -2978,7 +2978,7 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. @@ -3915,13 +3915,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3932,1314 +3932,1314 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Akceptovateľné šifry (predvolené: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s Pri nastavovaní portu RPC %u pre počúvanie na IPv4 došlo k chybe: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Chyba pri nastavovaní portu RPC %u pre počúvanie na IPv6, spadne späť na IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - + Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) - + Fees smaller than this are considered zero fee (for transaction creation) (default: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. - + How thorough the block verification of -checkblocks is (0-4, default: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) Počúvajte pre JSON-RPC spojenie na <port> (predvolené: 9998 alebo testovacia siet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Počet sekúnd kedy sa zabráni zle sa správajúcim peerom znovupripojenie (predvolené: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Výstupné informácie o ladení. (predvolené: 0, zadanie <category> je nepovinné) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Nastavte maximálnu veľkosť vysoko-prioritných/nízko-poplatkových transakcií v bajtoch (predvolené: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + (default: 1) (predvolené: 1) - + (default: wallet.dat) (predvolené: wallet.dat) - + <category> can be: <category> môže byť: - + Accept command line and JSON-RPC commands - + Accept connections from outside (default: 1 if no -proxy or -connect) - + Add a node to connect to and attempt to keep the connection open - + Allow DNS lookups for -addnode, -seednode and -connect - + Allow JSON-RPC connections from specified IP address - + Already have that input. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat - + Block creation options: - + Can't denominate: no compatible inputs left. - + Cannot downgrade wallet - + Cannot resolve -bind address: '%s' - + Cannot resolve -externalip address: '%s' - + Cannot write default address - + Clear list of wallet transactions (diagnostic tool; implies -rescan) - + Collateral is not valid. - + Collateral not valid. - + Connect only to the specified node(s) - + Connect through SOCKS proxy - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) - + Connect to a node to retrieve peer addresses, and disconnect - + Connection options: - + Corrupted block database detected - + Dash Core Daemon - + Dash Core RPC client version - + Darksend is disabled. - + Darksend options: - + Debugging/Testing options: - + Disable safemode, override a real safe mode event (default: 0) - + Discover own IP address (default: 1 when listening and no -externalip) - + Do not load the wallet and disable wallet RPC calls - + Do you want to rebuild the block database now? - + Done loading - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) - + Entries are full. - + Error connecting to masternode. - + Error initializing block database - + Error initializing wallet database environment %s! - + Error loading block database - + Error loading wallet.dat Chyba pri načítaní wallet.dat - + Error loading wallet.dat: Wallet corrupted Chyba pri načítaní wallet.dat: Peňaženka je poškodená - + Error loading wallet.dat: Wallet requires newer version of Dash Chyba pri načítaní wallet.dat: Peňaženka vyžaduje novšiu verziu Dash - + Error opening block database - + Error reading from database, shutting down. - + Error recovering public key. - + Error Chyba - + Error: Disk space is low! Chyba: Nedostatok miesta na disku! - + Error: Wallet locked, unable to create transaction! - + Error: You already have pending entries in the Darksend pool - + Error: system error: - + Failed to listen on any port. Use -listen=0 if you want this. - + Failed to read block info - + Failed to read block - + Failed to sync block index - + Failed to write block index - + Failed to write block info - + Failed to write block - + Failed to write file info - + Failed to write to coin database - + Failed to write transaction index - + Failed to write undo data - + Fee per kB to add to transactions you send - + Fees smaller than this are considered zero fee (for relaying) (default: - + Force safe mode (default: 0) - + Generate coins (default: 0) - + Get help for a command - + How many blocks to check at startup (default: 288, 0 = all) - + If <category> is not supplied, output all debugging information. - + Ignore masternodes less than version (example: 70050; default : 0) - + Importing... - + Imports blocks from external blk000??.dat file - + Incompatible mode. - + Incompatible version. - + Incorrect or no genesis block found. Wrong datadir for network? - + Information Informácia - + Initialization sanity check failed. Dash Core is shutting down. - + Input is not valid. - + InstantX options: - + Insufficient funds - + Insufficient funds. - + Invalid -onion address: '%s' - + Invalid -proxy address: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' - + Invalid amount - + Invalid masternodeprivkey. Please see documenation. - + Invalid private key. - + Invalid script detected. - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. - + Last successful darksend action was too recent. - + Limit size of signature cache to <n> entries (default: 50000) - + List commands - + Listen for connections on <port> (default: 9999 or testnet: 19999) - + Loading addresses... Načítavanie adries... - + Loading block index... Načítavanie zoznamu blokov... - + Loading masternode list... - + Loading wallet... (%3.2f %%) Načítavanie peňaženky... (%3.2f %%) - + Loading wallet... Načítavanie peňaženky... - + Log transaction priority and fee per kB when mining blocks (default: 0) - + Maintain a full transaction index (default: 0) - + Maintain at most <n> connections to peers (default: 125) - + Masternode options: - + Masternode queue is full. - + Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Missing input transaction information. - + No compatible masternode found. - + No funds detected in need of denominating. - + No masternodes detected. - + No matching denominations found for mixing. - + Non-standard public key detected. - + Not compatible with existing transactions. - + Not enough file descriptors available. - + Not in the masternode list. - + Only accept block chain matching built-in checkpoints (default: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + Options: - + Password for JSON-RPC connections - + Prepend debug output with timestamp (default: 1) - + Print block on startup, if found in block index - + Print block tree on startup (default: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + RPC client options: - + RPC server options: - + Randomly drop 1 of every <n> network messages - + Randomly fuzz 1 of every <n> network messages - + Rebuild block chain index from current blk000??.dat files - + Rescan the block chain for missing wallet transactions - + Rescanning... - + Run a thread to flush wallet periodically (default: 1) - + Run in the background as a daemon and accept commands - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Select SOCKS version for -proxy (4 or 5, default: 5) - + Send command to Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Session not complete! - + Session timed out (30 seconds), please resubmit. - + Set database cache size in megabytes (%d to %d, default: %d) - + Set key pool size to <n> (default: 100) - + Set maximum block size in bytes (default: %d) - + Set minimum block size in bytes (default: 0) - + Set the masternode private key - + Set the number of threads to service RPC calls (default: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) - + Show all debugging options (usage: --help -help-debug) - + Show benchmark information (default: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) - + Signing failed. - + Signing timed out, please resubmit. - + Signing transaction failed - - Specify configuration file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) - + Specify data directory - + Specify masternode configuration file (default: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) - + Specify wallet file (within data directory) - + Specify your own public address - + Spend unconfirmed change when sending transactions (default: 1) - + Start Dash Core Daemon - + System error: - + This help message - + This is intended for regression testing tools and app development. - + This is not a masternode. - + Threshold for disconnecting misbehaving peers (default: 100) - + To use the %s option Použiť možnosť %s - + Transaction amount too small - + Transaction amounts must be positive - + Transaction created successfully. - + Transaction fees are too high. - + Transaction not valid. - + Transaction too large Transakcia je príliš veľká - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i Požadovaná neznáma SOCKS proxy verzia: %i - + Unknown network specified in -onlynet: '%s' Špecifikovaná neznáma sieť v -onlynet: '%s' - + Upgrade wallet to latest format - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): - + Usage: Použitie: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) - + Use OpenSSL (https) for JSON-RPC connections Použiť OpenSSL (https) pre JSON-RPC spojenia - + Use UPnP to map the listening port (default: 0) Skúsiť použiť UPnP pre mapovanie počúvajúceho portu (default: 0) - + Use UPnP to map the listening port (default: 1 when listening) Skúsiť použiť UPnP pre mapovanie počúvajúceho portu (predvolené: 1 počas počúvania) - + Use the test network Použiť testovaciu sieť - + Username for JSON-RPC connections Užívateľské meno pre JSON-RPC spojenia - + Value more than Darksend pool maximum allows. - + Verifying blocks... Overovanie blokov - + Verifying wallet... Overovanie peňaženky - + Wait for RPC server to start Pred spustením počkať na RPC server - + Wallet %s resides outside data directory %s Peňaženka %s je umiestnená mimo dátový adresár %s. - + Wallet is locked. Peňaženka je zamknutá. - + Wallet needed to be rewritten: restart Dash to complete Peňaženka potrebuje byť prepísaná: k dokončeniu reštartujte Dash - + Wallet options: Možnosti peňaženky: - + Warning Upozornenie - + Warning: Deprecated argument -debugnet ignored, use -debug=net Upozornenie: Zastaraný argument -debugnet bol ignorovaný, použite -debug=net - + Warning: This version is obsolete, upgrade required! Upozornenie: Táto verzia je zastaraná, vyžaduje sa aktualizácia! @@ -5248,27 +5248,27 @@ If the file does not exist, create it with owner-readable-only file permissions. - + You need to rebuild the database using -reindex to change -txindex - + Zapping all transactions from wallet... - + on startup pri spustení - + version verzia - + wallet.dat corrupt, salvage failed wallet.dat je poškodený, záchrana zlyhala diff --git a/src/qt/locale/darkcoin_sv.ts b/src/qt/locale/darkcoin_sv.ts index 7052efd997..e8add27bb6 100644 --- a/src/qt/locale/darkcoin_sv.ts +++ b/src/qt/locale/darkcoin_sv.ts @@ -276,8 +276,8 @@ Denna produkt innehåller mjukvara utvecklad av OpenSSL Projekt för användning - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - Varning: Om du krypterar din plånbok och tappar bort din lösenfras kommer du att <b>FÖRLORA ALLA DINA DARKCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Varning: Om du krypterar din plånbok och tappar bort din lösenfras kommer du att <b>FÖRLORA ALLA DINA DASHS</b>! @@ -292,7 +292,7 @@ Denna produkt innehåller mjukvara utvecklad av OpenSSL Projekt för användning - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. Dash kommer nu att avsluta krypteringsprocessen. Kom ihåg att krypteringen av din plånbok inte helt kan skydda dig mot att dina Darkcoins blir stulna av skadeprogram som har infekterat din dator. @@ -399,7 +399,7 @@ Denna produkt innehåller mjukvara utvecklad av OpenSSL Projekt för användning - Request payments (generates QR codes and darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) Begär betalningar (genererar QR-koder och Dash-URI:s) @@ -597,7 +597,7 @@ Denna produkt innehåller mjukvara utvecklad av OpenSSL Projekt för användning - Open a darkcoin: URI or payment request + Open a dash: URI or payment request Öppna en Dash-URI eller betalningsbegäran @@ -781,7 +781,7 @@ Adress: %4 Plånboken är <b>krypterad</b> och för närvarande <b>låst</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Ett ödesdigert misstag inträffade. Dash kan inte längre att fortsätta säkert och kommer att avslutas. @@ -1635,9 +1635,9 @@ Adress: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ Fattas språk eller är det en ofullständig översättning? Hjälp till att bidra med översättningar här: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2066,8 +2066,8 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler - Kan inte starta darkcoin: klicka-för-att-betala hanterare + Cannot start dash: click-to-pay handler + Kan inte starta dash: klicka-för-att-betala hanterare @@ -2149,35 +2149,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. Fel: Den angivna datakatalogen "%1" finns inte. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Fel: Kan inte parsa konfigurationsfilen: %1. Använd bara nyckel=värde formatet. - + Error reading masternode configuration file: %1 Fel vid läsning av Masternodens konfigurationsfil: %1 - + Error: Invalid combination of -regtest and -testnet. Fel: Ogiltig kombination av -regtest och -testnet. - + Dash Core didn't yet exit safely... Dash Core avslutades inte säkert än... @@ -2986,7 +2986,7 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. Ett meddelande som var bifogat till Dash: URI vilket kommer att lagras med transaktionen för din referens. Notera: Meddelandet kommer inte att skickas över Dash-nätverket. @@ -3924,13 +3924,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3949,248 +3949,248 @@ admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Godtagbara chiffers (standardvärde: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s Ett fel inträffade vid inställning av RPC-prt %u för avlyssning på IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Ett fel inträffade vid inställning av RPC-prt %u för avlyssning på IPv6, går tillbaka till IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Sammanbind till fastställd adress och avlyssna alltid på det. Använd [host]:port notation för IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. Kan inte erhålla ett lås på datakatalog %s. Dash Core körs förmodligen redan. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) Fortsätt att rate-limit gratistransaktioner till <n>*1000 bytes per minut (standardvärde: 15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. Darksend använder precisa denominationsmängder för att skicka medel, du kanske måste anonymisera fler mynt. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) Inaktivera alla Masternode- och Darksend-relaterade funktioner (0-1, standardvärde: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) Aktivera instantx, visa bekräftelser för låsta transaktioner (bool, standardvärde: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) Aktivera Darksend automatiskt för lagrade medel i plånboken (0-1, standardvärde: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. Gå in i regressionstestläget, vilken använder en särskild kedja i vilken block kan lösas direkt. Detta är endast ämnat för regressionstestverktyg och apputveckling. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Gå in i regressionstestläget, vilken använder en särskild kedja i vilken block kan lösas direkt. - + Error: Listening for incoming connections failed (listen returned error %s) Fel: Lyssnande på inkommande anslutningar misslyckades (avlyssna återkommande fel %) - + 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 and coins were spent in the copy but not marked as spent here. Fel: Transaktionen avslogs! Detta kan hända om några av mynten i din plånbok redan har spenderats, t.ex. om du har använt en kopia av wallet.dat och mynt spenderades i kopian men inte har markerats som spenderade här. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Fel: Transaktion kräver en transaktionsavgift om åtminstone %s på grund av dess mängd, komplexitet eller användning av nyligen mottagna medel! - + Error: Wallet unlocked for anonymization only, unable to create transaction. Fel: Plånboken upplåst endast för anynomisering, kan inte skapa en transaktion. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Exekvera kommandot när ett viktigt larm mottas eller vi ser en jättelång förgrening (%s i cmd ersätts av ett meddelande) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Exekvera kommandot när en plånbokstransaktion ändras (%:en i cmd ersätts av TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Exekvera kommandot när det bästa blocket ändras (%:en i cmd ersätts av blockhash) - + Fees smaller than this are considered zero fee (for transaction creation) (default: Avgifter som är mindre än denna blir avgiftsfria (för skapande av transaktioner)(standard: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) Flusha databasaktivitet från minnespoolen för varje disklog <n> megabytes (standard: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. Hittade obekräftade denominationsutdatan, väntar tills de bekräftar fortsättning. - + How thorough the block verification of -checkblocks is (0-4, default: 3) Hur genomarbetad blockbekräftelsen för -checkblocks är (0-4, standardvärde: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. I detta läge kontrollerar -genproclimit hur många block som genereras omedelbart. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. InstantX kräver indatan med åtminstone 6 bekräftelser. Du kanske måste vänta ett par minuter och försöka igen. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) Avlyssna JSON-RPC-anslutningar på <port> (standardvärde: 9998 eller testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase Namnge för att skapa en url för KeePass-inmatning som lagrar plånbokslösenfrasen. - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Antal sekunder dåliga anslutningar ska vänta före återanslutning (standardvärde: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Skriv avsökningsinformation (standardvärde: 0, angivelse av <kategori> är valfri) - + 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) Tillhandahåll likviditet för Darksend genom att mixa mynt ibland på en ständig basis (0 - 100, standardvärde; 0, 1 = väldigt frekvent, höga avgifter, 100 = väldigt sällan, låga avgifter) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Förfrågan till peer-adresser via DNS-lookup, om det är brist på adresser (standardvärde:1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) Ställ in extern adress:port för att få denna masternode (exempel; address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Sätt en maxgräns för högprioritet/lågavgiftsbelagda transaktioner i byte (standard: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Sätt antalet skriptbekräftelsetrådar till (%u till %d, 0 = auto, <0 = lämna så många kärnor fria, standard: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) Sätt en processorbegränsning för när generering är vid (-1 = obegränsad, standardvärde: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) Visa N bekräftelser för en lyckad transaktionslåsning (0 - 9999, standardvärde: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Detta är en förhandsutgiven testutgåva - använd på egen risk - använd inte för utvinning eller handelsprogram - + Unable to bind to %s on this computer. Dash Core is probably already running. Det går inte att binda till %s på denna dator. Dash Core körs förmodligen redan. - + Unable to locate enough Darksend denominated funds for this transaction. Kunde inte hitta tillräckliga Darksend-denominationsmedel för transaktionen. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. Kunde inte hitta tillräckliga Darksend-icke-denominationsmedel för transaktionen som inte är likvärdigt med 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. Kunde inte hitta tillräckliga Darksend-icke-denominationsmedel för transaktionen. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Använd separat SOCKS5-proxy för att nå prrtd via Tors dolda tjänster (standardvärde: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Varning: paytxfee är väldigt högt satt! Detta är en transaktionsavgift du kommer att få betala om du skickar en transaktion. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. Varning: Vänligen kolla så att ditt datum och din tid är korrekt! Om din klocka är fel kommer Dash inte att fungera ordentligt. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Varning: Nätverket verkar inte hålla med fullständigt! Några utvinnare verkar uppleva problem. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Varning: Vi verkar inte hålla med fullständigt med våra peers Du kanske måste uppgradera, eller så måste andra noder uppgraderas. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Varning: Fel vid avläsning av wallet.dat! Alla nycklar lästes korrekt, men transaktionsdatan eller adressboksposterna kanske saknas eller är inkorrekta. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Varning: wallet.dat korrumperad, data räddad! Den ursprungliga wallet.dat är sparad som wallet.{timestamp}.bak i %; om dina medel eller transaktioner är felaktiga kanske du måste återställa från en säkerhetskopia. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4199,1067 +4199,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. Om filen inte existerar, skapa den och ge inga andra än ägaren läsarrättigheter. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. Du måste specificera en masternodepriv-nyckel i konfigurationen. Vänligen se dokumentationen för hjälp. - + (default: 1) (standardvärde: 1) - + (default: wallet.dat) (standardvärde: wallet.dat) - + <category> can be: <category> kan vara: - + Accept command line and JSON-RPC commands Acceptera kommandorad och JSON-RPC-kommandon - + Accept connections from outside (default: 1 if no -proxy or -connect) Acceptera anslutningar utifrån (standardvärde: 1 om ingen -proxy eller -connect) - + Add a node to connect to and attempt to keep the connection open Lägg till en nod att ansluta till och försök att hålla anslutningen öppen - + Allow DNS lookups for -addnode, -seednode and -connect Tillåt DNS-lookup för -addnode, -seednode och -connect - + Allow JSON-RPC connections from specified IP address Tillåt JSON-RPC-anslutningar från en specifik IP-adress - + Already have that input. Har redan en indata. - + Always query for peer addresses via DNS lookup (default: 0) Förfråga alltid peer-adresser via DNS-lookup (standardvärde: 0) - + Attempt to recover private keys from a corrupt wallet.dat Försök att återskapa privata nycklar från en korrumperad wallet.dat - + Block creation options: Blockskapandeinställningar: - + Can't denominate: no compatible inputs left. Kan inte denominera: Inga kompatibla indatan kvar. - + Cannot downgrade wallet Kan inte nedgradera plånboken - + Cannot resolve -bind address: '%s' Kan inte lösa -bind address: '%s' - + Cannot resolve -externalip address: '%s' Kan inte lösa -externalip address: '%s' - + Cannot write default address Kan inte skriva standardadress - + Clear list of wallet transactions (diagnostic tool; implies -rescan) Rensa listan med plånbokstransaktioner (diagnostikverktyg; antyder -rescan) - + Collateral is not valid. Säkerhetsåtgärd är inte giltig. - + Collateral not valid. Säkerhetsåtgärd är inte giltig. - + Connect only to the specified node(s) Anslut endast genom (en) särskild(a) nod(er) - + Connect through SOCKS proxy Anslut genom SOCKS-proxy - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) Anslut till JSON-RPC på <port> (standardvärde: 9998 eller testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) Anslut till KeePassHttp på port <port> (standardvärde: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Anslut till en nod för att få peer-adresser och koppla från - + Connection options: Anslutningsalternativ: - + Corrupted block database detected Upptäckt korrumperad blockdatabas - + Dash Core Daemon Dash Core Daemon - + Dash Core RPC client version Dash Core RPC-klientversion - + Darksend is disabled. Darksend är inaktiverad. - + Darksend options: Darksend-alternativ: - + Debugging/Testing options: Avsöknings-/testalternativ: - + Disable safemode, override a real safe mode event (default: 0) Inaktivera säkerhetsläge, åsidosätt ett riktigt säkerhetsläge (standardvärde: 0) - + Discover own IP address (default: 1 when listening and no -externalip) Upptäck din egen IP-adress (standardvärde: 1 vid avlyssning och no -externalip) - + Do not load the wallet and disable wallet RPC calls Ladda inte plånboken och inaktivera plånboks-RPC-anrop - + Do you want to rebuild the block database now? Vill du återuppbygga blockdatabasen nu? - + Done loading Laddning färdig - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) Aktivera klienten att agera som en masternode (0 - 1, standardvärde:0) - + Entries are full. Inmatningar är fylkade. - + Error connecting to masternode. Fel vid anslutning till masternode. - + Error initializing block database Fel vid initialisering av blockadatabas - + Error initializing wallet database environment %s! Fel vid initialisering av plånbokdatabasmiljö %s! - + Error loading block database Fel vid laddning av blockdatabas - + Error loading wallet.dat Fel vid laddning av wallet.dat - + Error loading wallet.dat: Wallet corrupted Fel vid laddning av wallet.dat: Plånboken är korrumperad - + Error loading wallet.dat: Wallet requires newer version of Dash Fel vid laddning av wallet.dat: Plånboken kräver en nyare Dash-version - + Error opening block database Fel vid öppnande av blockdatabas - + Error reading from database, shutting down. Fel vid läsning från databas, stänger ned. - + Error recovering public key. Fel vid återhämtning av publik nyckel. - + Error Fel - + Error: Disk space is low! Fel: Diskutrymme är lågt! - + Error: Wallet locked, unable to create transaction! Fel: Plånbok låst, kan inte skapa en transaktion! - + Error: You already have pending entries in the Darksend pool Fel: Du har redan väntande inmatnigar i Darksend-poolen - + Error: system error: Fel: systemfel: - + Failed to listen on any port. Use -listen=0 if you want this. Kunde inte avlyssna någon port. Använd -listen=0 om du vill detta. - + Failed to read block info Kunde inte avläsa blockinfo - + Failed to read block Kunde inte avläsa block - + Failed to sync block index Kunde inte synkronisera blockindex - + Failed to write block index Kune inte skriva blockindex - + Failed to write block info Kunde inte skriva blockinfo - + Failed to write block Kunde inte skriva block - + Failed to write file info Kunde inte skriva filinfo - + Failed to write to coin database Kunde inte skriva till myntdatabasen - + Failed to write transaction index Kunde inte skriva transaktionsindex - + Failed to write undo data Kunde inte skriva upphäv data - + Fee per kB to add to transactions you send Avgift per kB att lägga till transaktioner du skickar - + Fees smaller than this are considered zero fee (for relaying) (default: Avgifter mindre än detta ses som nollavgift (för omgångar) (standardvärde: - + Force safe mode (default: 0) Tvinga säkerhetsläge (standardvärde: 0) - + Generate coins (default: 0) Generera mynt (standardvärde: 0) - + Get help for a command Få hjälp med ett kommando - + How many blocks to check at startup (default: 288, 0 = all) Hur många block att kontrollera vid uppstart (standardvärde: 288, 0 = alla) - + If <category> is not supplied, output all debugging information. Om <category> inte finns, lägg ut all avsökningsinformation. - + Ignore masternodes less than version (example: 70050; default : 0) Ignorera masternode lägre än version (exempel: 70050; standardvärde: 0) - + Importing... Importerar... - + Imports blocks from external blk000??.dat file Importerar block från en extern blok000??.dat-fil - + Incompatible mode. Inkompatibelt läge. - + Incompatible version. Inkompatibel version. - + Incorrect or no genesis block found. Wrong datadir for network? Felaktig eller ingen Genesis-block hittad. Fel datadir för nätverket? - + Information Information - + Initialization sanity check failed. Dash Core is shutting down. Initialiseringstillståndkontroll misslyckades. Dash Core stängs ned. - + Input is not valid. Indata är inte giltig. - + InstantX options: InstantX-alternativ: - + Insufficient funds Otillräckliga medel - + Insufficient funds. Otillräckliga medel! - + Invalid -onion address: '%s' Ogiltig -onion-adress: '%s' - + Invalid -proxy address: '%s' Ogiltig -proxy-adress: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' Ogiltig mängd för -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' Ogiltig mängd för -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Ogiltig mängd för -paytxfee=<amount>: '%s' - + Invalid amount Ogiltig mängd - + Invalid masternodeprivkey. Please see documenation. Ogiltig masternodepriv-nyckel. Vänligen se dokumentationen. - + Invalid private key. Ogiltig privatnyckel. - + Invalid script detected. Ogiltigt skript hittat. - + KeePassHttp id for the established association KeePassHttp-id för den etablerade associeringen - + KeePassHttp key for AES encrypted communication with KeePass KeePassHttp-nyckel för AES-krypterad kommunikation med KeePass - - Keep N darkcoin anonymized (default: 0) - Bibehåll N darkcoin anonymiserade (standardvärde: 0) + + Keep N dash anonymized (default: 0) + Bibehåll N dash anonymiserade (standardvärde: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) Bibehåll som mest <n> icke-anslutningsbara block i minnet (standardvärde: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) Bibehåll som mest <n> icke-anslutningsbara transaktioner i minnet (standardvärde: %u) - + Last Darksend was too recent. Senaste Darksend var för nygjord. - + Last successful darksend action was too recent. Senast lyckade darksend-handlingen var för nygjord. - + Limit size of signature cache to <n> entries (default: 50000) Begränsa storleken för signaturcachen till <n> inmatningar (standardvärde: 50000) - + List commands Lista kommandon - + Listen for connections on <port> (default: 9999 or testnet: 19999) Avlyssna anslutningar på <port> (standardvärde: 9999 eller testnet: 19999) - + Loading addresses... Laddar adresser... - + Loading block index... Laddar blockindex... - + Loading masternode list... - + Loading wallet... (%3.2f %%) Laddar plånbok... (%3.2f %%) - + Loading wallet... Laddar plånbok... - + Log transaction priority and fee per kB when mining blocks (default: 0) Logga transaktionsprioritet och avgift per kB när du utvinner block (standardvärde: 0) - + Maintain a full transaction index (default: 0) Kvarhåll ett fullständigt transaktionsindex (standardvärde: 0) - + Maintain at most <n> connections to peers (default: 125) Kvarhåll som mest <n> anslutningar till peers (standardvärde: 125) - + Masternode options: Masternode-alternativ: - + Masternode queue is full. Masternode-kön är full. - + Masternode: Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Maximal peeranslutningmottagarbuffert, <n>*1000 bytes (standardvärde: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Maximalt per anslutningssändningsbuffert, <n>*1000 bytes (standardvärde: 1000) - + Missing input transaction information. Fattas indatatransaktionsinformation. - + No compatible masternode found. Inga kompatibla masternoder hittade. - + No funds detected in need of denominating. Inga medel hittades som behöver denominering. - + No masternodes detected. Inga masternoder hittade. - + No matching denominations found for mixing. Inga matchande denominationer hittades för mixning. - + Non-standard public key detected. Icke-standard publik nyckel hittades. - + Not compatible with existing transactions. Inte kompatibel med nuvarande transaktioner. - + Not enough file descriptors available. Inte tillräckliga fildeskriptorer tillgängliga. - + Not in the masternode list. Inte i masternode-listan. - + Only accept block chain matching built-in checkpoints (default: 1) Acceptera endast blockkedjematchande inbyggda kontrollpunkter (standardvärde: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Anslut endast till noder på nätverket <net> (IPv4, IPv6 eller Tor) - + Options: Alternativ: - + Password for JSON-RPC connections Lösenord för JSON-RPC-anslutningar - + Prepend debug output with timestamp (default: 1) Addera avsökningsutdatan med tidsstämpel till början (standardvärde: 1) - + Print block on startup, if found in block index Skriv ut block vid uppstart om det hittas i blockindex - + Print block tree on startup (default: 0) Skriv ut blockträd vid uppstart (standardvärde: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) RPC SSL-alternativ: (Se Bitcoin Wiki för SSL-inställningsinstruktioner) - + RPC client options: RPC-klientalternativ: - + RPC server options: RPC-serveralternativ: - + Randomly drop 1 of every <n> network messages Släng 1 av varje <n> nätverksmeddelande slumpmässigt - + Randomly fuzz 1 of every <n> network messages Ludda 1 av varje <n> nätverksmeddelande slumpmässigt - + Rebuild block chain index from current blk000??.dat files Återuppbygg blockkedjeindexet från de nuvarande blk000??.dat-filerna - + Rescan the block chain for missing wallet transactions Omskanna blockkedjan efter förlorade plånbokstransaktioner - + Rescanning... Omskannar... - + Run a thread to flush wallet periodically (default: 1) Kör en tråd för att rensa plånboken då och då (standardvärde: 1) - + Run in the background as a daemon and accept commands Kör i bakgrunden som daemon och acceptera alla kommandon - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL-alternativ: (Se Bitcoin Wiki för SSL-inställningsinstruktioner) - + Select SOCKS version for -proxy (4 or 5, default: 5) Välj SOCKS-version för -proxy (4 or 5, standardvärde: 5) - + Send command to Dash Core Skicka kommando till Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) Skicka kommandon till den körande noden på <ip> (standardvärde: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Skicka spårnings-/avsökningsinfo till konsolen istället för debug.log-filen - + Server certificate file (default: server.cert) Servercertifikatfil (standardvärde: server.cert) - + Server private key (default: server.pem) Serverprivatnyckel (standardvärde: server.pem) - + Session not complete! Sessionen är inte fullständig! - + Session timed out (30 seconds), please resubmit. Sessionen tog en paus (30 sekunder), vänligen återinmata. - + Set database cache size in megabytes (%d to %d, default: %d) Ställ in databascachens storlek i megabytes (%d till %d, standardvärde: %d) - + Set key pool size to <n> (default: 100) Ställ in nyckelpoolstorlek till <n> (standardvärde: 100) - + Set maximum block size in bytes (default: %d) Ställ in maximal blockstorlek i bytes (standardvärde: %d) - + Set minimum block size in bytes (default: 0) Ställ in minimal blockstorlek i bytes (standardvärde: 0) - + Set the masternode private key Ställ in masternodeprivatnyckeln - + Set the number of threads to service RPC calls (default: 4) Ställ in antal trådar att tjänstgöra RPC-anrop (standardvärde: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) Ställer in DB_PRIVATE-flaggan i plånbokens db-miljö (standardvärde: 1) - + Show all debugging options (usage: --help -help-debug) Visa alla avsökningsalternativ (usage: --help -help-debug) - + Show benchmark information (default: 0) Visa riktvärdesinformation (standardvärde: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Förminska debug.log-filen vid klientuppstart (standardvärde 1 vid ingen -debug) - + Signing failed. Signering misslyckades. - + Signing timed out, please resubmit. Signeringen pausade, vänligen återinmata. - + Signing transaction failed Transaktionssigneringen misslyckades - - Specify configuration file (default: darkcoin.conf) - Specificera konfigurationsfilen (standardvärde: darkcoin.conf) + + Specify configuration file (default: dash.conf) + Specificera konfigurationsfilen (standardvärde: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Specificera anslutningspaus i millisekunder (standardvärde: 5000) - + Specify data directory Specificera datakatalog - + Specify masternode configuration file (default: masternode.conf) Specificera masternodens konfigurationsfil (standardvärde: masternode.conf) - - Specify pid file (default: darkcoind.pid) - Specificera pid-fil (standardvärde: darkcoin.pid) + + Specify pid file (default: dashd.pid) + Specificera pid-fil (standardvärde: dash.pid) - + Specify wallet file (within data directory) Specificera plånboksfil (inom datakatologen) - + Specify your own public address Specificera din egen publika adress - + Spend unconfirmed change when sending transactions (default: 1) Spendera obekräftad växel när du skickar transaktioner (standardvärde: 1) - + Start Dash Core Daemon Starta Dash Core Daemon - + System error: Systemfel: - + This help message Detta hjälpmeddelande - + This is intended for regression testing tools and app development. Detta är ämnat för regressionstestverktyg och apputveckling. - + This is not a masternode. Detta är ingen masternode. - + Threshold for disconnecting misbehaving peers (default: 100) Tröskel för att koppla från peers som uppför sig dåligt (standardvärde: 100) - + To use the %s option Att använda &s alternativet - + Transaction amount too small Transaktionsmängden är för liten - + Transaction amounts must be positive Transaktionsmängder måste vara positiva - + Transaction created successfully. Transaktionen skapades utan problem. - + Transaction fees are too high. Transaktionsavgifter är för höga. - + Transaction not valid. Transaktionen är inte giltig. - + Transaction too large Transaktionen är för stor - + Unable to bind to %s on this computer (bind returned error %s) Kan inte binda %s till denna dator (bindning återgav ett fel &s) - + Unable to sign masternode payment winner, wrong key? Kan inte signera masternodebetalningsvinnarna, fel nyckel? - + Unable to sign spork message, wrong key? Kan inte sporka meddelandet, fel nyckel? - + Unknown -socks proxy version requested: %i Okänd -socks proxy-version begärd: %i - + Unknown network specified in -onlynet: '%s' Okänt specificerat nätverk i -onlynet: '%s' - + Upgrade wallet to latest format Uppgradera plånboken till det senaste formatet - - Usage (deprecated, use darkcoin-cli): - Användning (ta avstånd från, använd darkcoin-cli): + + Usage (deprecated, use dash-cli): + Användning (ta avstånd från, använd dash-cli): - + Usage: Användning: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) Använd KeePass 2-integrering med KeePassHtpp-plugin (standardvärde: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) Använd N enskilda masternoder att anonymisera medel med (2 - 8, standardvärde: 2) - + Use OpenSSL (https) for JSON-RPC connections Använd OpenSSL (https) för JSON-RPC-anslutningar - + Use UPnP to map the listening port (default: 0) Använd UPnP för att kartlägga avlyssningsporten (standardvärde: 0) - + Use UPnP to map the listening port (default: 1 when listening) Använd UPnP för att kartlägga avlyssningsporten (standardvärde: 1 vid avlyssning) - + Use the test network Använd testnätverket - + Username for JSON-RPC connections Användarnamn för JSON-RPC-anslutningar - + Value more than Darksend pool maximum allows. Värdera mer än Darksend-poolmaximum tillåter. - + Verifying blocks... Bekräftar block... - + Verifying wallet... Bekräftar plånbok... - + Wait for RPC server to start Väntar på att RPC-servern ska starta - + Wallet %s resides outside data directory %s Plånboken %s återfinns utanför datakatalogen &s - + Wallet is locked. Plånboken är låst. - + Wallet needed to be rewritten: restart Dash to complete Plånboken måste omskrivas: Starta om Dash för att färdigställa - + Wallet options: Plånboksalternativ: - + Warning Varning - + Warning: Deprecated argument -debugnet ignored, use -debug=net Varning: Avståndsargument -debugnet ignorerad, använd -debug=net - + Warning: This version is obsolete, upgrade required! Varning: Versionen är förlegad, uppgradering krävs! @@ -5268,27 +5268,27 @@ Om filen inte existerar, skapa den och ge inga andra än ägaren läsarrättighe - + You need to rebuild the database using -reindex to change -txindex Du måste återuppbygga databasen med -reindex för att ändra -txindex - + Zapping all transactions from wallet... Zappar alla transaktioner från plånboken... - + on startup vid uppstart - + version version - + wallet.dat corrupt, salvage failed wallet.dat är korrumperad, återställning misslyckades diff --git a/src/qt/locale/darkcoin_tr.ts b/src/qt/locale/darkcoin_tr.ts index b28f1a1b0f..f82891f6e1 100644 --- a/src/qt/locale/darkcoin_tr.ts +++ b/src/qt/locale/darkcoin_tr.ts @@ -275,8 +275,8 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - Uyarı: Eğer cüzdanınızı şifreler ve şifrenizi kaybederseniz,<b>TÜM DARKCOINLERİNİZİ" kaybedersiniz. + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Uyarı: Eğer cüzdanınızı şifreler ve şifrenizi kaybederseniz,<b>TÜM DASHLERİNİZİ" kaybedersiniz. @@ -291,7 +291,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. Dash, şifreleme işlemini tamamlamak için kapanacak. Cüzdanınızı şifrelemenizin, bilgisayarınıza bulaşacak zararlı yazılımlar tarafından Dash'lerinizin çalınmasından sizi tam olarak korumayacağını unutmayınız. @@ -397,8 +397,8 @@ This product includes software developed by the OpenSSL Project for use in the O - Request payments (generates QR codes and darkcoin: URIs) - Ödeme iste (QR kodu ve darkcoin: URIs oluşturur) + Request payments (generates QR codes and dash: URIs) + Ödeme iste (QR kodu ve dash: URIs oluşturur) @@ -595,7 +595,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Open a darkcoin: URI or payment request + Open a dash: URI or payment request @@ -779,7 +779,7 @@ Adres: %4 Cüzdan <b>şifrelenmiştir</b> ve şu anda <b>kilitlidir</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. @@ -1631,7 +1631,7 @@ Adres: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2059,7 +2059,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler @@ -2142,35 +2142,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash - + Error: Specified data directory "%1" does not exist. Hata: belirtilen "%1" veri klasörü yoktur. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Hata: %1 yapılandırma dosyası ayrıştırılamadı. Sadece anahtar=değer dizimini kullanınız. - + Error reading masternode configuration file: %1 - + Error: Invalid combination of -regtest and -testnet. Hata: -regtest ve -testnet'in geçersiz kombinasyonu. - + Dash Core didn't yet exit safely... @@ -2979,7 +2979,7 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. @@ -3916,13 +3916,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3933,247 +3933,247 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Kabul edilebilir şifreler (varsayılan: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s IPv4 üzerinde dinlemek için %u numaralı RPC portunun kurulumu sırasında hata meydana geldi: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s IPv6 üzerinde dinlemek için %u numaralı RPC portu kurulurken bir hata meydana geldi, IPv4'e dönülüyor: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Belirtilen adrese bağlan ve daima ondan dinle. IPv6 için [makine]:port yazımını kullanınız - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) Devamlı olarak ücretsiz muameleleri dakikada <n>*1000 bayt olarak sınırla (varsayılan: 15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. Anında çözümlenebilen bloklar içeren ve özel zincir kullanan regresyon test kipine gir. Bu, uygulama geliştirme ve regresyon testi araçları için tasarlanmıştır. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Blokların anında çözülebileceği özel bir zincir kullanan regresyon deneme kipine gir. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. Hata: Muamele reddedildi! Cüzdanınızdaki madenî paraların bazıları zaten harcanmış olduğunda bu meydana gelebilir. Örneğin wallet.dat dosyasının bir kopyasını kullandıysanız ve kopyada para harcandığında ancak burada harcandığı işaretlenmediğinde. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Hata: Muamelenin meblağı, karmaşıklığı ya da yakın geçmişte alınan fonların kullanılması nedeniyle bu muamele en az %s tutarında ücret gerektirmektedir! - + Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) İlgili bir uyarı alındığında ya da gerçekten uzun bir çatallama gördüğümüzde komutu çalıştır (komuttaki %s mesaj ile değiştirilir) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Bir cüzdan muamelesi değiştiğinde komutu çalıştır (komuttaki %s TxID ile değiştirilecektir) - + Execute command when the best block changes (%s in cmd is replaced by block hash) En iyi blok değiştiğinde komutu çalıştır (komut için %s parametresi blok hash değeri ile değiştirilecektir) - + Fees smaller than this are considered zero fee (for transaction creation) (default: Bundan düşük ücretler sıfır değerinde sayılır (muamele oluşturulması için) (varsayılan: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) Veritabanı etkinliğini bellekten disk kütüğüne her <n> megabaytta aktar (varsayılan: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. - + How thorough the block verification of -checkblocks is (0-4, default: 3) -checkblocks'un blok kontrolünün ne kadar kapsamlı olacağı (0 ilâ 4, varsayılan: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. Bu kipte -genproclimit kaç sayıda bloğun anında oluşturulduğunu kontrol eder. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Aksaklık gösteren eşlerle yeni bağlantıları engelleme süresi, saniye olarak (varsayılan: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Hata ayıklama bilgisi dök (varsayılan:0, <kategori> sağlanması seçime dayalıdır) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Yüksek öncelikli/düşük ücretli muamelelerin azami boyutunu bayt olarak ayarla (varsayılan: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Betik kontrolü iş parçacıklarının sayısını belirler (%u ilâ %d, 0 = otomatik, <0 = bu sayıda çekirdeği kullanma, varsayılan: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) Oluşturma etkinken işlemci sınırını belirler (-1 = sınırsız, varsayılan: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Bu yayın öncesi bir deneme sürümüdür - tüm riski siz üstlenmiş olursunuz - bitcoin oluşturmak ya da ticari uygulamalar için kullanmayınız - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Eşlere gizli Tor servisleri ile ulaşmak için ayrı SOCKS5 vekil sunucusu kullan (varsayılan: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Uyarı: -paytxfee çok yüksek bir değere ayarlanmış! Bu, muamele gönderirseniz ödeyeceğiniz muamele ücretidir. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Uyarı: şebeke tamamen mutabık değil gibi görünüyor! Bazı madenciler sorun yaşıyor gibi görünüyor. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Uyarı: eşlerimizle tamamen mutabık değiliz gibi görünüyor! Güncelleme yapmanız gerekebilir ya da diğer düğümlerin güncelleme yapmaları gerekebilir. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Uyarı: wallet.dat dosyasının okunması sırasında bir hata meydana geldi! Tüm anahtarlar doğru bir şekilde okundu, ancak muamele verileri ya da adres defteri unsurları hatalı veya eksik olabilir. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Uyarı: wallet.dat bozuk, veriler geri kazanıldı! Özgün wallet.dat, wallet.{zamandamgası}.bak olarak %s klasörüne kaydedildi; bakiyeniz ya da muameleleriniz yanlışsa bir yedeklemeden tekrar yüklemeniz gerekir. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4182,1067 +4182,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. Dosya mevcut değilse, sadece sahibi için okumayla sınırlı izin ile oluşturunuz. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + (default: 1) (varsayılan: 1) - + (default: wallet.dat) (varsayılan: wallet.dat) - + <category> can be: <kategori> şunlar olabilir: - + Accept command line and JSON-RPC commands Komut satırı ve JSON-RPC komutlarını kabul et - + Accept connections from outside (default: 1 if no -proxy or -connect) Dışarıdan gelen bağlantıları kabul et (varsayılan: -proxy veya -connect yoksa 1) - + Add a node to connect to and attempt to keep the connection open Bağlanılacak düğüm ekle ve bağlantıyı zinde tutmaya çalış - + Allow DNS lookups for -addnode, -seednode and -connect -addnode, -seednode ve -connect için DNS aramalarına izin ver - + Allow JSON-RPC connections from specified IP address Belirtilen İP adresinden JSON-RPC bağlantılarını kabul et - + Already have that input. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat Bozuk bir wallet.dat dosyasından özel anahtarları geri kazanmayı dene - + Block creation options: Blok oluşturma seçenekleri: - + Can't denominate: no compatible inputs left. - + Cannot downgrade wallet Cüzdan eski biçime geri alınamaz - + Cannot resolve -bind address: '%s' -bind adresi çözümlenemedi: '%s' - + Cannot resolve -externalip address: '%s' -externalip adresi çözümlenemedi: '%s' - + Cannot write default address Varsayılan adres yazılamadı - + Clear list of wallet transactions (diagnostic tool; implies -rescan) Cüzdanın muamele listesini temizle (tanı aracı; -rescan ima eder) - + Collateral is not valid. - + Collateral not valid. - + Connect only to the specified node(s) Sadece belirtilen düğüme veya düğümlere bağlan - + Connect through SOCKS proxy SOCKS vekil sunucusuyla bağlan - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Eş adresleri elde etmek için bir düğüme bağlan ve ardından bağlantıyı kes - + Connection options: Bağlantı seçenekleri: - + Corrupted block database detected Bozuk blok veritabanı tespit edildi - + Dash Core Daemon - + Dash Core RPC client version - + Darksend is disabled. - + Darksend options: - + Debugging/Testing options: Hata ayıklama/deneme seçenekleri: - + Disable safemode, override a real safe mode event (default: 0) Güvenli kipi devre dışı bırak, gerçek bir güvenli olayı geçersiz kıl (varsayılan: 0) - + Discover own IP address (default: 1 when listening and no -externalip) Kendi IP adresini keşfet (varsayılan: dinlenildiğinde ve -externalip yoksa 1) - + Do not load the wallet and disable wallet RPC calls Cüzdanı yükleme ve cüzdan RPC çağrılarını devre dışı bırak - + Do you want to rebuild the block database now? Blok veritabanını şimdi yeniden inşa etmek istiyor musunuz? - + Done loading Yükleme tamamlandı - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) - + Entries are full. - + Error connecting to masternode. - + Error initializing block database Blok veritabanını başlatılırken bir hata meydana geldi - + Error initializing wallet database environment %s! %s cüzdan veritabanı ortamının başlatılmasında hata meydana geldi! - + Error loading block database Blok veritabanının yüklenmesinde hata - + Error loading wallet.dat wallet.dat dosyasının yüklenmesinde hata oluştu - + Error loading wallet.dat: Wallet corrupted wallet.dat dosyasının yüklenmesinde hata oluştu: bozuk cüzdan - + Error loading wallet.dat: Wallet requires newer version of Dash - + Error opening block database Blok veritabanının açılışı sırasında hata - + Error reading from database, shutting down. - + Error recovering public key. - + Error Hata - + Error: Disk space is low! Hata: Disk alanı düşük! - + Error: Wallet locked, unable to create transaction! Hata: Cüzdan kilitli, muamele oluşturulamadı! - + Error: You already have pending entries in the Darksend pool - + Error: system error: Hata: sistem hatası: - + Failed to listen on any port. Use -listen=0 if you want this. Herhangi bir portun dinlenmesi başarısız oldu. Bunu istiyorsanız -listen=0 seçeneğini kullanınız. - + Failed to read block info Blok verileri okunamadı - + Failed to read block Blok okunamadı - + Failed to sync block index Blok indeksi eşleştirilemedi - + Failed to write block index Blok indeksi yazılamadı - + Failed to write block info Blok verileri yazılamadı - + Failed to write block Blok yazılamadı - + Failed to write file info Dosya verileri yazılamadı - + Failed to write to coin database Madenî para veritabanına yazılamadı - + Failed to write transaction index Muamele indeksi yazılamadı - + Failed to write undo data Geri alma verilerinin yazılamadı - + Fee per kB to add to transactions you send Yolladığınız muameleler için eklenecek kB başı ücret - + Fees smaller than this are considered zero fee (for relaying) (default: Bundan düşük ücretler sıfır değerinde sayılacaktır (aktarım için) (varsayılan: - + Force safe mode (default: 0) Güvenli kipi zorla (varsayılan: 0) - + Generate coins (default: 0) Bitcoin oluştur (varsayılan: 0) - + Get help for a command Bir komut için yardım al - + How many blocks to check at startup (default: 288, 0 = all) Başlangıçta kontrol edilecek blok sayısı (varsayılan: 288, 0 = hepsi) - + If <category> is not supplied, output all debugging information. <kategori> sağlanmamışsa tüm hata ayıklama verilerini dök. - + Ignore masternodes less than version (example: 70050; default : 0) - + Importing... İçe aktarılıyor... - + Imports blocks from external blk000??.dat file Harici blk000??.dat dosyasından blokları içe aktarır - + Incompatible mode. - + Incompatible version. - + Incorrect or no genesis block found. Wrong datadir for network? Yanlış ya da bulunamamış doğuş bloku. Şebeke için yanlış veri klasörü mü? - + Information Bilgi - + Initialization sanity check failed. Dash Core is shutting down. - + Input is not valid. - + InstantX options: - + Insufficient funds Yetersiz bakiye - + Insufficient funds. - + Invalid -onion address: '%s' Geçersiz -onion adresi: '%s' - + Invalid -proxy address: '%s' Geçersiz -proxy adresi: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' -minrelaytxfee=<amount> için geçersiz meblağ: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' -mintxfee=<amount> için geçersiz meblağ: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' -paytxfee=<meblağ> için geçersiz meblağ: '%s' - + Invalid amount Geçersiz meblağ - + Invalid masternodeprivkey. Please see documenation. - + Invalid private key. - + Invalid script detected. - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. - + Last successful darksend action was too recent. - + Limit size of signature cache to <n> entries (default: 50000) İmza arabelleğinin boyutunu <n> unsurla sınırla (varsayılan: 50000) - + List commands Komutları listele - + Listen for connections on <port> (default: 9999 or testnet: 19999) - + Loading addresses... Adresler yükleniyor... - + Loading block index... Blok indeksi yükleniyor... - + Loading masternode list... - + Loading wallet... (%3.2f %%) - + Loading wallet... Cüzdan yükleniyor... - + Log transaction priority and fee per kB when mining blocks (default: 0) Blok oluşturulduğunda muamele önceliğini ve kB başı ücreti kütüğe al (varsayılan: 0) - + Maintain a full transaction index (default: 0) Muamelelerin tamamının indeksini tut (varsayılan: 0) - + Maintain at most <n> connections to peers (default: 125) Eşler ile en çok <n> adet bağlantı kur (varsayılan: 125) - + Masternode options: - + Masternode queue is full. - + Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Bağlantı başına azami alım tamponu, <n>*1000 bayt (varsayılan: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Bağlantı başına azami yollama tamponu, <n>*1000 bayt (varsayılan: 1000) - + Missing input transaction information. - + No compatible masternode found. - + No funds detected in need of denominating. - + No masternodes detected. - + No matching denominations found for mixing. - + Non-standard public key detected. - + Not compatible with existing transactions. - + Not enough file descriptors available. Kafi derecede dosya tanımlayıcıları mevcut değil. - + Not in the masternode list. - + Only accept block chain matching built-in checkpoints (default: 1) Sadece yerleşik kontrol noktalarıyla eşleşen blok zincirini kabul et (varsayılan: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Sadece <net> şebekesindeki düğümlere bağlan (IPv4, IPv6 ya da Tor) - + Options: Seçenekler: - + Password for JSON-RPC connections JSON-RPC bağlantıları için parola - + Prepend debug output with timestamp (default: 1) Hata ayıklama verilerinin önüne zaman damgası ekle (varsayılan: 1) - + Print block on startup, if found in block index Başlangıçta bloğu göster, blok indeksinde bulunduysa - + Print block tree on startup (default: 0) Başlangıçta blok ağacını göster (varsayılan: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) RPC SSL seçenekleri: (SSL kurulumu yönergeleri için Bitcoin vikisine bakınız) - + RPC client options: RPC istemci seçenekleri: - + RPC server options: RPC sunucu seçenekleri: - + Randomly drop 1 of every <n> network messages Her <n> şebeke mesajından rastgele 1 mesajı görmezden gel - + Randomly fuzz 1 of every <n> network messages Her <n> şebeke mesajından rastgele birini bulanıklaştır - + Rebuild block chain index from current blk000??.dat files Blok zinciri indeksini güncel blk000??.dat dosyalarından tekrar inşa et - + Rescan the block chain for missing wallet transactions Blok zincirini eksik cüzdan muameleleri için tekrar tara - + Rescanning... Yeniden tarama... - + Run a thread to flush wallet periodically (default: 1) Periyodik olarak cüdanı diske yazdırmak için bir iş parçacığı çalıştır (varsayılan: 1) - + Run in the background as a daemon and accept commands Arka planda daemon (servis) olarak çalış ve komutları kabul et - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL seçenekleri: (SSL kurulum bilgisi için Bitcoin vikisine bakınız) - + Select SOCKS version for -proxy (4 or 5, default: 5) -proxy için SOCKS sürümünü seç (4 veya 5, varsayılan: 5) - + Send command to Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) Şu <ip> adresinde (varsayılan: 127.0.0.1) çalışan düğüme komut yolla - + Send trace/debug info to console instead of debug.log file Trace/hata ayıklama verilerini debug.log dosyası yerine konsola gönder - + Server certificate file (default: server.cert) Sunucu sertifika dosyası (varsayılan: server.cert) - + Server private key (default: server.pem) Sunucu özel anahtarı (varsayılan: server.pem) - + Session not complete! - + Session timed out (30 seconds), please resubmit. - + Set database cache size in megabytes (%d to %d, default: %d) Veritabanı önbellek boyutunu megabayt olarak belirt (%d ilâ %d, varsayılan: %d) - + Set key pool size to <n> (default: 100) Anahtar alan boyutunu <n> değerine ayarla (varsayılan: 100) - + Set maximum block size in bytes (default: %d) Azami blok boyutunu bayt olarak ayarla (varsayılan: %d) - + Set minimum block size in bytes (default: 0) Bayt olarak asgari blok boyutunu tanımla (varsayılan: 0) - + Set the masternode private key - + Set the number of threads to service RPC calls (default: 4) RPC aramaları için iş parçacığı sayısını belirle (varsayılan: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) Cüzdan veritabanı ortamında DB_PRIVATE bayrağını koyar (varsayılan: 1) - + Show all debugging options (usage: --help -help-debug) Tüm hata ayıklama seçeneklerini göster (kullanımı: --help -help-debug) - + Show benchmark information (default: 0) Denektaşı verilerini göster (varsayılan: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) İstemci başlatıldığında debug.log dosyasını küçült (varsayılan: -debug bulunmadığında 1) - + Signing failed. - + Signing timed out, please resubmit. - + Signing transaction failed Muamelenin imzalanması başarısız oldu - - Specify configuration file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Bağlantı zaman aşım süresini milisaniye olarak belirt (varsayılan: 5000) - + Specify data directory Veri dizinini belirt - + Specify masternode configuration file (default: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) - + Specify wallet file (within data directory) Cüzdan dosyası belirtiniz (veri klasörünün içinde) - + Specify your own public address Kendi genel adresinizi tanımlayın - + Spend unconfirmed change when sending transactions (default: 1) Gönderme muamelelerinde teyit edilmemiş para üstünü harca (varsayılan: 1) - + Start Dash Core Daemon - + System error: Sistem hatası: - + This help message Bu yardım mesajı - + This is intended for regression testing tools and app development. Bu, regresyon deneme araçları ve uygulama geliştirmesi için tasarlanmıştır. - + This is not a masternode. - + Threshold for disconnecting misbehaving peers (default: 100) Aksaklık gösteren eşlerle bağlantıyı kesme sınırı (varsayılan: 100) - + To use the %s option %s seçeneğini kullanmak için - + Transaction amount too small Muamele meblağı çok düşük - + Transaction amounts must be positive Muamele tutarının pozitif olması lazımdır - + Transaction created successfully. - + Transaction fees are too high. - + Transaction not valid. - + Transaction too large Muamele çok büyük - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i Bilinmeyen bir -socks vekil sürümü talep edildi: %i - + Unknown network specified in -onlynet: '%s' -onlynet için bilinmeyen bir şebeke belirtildi: '%s' - + Upgrade wallet to latest format Cüzdanı en yeni biçime güncelle - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): - + Usage: Kullanım: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) - + Use OpenSSL (https) for JSON-RPC connections JSON-RPC bağlantıları için OpenSSL (https) kullan - + Use UPnP to map the listening port (default: 0) Dinlenecek portu haritalamak için UPnP kullan (varsayılan: 0) - + Use UPnP to map the listening port (default: 1 when listening) Dinlenecek portu haritalamak için UPnP kullan (varsayılan: dinlenildiğinde 1) - + Use the test network Deneme şebekesini kullan - + Username for JSON-RPC connections JSON-RPC bağlantıları için kullanıcı ismi - + Value more than Darksend pool maximum allows. - + Verifying blocks... Bloklar kontrol ediliyor... - + Verifying wallet... Cüzdan kontrol ediliyor... - + Wait for RPC server to start RPC sunucusunun başlamasını bekle - + Wallet %s resides outside data directory %s %s cüzdan %s veri klasörünün dışında bulunuyor - + Wallet is locked. - + Wallet needed to be rewritten: restart Dash to complete - + Wallet options: Cüzdan seçenekleri: - + Warning Uyarı - + Warning: Deprecated argument -debugnet ignored, use -debug=net Uyarı: eskimiş seçenek -debugnet görmezden gelinir, -debug=net kullanınız - + Warning: This version is obsolete, upgrade required! Uyarı: Bu sürüm çok eskidir, güncellemeniz gerekir! @@ -5251,27 +5251,27 @@ Dosya mevcut değilse, sadece sahibi için okumayla sınırlı izin ile oluştur - + You need to rebuild the database using -reindex to change -txindex -txindex'i değiştirmek için veritabanını -reindex kullanarak tekrar inşa etmeniz gerekmektedir - + Zapping all transactions from wallet... Cüzdandaki tüm muameleler kaldırılıyor... - + on startup başlangıçta - + version sürüm - + wallet.dat corrupt, salvage failed wallet.dat bozuk, geri kazanım başarısız oldu diff --git a/src/qt/locale/darkcoin_vi.ts b/src/qt/locale/darkcoin_vi.ts index 2c0a0844a8..403a1f05b6 100644 --- a/src/qt/locale/darkcoin_vi.ts +++ b/src/qt/locale/darkcoin_vi.ts @@ -276,8 +276,8 @@ Sản phẩm này bao gồm phần mềm được phát triển bởi dự án O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - Chú ý: Nếu bạn mã hoá ví và mất mật khẩu, bạn sẽ <b>MẤT TẤT CẢ DARKCOIN CỦA BẠN</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Chú ý: Nếu bạn mã hoá ví và mất mật khẩu, bạn sẽ <b>MẤT TẤT CẢ DASH CỦA BẠN</b>! @@ -292,8 +292,8 @@ Sản phẩm này bao gồm phần mềm được phát triển bởi dự án O - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. - Dash sẽ được đóng lại bây giờ để hoàn thành tiến trình mã hoá. Hãy nhớ rằng mã hoá ví của bạn không thể hoàn toàn bảo vệ darkcoin khỏi bị trộm bởi những mã độc lây nhiễm vào máy tính của bạn. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + Dash sẽ được đóng lại bây giờ để hoàn thành tiến trình mã hoá. Hãy nhớ rằng mã hoá ví của bạn không thể hoàn toàn bảo vệ dash khỏi bị trộm bởi những mã độc lây nhiễm vào máy tính của bạn. @@ -398,8 +398,8 @@ Sản phẩm này bao gồm phần mềm được phát triển bởi dự án O - Request payments (generates QR codes and darkcoin: URIs) - Yêu cầu thanh toán (sinh mã QR và darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) + Yêu cầu thanh toán (sinh mã QR và dash: URIs) @@ -596,8 +596,8 @@ Sản phẩm này bao gồm phần mềm được phát triển bởi dự án O - Open a darkcoin: URI or payment request - Mở một darkcoin: URI hoặc một yêu cầu thanh toán + Open a dash: URI or payment request + Mở một dash: URI hoặc một yêu cầu thanh toán @@ -780,7 +780,7 @@ Kiểu: %3 Ví <b>đã được mã hoá</b> và hiện tại <b>đã được khoá</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Một lỗi nghiêm trọng đã xảy ra. Dash không thể tiếp tục một cách an toàn và sẽ thoát. @@ -1632,9 +1632,9 @@ Kiểu: %3 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ Ngôn ngữ ị thiếu hoặc việc dịch chưa hoàn tất? Tham gia dịch giúp tại đây: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2062,8 +2062,8 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler - Không thể khởi động darkcoin: trình xử lý click-to-pay + Cannot start dash: click-to-pay handler + Không thể khởi động dash: trình xử lý click-to-pay @@ -2145,35 +2145,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. Lỗi: Thư mục được chọn "%1" không tồn tại. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Lỗi: Không phân tích được tệp cấu hình: %1. Chỉ sử dụng cú pháp key=value. - + Error reading masternode configuration file: %1 Lỗi đọc tệp cấu hình masternode: %1 - + Error: Invalid combination of -regtest and -testnet. Lỗi: Tổng hợp không hợp lệ của -regtest và -testnet. - + Dash Core didn't yet exit safely... Dash Core chưa được thoát một cách an toàn... @@ -2982,8 +2982,8 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. - Một thông điệp được đính với darkcoin: URI đó sẽ được lưu trữ với các giao dịch cho các bạn tham khảo. Lưu ý: Thông điệp này sẽ không được gửi qua mạng Dash. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + Một thông điệp được đính với dash: URI đó sẽ được lưu trữ với các giao dịch cho các bạn tham khảo. Lưu ý: Thông điệp này sẽ không được gửi qua mạng Dash. @@ -3919,13 +3919,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3946,247 +3946,247 @@ ví dụ: alertnotify=echo %%s | mail -s "Cảnh báo Dash" admin@foo. - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Các mã hoá chấp nhận được (ngầm định: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s Có lỗi xảy ra khi thiết lập cổng RPC để lắng nghe trên IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Một lỗi xảy ra trong khi thiết lập cổng RPC để lắng nghe trên IPv6, chuyển xuống IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Liên kết với địa chỉ nhất định và luôn luôn lắng nghe trên đó. Sử dụng ký hiệu [host]:port cho IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. Không nhận được một khoá trong thư mục %s. Dash Core có thể đã đang chạy. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) Liên tục giới hạn tỷ lệ miễn phí giao dịch về <n>*1000 byte cho mỗi phút (ngầm định: 15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. Darksend sử dụng số lượng mệnh giá nhất định để gửi tiền, bạn có thể chỉ cần đơn giản ẩn danh vài coin nữa. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) Tắt tất cả các chức năng liên quan đến Masternode và Darksend (0-1, ngầm định: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) Cho phép InstantX, hiển thị xác nhận cho các giao dịch bị khoá (bool, ngầm định: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) Cho phép sử dụng tự động darksend cho những ngân sách được lưu trong ví (0-1, ngầm định: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. Hãy nhập chế độ kiểm tra hồi quy, mà sử dụng một chuỗi đặc biệt mà trong những khối được giải tức thời. Điều này là để dành cho công cụ kiểm tra hồi quy và phát triển ứng dụng. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Hãy nhập chế độ kiểm tra hồi quy, mà sử dụng một chuỗi đặc biệt mà trong những khối được giải tức thời. - + Error: Listening for incoming connections failed (listen returned error %s) Lỗi: Lắng nghe để nhận kết nối bị lỗi (lỗi trả về %s) - + 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 and coins were spent in the copy but not marked as spent here. Lỗi: Giao dịch bị từ chối! Nó có thể xảy ra nếu một số tiền trong ví của bạn đã được tiêu, ví dụ như trường hợp bạn sử dụng bản sao của wallet.dat và số tiền đã được tiêu trong bản sao nhưng không được đánh dấu đã được tiêu ở đây. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Lỗi: Giao dịch này cần khoản phí giao dịch ít nhất %s bởi vì số tiền của nó, mức độ phức tạp, hoặc sử dụng nguồn tiền mới nhận! - + Error: Wallet unlocked for anonymization only, unable to create transaction. Lỗi: Ví đã được mở chỉ cho việc ẩn danh, không thể tạo được giao dịch. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Thực hiện lệnh khi một cảnh báo liên quan được nhận hoặc chúng ta thấy sự phân nhánh thực sự dài (%s trong cmd được thay bởi message) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Thực hiện lệnh khi một giao dịch ví thay đổi (%s trong cmd được thay thế bởi TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Thực hiện lệnh khi khối tốt nhất thay đổi (%s trong cmd được thay thế bởi giá trị băm của khối) - + Fees smaller than this are considered zero fee (for transaction creation) (default: Mức phí nhỏ hơn này có thể được xem là không phí (để cho việc tạo giao dịch) (ngầm định: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) Đẩy các hoạt động với cơ sở dữ liệu từ bộ nhớ xuống nhật ký trên đĩa mỗi <n> megabytes (ngầm định: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. Đã thấy các mệnh giá đầu ra chưa được xác nhận, sẽ đợi đến khi chúng xác nhận để tiếp tục. - + How thorough the block verification of -checkblocks is (0-4, default: 3) Cách kiểm tra khối triệt để -checkblocks là (0-4, ngầm định: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. Chế độ này -genproclimit kiểm soát bao nhiêu khối được sinh tức thời. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. InstantX cần đầu vào với ít nhất 6 xác nhận, bạn có thể cần phải đợi vài phút và thử lại. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) Lắng nghe kết nối từ JSON-RPC trên <cổng> (ngầm định: 9998 hoặc mạng thử: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase Đặt tên để tạo dựng url cho các thành phần KeePass mà nó sẽ lưu giữ mật khẩu của ví - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Số giây hạn chế để không cho phép các đối tác ngang hàng kết nối lại (ngầm định: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Kết xuất thông tin gỡ rối (ngầm định: 0, cung cấp <category> là không bắt buộc) - + 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) Cung cấp thanh khoản cho Darksend bằng việc thường xuyên trộn tiền một cách liên tục (0-100, ngầm định: 0, 1=rất thường xuyên, phí cao, 100=rất ít thường xuyên, phí thấp) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Truy vấn địa chỉ đối tác ngang hàng thông qua tìm kiếm DNS, nếu có ít địa chỉ (ngầm định: 1 trừ trường hợp -connect) - + Set external address:port to get to this masternode (example: address:port) Đặt external address:port cho masternode này (ví dụ: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Đặt kích thước tối đa cho giao dịch với ưu tiên cao/phí thấp theo bytes (ngầm định: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Thiết lập số luồng của kịch bản kiểm tra (%u to %d, 0 = tự động, <0 = để nhiều lõi miễn phí, ngầm định: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) Đặt giới hạn xử lý khi quá trình phát sinh là bật (-1 = không giới hạn, ngầm định: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) Hiển thị N xác nhận cho mỗi giao dịch được khoá thành công (0-9999, ngầm định: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Đây là phiên bản chưa chính thức - hãy dùng và tự chấp nhận mạo hiểm - đừng dùng để đào coin hoặc các ứng dụng thương mại. - + Unable to bind to %s on this computer. Dash Core is probably already running. Không thể để ràng buộc vào %s trên máy tính này. Dash Core có thể đã chạy. - + Unable to locate enough Darksend denominated funds for this transaction. Không tìm đủ ngân sách Darksend denominated cho giao dịch này. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. Không tìm đủ ngân sách Darksend denominated cho giao dịch mà nó không bằng 1000 DASH - + Unable to locate enough Darksend non-denominated funds for this transaction. Không kiếm đủ ngân sách Darksend non-denominated cho giao dịch này. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Sử dụng SOCKS5 proxy riêng biệt đối với mỗi thành phần ngang hàng thông qua Tor cho các dịch vụ ẩn (ngầm định: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Cảnh báo: -paytxfee được đặt rất cao! Đây là mức phí giao dịch mà bạn sẽ trả nếu bạn gửi một giao dịch. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. Cảnh báo: Hãy kiểm tra ngày giờ trên máy tính của bạn xem có chính xác! Nếu đồng hồ của bạn không đúng Dash sẽ không hoạt động tốt. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Cảnh báo: Mạng lưới có vẻ chưa hoàn toàn đồng ý! Một vài máy đào có vẻ như đã kinh nghiệm với những vấn đề này. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Cảnh báo: Chúng ta có vẻ không được sự đồng ý một cách đầy đủ từ các đối tác ngang hàng! Bạn cần nâng cấp hoặc các nút khác cần nâng cấp. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Cảnh báo: lỗi đọc tệp wallet.dat! Tất cả các khoá được đọc đúng, như dữ liệu giao dich hoặc các thành phần địa chỉ khối có thể bị mất hoặc không chính xác. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Cảnh báo: wallet.dat đã bị hỏng, dữ liệu đã được cứu! Tệp gốc wallet.dat đã được lưu thành wallet.{timestamp}.bak trong %s; nếu số dư hoặc các giao dịch của bạn không chính xác, bạn có thể khôi phục từ bản sao lưu. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4195,1067 +4195,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. Nếu tệp không tồn tại, tạo nó với quyền tệp owner-readable-only. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. Bạn cần chỉ rõ masternodeprivkey trong tệp cấu hình. Hãy xem tài liệu để có hướng dẫn. - + (default: 1) (ngầm định: 1) - + (default: wallet.dat) (ngầm định: wallet.dat) - + <category> can be: <category> có thể là: - + Accept command line and JSON-RPC commands Chấp nhận dòng lệnh và các lệnh JSON-RPC - + Accept connections from outside (default: 1 if no -proxy or -connect) Chấp nhật kết nối từ ngoài (ngầm định: 1 nếu không có -proxy hoặc -connect) - + Add a node to connect to and attempt to keep the connection open Thêm nút để kết nối tới và giữ mở kết nối - + Allow DNS lookups for -addnode, -seednode and -connect Cho phép DNS tìm kiếm -addnode, -seednode và -connect - + Allow JSON-RPC connections from specified IP address Cho phép các kết nối JSON-RPC từ các địa chỉ IP xác định - + Already have that input. Đã có đầu vào đó. - + Always query for peer addresses via DNS lookup (default: 0) Luôn truy vấn cho các địa chỉ ngang hàng thông qua DNS (ngầm định: 0) - + Attempt to recover private keys from a corrupt wallet.dat Thử khôi phục khoá riêng từ tệp wallet.dat bị lỗi - + Block creation options: Tuỳ chọn tạo khối: - + Can't denominate: no compatible inputs left. Không thể định giá: không còn đầu vào tương tích. - + Cannot downgrade wallet Không thể hạ cấp ví - + Cannot resolve -bind address: '%s' Không thể phân giải địa chỉ -bind: '%s' - + Cannot resolve -externalip address: '%s' Không thể phân giải địa chỉ -externalip: '%s' - + Cannot write default address Không thể viết vào địa chỉ ngầm định - + Clear list of wallet transactions (diagnostic tool; implies -rescan) Xoá danh sách các giao dịch của ví (công cụ chuẩn đoán; implies -rescan) - + Collateral is not valid. Collateral là không hợp lệ. - + Collateral not valid. Collateral không hợp lệ. - + Connect only to the specified node(s) Kết nối chỉ với (các) nút nhất định - + Connect through SOCKS proxy Kết nối thông qua SOCKS proxy - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) Kết nối tới JSON-RPC trên <cổng> (ngầm định: 9998 hoặc mạng thử: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) Kết nối tới KeePassHttp trên cổng <port> (ngầm định: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Kết nối với một nút để lấy địa chỉ ngang hàng, và ngắt kết nối - + Connection options: Tuỳ chọn kết nối: - + Corrupted block database detected Phát hiện ra dữ liệu khối bị hỏng - + Dash Core Daemon Dash Core Daemon - + Dash Core RPC client version Phiên bản phần mềm Dash Core RPC - + Darksend is disabled. Darksend đã được tắt. - + Darksend options: Tuỳ chọn Darksend: - + Debugging/Testing options: Tuỳ chọn Gỡ rối/Kiểm tra: - + Disable safemode, override a real safe mode event (default: 0) Tắt chế độ an toàn, ghi đè lên một sự kiện của chế đọ an toàn (ngầm định: 0) - + Discover own IP address (default: 1 when listening and no -externalip) Phát hiện địa chỉ IP của mình (ngầm định: 1 khi lắng nghe và không dùng -externalip) - + Do not load the wallet and disable wallet RPC calls Không tải ví và tắt các lời gọi ví RPC - + Do you want to rebuild the block database now? Bạn có muốn xây dựng lại dữ liệu khối bây giờ không? - + Done loading Nạp xong - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) Cho phép phần mềm hoạt động như là masternode (0-1, ngầm định: 0) - + Entries are full. Các đầu vào đã đầy. - + Error connecting to masternode. Lỗi kết nối đến masternode. - + Error initializing block database Lỗi khởi tạo cơ sở dữ liệu khối - + Error initializing wallet database environment %s! Lỗi khởi tạo cơ sở dữ liệu môi trường ví %s! - + Error loading block database Lỗi nạp cơ sở dữ liệu khối - + Error loading wallet.dat Lỗi nạp wallet.dat - + Error loading wallet.dat: Wallet corrupted Lỗi nạp wallet.dat: Ví bị lỗi - + Error loading wallet.dat: Wallet requires newer version of Dash Lỗi nạp wallet.dat: Ví cần một phiên bản mới hơn của Dash - + Error opening block database Lỗi mở cơ sở dữ liệu khối - + Error reading from database, shutting down. Lỗi đọc từ cơ sở dữ liệu, đang tắt phần mềm. - + Error recovering public key. Lỗi khi phục hồi khoá công khai. - + Error Lỗi - + Error: Disk space is low! Lỗi: Dung lượng đĩa thấp! - + Error: Wallet locked, unable to create transaction! Lỗi: Ví đã bị khoá, không thể tạo giao dịch! - + Error: You already have pending entries in the Darksend pool Lỗi: Bạn đã có các thành phần đang chờ trong Darksend pool - + Error: system error: Lỗi: lỗi hệ thống. - + Failed to listen on any port. Use -listen=0 if you want this. Không thành công khi lắng nghe trên các cổng. Sử dụng -listen=0 nếu bạn muốn nó. - + Failed to read block info Thất bại trong việc đọc thông tin khối - + Failed to read block Thất bại trong việc đọc khối - + Failed to sync block index Thất bại trong việc đồng bộ chỉ mục khối - + Failed to write block index Thất bại trong việc ghi chỉ mục khối - + Failed to write block info Thất bại trong việc ghi thông tin khối - + Failed to write block Thất bại trong việc ghi khối - + Failed to write file info Thất bại trong việc ghi thông tin tệp - + Failed to write to coin database Thất bại trong việc ghi cơ sở dữ liệu tiền - + Failed to write transaction index Thất bại trong việc ghi chỉ mục giao dịch - + Failed to write undo data Thất bại trong việc ghi dữ liệu hoãn - + Fee per kB to add to transactions you send Phí cho mỗi kB được thêm vào giao dịch bạn gửi - + Fees smaller than this are considered zero fee (for relaying) (default: Mức phí nhỏ hơn đây được coi là không phí (cho tiếp sức) (ngầm định: - + Force safe mode (default: 0) Cưỡng bức ở chế độ an toàn (ngầm định: 0) - + Generate coins (default: 0) Sinh tiền (ngầm định: 0) - + Get help for a command Để có trợ giúp cho một lệnh - + How many blocks to check at startup (default: 288, 0 = all) Bao nhiêu khối để kiểm tra khi khởi động (ngầm định: 288, 0 = tất cả) - + If <category> is not supplied, output all debugging information. Nếu <category> không được cung cấp, đưa ra tất cả các thông tin gỡ rối. - + Ignore masternodes less than version (example: 70050; default : 0) Bỏ qua các masternodes có phiên bản thấp hơn (ví dụ: 70050; ngầm định: 0) - + Importing... Đang nạp... - + Imports blocks from external blk000??.dat file Nạp khối từ tệp ngoài blk000??.dat - + Incompatible mode. Kiểu không tương thích. - + Incompatible version. Phiên bản không tương thích. - + Incorrect or no genesis block found. Wrong datadir for network? Khối sáng thế không chính xác hoặc không tìm thấy. Sai datadir cho mạng lưới? - + Information Thông tin - + Initialization sanity check failed. Dash Core is shutting down. Khởi tạo việc kiểm tra tính đúng đắn thất bại. Dash Core đang được tắt. - + Input is not valid. Đầu vào không hợp lệ. - + InstantX options: Tuỳ chọn InstantX: - + Insufficient funds Không đủ tiền - + Insufficient funds. Không đủ tiền. - + Invalid -onion address: '%s' Địa chỉ -onion không hợp lệ: '%s' - + Invalid -proxy address: '%s' Địa chỉ proxy không hợp lệ: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' Số tiền không hợp lệ cho -minrelaytxfee=<số tiền>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' Số tiền không hợp lệ cho -mintxfee =<số tiền>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Số tiền không hợp lệ cho -paytxfee =<số tiền>: '%s' - + Invalid amount Số tiền không hợp lệ - + Invalid masternodeprivkey. Please see documenation. Masternodeprivkey không hợp lệ. Hãy xem lại tài liệu. - + Invalid private key. Khoá riêng không hợp lệ. - + Invalid script detected. Kịch bản được phát hiện không hợp lệ. - + KeePassHttp id for the established association KeePassHttp id cho thiết lập sự kết hợp - + KeePassHttp key for AES encrypted communication with KeePass Khoá KeePassHttp cho liên lạc mã hoá AES với KeePass - - Keep N darkcoin anonymized (default: 0) - Giữ N darkcoin ẩn danh hoá (ngầm định: 0) + + Keep N dash anonymized (default: 0) + Giữ N dash ẩn danh hoá (ngầm định: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) Giữ nhiều nhất <n> các khối không kết nối được trong bộ nhớ (ngầm định: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) Giữ nhiều nhất <n> các giao dịch không kết nối được trong bộ nhớ (ngầm định: %u) - + Last Darksend was too recent. Darksend cuối cùng quá gần. - + Last successful darksend action was too recent. Darksend thành công cuối cùng quá gần. - + Limit size of signature cache to <n> entries (default: 50000) Giới hạn kích thước bộ đệm chữ ký tới <n> thành phần (ngầm định: 50000) - + List commands Liệt kê các lệnh - + Listen for connections on <port> (default: 9999 or testnet: 19999) Lắng nghe kết nối từ <cổng> (ngầm định: 9999 hoặc mạng thử: 19999) - + Loading addresses... Nạp các địa chỉ... - + Loading block index... Đang nạp chỉ mục khối... - + Loading masternode list... Đang tải danh sách master node... - + Loading wallet... (%3.2f %%) Đang nạp ví... (%3.2f %%) - + Loading wallet... Đang tải ví... - + Log transaction priority and fee per kB when mining blocks (default: 0) Lưu nhật ký các ưu tiên và phí giao dịch cho mỗi kB khi đào các khối (ngầm định: 0) - + Maintain a full transaction index (default: 0) Duy trì một chỉ mục giao dịch đầy đủ (ngầm định: 0) - + Maintain at most <n> connections to peers (default: 125) Duy trì nhiều nhất <n> kết nối tới các điểm ngang hàng (ngầm định: 125) - + Masternode options: Tuỳ chọn Masternode: - + Masternode queue is full. Danh sách hàng đợi Masternode đã đầy. - + Masternode: Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Tối đa cho bộ đệm nhận của mỗi kết nối, <n>*1000 bytes (ngầm định: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Tối đa cho bộ đệm gửi của mỗi kết nối, <n>*1000 bytes (ngầm định: 5000) - + Missing input transaction information. Thiếu thông tin giao dịch đầu vào. - + No compatible masternode found. Không tìm thấy masternode tương thích. - + No funds detected in need of denominating. Không thấy có nguồn tiền cần thiết để định giá. - + No masternodes detected. Không phát hiện được masternode. - + No matching denominations found for mixing. Không tìm thấy mệnh giá tương ứng để trộn. - + Non-standard public key detected. Phát hiện thấy khoá công khai không hợp chuẩn. - + Not compatible with existing transactions. Không tương thích với các giao dịch hiện tại. - + Not enough file descriptors available. Chưa có đủ thông tin mô tả tệp. - + Not in the masternode list. Không có trong danh sách masternode. - + Only accept block chain matching built-in checkpoints (default: 1) Chỉ chấp nhận các chuỗi khối tương ứng với các điểm kiểm tra trong (ngầm định: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Chỉ kết nối với các nút trong mạng <net> (IPv4, IPv6 hoặc Tor) - + Options: Tuỳ chọn: - + Password for JSON-RPC connections Mật khẩu cho kết nối JSON-RPC - + Prepend debug output with timestamp (default: 1) Thêm tiền tố đầu ra debug với dấu thời gian (ngầm định: 1) - + Print block on startup, if found in block index In khối khi khởi động, nếu tìm thấy trong chỉ mục khối - + Print block tree on startup (default: 0) In cây khối khi khởi động (ngầm định: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) Tuỳ chọn RPC SSL (xem Bitcoin Wiki để có hướng dẫn cài đặt SSL) - + RPC client options: Tuỳ chọn phần mềm RPC: - + RPC server options: Tuỳ chọn cho RPC server - + Randomly drop 1 of every <n> network messages Bỏ ngẫu nhiên 1 mỗi <n> thông điệp mạng - + Randomly fuzz 1 of every <n> network messages Làm xơ ngẫu nhiên 1 trên mỗi <n> thông điệp mạng. - + Rebuild block chain index from current blk000??.dat files Tái tạo lại chỉ mục chuỗi khối từ tệp blk000??.dat - + Rescan the block chain for missing wallet transactions Quét lại chuỗi khối cho các giao dịch ví bị thiếu. - + Rescanning... Đang quét lại... - + Run a thread to flush wallet periodically (default: 1) Chạy một luồng để làm sạch ví một cách thường xuyên (ngầm định: 1) - + Run in the background as a daemon and accept commands Chạy trên chế độ nền như là một tiến trình ngầm và chấp nhận các lệnh - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Tuỳ chọn SSL: (xem Bitcoin Wiki để có hướng dẫn cài đặt SSL) - + Select SOCKS version for -proxy (4 or 5, default: 5) Chọn phiên bản SOCK cho -proxy (4 hoặc 5, ngầm định: 5) - + Send command to Dash Core Gửi lệnh đến Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) Gửi các lệnh đến nút chạy trên <ip> (ngầm định: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Gửi thông tin theo dõi/gỡ rối đến console thay vì tệp debug.log - + Server certificate file (default: server.cert) Tệp chứng thực máy chủ (ngầm định: server.cert) - + Server private key (default: server.pem) Mã riêng của máy chủ (ngầm định: server.pem) - + Session not complete! Phiên làm việc chưa hoàn thành. - + Session timed out (30 seconds), please resubmit. Phiên làm việc đã hết hạn (30 giây), hãy gửi lại. - + Set database cache size in megabytes (%d to %d, default: %d) Thiết lập kích thước bộ đệm cơ sở dữ liệu theo megabytes (%d đến %d, ngầm định: %d) - + Set key pool size to <n> (default: 100) Đăt kích thước pool đến <n> (ngầm định: 100) - + Set maximum block size in bytes (default: %d) Thiết lập kích thước khối tối đa theo bytes (ngầm định: %d) - + Set minimum block size in bytes (default: 0) Thiết lập kích thước khối tối thiểu theo bytes (ngầm định: 0) - + Set the masternode private key Đặt khoá riêng cho masternode - + Set the number of threads to service RPC calls (default: 4) Thiết lập số luồng phục vụ các lời gọi RPC (ngầm định: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) Thiết lập cờ DB_PRIVATE trong môi trường cơ sở dữ liệu ví (ngầm định: 1) - + Show all debugging options (usage: --help -help-debug) Hiển thị tất cả các tuỳ chọn gỡ rối (cách sử dụng: --help -help-debug) - + Show benchmark information (default: 0) Hiển thị thông tin tốc độ (ngầm định: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Rút gọn tệp debug.log khi phần mềm khởi động (ngầm định: 1 khi không có -debug) - + Signing failed. Ký không thành công. - + Signing timed out, please resubmit. Ký không kịp, hãy gửi lại. - + Signing transaction failed Thất bại khi ký giao dịch - - Specify configuration file (default: darkcoin.conf) - Xác định tệp cấu hình (ngầm định: darkcoin.conf) + + Specify configuration file (default: dash.conf) + Xác định tệp cấu hình (ngầm định: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Xác định thời gian chờ kết nối tính theo mili giây (ngầm định: 5000) - + Specify data directory Hãy chọn thư mục - + Specify masternode configuration file (default: masternode.conf) Xác định tệp cấu hình masternode (ngầm định: masternode.conf) - - Specify pid file (default: darkcoind.pid) - Xác định tệp pid (ngầm định: darkcoind.pid) + + Specify pid file (default: dashd.pid) + Xác định tệp pid (ngầm định: dashd.pid) - + Specify wallet file (within data directory) Xác định tệp ví (trong thư mục dữ liệu) - + Specify your own public address Hãy xác định địa chỉ công khai của bạn - + Spend unconfirmed change when sending transactions (default: 1) Tiên các khoản trả lại chưa được xác nhận khi gửi các giao dịch (ngầm định: 1) - + Start Dash Core Daemon Khởi động Dash Core Daemon - + System error: Lỗi hệ thống: - + This help message Đây là thông điệp trợ giúp - + This is intended for regression testing tools and app development. Điều này là để dành cho công cụ kiểm tra hồi quy và phát triển ứng dụng. - + This is not a masternode. Đây không phải là một masternode. - + Threshold for disconnecting misbehaving peers (default: 100) Ngưỡng ngắt kết nối khi đối tác ngang hàng cư xử không đúng (ngầm định: 100) - + To use the %s option Để sử dụng tuỳ chọn %s - + Transaction amount too small Số tiền của giao dịch quá nhỏ - + Transaction amounts must be positive Số tiền của giao dịch phải là số dương - + Transaction created successfully. Giao dịch được tạo thành công. - + Transaction fees are too high. Phí giao dịch quá cao. - + Transaction not valid. Giao dịch không hợp lệ. - + Transaction too large Giao dịch quá lớn - + Unable to bind to %s on this computer (bind returned error %s) Không thể để ràng buộc vào %s trên máy tính này (bind trả lại lỗi %s) - + Unable to sign masternode payment winner, wrong key? Không thể ký cho giao dịch masternod chiến thắng, khoá sai? - + Unable to sign spork message, wrong key? Không thể ký vào thông điệp phân nhánh, sai khoá? - + Unknown -socks proxy version requested: %i Không biết phiên bản proxy yêu cầu -socks: %i - + Unknown network specified in -onlynet: '%s' Không biết mạng được chỉ ra trong -onlynet: '%s' - + Upgrade wallet to latest format Nâng cấp ví lên định dạng mới nhất - - Usage (deprecated, use darkcoin-cli): - Cách sử dụng (đã từ bỏ, sử dụng darkcoin-cli): + + Usage (deprecated, use dash-cli): + Cách sử dụng (đã từ bỏ, sử dụng dash-cli): - + Usage: Cách dùng: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) Sử dụng tích hợp KeePass 2 dùng KeePassHttp plugin (ngầm định: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) Sử dụng N masternods riêng biệt để ẩn danh khoản tiền (2-8, ngầm định: 2) - + Use OpenSSL (https) for JSON-RPC connections Sử dụng OpenSSL (https) cho các kết nối JSON-RPC - + Use UPnP to map the listening port (default: 0) Sử dụng UPnP để ánh xạ cổng lắng nghe (ngầm định: 0) - + Use UPnP to map the listening port (default: 1 when listening) Sử dụng UPnP để ánh xạ cổng lắng nghe (ngầm định: 1 khi lắng nghe) - + Use the test network Sử dụng mạng thử - + Username for JSON-RPC connections Username cho kết nối JSON-RPC - + Value more than Darksend pool maximum allows. Giá tri trị lớn hơn giá trị tối đa mà bể Darksend cho phép. - + Verifying blocks... Đang kiểm tra các khối... - + Verifying wallet... Đang kiểm tra ví... - + Wait for RPC server to start Chờ cho RPC server khởi động - + Wallet %s resides outside data directory %s Ví %s nằm ở bên ngoài thư mục dữ liệu %s - + Wallet is locked. Ví đã bị khoá. - + Wallet needed to be rewritten: restart Dash to complete Ví cần được ghi lại: khởi động lại Dash để hoàn tất - + Wallet options: Tuỳ chọn ví: - + Warning Cảnh báo - + Warning: Deprecated argument -debugnet ignored, use -debug=net Cảnh báo: Tham số -debugnet đã được bỏ, hãy sử dụng -debug=net - + Warning: This version is obsolete, upgrade required! Cảnh báo: Phiên bản này đã cũ, cần phải cập nhật mới! @@ -5264,27 +5264,27 @@ Nếu tệp không tồn tại, tạo nó với quyền tệp owner-readable-onl - + You need to rebuild the database using -reindex to change -txindex Bạn cần xây dựng lại cơ sở dữ liệu sử dụng -reindex để thay cho -txindex - + Zapping all transactions from wallet... Dọn sạch tất cả các giao dịch khỏi ví... - + on startup khi khởi động - + version phiên bản - + wallet.dat corrupt, salvage failed wallet.dat bị lỗi, cứu chữa không thành công. diff --git a/src/qt/locale/darkcoin_zh_CN.ts b/src/qt/locale/darkcoin_zh_CN.ts index ee6b2b83c2..b50842c4cc 100644 --- a/src/qt/locale/darkcoin_zh_CN.ts +++ b/src/qt/locale/darkcoin_zh_CN.ts @@ -275,7 +275,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! 警告:如果您加密了钱包却将该密码遗忘,您将<b>丢失您的暗黑币</b> @@ -291,7 +291,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. 暗黑币即将关闭以完成加密。请牢记即便是加密后的钱包也无法完全保护您的暗黑币免遭被恶意程序入侵等被偷之患。 @@ -397,7 +397,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Request payments (generates QR codes and darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) 请求付款(产生QR码以及暗黑币:URIs) @@ -595,7 +595,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Open a darkcoin: URI or payment request + Open a dash: URI or payment request 打开一个暗黑币:URI或者付款请求 @@ -779,7 +779,7 @@ Address: %4 钱包已被<b>加密</b>,当前为<b>锁定</b>状态 - + A fatal error occurred. Dash can no longer continue safely and will quit. 发生致命错误。暗黑币客户端将关闭。 @@ -1632,7 +1632,7 @@ Address: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2061,7 +2061,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler 不能启动暗黑币:click-to-pay handler @@ -2144,35 +2144,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash 暗黑币 - + Error: Specified data directory "%1" does not exist. 错误:指定的数据目录“%1”不存在。 - + Error: Cannot parse configuration file: %1. Only use key=value syntax. 错误: 无法解析配置文件: %1. 只有钥匙=重要的私匙. - + Error reading masternode configuration file: %1 读取主节点配置错误:%1 - + Error: Invalid combination of -regtest and -testnet. 错误:无效的 -regtest 与 -testnet 结合体。 - + Dash Core didn't yet exit safely... 暗黑币内核尚未安全退出... @@ -2981,7 +2981,7 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. @@ -3918,13 +3918,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3935,1314 +3935,1314 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - + Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) - + Fees smaller than this are considered zero fee (for transaction creation) (default: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. - + How thorough the block verification of -checkblocks is (0-4, default: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + Output debugging information (default: 0, supplying <category> is optional) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + (default: 1) - + (default: wallet.dat) - + <category> can be: - + Accept command line and JSON-RPC commands - + Accept connections from outside (default: 1 if no -proxy or -connect) - + Add a node to connect to and attempt to keep the connection open - + Allow DNS lookups for -addnode, -seednode and -connect - + Allow JSON-RPC connections from specified IP address - + Already have that input. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat - + Block creation options: - + Can't denominate: no compatible inputs left. - + Cannot downgrade wallet - + Cannot resolve -bind address: '%s' - + Cannot resolve -externalip address: '%s' - + Cannot write default address - + Clear list of wallet transactions (diagnostic tool; implies -rescan) - + Collateral is not valid. - + Collateral not valid. - + Connect only to the specified node(s) - + Connect through SOCKS proxy - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) - + Connect to a node to retrieve peer addresses, and disconnect - + Connection options: - + Corrupted block database detected - + Dash Core Daemon - + Dash Core RPC client version - + Darksend is disabled. - + Darksend options: - + Debugging/Testing options: - + Disable safemode, override a real safe mode event (default: 0) - + Discover own IP address (default: 1 when listening and no -externalip) - + Do not load the wallet and disable wallet RPC calls - + Do you want to rebuild the block database now? - + Done loading - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) - + Entries are full. - + Error connecting to masternode. - + Error initializing block database - + Error initializing wallet database environment %s! - + Error loading block database - + Error loading wallet.dat - + Error loading wallet.dat: Wallet corrupted - + Error loading wallet.dat: Wallet requires newer version of Dash - + Error opening block database - + Error reading from database, shutting down. - + Error recovering public key. - + Error 错误 - + Error: Disk space is low! - + Error: Wallet locked, unable to create transaction! - + Error: You already have pending entries in the Darksend pool - + Error: system error: - + Failed to listen on any port. Use -listen=0 if you want this. - + Failed to read block info - + Failed to read block - + Failed to sync block index - + Failed to write block index - + Failed to write block info - + Failed to write block - + Failed to write file info - + Failed to write to coin database - + Failed to write transaction index - + Failed to write undo data - + Fee per kB to add to transactions you send - + Fees smaller than this are considered zero fee (for relaying) (default: - + Force safe mode (default: 0) - + Generate coins (default: 0) - + Get help for a command - + How many blocks to check at startup (default: 288, 0 = all) - + If <category> is not supplied, output all debugging information. - + Ignore masternodes less than version (example: 70050; default : 0) - + Importing... - + Imports blocks from external blk000??.dat file - + Incompatible mode. - + Incompatible version. - + Incorrect or no genesis block found. Wrong datadir for network? - + Information 信息 - + Initialization sanity check failed. Dash Core is shutting down. - + Input is not valid. - + InstantX options: - + Insufficient funds - + Insufficient funds. - + Invalid -onion address: '%s' - + Invalid -proxy address: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' - + Invalid amount - + Invalid masternodeprivkey. Please see documenation. - + Invalid private key. - + Invalid script detected. - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. - + Last successful darksend action was too recent. - + Limit size of signature cache to <n> entries (default: 50000) - + List commands - + Listen for connections on <port> (default: 9999 or testnet: 19999) - + Loading addresses... - + Loading block index... - + Loading masternode list... - + Loading wallet... (%3.2f %%) - + Loading wallet... - + Log transaction priority and fee per kB when mining blocks (default: 0) - + Maintain a full transaction index (default: 0) - + Maintain at most <n> connections to peers (default: 125) - + Masternode options: - + Masternode queue is full. - + Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Missing input transaction information. - + No compatible masternode found. - + No funds detected in need of denominating. - + No masternodes detected. - + No matching denominations found for mixing. - + Non-standard public key detected. - + Not compatible with existing transactions. - + Not enough file descriptors available. - + Not in the masternode list. - + Only accept block chain matching built-in checkpoints (default: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + Options: - + Password for JSON-RPC connections - + Prepend debug output with timestamp (default: 1) - + Print block on startup, if found in block index - + Print block tree on startup (default: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + RPC client options: - + RPC server options: - + Randomly drop 1 of every <n> network messages - + Randomly fuzz 1 of every <n> network messages - + Rebuild block chain index from current blk000??.dat files - + Rescan the block chain for missing wallet transactions - + Rescanning... - + Run a thread to flush wallet periodically (default: 1) - + Run in the background as a daemon and accept commands - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Select SOCKS version for -proxy (4 or 5, default: 5) - + Send command to Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Session not complete! - + Session timed out (30 seconds), please resubmit. - + Set database cache size in megabytes (%d to %d, default: %d) - + Set key pool size to <n> (default: 100) - + Set maximum block size in bytes (default: %d) - + Set minimum block size in bytes (default: 0) - + Set the masternode private key - + Set the number of threads to service RPC calls (default: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) - + Show all debugging options (usage: --help -help-debug) - + Show benchmark information (default: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) - + Signing failed. - + Signing timed out, please resubmit. - + Signing transaction failed - - Specify configuration file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) - + Specify data directory - + Specify masternode configuration file (default: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) - + Specify wallet file (within data directory) - + Specify your own public address - + Spend unconfirmed change when sending transactions (default: 1) - + Start Dash Core Daemon - + System error: - + This help message - + This is intended for regression testing tools and app development. - + This is not a masternode. - + Threshold for disconnecting misbehaving peers (default: 100) - + To use the %s option - + Transaction amount too small - + Transaction amounts must be positive - + Transaction created successfully. - + Transaction fees are too high. - + Transaction not valid. - + Transaction too large - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i - + Unknown network specified in -onlynet: '%s' - + Upgrade wallet to latest format - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): - + Usage: 使用: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) - + Use OpenSSL (https) for JSON-RPC connections - + Use UPnP to map the listening port (default: 0) - + Use UPnP to map the listening port (default: 1 when listening) - + Use the test network - + Username for JSON-RPC connections - + Value more than Darksend pool maximum allows. - + Verifying blocks... - + Verifying wallet... - + Wait for RPC server to start - + Wallet %s resides outside data directory %s - + Wallet is locked. - + Wallet needed to be rewritten: restart Dash to complete - + Wallet options: - + Warning 警告 - + Warning: Deprecated argument -debugnet ignored, use -debug=net - + Warning: This version is obsolete, upgrade required! @@ -5251,27 +5251,27 @@ If the file does not exist, create it with owner-readable-only file permissions. - + You need to rebuild the database using -reindex to change -txindex - + Zapping all transactions from wallet... - + on startup - + version 版本 - + wallet.dat corrupt, salvage failed diff --git a/src/qt/locale/darkcoin_zh_HK.ts b/src/qt/locale/darkcoin_zh_HK.ts index a39579fa7a..5711eab9de 100644 --- a/src/qt/locale/darkcoin_zh_HK.ts +++ b/src/qt/locale/darkcoin_zh_HK.ts @@ -278,7 +278,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! 警告:如果把錢包加密後又忘記密碼,你就會從此<b>失去所有的暗黑幣了</b>! @@ -294,7 +294,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. 暗黑幣軟體現在要關閉,以完成加密過程。請注意,加密錢包不能完全防止惡意軟件入侵你的電腦盜取你的暗黑幣。 @@ -400,7 +400,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Request payments (generates QR codes and darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) 要求付款(生成二維碼和暗黑幣付款協議的 URI) @@ -598,7 +598,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Open a darkcoin: URI or payment request + Open a dash: URI or payment request 打開暗黑幣:網頁或付款請求 @@ -782,7 +782,7 @@ Address: %4 錢包<b>已加密</b>並且<b>上鎖中</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. 發生嚴重錯誤。暗黑幣不能繼續安全操作,將退出。 @@ -1634,9 +1634,9 @@ Address: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ 缺少相關語言或翻譯不完整? 請到這裡協助翻譯: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2064,7 +2064,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler 無法啟動暗黑幣程序:click-to-pay handler @@ -2147,35 +2147,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash 暗黑幣 - + Error: Specified data directory "%1" does not exist. 錯誤: 沒有指定的資料目錄 %1 。 - + Error: Cannot parse configuration file: %1. Only use key=value syntax. 錯誤: 沒辦法解析設定檔: %1。請只用「名稱=設定值」這種語法。 - + Error reading masternode configuration file: %1 讀取主節點配置文件出錯:%1 - + Error: Invalid combination of -regtest and -testnet. 錯誤: -regtest 和 -testnet 的使用組合無效。 - + Dash Core didn't yet exit safely... 暗黑幣核心還未安全退出... @@ -2985,7 +2985,7 @@ XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. 附加在暗黑幣付款協議 URI 中的訊息,會和交易內容一起存起來,給你自己做參考。注意: 這個訊息不會送到暗黑幣網路上。 @@ -3923,13 +3923,13 @@ XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3940,7 +3940,7 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com %s,您必須在配置文件中設定 rpcpassword : %s 建議您使用以下隨機密碼: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (你不需要記住這個密碼) 用戶名和密碼不能相同。 @@ -3949,247 +3949,247 @@ rpcpassword=%s 例如 : alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) 可接受的密碼(預設: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s 設定RPC通訊埠 %u 聽候IPv4: %s 時發生錯誤: - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s 設定RPC通訊埠 %u 聽候IPv6: %s 時發生錯誤,失敗回滾至 IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 與提供地址綁定,持續聽候。使用[host]:標記IPv6端口 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. 無法獲得鎖定的數據目錄%s. 暗黑幣核心可能已經在運行。 - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) 對沒付手續費的交易持續限制每分鐘內最多只能有 <n>*1000 個位元組(預設值: 15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. 暗黑發送要使用相同的除名金額用來發送資金,你可能需要對更多的幣進行匿名處理。 - + Disable all Masternode and Darksend related functionality (0-1, default: 0) 禁止所有主節點和與匿名發送相關功能(0-1,預設:0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) 啟用即時到帳,顯示鎖定交易的確認數(bool, 預設:true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) 允許存儲在這個錢包的資金自動使用暗黑發送 (0-1, 預設: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. 進入回歸測試模式,它使用一種特殊的區塊鏈讓它能立即解出區塊。這是用於回歸測試工具和應用程序開發。 - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. 進入回歸測試模式,使用它可以立即解出區塊的特殊區塊鏈。 - + Error: Listening for incoming connections failed (listen returned error %s) 錯誤: 聽候外來連線失敗(回傳錯誤 %s) - + 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 and coins were spent in the copy but not marked as spent here. 錯誤: 交易被拒絕了!有時候會發生這種錯誤,是因為你錢包中的一些錢已經被花掉了。比如說你複製了錢包檔 wallet.dat, 然後用複製的錢包花掉了錢,你現在所用的原來的錢包中,卻沒有那筆錢已經花掉的紀錄。 - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! 錯誤: 本次交易由於它的數量,複雜性,或使用到最近收到的資金,需要至少%s 交易手續費! - + Error: Wallet unlocked for anonymization only, unable to create transaction. 錯誤: 解鎖錢包只用作匿名處理,無法創建交易。 - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) 當收到相關警示,或發現相當長的分支時,所要執行的指令(指令中的 %s 會被取代成警示訊息) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) 當錢包有交易改變時要執行的指令(指令中的 %s 會被取代成交易識別碼) - + Execute command when the best block changes (%s in cmd is replaced by block hash) 當最新區塊改變時要執行的指令(指令中的 %s 會被取代成區塊雜湊值) - + Fees smaller than this are considered zero fee (for transaction creation) (default: 如果手續費比這個值低,就視為沒付手續費 (當製造交易時) (預設值: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) 每當累積到 <n> 百萬位元組(MB)時,才將資料庫的變動從記憶體暫存池中寫進磁碟紀錄檔(預設值: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. 發現未確認的已除名輸出,等待確認後繼續。 - + How thorough the block verification of -checkblocks is (0-4, default: 3) 使用 -checkblocks 檢查區塊的仔細程度 (0-4,預設值: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. 在這個運作模式下,-genproclimit 選項控制立刻產生出的區塊數目。 - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. 即時到帳系統需要輸入的資金至少有6次確認,你可能需要等待幾分鐘,然後重試。 - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) 在通訊埠 <port> 聽候 JSON-RPC 連線(預設值: 9998, 或若為測試網路: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase 為建立URL命名,用作KeePass存儲錢包密碼的條目之用 - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) 避免與亂搞的節點連線的秒數(預設: 86400) - + Output debugging information (default: 0, supplying <category> is optional) 輸出除錯資訊(預設值: 0, 不一定要指定 <category>) - + 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) 透過偶爾混合暗黑幣,並為暗黑發送持續提供流動性 (0-100,預設值 : 0 ,1=經常 ,收費高,100=不經常,收費低) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) 是否允許在節點位址數目不足時,使用域名查詢來搜尋節點 (預設值: 當沒用 -connect 時為 1) - + Set external address:port to get to this masternode (example: address:port) 設置外部地址:端口去連接這個主節點 (例如:地址:端口) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) 設定高優先度或低手續費的交易資料大小上限成多少位元組(預設值: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) 設定指令碼驗證的執行緒數目 (%u 到 %d,0 表示程式自動決定,小於 0 表示保留處理器核心不用的數目,預設值: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) 設定生成器啟動時的處理器上限(-1 =無限制,預設值: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) 顯示 N 確認數成功鎖定的交易 (0-9999, 預設: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications 這是一個先行發佈的測試版 - 你需自行承擔風險 - 不要用於採礦或商業應用上 - + Unable to bind to %s on this computer. Dash Core is probably already running. 沒辦法繫結在這台電腦上的 %s 。暗黑幣核心可能已經在執行了。 - + Unable to locate enough Darksend denominated funds for this transaction. 無法找到足夠的暗黑發送己除名資金用於本次交易。 - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. 無法找到足夠的暗黑發送未除名資金(不等於1000 DASH)用於本次交易。 - + Unable to locate enough Darksend non-denominated funds for this transaction. 無法找到足夠的暗黑發送未除名資金用於本次交易。 - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) 使用另外的 SOCK5 代理伺服器,來透過 Tor 隱藏服務跟節點聯繫(預設值: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. 警告: -paytxfee 設定了很高的金額!這可是你交易付款所要付的手續費。 - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. 警告: 請檢查電腦日期和時間是否正確!暗黑幣核心沒辦法在時鐘不準的情況下正常運作。 - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. 警告: 暗黑幣網路對於區塊鏈結的決定目前有分歧!看來有些礦工會有問題。 - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. 警告: 我們和某些連線的節點對於區塊鏈結的決定不同!你可能需要升級,或是需要等其它的節點升級。 - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. 警告: 讀取錢包檔 wallet.dat 時發生錯誤!所有的密鑰都正確讀取了,但是交易資料或位址簿資料可能會缺少或不正確。 - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. 警告: 錢包檔 wallet.dat 壞掉,但資料被拯救回來了!原來的 wallet.dat 會改儲存在 %s, 檔名是 wallet.{timestamp}.bak. 如果餘額或交易資料有誤,你應該要用備份資料復原回來。 - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4198,1067 +4198,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. 如果該文件不存在,就應該建立一個只能讓當前使用者有讀取權限的文件。 - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. 您必須在配置中指定一個主節點密鑰。請參閱文檔以獲得幫助。 - + (default: 1) (預設: 1) - + (default: wallet.dat) (預設: wallet.dat) - + <category> can be: <category> 可以是: - + Accept command line and JSON-RPC commands 接受命令行以及JSON-RPC命令 - + Accept connections from outside (default: 1 if no -proxy or -connect) 是否接受外來連線(預設值: 當沒有 -proxy 或 -connect 時為 1) - + Add a node to connect to and attempt to keep the connection open 增加一個要連線的節線,並試著保持對它的連線暢通 - + Allow DNS lookups for -addnode, -seednode and -connect 允許對 -addnode, -seednode, -connect 的參數使用域名查詢 - + Allow JSON-RPC connections from specified IP address 允許由指定的IP地址建立 JSON-RPC 連線。 - + Already have that input. 輸入已經存在。 - + Always query for peer addresses via DNS lookup (default: 0) 總是通過域名查詢來搜尋節點(預設值: 0) - + Attempt to recover private keys from a corrupt wallet.dat 嘗試從壞掉的錢包檔 wallet.dat 復原密鑰 - + Block creation options: 區塊製造選項: - + Can't denominate: no compatible inputs left. 無法進行除名 : 沒有留下相容的輸入 - + Cannot downgrade wallet 沒辦法把錢包格式降級 - + Cannot resolve -bind address: '%s' 沒辦法解析 -bind 位址: '%s' - + Cannot resolve -externalip address: '%s' 沒辦法解析 -externalip 位址: '%s' - + Cannot write default address 沒辦法把預設位址寫進去 - + Clear list of wallet transactions (diagnostic tool; implies -rescan) 清除錢包的交易列表 (診斷工具; 意味著-rescan) - + Collateral is not valid. 附加費用無效。 - + Collateral not valid. 附加費用無效。 - + Connect only to the specified node(s) 只連線到指定節點(可多個) - + Connect through SOCKS proxy 透過 SOCKS 代理伺服器連線 - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) 透過通訊埠 <port> 連線到 JSON-RPC (預設值: 9998 或測試網路: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) 透過通訊埠 <port> 連線到 KeePassHttp (預設值:19455) - + Connect to a node to retrieve peer addresses, and disconnect 連線到某個節點來取得其它節點的位址,然後斷線 - + Connection options: 連線選項: - + Corrupted block database detected 發現區塊資料庫壞掉了 - + Dash Core Daemon 黑幣核心後台程序 - + Dash Core RPC client version 暗黑幣核心RPC客戶端版本 - + Darksend is disabled. 暗黑發送已禁用。 - + Darksend options: 暗黑發送選項 : - + Debugging/Testing options: 除錯與測試選項 - + Disable safemode, override a real safe mode event (default: 0) 不進入安全模式,用在真的發生需要進入安全模式的事件時,強制不進入(預設值: 0) - + Discover own IP address (default: 1 when listening and no -externalip) 找出自己的網際網路位址(預設值: 當有聽候連線且沒有 -externalip 時為 1) - + Do not load the wallet and disable wallet RPC calls 不要載入錢包,並且拿掉錢包相關的 RPC 功能請求。 - + Do you want to rebuild the block database now? 你想要現在重建區塊資料庫嗎? - + Done loading 載入完成 - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) 充許客戶端充當主節點 (0-1,預設值 : 0) - + Entries are full. 條目己滿。 - + Error connecting to masternode. 連接到主節點時發生錯誤。 - + Error initializing block database 初始化區塊資料庫時發生錯誤 - + Error initializing wallet database environment %s! 初始化錢包資料庫環境 %s 時發生錯誤! - + Error loading block database 載入區塊資料庫時發生錯誤 - + Error loading wallet.dat 載入錢包檔 wallet.dat 時發生錯誤 - + Error loading wallet.dat: Wallet corrupted 載入檔案 wallet.dat 時發生錯誤: 錢包損毀了 - + Error loading wallet.dat: Wallet requires newer version of Dash 載入檔案 wallet.dat 時發生錯誤: 錢包需要更新的暗黑幣版本 - + Error opening block database 打開區塊資料庫時發生錯誤 - + Error reading from database, shutting down. 讀取數據庫時發生錯誤,正在關閉。 - + Error recovering public key. 恢復公鑰時發生錯誤 - + Error 錯誤 - + Error: Disk space is low! 錯誤: 磁碟空間很少! - + Error: Wallet locked, unable to create transaction! 錯誤: 錢包被鎖定,無法創建交易! - + Error: You already have pending entries in the Darksend pool 錯誤: 你已經有未處理條目在暗黑發送池中 - + Error: system error: 錯誤:系統錯誤: - + Failed to listen on any port. Use -listen=0 if you want this. 在任意的通訊埠聽候失敗。如果你希望這樣的話,可以設定 -listen=0. - + Failed to read block info 無法讀取區塊信息 - + Failed to read block 無法讀取區塊 - + Failed to sync block index 無法同步區塊索引 - + Failed to write block index 無法寫入區塊索引 - + Failed to write block info 無法寫入區塊信息 - + Failed to write block 無法寫入區塊 - + Failed to write file info 無法寫入文件信息 - + Failed to write to coin database 無法寫入到幣的數據庫 - + Failed to write transaction index 無法寫入交易索引 - + Failed to write undo data 無法寫入還原數據 - + Fee per kB to add to transactions you send 添加到您發送的交易的費用,每KB計 - + Fees smaller than this are considered zero fee (for relaying) (default: 如果手續費比這個值低,就視為沒付手續費 (當製轉發交易時) (預設值: - + Force safe mode (default: 0) 強制進入安全模式 (預設值: 0) - + Generate coins (default: 0) 生產暗黑幣 (預設值: 0) - + Get help for a command 取得指令的幫助 - + How many blocks to check at startup (default: 288, 0 = all) 啓動時檢查的區塊數(預設值: 288, 0 表示全部) - + If <category> is not supplied, output all debugging information. 如果沒有提供 <category> 就會輸出所有的除錯資訊。 - + Ignore masternodes less than version (example: 70050; default : 0) 忽略版本數比這個低的主節點 (例子 : 70050; 預設 :0) - + Importing... 正在匯入中... - + Imports blocks from external blk000??.dat file 從其它來源的 blk000??.dat 檔匯入區塊 - + Incompatible mode. 不兼容的模式。 - + Incompatible version. 不兼容的版本。 - + Incorrect or no genesis block found. Wrong datadir for network? 創世區塊不正確或找不到。資料目錄錯了嗎? - + Information 資訊 - + Initialization sanity check failed. Dash Core is shutting down. 初始化時的基本檢查失敗了。暗黑幣核心將會關閉。 - + Input is not valid. 輸入無效。 - + InstantX options: 即時到帳選項 : - + Insufficient funds 資金不足 - + Insufficient funds. 資金不足。 - + Invalid -onion address: '%s' 無效的 -onion 位址: '%s' - + Invalid -proxy address: '%s' 無效的 -proxy 位址: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' 設定最低轉發手續費 -minrelaytxfee=<amount> 的金額無效: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' 設定 -mintxfee=<amount> 的金額無效: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' 設定 -paytxfee=<amount> 的金額無效: '%s' - + Invalid amount 金額無效 - + Invalid masternodeprivkey. Please see documenation. 無效主節點密鑰。請參閱文檔。 - + Invalid private key. 密鑰無效。 - + Invalid script detected. 檢測到無效的腳本。 - + KeePassHttp id for the established association KeePassHttp ID,為建立關聯之用 - + KeePassHttp key for AES encrypted communication with KeePass KeePassHttp密鑰,為KeePass的AES加密通信之用 - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) 保持 N 個暗黑幣是匿名的 (預設值 : 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) 保持最多 <n> 無法連結的區塊在記憶體 (預設: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) 保持最多 <n> 無法連結的交易在記憶體 (預設: %u) - + Last Darksend was too recent. 距離上一次的暗黑發送時間太短。 - + Last successful darksend action was too recent. 距離上一次成功進行暗黑發送的時間太短。 - + Limit size of signature cache to <n> entries (default: 50000) 限制簽章快取大小為 <n> 筆(預設值: 50000) - + List commands 命令列表 - + Listen for connections on <port> (default: 9999 or testnet: 19999) 在通訊埠 <port> 聽候連線(預設值: 9999, 或若為測試網路: 19999) - + Loading addresses... 正在載入位址資料... - + Loading block index... 正在載入區塊索引... - + Loading masternode list... - + Loading wallet... (%3.2f %%) 正在載入錢包資料... (%3.2f %%) - + Loading wallet... 正在載入錢包資料... - + Log transaction priority and fee per kB when mining blocks (default: 0) 開採區塊的時候,紀錄交易的優先度以及每千位元組(kB)的手續費(預設值: 0) - + Maintain a full transaction index (default: 0) 維護全部交易的索引 (預設值: 0) - + Maintain at most <n> connections to peers (default: 125) 維持與節點連線數的上限為 <n> 個(預設值: 125) - + Masternode options: 主節點選項: - + Masternode queue is full. 主節點隊列已滿。 - + Masternode: 主節點: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) 每個連線的接收緩衝區大小上限為 <n>*1000 個位元組(預設值: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) 每個連線的傳送緩衝區大小上限為 <n>*1000 個位元組(預設值: 1000) - + Missing input transaction information. 缺少輸入交易信息。 - + No compatible masternode found. 沒有發現相容的主節點。 - + No funds detected in need of denominating. 沒有找到除名所需的資金。 - + No masternodes detected. 未檢測到任何主節點。 - + No matching denominations found for mixing. 沒有找到匹配的除名資金用作混合。 - + Non-standard public key detected. 檢測到不標準的公鑰。 - + Not compatible with existing transactions. 與現有的交易不相容。 - + Not enough file descriptors available. 檔案描述元不足。 - + Not in the masternode list. 不在主節點列表中。 - + Only accept block chain matching built-in checkpoints (default: 1) 只接受與內建的檢查段點吻合的區塊鎖鏈(預設值: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) 只會連接到網絡節點 <net> (IPv4,IPv6或 Tor) - + Options: 選項: - + Password for JSON-RPC connections JSON-RPC 連線密碼 - + Prepend debug output with timestamp (default: 1) 在除錯輸出內容前附加時間(預設值: 1) - + Print block on startup, if found in block index 如果找到區塊索引,就在啟動時打印區塊 - + Print block tree on startup (default: 0) 在啟動時打印區塊樹 (預設值:0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) RPC SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) - + RPC client options: RPC 客戶端選項: - + RPC server options: RPC 伺服器選項: - + Randomly drop 1 of every <n> network messages 隨機丟掉 <n> 分之1的網路訊息 - + Randomly fuzz 1 of every <n> network messages 隨機亂動 <n> 分之1的網路訊息裡的資料 - + Rebuild block chain index from current blk000??.dat files 從目前的區塊檔 blk000??.dat 重建區塊鏈的索引 - + Rescan the block chain for missing wallet transactions 重新掃描區塊鏈,來尋找錢包可能漏掉的交易。 - + Rescanning... 重新掃描中... - + Run a thread to flush wallet periodically (default: 1) 啟用定期將變動寫入錢包檔的執行緒(預設值: 1) - + Run in the background as a daemon and accept commands 用護靈模式在背後執行並接受指令 - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) - + Select SOCKS version for -proxy (4 or 5, default: 5) 選擇SOCKS -proxy 的版本 (4 or 5, 預設值: 5) - + Send command to Dash Core 向暗黑幣核心發送命令 - + Send commands to node running on <ip> (default: 127.0.0.1) 發送命令到 <ip> 運行的節點 (預設 : 127.0.0.1) - + Send trace/debug info to console instead of debug.log file 在終端機顯示追蹤或除錯資訊,而不是寫到檔案 debug.log 中 - + Server certificate file (default: server.cert) 服務器認證文件 (預設 : server.cert) - + Server private key (default: server.pem) 服務器密鑰 (預設 : server.pem) - + Session not complete! 工作階段沒有完成! - + Session timed out (30 seconds), please resubmit. 工作階段超時 (30秒),請重新提交。 - + Set database cache size in megabytes (%d to %d, default: %d) 設定資料庫快取大小是多少百萬位元組(MB) (%d 到 %d,預設值: %d) - + Set key pool size to <n> (default: 100) 設定密鑰池的大小 <n> (預設值 : 100) - + Set maximum block size in bytes (default: %d) 設定區塊大小上限成多少位元組(預設值: %d) - + Set minimum block size in bytes (default: 0) 設定區塊大小下限成多少位元組(預設值: 0) - + Set the masternode private key 設置主節點密鑰 - + Set the number of threads to service RPC calls (default: 4) 設定處理 RPC 服務請求的執行緒數目 (預設值: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) 在錢包資料庫環境變數設定 DB_PRIVATE 旗標(預設值: 1) - + Show all debugging options (usage: --help -help-debug) 顯示所有調試選項 (用法 : --help -help-debug) - + Show benchmark information (default: 0) 顯示基準信息 (預設值 : 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) 客戶端軟體啓動時把 debug.log 檔縮小(預設值: 當沒有 -debug 時為 1) - + Signing failed. 簽署失敗。 - + Signing timed out, please resubmit. 簽署逾時,請重新提交。 - + Signing transaction failed 簽署交易失敗 - - Specify configuration file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) 指定設定檔(預設值: %s) - + Specify connection timeout in milliseconds (default: 5000) 指定連線在幾毫秒後逾時 (預設值: 5000) - + Specify data directory 指定數據目錄 - + Specify masternode configuration file (default: masternode.conf) 指定主節點配置文件 (預設: masternode.conf) - - Specify pid file (default: darkcoind.pid) - 指定 pid 文件 (預設: darkcoind.pid) + + Specify pid file (default: dashd.pid) + 指定 pid 文件 (預設: dashd.pid) - + Specify wallet file (within data directory) 指定錢包文件 (在數據目錄內) - + Specify your own public address 指定自己的公開位址 - + Spend unconfirmed change when sending transactions (default: 1) 發送交易時花費未確認的費用(預設: 1) - + Start Dash Core Daemon 啟動暗黑幣核心後台程序 - + System error: 系統錯誤: - + This help message 幫助信息 - + This is intended for regression testing tools and app development. 這是用於回歸測試工具和應用程序開發。 - + This is not a masternode. 這不是一個主節點。 - + Threshold for disconnecting misbehaving peers (default: 100) 斷開行為不當節點的門檻 (預設值:100) - + To use the %s option 使用%s選項 - + Transaction amount too small 交易金額太小 - + Transaction amounts must be positive 交易金額必須為正數 - + Transaction created successfully. 交易成功創建。 - + Transaction fees are too high. 交易手續費太高。 - + Transaction not valid. 交易無效。 - + Transaction too large 交易太大 - + Unable to bind to %s on this computer (bind returned error %s) 無法和這台電腦上的 %s 繫結(回傳錯誤 %s) - + Unable to sign masternode payment winner, wrong key? 無法簽署主節點費用得主,錯誤的密鑰? - + Unable to sign spork message, wrong key? 無法簽署交叉信息,錯誤的密鑰? - + Unknown -socks proxy version requested: %i 在 -socks 指定了不明的代理伺服器版本: '%i' - + Unknown network specified in -onlynet: '%s' 在 -onlynet 指定了不明的網路別: '%s' - + Upgrade wallet to latest format 把錢包檔案升級成最新的格式 - - Usage (deprecated, use darkcoin-cli): - 用法 (不推薦,使用darkcoin-cli): + + Usage (deprecated, use dash-cli): + 用法 (不推薦,使用dash-cli): - + Usage: 用法: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) 使用KeePassHttp插件時利用KeePass 2整合 (預設值 :0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) 使用N個獨立主節點匿名處理資金(2-8,預設:2) - + Use OpenSSL (https) for JSON-RPC connections 在 JSON-RPC 連線使用 OpenSSL (https) - + Use UPnP to map the listening port (default: 0) 使用通用隨插即用 (UPnP) 協定來設定對應的服務連接埠 - + Use UPnP to map the listening port (default: 1 when listening) 是否要使用「通用即插即用」協定(UPnP),來設定聽候連線的通訊埠的對應(預設值: 當有聽候連線時為 1) - + Use the test network 使用測試網路 - + Username for JSON-RPC connections JSON-RPC 連線使用者名稱 - + Value more than Darksend pool maximum allows. 數值超過暗黑發送池所允許的最大數。 - + Verifying blocks... 正在驗證區塊資料... - + Verifying wallet... 正在驗證錢包資料... - + Wait for RPC server to start 等待RPC服務器啟動 - + Wallet %s resides outside data directory %s 錢包檔 %s 沒有在資料目錄 %s 裡面 - + Wallet is locked. 錢包己鎖定。 - + Wallet needed to be rewritten: restart Dash to complete 錢包需要重新改寫:請重啟Dash來完​​成過程 - + Wallet options: 錢包選項: - + Warning 警告 - + Warning: Deprecated argument -debugnet ignored, use -debug=net 警告:不建議使用參數-debugnet 被忽略,使用-debug=net - + Warning: This version is obsolete, upgrade required! 警告:這個版本已經過時,需要升級! @@ -5267,27 +5267,27 @@ If the file does not exist, create it with owner-readable-only file permissions. - + You need to rebuild the database using -reindex to change -txindex 你需要通過使用-reindex改變-txindex來重新建立數據庫 - + Zapping all transactions from wallet... 從錢包正在展開所有交易記錄... - + on startup 正在啟動 - + version 版本 - + wallet.dat corrupt, salvage failed wallet.dat 損壞,恢復失敗 diff --git a/src/qt/locale/darkcoin_bar.ts b/src/qt/locale/dash_bar.ts similarity index 91% rename from src/qt/locale/darkcoin_bar.ts rename to src/qt/locale/dash_bar.ts index 5116cf80b3..e7164835f6 100644 --- a/src/qt/locale/darkcoin_bar.ts +++ b/src/qt/locale/dash_bar.ts @@ -283,7 +283,7 @@ Gib Obachd, das <b>zmindeschd 10 zuafällige Buachstob</b> verwendes - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! Wend dain Goidbaidl mim Schprücherl zumachsd, und du weischn dann nimma SAN OLLE DAINE DARKCONS FUTSCH ! @@ -299,7 +299,7 @@ Gib Obachd, das <b>zmindeschd 10 zuafällige Buachstob</b> verwendes - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. Dash wiard zua-gmocht damid des mit dem Schprücherl und so funktioniert. Weil ma groad dabei san: Wennd da so an Virus oda so was auf dain Kompjuta hoschd, dann hilfd da des fai nix, mid dem Sprücherl und so. @@ -409,7 +409,7 @@ Wenn´d jezzad anfängsch den noin Goidbaild zu nuzzn dann gehd da alde nimma. W - Request payments (generates QR codes and darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) Schicktsma Goid! (däs machda an KUH ÄR KOD und a Uri wo da Anda s Goid hischicka koa) @@ -608,7 +608,7 @@ Wenn´d jezzad anfängsch den noin Goidbaild zu nuzzn dann gehd da alde nimma. W - Open a darkcoin: URI or payment request + Open a dash: URI or payment request So a Dash-Uri oda so aufmaha (damidsch zala kosch) @@ -792,7 +792,7 @@ Addressn: %4 D´Goidbaidl hod sai <b>Schprücherl drauf</b> und is <b>zuagschlossn</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. WEILD A DEPP BISCH. Däs gonze Programm is fürn Arsch gangen. Wird zugmachd, wails bessa is. @@ -1651,7 +1651,7 @@ gschbield wiad.<br><br>Je öfdas desto bessa (!!!), kost aber au mea Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2082,7 +2082,7 @@ Aba, wards ab, des wird. Brauchd bloss a Minudn bis der Darkcon Koa mid di andan - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler Dash ged ned (click-to-pay handler) @@ -2165,35 +2165,35 @@ Aba, wards ab, des wird. Brauchd bloss a Minudn bis der Darkcon Koa mid di andan QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. OBACHD: S gehd ned! Des Da-Ta-Di-Rec-To-Ri %1 gibds goa ned. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. - + Error reading masternode configuration file: %1 - + Error: Invalid combination of -regtest and -testnet. Depp, im Kindazimma gibds koin "-regtest" - + Dash Core didn't yet exit safely... ´S Programmal is no ned gsund haim kimma. Wardsch bessa no.... @@ -3002,7 +3002,7 @@ Aba, wards ab, des wird. Brauchd bloss a Minudn bis der Darkcon Koa mid di andan - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. @@ -3940,13 +3940,13 @@ Wenn dai Kischdn rechd schiach ausschaugd, dann sagen di Andan "bäh" - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3957,1314 +3957,1314 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Tschippas di wo gehn (kört: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) Ois was mid die Kapuzzn zum duan hod (Mastanodes und Darksend) ausmaha (0-1, kört 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) InstantX (subba schnois Übawaisn) anmaha. Sigsch dann au auf da Haupdsaitn. (ja/nein, kört JA) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - + Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) - + Fees smaller than this are considered zero fee (for transaction creation) (default: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. A paar kloane Kapuzzal san da drausn unbeafsichdigd. I ward no a bissal bis di alle wida im Käfig san. (Dan gehds wida waida) - + How thorough the block verification of -checkblocks is (0-4, default: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) Für den Jäison sai Er Pe Ze hörma auf <port> Numma.... (kört: 9998 und fürs Kindazimma: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + Output debugging information (default: 0, supplying <category> is optional) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + (default: 1) (kört: 1) - + (default: wallet.dat) (kört: wallet.dat) - + <category> can be: <category> sold sai: - + Accept command line and JSON-RPC commands - + Accept connections from outside (default: 1 if no -proxy or -connect) - + Add a node to connect to and attempt to keep the connection open - + Allow DNS lookups for -addnode, -seednode and -connect - + Allow JSON-RPC connections from specified IP address - + Already have that input. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat - + Block creation options: - + Can't denominate: no compatible inputs left. - + Cannot downgrade wallet - + Cannot resolve -bind address: '%s' - + Cannot resolve -externalip address: '%s' - + Cannot write default address - + Clear list of wallet transactions (diagnostic tool; implies -rescan) - + Collateral is not valid. Schudzgoid is no ned zahld. - + Collateral not valid. Schudzgoid is no ned zahld. - + Connect only to the specified node(s) - + Connect through SOCKS proxy - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) Dem Jäison sai Er Pe Ze schraima auf <port> Numma.... (kört: 9998 und fürs Kindazimma: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) Dem Ki Pass sai Ha Te Te Pe ma´ma auf <port> Numma.... (kört: 19455) - + Connect to a node to retrieve peer addresses, and disconnect - + Connection options: Connection options: - + Corrupted block database detected Dai Kischdn-Regal schaugd schiach aus ("Corrupted block database detected") - + Dash Core Daemon Dash Koa Dämon - + Dash Core RPC client version - + Darksend is disabled. Darksend is aus. - + Darksend options: Darksend Optschns: - + Debugging/Testing options: - + Disable safemode, override a real safe mode event (default: 0) Äh: "Disable safemode, override a real safe mode event (default: 0)" - + Discover own IP address (default: 1 when listening and no -externalip) - + Do not load the wallet and disable wallet RPC calls - + Do you want to rebuild the block database now? Sollma däs Regal nommal baun. So in grood und ohne Lö´ha? - + Done loading Ois glaadn - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) Dai Programmerl soll so duan wi wäns a Masternode war (0-1, kört: 0) - + Entries are full. S Buch is foll. Bis üba baide Oan. Foll is. - + Error connecting to masternode. Kann di Masternode ned erraichn. - + Error initializing block database Weild a Depp bisch. "Error initializing block database" - + Error initializing wallet database environment %s! - + Error loading block database Weild a Depp bisch. "Error loading block database" - + Error loading wallet.dat - + Error loading wallet.dat: Wallet corrupted - + Error loading wallet.dat: Wallet requires newer version of Dash - + Error opening block database Weild a Depp bisch. "Error opening block database" - + Error reading from database, shutting down. - + Error recovering public key. - + Error Nix god. (Weil´d a Depp bischd) - + Error: Disk space is low! - + Error: Wallet locked, unable to create transaction! - + Error: You already have pending entries in the Darksend pool - + Error: system error: - + Failed to listen on any port. Use -listen=0 if you want this. - + Failed to read block info Weild a Depp bisch. "Failed to read block info" - + Failed to read block Weild a Depp bisch. "Failed to read block" - + Failed to sync block index Weild a Depp bisch. "Failed to sync block index" - + Failed to write block index Weild a Depp bisch. "Failed to write block index" - + Failed to write block info Weild a Depp bisch. "Failed to write block info" - + Failed to write block Weild a Depp bisch. "Failed to write block" - + Failed to write file info - + Failed to write to coin database - + Failed to write transaction index - + Failed to write undo data - + Fee per kB to add to transactions you send - + Fees smaller than this are considered zero fee (for relaying) (default: - + Force safe mode (default: 0) - + Generate coins (default: 0) - + Get help for a command - + How many blocks to check at startup (default: 288, 0 = all) - + If <category> is not supplied, output all debugging information. - + Ignore masternodes less than version (example: 70050; default : 0) Masternodes mitna Version di wo älter is als X ignorian (zB.: 70050, standart: 0) - + Importing... Bin am einladen... - + Imports blocks from external blk000??.dat file - + Incompatible mode. - + Incompatible version. - + Incorrect or no genesis block found. Wrong datadir for network? Da "Genesis Block" schaugd nacham Gschmarri aus. is dai "datadir" richdig? - + Information Informäischn - + Initialization sanity check failed. Dash Core is shutting down. Dai Programmerl schaugsd ungsund aus. Dash Koa wiad ezd zua-gmachd. - + Input is not valid. Hä? Was solln des sain?: input not valid - + InstantX options: InstantX Optschns: - + Insufficient funds Ned gnug Dari-Dari - + Insufficient funds. Ned gnug Goid aschd. - + Invalid -onion address: '%s' D´ "onion"-Adressn is Murx: '%s' - + Invalid -proxy address: '%s' D´ Proxy-Adressn is Murx: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' - + Invalid amount Den Betrag gibds ned - + Invalid masternodeprivkey. Please see documenation. Falscha masternodeprivkey. Schaugst am bestn ind Documäntaischn. - + Invalid private key. Des Schpürcherl passd ned. - + Invalid script detected. Dai Script is Schrott. - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. Au Kapuzzn-Kinda brauchn mal a Pausn. Machda a Bia auf... - + Last successful darksend action was too recent. Im Kapuzzngardn is grad Rauchapausn. - + Limit size of signature cache to <n> entries (default: 50000) - + List commands - + Listen for connections on <port> (default: 9999 or testnet: 19999) Zu höan du ma generall auf <port> Numma.... (kört: 9999 und fürs Kindazimma: 19999) - + Loading addresses... - + Loading block index... - + Loading masternode list... - + Loading wallet... (%3.2f %%) - + Loading wallet... - + Log transaction priority and fee per kB when mining blocks (default: 0) - + Maintain a full transaction index (default: 0) - + Maintain at most <n> connections to peers (default: 125) - + Masternode options: - + Masternode queue is full. - + Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Missing input transaction information. - + No compatible masternode found. - + No funds detected in need of denominating. - + No masternodes detected. i sigg grad koi Mastanode.... - + No matching denominations found for mixing. - + Non-standard public key detected. - + Not compatible with existing transactions. - + Not enough file descriptors available. - + Not in the masternode list. - + Only accept block chain matching built-in checkpoints (default: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + Options: - + Password for JSON-RPC connections - + Prepend debug output with timestamp (default: 1) - + Print block on startup, if found in block index - + Print block tree on startup (default: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + RPC client options: - + RPC server options: - + Randomly drop 1 of every <n> network messages - + Randomly fuzz 1 of every <n> network messages - + Rebuild block chain index from current blk000??.dat files - + Rescan the block chain for missing wallet transactions - + Rescanning... - + Run a thread to flush wallet periodically (default: 1) - + Run in the background as a daemon and accept commands - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Select SOCKS version for -proxy (4 or 5, default: 5) - + Send command to Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Session not complete! - + Session timed out (30 seconds), please resubmit. - + Set database cache size in megabytes (%d to %d, default: %d) - + Set key pool size to <n> (default: 100) - + Set maximum block size in bytes (default: %d) - + Set minimum block size in bytes (default: 0) - + Set the masternode private key - + Set the number of threads to service RPC calls (default: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) - + Show all debugging options (usage: --help -help-debug) - + Show benchmark information (default: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) - + Signing failed. - + Signing timed out, please resubmit. - + Signing transaction failed Is was schiefglaufn. (signing failed) - - Specify configuration file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) - + Specify data directory - + Specify masternode configuration file (default: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) - + Specify wallet file (within data directory) - + Specify your own public address Unter welcha Numma solln di di Andan kenna? - + Spend unconfirmed change when sending transactions (default: 1) - + Start Dash Core Daemon - + System error: System error: - + This help message Di Hälp Massidsch - + This is intended for regression testing tools and app development. - + This is not a masternode. Däs is kai Masternode. - + Threshold for disconnecting misbehaving peers (default: 100) - + To use the %s option Damid %s ma´ha kansch - + Transaction amount too small So klains Goid send ma ned raus... Sorry aba, irgendwo is dann au guad.... - + Transaction amounts must be positive Ma kann blos Goid übawaisn, ned Schuldn ... Also eahlich... - + Transaction created successfully. - + Transaction fees are too high. - + Transaction not valid. - + Transaction too large Da muss aba aina was kompenzian, oda? (Tränsaktschn tu lardsch) - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i - + Unknown network specified in -onlynet: '%s' - + Upgrade wallet to latest format Schraib n Goidbaidl so um das ma alles schön lesn kann... - - Usage (deprecated, use darkcoin-cli): - Des gibds scho lang nimma, mai machsd hald "darkcoin-cli" wi sies kört. + + Usage (deprecated, use dash-cli): + Des gibds scho lang nimma, mai machsd hald "dash-cli" wi sies kört. - + Usage: brauchdma füa - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) X faschihdene Mastanoods fürs Kapuzzn-Schbui nuzn (2 bis 8, kört: 8) - + Use OpenSSL (https) for JSON-RPC connections - + Use UPnP to map the listening port (default: 0) - + Use UPnP to map the listening port (default: 1 when listening) - + Use the test network Nur im Kindazimma spuin - + Username for JSON-RPC connections Wih magsch haisn wennd mim Jäison saim Er Pe Ze schbrichsd - + Value more than Darksend pool maximum allows. Soi fui kansch ned auf aimal zum Kapuzznma´ha schickn... Schick weniga. - + Verifying blocks... Kisdn a-schaung obs au guud sin... - + Verifying wallet... Goidbaidl wiad untersuchd... - + Wait for RPC server to start Wardsch kurz aufn Är Pe CE Sörfa damids logehd - + Wallet %s resides outside data directory %s Dai Goidbaidl %s is ned da wora hikört sondan is da: %s - + Wallet is locked. Goidbaidl is zua. - + Wallet needed to be rewritten: restart Dash to complete Dai Dash Koa - Programmal mussma kurz zuma´ha damit dai Goidbaidl final wida funzt. - + Wallet options: Aischdellungän fürn Goidbaidl: - + Warning Obacht - + Warning: Deprecated argument -debugnet ignored, use -debug=net Des gibds scho lang nimma des "-debugnet", mai machsd hald "-debug=net" wi sies kört. - + Warning: This version is obsolete, upgrade required! Obacht: Dai Wersion is so oid, da hodda Kini no glebd. Up-Da-Ten mussd - SOFORT! @@ -5273,27 +5273,27 @@ If the file does not exist, create it with owner-readable-only file permissions. - + You need to rebuild the database using -reindex to change -txindex Dai databäis is im Oarsch. Machsdan "-reindex" dann gods daim -txindex wihda bessa - + Zapping all transactions from wallet... Olle Übawaisung´n wäan grod umbatschd bis mas nime a-käänd... - + on startup wenn da Kompjuda gschdardet wiad - + version Wersion - + wallet.dat corrupt, salvage failed Dai "walled.dat" is im Oarsch! Un´d gretted kanns au ned wäan. diff --git a/src/qt/locale/darkcoin_bg.ts b/src/qt/locale/dash_bg.ts similarity index 92% rename from src/qt/locale/darkcoin_bg.ts rename to src/qt/locale/dash_bg.ts index 7d9e1fe3ec..93a143724e 100644 --- a/src/qt/locale/darkcoin_bg.ts +++ b/src/qt/locale/dash_bg.ts @@ -275,7 +275,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! Внимание: Ако шифрирате вашия портфейл и загубите паролата си, <b>ЩЕ ЗАГУБИТЕ ВСИЧКИ ДАРККОЙН МОНЕТИ!</b>! @@ -291,7 +291,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. Дарккойн ще се затвори, за да завърши процеса по шифриране. Запомнете, че шифрирането на вашия портфейл не може напълно да ви предпази от кражба на монетите от зловреден софтуер инфектирал компютъра ви. @@ -397,7 +397,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Request payments (generates QR codes and darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) Заявка за плащане (генерира QR кодове и Дарккойн: URI) @@ -595,7 +595,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Open a darkcoin: URI or payment request + Open a dash: URI or payment request Отвори Дарккойн: URI или заявка за плащане @@ -779,7 +779,7 @@ Address: %4 Портфейлът е <b>криптиран</b> и <b>заключен</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Възникна фатална грешка. Дарккойн не може да продължи безопасно и ще се изключи. @@ -1631,9 +1631,9 @@ Address: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ Липсва език или превода е непълен? Можете да помогнете с превода тук: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2061,7 +2061,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler @@ -2144,35 +2144,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Дарккойн - + Error: Specified data directory "%1" does not exist. Грешка: Оказаната папка с данни "%1" не съществува. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Грешка: Не може да се анализира конфигурационния файл: %1. Използвайте само синтаксис ключ=стойност. - + Error reading masternode configuration file: %1 Грешка при четене на конфигурационния файл за Мастернод: %1 - + Error: Invalid combination of -regtest and -testnet. Грешка: Невалидна комбинация от -regtest и -testnet. - + Dash Core didn't yet exit safely... Ядрото на Дарккойн все още не е приключило ... @@ -2981,7 +2981,7 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. @@ -3918,13 +3918,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3935,247 +3935,247 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s Възникна грешка при настройване на RPC порт %u за очакване на IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Възникна грешка при настройване на RPC порт %u за очакване на IPv6, връщане към IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) Изключване на свързаните с Дарксенд и Мастернод функции (0-1, по подразбиране: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + Error: Listening for incoming connections failed (listen returned error %s) Грешка: Очакването на входящи връзки е неуспешно (върната грешка %s) - + 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 and coins were spent in the copy but not marked as spent here. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Грешка: Тази транзакция изисква минимална такса не по-малко от %s, поради размера на сумата, сложността си или употребата на наскоро получени средства! - + Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) - + Fees smaller than this are considered zero fee (for transaction creation) (default: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. - + How thorough the block verification of -checkblocks is (0-4, default: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) Очаквай JSON-RPC входящи връзки на <port> (по подразбиране: 9998 или за тестовата мрежа: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Брой секунди до възтановяване на връзката за зле държащите се пиъри (по подразбиране:86400) - + Output debugging information (default: 0, supplying <category> is optional) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Определя максималния размер на висок приоритет/ниска такса за транзакция в байтове (по подразбиране: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Задаване броя на нишките потвърждаващи скрипта (%u до %d, 0 = автоматично, <0 = leave that many cores free, по подразбиране: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) Задаване лимит на процесорите, когато се използва генериране (-1 = неограничено, по подразбиране: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) Покажи N потвърждения при успешно заключване на транзакция (0-9999, по подразбиране: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Това е предварителна тест версия - използвайте я на ваша отговорност - не използвайте за копане или за търговски приложения. - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. Не са намерени достатъчно Дарксенд деноминирани средства за тази транзакция. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. Не са намерени достатъчно Дарксенд неденоминирани средства за тази транзакция, които не са равни на 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. Не са намерени достатъчно Дарксенд неденоминирани средства за тази транзакция. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Изполва отделен SOCKS5 прокси, за достигне на пиъри чрез Тор скрита услуга (по подразбиране: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Внимание: -paytxfee е с мното голяма зададена стойност! Това е транзакционната такса, която ще платите ако направите транзакция. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. Внимание: Моля проверете дали датата и часът на вашият компютър са верни! Ако часовникът ви не е сверен, Дарккойн няма да работи правилно. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Внимание! Изглежда няма пълно съгласуване в мрежата! Някой копачи изглежда изпитват проблеми. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4184,1067 +4184,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. Ако файлът не съществува, създайте го с атрибут само за четене от собственика. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. Трябва да посочите masternodeprivkey в конфигурацията. Моля прочетете документацията за помощ. - + (default: 1) (по подразбиране 1) - + (default: wallet.dat) (по подразбиране wallet.dat) - + <category> can be: <category> може да бъде: - + Accept command line and JSON-RPC commands Приемай команден ред и JSON-RPC команди - + Accept connections from outside (default: 1 if no -proxy or -connect) Приемай връзки отвън (по подразбиране: 1, ако няма -proxy или -connect) - + Add a node to connect to and attempt to keep the connection open Добави възел, към който да се свърже и поддържай връзката отворена - + Allow DNS lookups for -addnode, -seednode and -connect Разреши DNS справка за -addnode, -seednode и -connect - + Allow JSON-RPC connections from specified IP address Разреши връзките JSON-RPC от въведен IP адрес - + Already have that input. Вече има такъв вход. - + Always query for peer addresses via DNS lookup (default: 0) Винаги пускай заявка за адреси на пиъри през DNS справката (по подразбиране: 0) - + Attempt to recover private keys from a corrupt wallet.dat Опит да се възстановят частни ключове от повреден wallet.dat - + Block creation options: Опции за създаване на блок: - + Can't denominate: no compatible inputs left. - + Cannot downgrade wallet Връщане към по-стара версия на портфейла е невъзможно - + Cannot resolve -bind address: '%s' Не може да установи -bind адрес: '%s' - + Cannot resolve -externalip address: '%s' Не може да установи -externalip адрес: '%s' - + Cannot write default address Не може да напише адреса по подразбиране - + Clear list of wallet transactions (diagnostic tool; implies -rescan) Изчисти списъка с транзакциите на портфейла (диагностичен инструмент; предполага -rescan) - + Collateral is not valid. - + Collateral not valid. - + Connect only to the specified node(s) Свързване само към определена възлова точка(и) - + Connect through SOCKS proxy Свързване през SOCKS прокси - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) Свързване към JSON-RPC през <port> (по подразбиране: 9998 или за тест мрежата: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Свържи се с възел за зараждане на адреси на пиъри, след това прекъсни връзката - + Connection options: Настройки на връзката: - + Corrupted block database detected Открита е повредена блок база данни - + Dash Core Daemon - + Dash Core RPC client version - + Darksend is disabled. Дарксенд е изключен. - + Darksend options: Опции на Дарксенд: - + Debugging/Testing options: Опции за Откриване на грешки/Тестване: - + Disable safemode, override a real safe mode event (default: 0) Деактивирай безопасен режим, замени събитието за истинския безопасен режим (по подразбиране: 0) - + Discover own IP address (default: 1 when listening and no -externalip) Открий собствения IP адрес (по подразбиране: 1, когато слуша и няма -externalip) - + Do not load the wallet and disable wallet RPC calls Не зареждай портфейла и деактивирай RPC повикванията на портфейла - + Do you want to rebuild the block database now? Искате ли да възстановяване блок базата данни сега? - + Done loading Зареждането е завършено - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) Активиране на клиента да работи като мастернод (0-1, по подразбиране: 0) - + Entries are full. Записите са пълни - + Error connecting to masternode. Грешка при свързване с Мастернод. - + Error initializing block database Грешка при инициализация на блок базата данни - + Error initializing wallet database environment %s! Грешка при инициализиране на средата на базата данни на портфейла %s! - + Error loading block database Грешка при зареждане на блок базата данни - + Error loading wallet.dat Грешка при зареждане на wallet.dat - + Error loading wallet.dat: Wallet corrupted Грешка при зареждане на wallet.dat: портфейлът е повреден - + Error loading wallet.dat: Wallet requires newer version of Dash Грешка при зареждане на wallet.dat: портфейлът изисква по-нова версия на Дарккойн - + Error opening block database Грешка при отваряне на блок базата данни - + Error reading from database, shutting down. Грешка при четене от базата данни, изключване. - + Error recovering public key. Грешка при възстановяване на публичния ключ - + Error Грешка - + Error: Disk space is low! Грешка: мястото на диска е малко! - + Error: Wallet locked, unable to create transaction! Грешка: Портфейлът е заключен, транзакцията е невъзможна! - + Error: You already have pending entries in the Darksend pool - + Error: system error: Грешка: системна грешка: - + Failed to listen on any port. Use -listen=0 if you want this. Провалено "слушане" на всеки порт. Използвайте -listen=0 ако искате това. - + Failed to read block info Грешка при четене данни на блок - + Failed to read block Грешка при четене на блок - + Failed to sync block index Неуспех при синхронизиране на блок индекса - + Failed to write block index Неуспех при запис в блок индекса - + Failed to write block info Грешка при запис данни на блок - + Failed to write block Грешка при запис на блок - + Failed to write file info Неуспех при запис на информационния файл - + Failed to write to coin database Неуспех при запис в базата данни на монетата - + Failed to write transaction index - + Failed to write undo data - + Fee per kB to add to transactions you send Такса за кБ добавяна към транзакцията която изпращате - + Fees smaller than this are considered zero fee (for relaying) (default: Такси по-малки от това се считат за нулева такса (за прилагане) (по подразбиране:) - + Force safe mode (default: 0) Принуди безопасен режим (по подразбиране: 0) - + Generate coins (default: 0) Генериране на монети (по подразбиране: 0) - + Get help for a command Получете помощ за команда - + How many blocks to check at startup (default: 288, 0 = all) Колко блока да проверява при стартиране (по подразбиране: 288, 0 = всички) - + If <category> is not supplied, output all debugging information. Ако <category> не е предоставена, изведи цялата информация за отстраняването на грешки. - + Ignore masternodes less than version (example: 70050; default : 0) Игнориране на мастернодове с по-ниска версия от (пример: 70050; по подразбиране: 0) - + Importing... Внасяне... - + Imports blocks from external blk000??.dat file Внасяне на блокове от външен blk000??.dat файл - + Incompatible mode. Несъвместим режим. - + Incompatible version. Несъвместима версия. - + Incorrect or no genesis block found. Wrong datadir for network? - + Information Данни - + Initialization sanity check failed. Dash Core is shutting down. - + Input is not valid. - + InstantX options: InstantX опции: - + Insufficient funds Недостатъчно средства - + Insufficient funds. Недостатъчно средства. - + Invalid -onion address: '%s' Невалиден -onion адрес: '%s' - + Invalid -proxy address: '%s' Невалиден -proxy address: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' Невалидна сума за -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' Невалидна сума за -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Невалидна сума за -paytxfee=<amount>: '%s' - + Invalid amount Невалидна сума - + Invalid masternodeprivkey. Please see documenation. Невалиден частен ключ на Мастернод. Моля вижте документацията. - + Invalid private key. Невалиден личен ключ. - + Invalid script detected. Открит е невалиден скрипт. - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) Поддържай N Дарккойн монети анонимизирани (по подразбиране: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) Пази поне <n> неосъществени транзакции в паметта (по подразбиране: %u) - + Last Darksend was too recent. Последния Дарксенд беше твърде скоро. - + Last successful darksend action was too recent. Последното успешно Дарксенд действие бе твърде скоро. - + Limit size of signature cache to <n> entries (default: 50000) Ограничение на размера на кеша за подпис до <n> реда (по подразбиране: 50000) - + List commands Вписване на команди - + Listen for connections on <port> (default: 9999 or testnet: 19999) Очаквай входящи връзки на <port> (по подразбиране: 9999 или за тестовата мрежа: 19999) - + Loading addresses... Зареждане на адреси... - + Loading block index... Зареждане на блок индекса... - + Loading masternode list... - + Loading wallet... (%3.2f %%) Зареждане на портфейла... (%3.2f %%) - + Loading wallet... Зареждане на портфейла... - + Log transaction priority and fee per kB when mining blocks (default: 0) - + Maintain a full transaction index (default: 0) Поддържай пълен списък с транзакциите (по подразбиране: 0) - + Maintain at most <n> connections to peers (default: 125) Поддържай най-много <n> връзки към пиърите (по подразбиране: 125) - + Masternode options: Мастернод опции: - + Masternode queue is full. Опашката с задачи на Мастернода е пълна. - + Masternode: Мастернод: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Максимален буфер на връзка за получаване, <n>*1000 байта (по подразбиране: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Максимален буфер на връзка за изпращане, <n>*1000 байта (по подразбиране: 1000) - + Missing input transaction information. Липсва входяща информация за транзакцията. - + No compatible masternode found. Не са намерени съвместими Мастернод: - + No funds detected in need of denominating. Не са открити суми нуждаещи се от деноминиране. - + No masternodes detected. Не са открити Мастернодове. - + No matching denominations found for mixing. Няма съвпадащи деноминации за миксирането. - + Non-standard public key detected. Засечен е нестандартен публичен ключ. - + Not compatible with existing transactions. Несъвместим със съществуващите транзакции. - + Not enough file descriptors available. - + Not in the masternode list. Не е в списъка на Мастернодове - + Only accept block chain matching built-in checkpoints (default: 1) Приемане само на регистър на блокове съвпадащ с вградените контролни точки (по подразбиране: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Свързване само към точки от мрежата <net> (IPv4, IPv6 or Tor) - + Options: Опции: - + Password for JSON-RPC connections Парола за JSON-RPC връзките - + Prepend debug output with timestamp (default: 1) - + Print block on startup, if found in block index - + Print block tree on startup (default: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) RPC SSL опции: (виж Bitcoin Wiki за SSL инструкции за настройка) - + RPC client options: Опции на RPC клиента: - + RPC server options: Опции на RPC сървъра: - + Randomly drop 1 of every <n> network messages - + Randomly fuzz 1 of every <n> network messages - + Rebuild block chain index from current blk000??.dat files - + Rescan the block chain for missing wallet transactions Повторно сканиране на регистъра на блокове за липсващи портфейлни транзакции - + Rescanning... Преразглеждане на последовтелността от блокове... - + Run a thread to flush wallet periodically (default: 1) Стартирай нишка за почистване на портфейла периодично (по подразбиране: 1) - + Run in the background as a daemon and accept commands Стартирай във фонов режим като демон и приемай команди - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL опции: (виж Bitcoin Wiki за SSL инструкции за настройка) - + Select SOCKS version for -proxy (4 or 5, default: 5) Изберете SOCKS версия за -proxy (4 или 5, по подразбиране: 5) - + Send command to Dash Core Изпрати команда до Дарккойн ядрото - + Send commands to node running on <ip> (default: 127.0.0.1) Изпрати команди до възел функциониращ на <ip> (По подразбиране: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Изпрати локализиращата или дебъг информацията към конзолата, вместо файлът debug.log - + Server certificate file (default: server.cert) Сертификатен файл на сървъра (По подразбиране:server.cert) - + Server private key (default: server.pem) Поверителен ключ за сървъра (default: server.pem) - + Session not complete! Незавършена сесия! - + Session timed out (30 seconds), please resubmit. Изтекла сесия (30 секунди), моля изпратете отново. - + Set database cache size in megabytes (%d to %d, default: %d) Определи размера на кеша на базата от данни в мегабайти (%d до %d, по подразбиране: %d) - + Set key pool size to <n> (default: 100) - + Set maximum block size in bytes (default: %d) Определи максималния размер на блока в байтове (по подразбиране: %d) - + Set minimum block size in bytes (default: 0) Задайте минимален размер на блок-а в байтове (подразбиране: 0) - + Set the masternode private key Задаване на личен ключ на Мастенода - + Set the number of threads to service RPC calls (default: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) - + Show all debugging options (usage: --help -help-debug) Покажи всички опции за откриване на грешки (синтаксис: --help -help-debug) - + Show benchmark information (default: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Свий debug.log файла при стартиране на клиента (по подразбиране: 1, когато няма -debug) - + Signing failed. Подписването неуспешно. - + Signing timed out, please resubmit. Времето за подпис изтече, моля изпратете отново. - + Signing transaction failed Подписването на транзакцията се провали - - Specify configuration file (default: darkcoin.conf) - Посочете конфигурационен файл (по подразбиране: darkcoin.conf) + + Specify configuration file (default: dash.conf) + Посочете конфигурационен файл (по подразбиране: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Определете таймаут за свързване в милисекунди (подразбиране: 5000) - + Specify data directory Определете директория за данните - + Specify masternode configuration file (default: masternode.conf) Определяне на конфигурационния файл на Мастернода (по подразбиране: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) - + Specify wallet file (within data directory) Посочете файла с портфейла (в папката с данни) - + Specify your own public address Въведете Ваш публичен адрес - + Spend unconfirmed change when sending transactions (default: 1) - + Start Dash Core Daemon - + System error: Системна грешка: - + This help message Това помощно съобщение - + This is intended for regression testing tools and app development. - + This is not a masternode. Това не е Мастернод. - + Threshold for disconnecting misbehaving peers (default: 100) Праг на прекъсване на връзката при непорядъчно държащи се пиъри (по подразбиране:100) - + To use the %s option - + Transaction amount too small Сумата на транзакцията е твърде малка - + Transaction amounts must be positive Сумите на транзакциите трябва да са положителни - + Transaction created successfully. Транзакцията създадена успешно. - + Transaction fees are too high. Таксите за транзакция са твърде високи. - + Transaction not valid. Транзакцията е невалидна. - + Transaction too large Транзакцията е твърде голяма - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i - + Unknown network specified in -onlynet: '%s' Неизвестна мрежа определена от -onlynet: '%s' - + Upgrade wallet to latest format Обновяване на портфейла до най-новия формат - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): - + Usage: Използване: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) Използвай N отделни Мастернода за анонимизиране на средствата (2-8, по подразбиране: 2) - + Use OpenSSL (https) for JSON-RPC connections Използвайте OpenSSL (https) за JSON-RPC връзките - + Use UPnP to map the listening port (default: 0) - + Use UPnP to map the listening port (default: 1 when listening) - + Use the test network Използвайте тестовата мрежа - + Username for JSON-RPC connections Потребителско име за JSON-RPC връзките - + Value more than Darksend pool maximum allows. - + Verifying blocks... Проверка на блоковете... - + Verifying wallet... Проверка на портфейла... - + Wait for RPC server to start Изчакайте стартирането на RPC сървърът - + Wallet %s resides outside data directory %s - + Wallet is locked. Портфейлът е заключен. - + Wallet needed to be rewritten: restart Dash to complete Портфейлът трябва да бъде презаписан: рестартирайте Даккойн за да завършите - + Wallet options: Настройки на портфейла: - + Warning Предупреждение - + Warning: Deprecated argument -debugnet ignored, use -debug=net - + Warning: This version is obsolete, upgrade required! Внимание: Използвате остаряла версия, необходимо е обновление! @@ -5253,27 +5253,27 @@ If the file does not exist, create it with owner-readable-only file permissions. - + You need to rebuild the database using -reindex to change -txindex Необходимо е наново изграждане на базата от данни използвайки -reindex, за да промените -txindex - + Zapping all transactions from wallet... - + on startup при стартиране - + version версия - + wallet.dat corrupt, salvage failed wallet.dat е повреден, възстановяването неуспешно diff --git a/src/qt/locale/darkcoin_ca.ts b/src/qt/locale/dash_ca.ts similarity index 91% rename from src/qt/locale/darkcoin_ca.ts rename to src/qt/locale/dash_ca.ts index 8de71ed693..54264ad82c 100644 --- a/src/qt/locale/darkcoin_ca.ts +++ b/src/qt/locale/dash_ca.ts @@ -275,8 +275,8 @@ Aquest producte inclou programari desenvolupat pel projecte OpenSSL per a l&apos - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - Advertència: Si xifra seva cartera i perd la seva contrasenya, vostè <b> PERDRÀ TOTS ELS SEUS DARKCOINS </ b> + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Advertència: Si xifra seva cartera i perd la seva contrasenya, vostè <b> PERDRÀ TOTS ELS SEUS DASHS </ b> @@ -291,7 +291,7 @@ Aquest producte inclou programari desenvolupat pel projecte OpenSSL per a l&apos - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. @@ -397,7 +397,7 @@ Aquest producte inclou programari desenvolupat pel projecte OpenSSL per a l&apos - Request payments (generates QR codes and darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) @@ -595,7 +595,7 @@ Aquest producte inclou programari desenvolupat pel projecte OpenSSL per a l&apos - Open a darkcoin: URI or payment request + Open a dash: URI or payment request @@ -775,7 +775,7 @@ Address: %4 El moneder està <b>encriptat</b> i actualment <b>bloquejat</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Ha tingut lloc un error fatal. Dash no pot continuar executant-se de manera segura i es tancarà. @@ -1627,7 +1627,7 @@ Address: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2055,7 +2055,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler @@ -2138,35 +2138,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. Error: El directori de dades especificat «%1» no existeix. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Error: no es pot analitzar el fitxer de configuració: %1. Feu servir només la sintaxi clau=valor. - + Error reading masternode configuration file: %1 - + Error: Invalid combination of -regtest and -testnet. Error: combinació no vàlida de -regtest i -testnet. - + Dash Core didn't yet exit safely... @@ -2975,7 +2975,7 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. @@ -3912,13 +3912,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3929,247 +3929,247 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Xifrats acceptables (per defecte: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s S'ha produït un error al configurar el port RPC %u escoltant a IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s S'ha produït un error en configurar el port RPC %u escoltant a IPv6, retrocedint a IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Vincula a una adreça específica i sempre escolta-hi. Utilitza la notació [host]:port per IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) Limita contínuament les transaccions gratuïtes a <n>*1000 bytes per minut (per defecte: 15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. Entra en el mode de prova de regressió, que utilitza una cadena especial en què els blocs es poden resoldre al moment. Això està pensat per a les eines de proves de regressió i per al desenvolupament d'aplicacions. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Entra en el mode de proves de regressió, que utilitza una cadena especial en què els blocs poden resoldre's al moment. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. Error: La transacció ha estat rebutjada. Això pot passar si alguna de les monedes del teu moneder ja s'han gastat, com si haguesis usat una copia de l'arxiu wallet.dat i s'haguessin gastat monedes de la copia però sense marcar com gastades en aquest. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Error: Aquesta transacció requereix una comissió d'almenys %s degut al seu import, complexitat o per l'ús de fons recentment rebuts! - + Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Executa l'ordre quan es rebi un avís rellevant o veiem una forquilla molt llarga (%s en cmd és reemplaçat per un missatge) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Executa una ordre quan una transacció del moneder canviï (%s en cmd es canvia per TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Executa l'ordre quan el millor bloc canviï (%s en cmd es reemplaça per un resum de bloc) - + Fees smaller than this are considered zero fee (for transaction creation) (default: Les comissions inferiors que aquesta es consideren comissió zero (per a la creació de la transacció) (per defecte: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) Buida l'activitat de la base de dades de la memòria disponible al registre del disc cada <n> megabytes (per defecte: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. - + How thorough the block verification of -checkblocks is (0-4, default: 3) Com d'exhaustiva és la verificació de blocs de -checkblocks is (0-4, per defecte: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. En aquest mode -genproclimit controla quants blocs es generen immediatament. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Nombre de segons abans de reconectar amb connexions errònies (per defecte: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Informació de la depuració de sortida (per defecte: 0, proporcionar <category> és opcional) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Defineix la mida màxima de transaccions d'alta prioritat / baixa comissió en bytes (per defecte: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Defineix el nombre de fils de verificació d'scripts (%u a %d, 0 = auto, <0 = deixa tants nuclis lliures, per defecte: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) Defineix el límit de processadors quan està activada la generació (-1 = sense límit, per defecte: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Aquesta és una versió de pre-llançament - utilitza-la sota la teva responsabilitat - No usar per a minería o aplicacions de compra-venda - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Utilitza un proxy SOCKS5 apart per arribar a iguals a través de serveis de Tor ocults (per defecte: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Avís: el -paytxfee és molt elevat! Aquesta és la comissió de transacció que pagareu si envieu una transacció. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Avís: la xarxa no sembla que hi estigui plenament d'acord. Alguns miners sembla que estan experimentant problemes. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Avís: sembla que no estem plenament d'acord amb els nostres iguals! Podria caler que actualitzar l'aplicació, o potser que ho facin altres nodes. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Avís: error en llegir el fitxer wallet.dat! Totes les claus es llegeixen correctament, però hi ha dades de transaccions o entrades de la llibreta d'adreces absents o bé son incorrectes. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Avís: el fitxer wallet.dat és corrupte, dades rescatades! L'arxiu wallet.dat original ha estat desat com wallet.{estampa_temporal}.bak al directori %s; si el teu balanç o transaccions son incorrectes hauries de restaurar-lo de un backup. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4178,1067 +4178,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. Si el fitxer no existeix, creeu-lo amb els permís owner-readable-only. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + (default: 1) (per defecte: 1) - + (default: wallet.dat) (per defecte: wallet.dat) - + <category> can be: <category> pot ser: - + Accept command line and JSON-RPC commands Accepta la línia d'ordres i ordres JSON-RPC - + Accept connections from outside (default: 1 if no -proxy or -connect) Accepta connexions de fora (per defecte: 1 si no -proxy o -connect) - + Add a node to connect to and attempt to keep the connection open Afegeix un node per a connectar-s'hi i intenta mantenir-hi la connexió oberta - + Allow DNS lookups for -addnode, -seednode and -connect Permet consultes DNS per a -addnode, -seednode i -connect - + Allow JSON-RPC connections from specified IP address Permetre connexions JSON-RPC d'adreces IP específiques - + Already have that input. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat Intenta recuperar les claus privades d'un fitxer wallet.dat corrupte - + Block creation options: Opcions de la creació de blocs: - + Can't denominate: no compatible inputs left. - + Cannot downgrade wallet No es pot reduir la versió del moneder - + Cannot resolve -bind address: '%s' No es pot resoldre l'adreça -bind: '%s' - + Cannot resolve -externalip address: '%s' No es pot resoldre l'adreça -externalip: '%s' - + Cannot write default address No es pot escriure l'adreça per defecte - + Clear list of wallet transactions (diagnostic tool; implies -rescan) Neteja la llista de transaccions del moneder (eina de diagnòstic; implica -rescan) - + Collateral is not valid. - + Collateral not valid. - + Connect only to the specified node(s) Connecta només al(s) node(s) especificats - + Connect through SOCKS proxy Connecta a través d'un proxy SOCKS - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Connecta al node per obtenir les adreces de les connexions, i desconnecta - + Connection options: Opcions de connexió: - + Corrupted block database detected S'ha detectat una base de dades de blocs corrupta - + Dash Core Daemon - + Dash Core RPC client version - + Darksend is disabled. - + Darksend options: - + Debugging/Testing options: Opcions de depuració/proves: - + Disable safemode, override a real safe mode event (default: 0) Inhabilia el mode segur (safemode), invalida un esdeveniment de mode segur real (per defecte: 0) - + Discover own IP address (default: 1 when listening and no -externalip) Descobreix la pròpia adreça IP (per defecte: 1 quan escoltant i no -externalip) - + Do not load the wallet and disable wallet RPC calls No carreguis el moneder i inhabilita les crides RPC del moneder - + Do you want to rebuild the block database now? Voleu reconstruir la base de dades de blocs ara? - + Done loading Ha acabat la càrrega - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) - + Entries are full. - + Error connecting to masternode. - + Error initializing block database Error carregant la base de dades de blocs - + Error initializing wallet database environment %s! Error inicialitzant l'entorn de la base de dades del moneder %s! - + Error loading block database Error carregant la base de dades del bloc - + Error loading wallet.dat Error en carregar wallet.dat - + Error loading wallet.dat: Wallet corrupted Error en carregar wallet.dat: Moneder corrupte - + Error loading wallet.dat: Wallet requires newer version of Dash - + Error opening block database Error en obrir la base de dades de blocs - + Error reading from database, shutting down. - + Error recovering public key. - + Error Error - + Error: Disk space is low! Error: Espai al disc baix! - + Error: Wallet locked, unable to create transaction! Error: El moneder està bloquejat, no és possible crear la transacció! - + Error: You already have pending entries in the Darksend pool - + Error: system error: Error: error de sistema: - + Failed to listen on any port. Use -listen=0 if you want this. Ha fallat escoltar a qualsevol port. Feu servir -listen=0 si voleu fer això. - + Failed to read block info Ha fallat la lectura de la informació del bloc - + Failed to read block Ha fallat la lectura del bloc - + Failed to sync block index Ha fallat la sincronització de l'índex de blocs - + Failed to write block index Ha fallat la escriptura de l'índex de blocs - + Failed to write block info Ha fallat la escriptura de la informació de bloc - + Failed to write block Ha fallat l'escriptura del bloc - + Failed to write file info Ha fallat l'escriptura de la informació de fitxer - + Failed to write to coin database Ha fallat l'escriptura de la basse de dades de monedes - + Failed to write transaction index Ha fallat l'escriptura de l'índex de transaccions - + Failed to write undo data Ha fallat el desfer de dades - + Fee per kB to add to transactions you send Comissió per kB per afegir a les transaccions que envieu - + Fees smaller than this are considered zero fee (for relaying) (default: Les comissions inferiors que aquesta es consideren comissions zero (a efectes de transmissió) (per defecte: - + Force safe mode (default: 0) Força el mode segur (per defecte: 0) - + Generate coins (default: 0) Genera monedes (per defecte: 0) - + Get help for a command Obté ajuda d'una ordre. - + How many blocks to check at startup (default: 288, 0 = all) Quants blocs s'han de confirmar a l'inici (per defecte: 288, 0 = tots) - + If <category> is not supplied, output all debugging information. Si no se subministra <category>, mostra tota la informació de depuració. - + Ignore masternodes less than version (example: 70050; default : 0) - + Importing... S'està important... - + Imports blocks from external blk000??.dat file Importa blocs de un fitxer blk000??.dat extern - + Incompatible mode. - + Incompatible version. - + Incorrect or no genesis block found. Wrong datadir for network? No s'ha trobat el bloc de gènesi o és incorrecte. El directori de dades de la xarxa és incorrecte? - + Information Informació - + Initialization sanity check failed. Dash Core is shutting down. - + Input is not valid. - + InstantX options: - + Insufficient funds Balanç insuficient - + Insufficient funds. - + Invalid -onion address: '%s' Adreça -onion no vàlida: '%s' - + Invalid -proxy address: '%s' Adreça -proxy invalida: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' Import no vàlid per a -minrelaytxfee=<amount>: «%s» - + Invalid amount for -mintxfee=<amount>: '%s' Import no vàlid per a -mintxfee=<amount>: «%s» - + Invalid amount for -paytxfee=<amount>: '%s' Import no vàlid per a -paytxfee=<amount>: «%s» - + Invalid amount Import no vàlid - + Invalid masternodeprivkey. Please see documenation. - + Invalid private key. - + Invalid script detected. - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. - + Last successful darksend action was too recent. - + Limit size of signature cache to <n> entries (default: 50000) Mida límit de la memòria cau de signatura per a <n> entrades (per defecte: 50000) - + List commands Llista d'ordres - + Listen for connections on <port> (default: 9999 or testnet: 19999) - + Loading addresses... S'estan carregant les adreces... - + Loading block index... S'està carregant l'índex de blocs... - + Loading masternode list... - + Loading wallet... (%3.2f %%) - + Loading wallet... S'està carregant el moneder... - + Log transaction priority and fee per kB when mining blocks (default: 0) Registra la prioritat de transacció i comissió per kB en minar blocs (per defecte: 0) - + Maintain a full transaction index (default: 0) Manté l'índex sencer de transaccions (per defecte: 0) - + Maintain at most <n> connections to peers (default: 125) Manté com a molt <n> connexions a iguals (per defecte: 125) - + Masternode options: - + Masternode queue is full. - + Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Mida màxima del buffer de recepció per a cada connexió, <n>*1000 bytes (default: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Mida màxima del buffer d'enviament per a cada connexió, <n>*1000 bytes (default: 5000) - + Missing input transaction information. - + No compatible masternode found. - + No funds detected in need of denominating. - + No masternodes detected. - + No matching denominations found for mixing. - + Non-standard public key detected. - + Not compatible with existing transactions. - + Not enough file descriptors available. No hi ha suficient descriptors de fitxers disponibles. - + Not in the masternode list. - + Only accept block chain matching built-in checkpoints (default: 1) Només accepta cadenes de blocs que coincideixin amb els punts de prova (per defecte: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Només connecta als nodes de la xarxa <net> (IPv4, IPv6 o Tor) - + Options: Opcions: - + Password for JSON-RPC connections Contrasenya per a connexions JSON-RPC - + Prepend debug output with timestamp (default: 1) Posa davant de la sortida de depuració una marca horària (per defecte: 1) - + Print block on startup, if found in block index Imprimeix el block a l'inici, si es troba l'índex de blocs - + Print block tree on startup (default: 0) Imprimeix l'arbre de blocs a l'inici (per defecte: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opcions RPC SSL: (veieu el wiki del Bitcoin per a instruccions de configuració de l'SSL) - + RPC client options: Opcions del client RPC: - + RPC server options: Opcions del servidor RPC: - + Randomly drop 1 of every <n> network messages Descarta a l'atzar 1 de cada <n> missatges de la xarxa - + Randomly fuzz 1 of every <n> network messages Introdueix incertesa en 1 de cada <n> missatges de la xarxa - + Rebuild block chain index from current blk000??.dat files Reconstrueix l'índex de la cadena de blocs dels fitxers actuals blk000??.dat - + Rescan the block chain for missing wallet transactions Reescaneja la cadena de blocs en les transaccions de moneder perdudes - + Rescanning... S'està reescanejant... - + Run a thread to flush wallet periodically (default: 1) Executa un fil per buidar el moneder periòdicament (per defecte: 1) - + Run in the background as a daemon and accept commands Executa en segon pla com a programa dimoni i accepta ordres - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opcions SSL: (veure la Wiki de Bitcoin per a instruccions de configuració SSL) - + Select SOCKS version for -proxy (4 or 5, default: 5) Selecciona la versió de SOCKS del -proxy (4 o 5, per defecte: 5) - + Send command to Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) Envia ordres al node en execució a <ip> (per defecte: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Envia informació de traça/depuració a la consola en comptes del fitxer debug.log - + Server certificate file (default: server.cert) Fitxer del certificat de servidor (per defecte: server.cert) - + Server private key (default: server.pem) Clau privada del servidor (per defecte: server.pem) - + Session not complete! - + Session timed out (30 seconds), please resubmit. - + Set database cache size in megabytes (%d to %d, default: %d) Defineix la mida de la memòria cau de la base de dades en megabytes (%d a %d, per defecte: %d) - + Set key pool size to <n> (default: 100) Defineix el límit de nombre de claus a <n> (per defecte: 100) - + Set maximum block size in bytes (default: %d) Defineix la mida màxim del bloc en bytes (per defecte: %d) - + Set minimum block size in bytes (default: 0) Defineix una mida mínima de bloc en bytes (per defecte: 0) - + Set the masternode private key - + Set the number of threads to service RPC calls (default: 4) Estableix el nombre de fils per atendre trucades RPC (per defecte: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) Defineix el senyal DB_PRIVATE en l'entorn db del moneder (per defecte: 1) - + Show all debugging options (usage: --help -help-debug) Mostra totes les opcions de depuració (ús: --help --help-debug) - + Show benchmark information (default: 0) Mostra la informació del test de referència (per defecte: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Redueix el fitxer debug.log durant l'inici del client (per defecte: 1 quan no -debug) - + Signing failed. - + Signing timed out, please resubmit. - + Signing transaction failed Ha fallat la signatura de la transacció - - Specify configuration file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Especifica el temps limit per a un intent de connexió en mil·lisegons (per defecte: 5000) - + Specify data directory Especifica el directori de dades - + Specify masternode configuration file (default: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) - + Specify wallet file (within data directory) Especifica un fitxer de moneder (dins del directori de dades) - + Specify your own public address Especifiqueu la vostra adreça pública - + Spend unconfirmed change when sending transactions (default: 1) Gasta el canvi sense confirmar en enviar transaccions (per defecte: 1) - + Start Dash Core Daemon - + System error: Error de sistema: - + This help message Aquest misatge d'ajuda - + This is intended for regression testing tools and app development. Això es així per a eines de proves de regressió per al desenvolupament d'aplicacions. - + This is not a masternode. - + Threshold for disconnecting misbehaving peers (default: 100) Límit per a desconectar connexions errònies (per defecte: 100) - + To use the %s option Utilitza l'opció %s - + Transaction amount too small Import de la transacció massa petit - + Transaction amounts must be positive Els imports de les transaccions han de ser positius - + Transaction created successfully. - + Transaction fees are too high. - + Transaction not valid. - + Transaction too large La transacció és massa gran - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i S'ha demanat una versió desconeguda de -socks proxy: %i - + Unknown network specified in -onlynet: '%s' Xarxa desconeguda especificada a -onlynet: '%s' - + Upgrade wallet to latest format Actualitza el moneder a l'últim format - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): - + Usage: Ús: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) - + Use OpenSSL (https) for JSON-RPC connections Utilitza OpenSSL (https) per a connexions JSON-RPC - + Use UPnP to map the listening port (default: 0) Utilitza UPnP per a mapejar els ports d'escolta (per defecte: 0) - + Use UPnP to map the listening port (default: 1 when listening) Utilitza UPnP per a mapejar els ports d'escolta (per defecte: 1 quan s'escolta) - + Use the test network Utilitza la xarxa de prova - + Username for JSON-RPC connections Nom d'usuari per a connexions JSON-RPC - + Value more than Darksend pool maximum allows. - + Verifying blocks... S'estan verificant els blocs... - + Verifying wallet... S'està verificant el moneder... - + Wait for RPC server to start Espereu el servidor RPC per començar - + Wallet %s resides outside data directory %s El moneder %s resideix fora del directori de dades %s - + Wallet is locked. - + Wallet needed to be rewritten: restart Dash to complete - + Wallet options: Opcions de moneder: - + Warning Avís - + Warning: Deprecated argument -debugnet ignored, use -debug=net Avís: argument obsolet -debugnet ignorat, feu servir -debug=net - + Warning: This version is obsolete, upgrade required! Avís: aquesta versió està obsoleta. És necessari actualitzar-la! @@ -5247,27 +5247,27 @@ Si el fitxer no existeix, creeu-lo amb els permís owner-readable-only. - + You need to rebuild the database using -reindex to change -txindex Cal que reconstruïu la base de dades fent servir -reindex per canviar -txindex - + Zapping all transactions from wallet... Se suprimeixen totes les transaccions del moneder... - + on startup a l'inici de l'aplicació - + version versió - + wallet.dat corrupt, salvage failed El fitxer wallet.data és corrupte. El rescat de les dades ha fallat diff --git a/src/qt/locale/darkcoin_cmn.ts b/src/qt/locale/dash_cmn.ts similarity index 91% rename from src/qt/locale/darkcoin_cmn.ts rename to src/qt/locale/dash_cmn.ts index 8667cd9f54..dac806bc46 100644 --- a/src/qt/locale/darkcoin_cmn.ts +++ b/src/qt/locale/dash_cmn.ts @@ -276,7 +276,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! 警告:如果把钱包加​​密后又忘记密码,你就会从此<b>失去所有的暗黑币了</b>! @@ -292,7 +292,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. 暗黑币软体现在要关闭,以完成加密过程。请注意,加密钱包不能完全防止恶意软件入侵你的电脑盗取你的暗黑币。 @@ -398,7 +398,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Request payments (generates QR codes and darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) 要求付款(生成二维码和暗黑币付款协议的URI) @@ -596,7 +596,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Open a darkcoin: URI or payment request + Open a dash: URI or payment request 打开暗黑币:网页或付款请求 @@ -780,7 +780,7 @@ Address: %4 钱包已被<b>加密</b>,当前为<b>锁定</b>状态 - + A fatal error occurred. Dash can no longer continue safely and will quit. 发生严重错误。暗黑币不能继续提供安全性,将退出。 @@ -1633,7 +1633,7 @@ Address: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2062,7 +2062,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler 无法启动暗黑币程序:click-to-pay handler @@ -2145,35 +2145,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash 暗黑幣 - + Error: Specified data directory "%1" does not exist. 错误:指定的数据目录“%1”不存在。 - + Error: Cannot parse configuration file: %1. Only use key=value syntax. 错误: 无法解析配置文件: %1. 只有钥匙=重要的私匙. - + Error reading masternode configuration file: %1 读取主节点配置文件出错:%1 - + Error: Invalid combination of -regtest and -testnet. 错误:无效的 -regtest 与 -testnet 结合体。 - + Dash Core didn't yet exit safely... 暗黑币核心还未安全退出... @@ -2983,7 +2983,7 @@ XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. @@ -3921,13 +3921,13 @@ XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3938,1314 +3938,1314 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) 可接受的密码 (默认: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s 建立RPC服务时发生了一个错误%u 正在监听 IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s 建立RPC服务时发生了一个错误%u 正在监听 IPv6,失败回滚至IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 与提供地址绑定,持续监听。使用[host]:标记IPv6端口 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. 不能获得锁定的数据目录 %s. 暗黑币核心可能已经在运行。 - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) 禁止所有主节点和与匿名发送相关功能(0-1,默认:0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) 激活立即支付,显示锁定交易的确认数(bool, 默认:true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - + Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) - + Fees smaller than this are considered zero fee (for transaction creation) (default: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. - + How thorough the block verification of -checkblocks is (0-4, default: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + Output debugging information (default: 0, supplying <category> is optional) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + (default: 1) (默认: 1) - + (default: wallet.dat) (默认: wallet.dat) - + <category> can be: <category> 可以是: - + Accept command line and JSON-RPC commands 接受命令行以及JSON-RPC命令 - + Accept connections from outside (default: 1 if no -proxy or -connect) 接受来自外部链接 (默认: 1 if no -proxy or -connect) - + Add a node to connect to and attempt to keep the connection open 添加一个可连接节点,并尝试保持连接开放。 - + Allow DNS lookups for -addnode, -seednode and -connect 允许DNS查找 -新节点, -子节点 和 -链接 - + Allow JSON-RPC connections from specified IP address 允许从指定IP地址连接JSON-RPC - + Already have that input. 输入已存在。 - + Always query for peer addresses via DNS lookup (default: 0) 总是通过DNS查询对等地址(默认: 0) - + Attempt to recover private keys from a corrupt wallet.dat 尝试从已损坏的钱包文件中找回私钥 - + Block creation options: 数据块创建选项: - + Can't denominate: no compatible inputs left. 不能面额化:没有可匹配的输入。 - + Cannot downgrade wallet 不能降级钱包 - + Cannot resolve -bind address: '%s' 不能解决 -绑定地址:'%s' - + Cannot resolve -externalip address: '%s' 不能解决 -外部ip地址:'%s' - + Cannot write default address 不能写入默认钱包 - + Clear list of wallet transactions (diagnostic tool; implies -rescan) 清除钱包交易列表 (检测工具; implies -rescan) - + Collateral is not valid. 并行是无效的。 - + Collateral not valid. 并行无效。 - + Connect only to the specified node(s) 连接至指定(多个)节点 - + Connect through SOCKS proxy 通过SOCKS代理连接 - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) 连接至JSON-RPC<端口>(默认:9998 或 测试网络:19998) - + Connect to KeePassHttp on port <port> (default: 19455) 连接至 KeePassHttp 端口 <port> (默认: 19455) - + Connect to a node to retrieve peer addresses, and disconnect 连接至节点来找回对等地址和断开链接 - + Connection options: 连接选项: - + Corrupted block database detected 已找到损坏的数据块 - + Dash Core Daemon 暗黑币核心后台程序 - + Dash Core RPC client version 暗黑币核心RPC客户端版本 - + Darksend is disabled. 匿名发送未激活。 - + Darksend options: 匿名发送选项: - + Debugging/Testing options: 排除故障/测试 选项: - + Disable safemode, override a real safe mode event (default: 0) 未激活安全模式,重新写入真正安全模式项目(默认: 0) - + Discover own IP address (default: 1 when listening and no -externalip) 发现私有IP地址(默认:1 当监听时没有外部IP) - + Do not load the wallet and disable wallet RPC calls - + Do you want to rebuild the block database now? - + Done loading 读取完成 - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) 激活客户端,使其作为主节点(0-1, 默认:0) - + Entries are full. 参赛作品都满了。 - + Error connecting to masternode. - + Error initializing block database 正在初始化数据库块错误 - + Error initializing wallet database environment %s! 正在初始钱包数据库环境错误 %s! - + Error loading block database 读取数据库块错误 - + Error loading wallet.dat 读取钱包文件错误 - + Error loading wallet.dat: Wallet corrupted 读取钱包文件错误:钱包已损坏 - + Error loading wallet.dat: Wallet requires newer version of Dash 读取钱包文件错误:需要较为新版本的暗黑币程序来读取钱包 - + Error opening block database 正在打开数据库块错误 - + Error reading from database, shutting down. 读取数据库错误,正在关闭。 - + Error recovering public key. - + Error 错误 - + Error: Disk space is low! - + Error: Wallet locked, unable to create transaction! - + Error: You already have pending entries in the Darksend pool - + Error: system error: 错误:系统错误: - + Failed to listen on any port. Use -listen=0 if you want this. 监听端口失败。如果想使用此项 修改-listen=0 - + Failed to read block info 读取数据块信息失败 - + Failed to read block 读取数据块失败 - + Failed to sync block index 同步数据块索引失败 - + Failed to write block index 写入数据块索引失败 - + Failed to write block info 写入数据块信息失败 - + Failed to write block 写入数据块失败 - + Failed to write file info 写入文件信息失败 - + Failed to write to coin database 写入币的数据库失败 - + Failed to write transaction index 写入交易索引失败 - + Failed to write undo data 写入撤回数据失败 - + Fee per kB to add to transactions you send - + Fees smaller than this are considered zero fee (for relaying) (default: - + Force safe mode (default: 0) - + Generate coins (default: 0) - + Get help for a command - + How many blocks to check at startup (default: 288, 0 = all) - + If <category> is not supplied, output all debugging information. - + Ignore masternodes less than version (example: 70050; default : 0) - + Importing... 正在导入... - + Imports blocks from external blk000??.dat file - + Incompatible mode. 不兼容的模式。 - + Incompatible version. 不兼容的版本。 - + Incorrect or no genesis block found. Wrong datadir for network? - + Information 信息 - + Initialization sanity check failed. Dash Core is shutting down. 初始化检查失败。暗黑币核心正在关闭。 - + Input is not valid. 输入是无效的。 - + InstantX options: 立即支付 选项: - + Insufficient funds 存款不足 - + Insufficient funds. 存款不足。 - + Invalid -onion address: '%s' 无效-洋葱头地址:'%s' - + Invalid -proxy address: '%s' 无效-代理地址:'%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' - + Invalid amount 无效金额 - + Invalid masternodeprivkey. Please see documenation. 无效主节点私钥。请查阅文件材料。 - + Invalid private key. 无效私钥。 - + Invalid script detected. 检测到无效脚本。 - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. 最后一次匿名发送刚刚完成。 - + Last successful darksend action was too recent. 最后一次成功匿名发送刚刚完成。 - + Limit size of signature cache to <n> entries (default: 50000) - + List commands 命令列表 - + Listen for connections on <port> (default: 9999 or testnet: 19999) Listen for connections on <port> (default: 9999 or testnet: 19999) - + Loading addresses... 正在读取地址... - + Loading block index... 正在读取数据块索引... - + Loading masternode list... - + Loading wallet... (%3.2f %%) 正在读取钱包...(%3.2f%%) - + Loading wallet... 正在读取钱包... - + Log transaction priority and fee per kB when mining blocks (default: 0) - + Maintain a full transaction index (default: 0) 保持全部的交易索引(默认: 0) - + Maintain at most <n> connections to peers (default: 125) 保持对节点最高的 <n>连接数 (默认: 125) - + Masternode options: 主节点选项: - + Masternode queue is full. 主节点列队已满。 - + Masternode: 主节点: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Missing input transaction information. 丢失输入交易信息。 - + No compatible masternode found. 没有找到任何兼容的主节点。 - + No funds detected in need of denominating. 在面额化过程中没有检测到所需的资金。 - + No masternodes detected. 没有检测到任何主节点。 - + No matching denominations found for mixing. 对于混淆处理,没有找到匹配的面额资金。 - + Non-standard public key detected. 检测到非标准的公钥。 - + Not compatible with existing transactions. 与已存在交易不匹配。 - + Not enough file descriptors available. 文件说明符不可用 - + Not in the masternode list. 在主节点列表中不存在。 - + Only accept block chain matching built-in checkpoints (default: 1) 只接受与镶入检验点匹配的数据块链 (默认: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) 在网络中只连接至节点 <net> (IPv4, IPv6 or Tor) - + Options: 选项: - + Password for JSON-RPC connections JSON-RPC连接密码 - + Prepend debug output with timestamp (default: 1) 通过时间标记预先调试输出 (默认: 1) - + Print block on startup, if found in block index 如果在块索引中找到,在启动时打印块 - + Print block tree on startup (default: 0) 在启动时打印块树(默认:0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) RPC SSL选项: (请在比特币维基百科查看SSL建立说明) - + RPC client options: RPC客户端选项: - + RPC server options: RPC服务器选项: - + Randomly drop 1 of every <n> network messages - + Randomly fuzz 1 of every <n> network messages - + Rebuild block chain index from current blk000??.dat files 从现在的blk000??.dat文件重新建立数据块链索引 - + Rescan the block chain for missing wallet transactions 对丢失的钱包交易重新扫描数据块链 - + Rescanning... 正在重新扫描... - + Run a thread to flush wallet periodically (default: 1) - + Run in the background as a daemon and accept commands 运行至后台并且接受命令 - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL 选项: (请在比特币维基百科查看SSL建立说明) - + Select SOCKS version for -proxy (4 or 5, default: 5) 为-代理 选择SOCKS版本 (4 or 5, 默认: 5) - + Send command to Dash Core 发送命令至暗黑币核心 - + Send commands to node running on <ip> (default: 127.0.0.1) 发送命令至运行于 <ip>的节点 (默认: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file 发送追踪/debug信息而并非debug.log文件至控制台 - + Server certificate file (default: server.cert) 服务器证书文件(默认: server.cert) - + Server private key (default: server.pem) 服务器私钥 (默认: server.pem) - + Session not complete! 对话未完成! - + Session timed out (30 seconds), please resubmit. 对话超时 (30 秒),请重新递交。 - + Set database cache size in megabytes (%d to %d, default: %d) 以兆字节为单位设置缓存数据大小 (%d to %d, 默认: %d) - + Set key pool size to <n> (default: 100) 设置钥匙池大小至<n> (默认: 100) - + Set maximum block size in bytes (default: %d) 以字节为单位设置最大的块(默认: 0) - + Set minimum block size in bytes (default: 0) 以字节为单位设置最小的块(默认: 0) - + Set the masternode private key 设置主节点私钥 - + Set the number of threads to service RPC calls (default: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) - + Show all debugging options (usage: --help -help-debug) 显示所有debug选项(使用: --help -help-debug) - + Show benchmark information (default: 0) 显示基准信息(默认: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) 客户启动时缩小debug.log文件(默认: 1 when no -debug) - + Signing failed. 签名失败。 - + Signing timed out, please resubmit. 签名超时,请重新递交。 - + Signing transaction failed 交易签名失败 - - Specify configuration file (default: darkcoin.conf) - 指定配置文件(默认: darkcoin.conf) + + Specify configuration file (default: dash.conf) + 指定配置文件(默认: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) 指定连接超时毫秒数 (默认: 5000) - + Specify data directory 指定数据目录 - + Specify masternode configuration file (default: masternode.conf) 指定主节点配置文件 (默认: masternode.conf) - - Specify pid file (default: darkcoind.pid) - 指定pid 文件 (默认: darkcoind.pid) + + Specify pid file (default: dashd.pid) + 指定pid 文件 (默认: dashd.pid) - + Specify wallet file (within data directory) 指定钱包文件(通过数据目录) - + Specify your own public address 指定你个人公开地址 - + Spend unconfirmed change when sending transactions (default: 1) 发送交易时花费未确认的费用(默认: 1) - + Start Dash Core Daemon 启动暗黑币核心后台程序 - + System error: 系统错误: - + This help message 此帮助信息 - + This is intended for regression testing tools and app development. 这被用来作为回归测试工具和app的开发。 - + This is not a masternode. 这并不是主节点。 - + Threshold for disconnecting misbehaving peers (default: 100) 断开的作弊节点临界值(默认: 100) - + To use the %s option 使用%s选项 - + Transaction amount too small 交易额过小 - + Transaction amounts must be positive 交易额一定要真实有效 - + Transaction created successfully. 交易创建成功。 - + Transaction fees are too high. 交易费用过高。 - + Transaction not valid. 交易无效。 - + Transaction too large 交易过大 - + Unable to bind to %s on this computer (bind returned error %s) 无法绑定%s此计算机 (绑定返回错误 %s) - + Unable to sign masternode payment winner, wrong key? 无法标记主节点奖励得主,错误钥匙? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i 未知-socks代理版本请求:%i - + Unknown network specified in -onlynet: '%s' - + Upgrade wallet to latest format 升级钱包至最新版本 - - Usage (deprecated, use darkcoin-cli): - 用量(不赞成, 使用 darkcoin-cli): + + Usage (deprecated, use dash-cli): + 用量(不赞成, 使用 dash-cli): - + Usage: 使用: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) 使用N个独立主节点匿名处理资金(2-8,默认:2) - + Use OpenSSL (https) for JSON-RPC connections 对JSON-RPC链接使用OpenSSL(https) - + Use UPnP to map the listening port (default: 0) 使用UPnP来映射监听端口(默认:0) - + Use UPnP to map the listening port (default: 1 when listening) 使用UPnP来映射监听端口(默认:1为监听中) - + Use the test network 使用测试网络 - + Username for JSON-RPC connections 链接JSON-RPC的用户名 - + Value more than Darksend pool maximum allows. 数值超过匿名发送池所允许的最大数。 - + Verifying blocks... 验证数据块中... - + Verifying wallet... 验证钱包中... - + Wait for RPC server to start 等待RPC服务器启动 - + Wallet %s resides outside data directory %s 钱包 %s 属于外部数据目录 %s - + Wallet is locked. 钱包被锁。 - + Wallet needed to be rewritten: restart Dash to complete 钱包需要重新写入:请重启Dash来完成过程 - + Wallet options: 钱包选项: - + Warning 警告 - + Warning: Deprecated argument -debugnet ignored, use -debug=net 警告:忽略使用参数-debugnet ,使用-debug =net - + Warning: This version is obsolete, upgrade required! 警告:版本过低,请升级! @@ -5254,27 +5254,27 @@ If the file does not exist, create it with owner-readable-only file permissions. - + You need to rebuild the database using -reindex to change -txindex 你需要通过使用-reindex改变-txindex来重新建立数据库 - + Zapping all transactions from wallet... 从钱包正在展开所有交易记录... - + on startup 正在启动 - + version 版本 - + wallet.dat corrupt, salvage failed 钱包数据损坏,恢复失败 diff --git a/src/qt/locale/darkcoin_cs.ts b/src/qt/locale/dash_cs.ts similarity index 91% rename from src/qt/locale/darkcoin_cs.ts rename to src/qt/locale/dash_cs.ts index 6fd22148db..db8c9a12be 100644 --- a/src/qt/locale/darkcoin_cs.ts +++ b/src/qt/locale/dash_cs.ts @@ -275,7 +275,7 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! @@ -291,7 +291,7 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. @@ -397,7 +397,7 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open - Request payments (generates QR codes and darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) @@ -595,7 +595,7 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open - Open a darkcoin: URI or payment request + Open a dash: URI or payment request @@ -779,7 +779,7 @@ Adresa: %4 Peněženka je <b>zašifrovaná</b> a momentálně <b>zamčená</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. @@ -1631,7 +1631,7 @@ Adresa: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2059,7 +2059,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler @@ -2142,35 +2142,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash - + Error: Specified data directory "%1" does not exist. Chyba: Zadaný adresář pro data „%1“ neexistuje. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Chyba: Nemohu zpracovat konfigurační soubor: %1. Používej pouze syntaxi klíč=hodnota. - + Error reading masternode configuration file: %1 - + Error: Invalid combination of -regtest and -testnet. Chyba: Neplatná kombinace -regtest a -testnet. - + Dash Core didn't yet exit safely... @@ -2979,7 +2979,7 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. @@ -3916,13 +3916,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3933,247 +3933,247 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Akceptovatelné šifry (výchozí: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Při nastavování naslouchacího RPC portu %u pro IPv6 nastala chyba, vracím se k IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Poslouchat na zadané adrese. Pro zápis IPv6 adresy použij notaci [adresa]:port - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) Kontinuálně omezovat bezpoplatkové transakce na <n>*1000 bajtů za minutu (výchozí: 15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. Přepnout do módu testování regresí, který používá speciální řetězec, ve kterém jsou mohou být bloky okamžitě vyřešeny. Je to určeno pro nástroje pro regresní testování a vyvíjení aplikací. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Přepnout do módu testování regresí, který používá speciální řetězec, ve kterém mohou být bloky okamžitě vyřešeny. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. Chyba: Transakce byla odmítnuta! Tohle může nastat, pokud nějaké mince z tvé peněženky už jednou byly utraceny, například pokud používáš kopii souboru wallet.dat a mince byly utraceny v druhé kopii, ale nebyly označeny jako utracené v této. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Chyba: Tahle transakce vyžaduje transakční poplatek nejméně %s kvůli velikosti zasílané částky, komplexnosti nebo použití nedávno přijatých mincí! - + Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Spustit příkaz, když přijde relevantní upozornění nebo když dojde k opravdu dlouhému rozštěpení řetezce bloků (%s se v příkazu nahradí zprávou) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Spustit příkaz, když se objeví transakce týkající se peněženky (%s se v příkazu nahradí za TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Spustit příkaz, když se změní nejlepší blok (%s se v příkazu nahradí hashem bloku) - + Fees smaller than this are considered zero fee (for transaction creation) (default: Poplatky menší než tato hodnota jsou považovány za nulové (pro vytváření transakcí) (výchozí: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) Promítnout databázovou aktivitu z paměťového prostoru do záznamu na disku každých <n> megabajtů (výchozí: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. - + How thorough the block verification of -checkblocks is (0-4, default: 3) Jak moc důkladná má být verifikace bloků -checkblocks (0-4, výchozí: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. V tomto módu -genproclimit určuje, kolik bloků je vygenerováno okamžitě. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Doba ve vteřinách, po kterou se nebudou moci zlobivé uzly znovu připojit (výchozí: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Tisknout ladicí informace (výchozí: 0, zadání <category> je volitelné) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Nastavit maximální velikost prioritních/nízkopoplatkových transakcí v bajtech (výchozí: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) Nastavit omezení procesoru pro zapnuté generování (-1 = bez omezení, výchozí: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Tohle je testovací verze – používej ji jen na vlastní riziko, ale rozhodně ji nepoužívej k těžbě nebo pro obchodní aplikace - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Použít samostatnou SOCKS5 proxy ke spojení s peery přes skryté služby v Toru (výchozí: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Upozornění: -paytxfee je nastaveno velmi vysoko! Toto je transakční poplatek, který zaplatíš za každou poslanou transakci. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Upozornění: Síť podle všeho není v konzistentním stavu. Někteří těžaři jsou zřejmě v potížích. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Upozornění: Nesouhlasím zcela se svými protiuzly! Možná potřebuji aktualizovat nebo ostatní uzly potřebují aktualizovat. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Upozornění: nastala chyba při čtení souboru wallet.dat! Všechny klíče se přečetly správně, ale data o transakcích nebo záznamy v adresáři mohou chybět či být nesprávné. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Upozornění: soubor wallet.dat je poškozený, data jsou však zachráněna! Původní soubor wallet.dat je uložený jako wallet.{timestamp}.bak v %s. Pokud je stav tvého účtu nebo transakce nesprávné, zřejmě bys měl obnovit zálohu. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4182,1067 +4182,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. Pokud konfigurační soubor ještě neexistuje, vytvoř ho tak, aby ho mohl číst pouze vlastník. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + (default: 1) (výchozí: 1) - + (default: wallet.dat) (výchozí: wallet.dat) - + <category> can be: <category> může být: - + Accept command line and JSON-RPC commands Akceptovat příkazy z příkazové řádky a přes JSON-RPC - + Accept connections from outside (default: 1 if no -proxy or -connect) Přijímat spojení zvenčí (výchozí: 1, pokud není zadáno -proxy nebo -connect) - + Add a node to connect to and attempt to keep the connection open Přidat uzel, ke kterému se připojit a snažit se spojení udržet - + Allow DNS lookups for -addnode, -seednode and -connect Povolit DNS dotazy pro -addnode (přidání uzlu), -seednode a -connect (připojení) - + Allow JSON-RPC connections from specified IP address Povolit JSON-RPC spojení ze specifikované IP adresy - + Already have that input. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat Pokusit se zachránit soukromé klíče z poškozeného souboru wallet.dat - + Block creation options: Možnosti vytvoření bloku: - + Can't denominate: no compatible inputs left. - + Cannot downgrade wallet Nemohu převést peněženku do staršího formátu - + Cannot resolve -bind address: '%s' Nemohu přeložit -bind adresu: '%s' - + Cannot resolve -externalip address: '%s' Nemohu přeložit -externalip adresu: '%s' - + Cannot write default address Nemohu napsat výchozí adresu - + Clear list of wallet transactions (diagnostic tool; implies -rescan) Smazat seznam transakcí peněženky (diagnostický nástroj; vynutí -rescan) - + Collateral is not valid. - + Collateral not valid. - + Connect only to the specified node(s) Připojit se pouze k zadanému uzlu (příp. zadaným uzlům) - + Connect through SOCKS proxy Připojit se přes SOCKS proxy - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Připojit se k uzlu, získat adresy jeho protějšků a odpojit se - + Connection options: Možnosti připojení: - + Corrupted block database detected Bylo zjištěno poškození databáze bloků - + Dash Core Daemon - + Dash Core RPC client version - + Darksend is disabled. - + Darksend options: - + Debugging/Testing options: Možnosti ladění/testování: - + Disable safemode, override a real safe mode event (default: 0) Vypnout bezpečný režim (safemode), překrýt skutečnou událost bezpečného režimu (výchozí: 0) - + Discover own IP address (default: 1 when listening and no -externalip) Zjistit vlastní IP adresu (výchozí: 1, pokud naslouchá a není zadáno -externalip) - + Do not load the wallet and disable wallet RPC calls Nenačítat peněženku a vypnout její RPC volání - + Do you want to rebuild the block database now? Chceš přestavět databázi bloků hned teď? - + Done loading Načítání dokončeno - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) - + Entries are full. - + Error connecting to masternode. - + Error initializing block database Chyba při zakládání databáze bloků - + Error initializing wallet database environment %s! Chyba při vytváření databázového prostředí %s pro peněženku! - + Error loading block database Chyba při načítání databáze bloků - + Error loading wallet.dat Chyba při načítání wallet.dat - + Error loading wallet.dat: Wallet corrupted Chyba při načítání wallet.dat: peněženka je poškozená - + Error loading wallet.dat: Wallet requires newer version of Dash - + Error opening block database Chyba při otevírání databáze bloků - + Error reading from database, shutting down. - + Error recovering public key. - + Error Chyba - + Error: Disk space is low! Problém: Na disku je málo místa! - + Error: Wallet locked, unable to create transaction! Chyba: Peněženka je zamčená, nemohu vytvořit transakci! - + Error: You already have pending entries in the Darksend pool - + Error: system error: Chyba: systémová chyba: - + Failed to listen on any port. Use -listen=0 if you want this. Nepodařilo se naslouchat na žádném portu. Použij -listen=0, pokud to byl tvůj záměr. - + Failed to read block info Nepodařilo se přečíst informace o bloku - + Failed to read block Nepodařilo se přečíst blok - + Failed to sync block index Nepodařilo se sesynchronizovat index bloků - + Failed to write block index Nepodařilo se zapsat index bloků - + Failed to write block info Nepodařilo se zapsat informace o bloku - + Failed to write block Nepodařilo se zapsat blok - + Failed to write file info Nepodařilo se zapsat informace o souboru - + Failed to write to coin database Selhal zápis do databáze mincí - + Failed to write transaction index Nepodařilo se zapsat index transakcí - + Failed to write undo data Nepodařilo se zapsat data o vracení změn - + Fee per kB to add to transactions you send Poplatek za kB, který se přidá ke každé odeslané transakci - + Fees smaller than this are considered zero fee (for relaying) (default: Poplatky menší než tato hodnota jsou považovány za nulové (pro přeposílání transakcí) (výchozí: - + Force safe mode (default: 0) Vynutit bezpečný mód (výchozí: 0) - + Generate coins (default: 0) Generovat mince (výchozí: 0) - + Get help for a command Získat nápovědu pro příkaz - + How many blocks to check at startup (default: 288, 0 = all) Kolik bloků při startu zkontrolovat (výchozí: 288, 0 = všechny) - + If <category> is not supplied, output all debugging information. Pokud není <category> zadána, bude tisknout veškeré ladicí informace. - + Ignore masternodes less than version (example: 70050; default : 0) - + Importing... Importuji... - + Imports blocks from external blk000??.dat file Importovat bloky z externího souboru blk000??.dat - + Incompatible mode. - + Incompatible version. - + Incorrect or no genesis block found. Wrong datadir for network? Nemám žádný nebo jen špatný genesis blok. Není špatně nastavený datadir? - + Information Informace - + Initialization sanity check failed. Dash Core is shutting down. - + Input is not valid. - + InstantX options: - + Insufficient funds Nedostatek prostředků - + Insufficient funds. - + Invalid -onion address: '%s' Neplatná -onion adresa: '%s' - + Invalid -proxy address: '%s' Neplatná -proxy adresa: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' Neplatná částka pro -minrelaytxfee=<částka>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' Neplatná částka pro -mintxfee=<částka>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Neplatná částka pro -paytxfee=<částka>: '%s' - + Invalid amount Neplatná částka - + Invalid masternodeprivkey. Please see documenation. - + Invalid private key. - + Invalid script detected. - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. - + Last successful darksend action was too recent. - + Limit size of signature cache to <n> entries (default: 50000) Omezit velikost vyrovnávací paměti pro podpisy na <n> položek (výchozí: 50000) - + List commands Výpis příkazů - + Listen for connections on <port> (default: 9999 or testnet: 19999) - + Loading addresses... Načítám adresy... - + Loading block index... Načítám index bloků... - + Loading masternode list... - + Loading wallet... (%3.2f %%) - + Loading wallet... Načítám peněženku... - + Log transaction priority and fee per kB when mining blocks (default: 0) Zaznamenávat během těžení bloků prioritu transakce a poplatek za kB (výchozí: 0) - + Maintain a full transaction index (default: 0) Spravovat úplný index transakcí (výchozí: 0) - + Maintain at most <n> connections to peers (default: 125) Povolit nejvýše <n> připojení k uzlům (výchozí: 125) - + Masternode options: - + Masternode queue is full. - + Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Maximální velikost přijímacího bufferu pro každé spojení, <n>*1000 bajtů (výchozí: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Maximální velikost odesílacího bufferu pro každé spojení, <n>*1000 bajtů (výchozí: 1000) - + Missing input transaction information. - + No compatible masternode found. - + No funds detected in need of denominating. - + No masternodes detected. - + No matching denominations found for mixing. - + Non-standard public key detected. - + Not compatible with existing transactions. - + Not enough file descriptors available. Je nedostatek deskriptorů souborů. - + Not in the masternode list. - + Only accept block chain matching built-in checkpoints (default: 1) Uznávat pouze řetězec bloků, který odpovídá vnitřním kontrolním bodům (výchozí: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Připojit se pouze k uzlům v <net> síti (IPv4, IPv6 nebo Tor) - + Options: Možnosti: - + Password for JSON-RPC connections Heslo pro JSON-RPC spojení - + Prepend debug output with timestamp (default: 1) Připojit před ladicí výstup časové razítko (výchozí: 1) - + Print block on startup, if found in block index Vypsat při startu blok,pokud se nachází v indexu bloků - + Print block tree on startup (default: 0) Vypsat při startu strom bloků (výchozí: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) Možnosti SSL pro RPC: (viz instrukce nastavení SSL na Bitcoin Wiki) - + RPC client options: Možnosti RPC klienta: - + RPC server options: Možnosti RPC serveru: - + Randomly drop 1 of every <n> network messages Náhodně zahazovat jednu z každých <n> síťových zpráv - + Randomly fuzz 1 of every <n> network messages Náhodně pozměňovat jednu z každých <n> síťových zpráv - + Rebuild block chain index from current blk000??.dat files Znovu vytvořit index řetězce bloků z aktuálních blk000??.dat souborů - + Rescan the block chain for missing wallet transactions Přeskenovat řetězec bloků na chybějící transakce tvé pěněženky - + Rescanning... Přeskenovávám... - + Run a thread to flush wallet periodically (default: 1) Spustit vlákno pročišťující periodicky peněženku (výchozí: 1) - + Run in the background as a daemon and accept commands Běžet na pozadí jako démon a akceptovat příkazy - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Možnosti SSL: (viz instrukce nastavení SSL na Bitcoin Wiki) - + Select SOCKS version for -proxy (4 or 5, default: 5) Zvol verzi SOCKS proxy pro -proxy (4 nebo 5, výchozí: 5) - + Send command to Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) Posílat příkazy uzlu běžícím na <ip> (výchozí: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Posílat stopovací/ladicí informace do konzole místo do souboru debug.log - + Server certificate file (default: server.cert) Soubor se serverovým certifikátem (výchozí: server.cert) - + Server private key (default: server.pem) Soubor se serverovým soukromým klíčem (výchozí: server.pem) - + Session not complete! - + Session timed out (30 seconds), please resubmit. - + Set database cache size in megabytes (%d to %d, default: %d) Nastavit velikost databázové vyrovnávací paměti v megabajtech (%d až %d, výchozí: %d) - + Set key pool size to <n> (default: 100) Nastavit zásobník klíčů na velikost <n> (výchozí: 100) - + Set maximum block size in bytes (default: %d) Nastavit maximální velikost bloku v bajtech (výchozí: %d) - + Set minimum block size in bytes (default: 0) Nastavit minimální velikost bloku v bajtech (výchozí: 0) - + Set the masternode private key - + Set the number of threads to service RPC calls (default: 4) Nastavení počtu vláken pro servisní RPC volání (výchozí: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) Nastavit příznak DB_PRIVATE v databázovém prostředí peněženky (výchozí: 1) - + Show all debugging options (usage: --help -help-debug) Zobrazit všechny možnosti ladění (užití: --help -help-debug) - + Show benchmark information (default: 0) Zobrazit výkonnostní informace (výchozí: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Při spuštění klienta zmenšit soubor debug.log (výchozí: 1, pokud není zadáno -debug) - + Signing failed. - + Signing timed out, please resubmit. - + Signing transaction failed Podepisování transakce selhalo - - Specify configuration file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Zadej časový limit spojení v milisekundách (výchozí: 5000) - + Specify data directory Adresář pro data - + Specify masternode configuration file (default: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) - + Specify wallet file (within data directory) Udej název souboru s peněženkou (v rámci datového adresáře) - + Specify your own public address Specifikuj svou veřejnou adresu - + Spend unconfirmed change when sending transactions (default: 1) Utrácet i ještě nepotvrzené drobné při posílání transakcí (výchozí: 1) - + Start Dash Core Daemon - + System error: Systémová chyba: - + This help message Tato nápověda - + This is intended for regression testing tools and app development. Tohle je určeno pro nástroje na regresní testování a vyvíjení aplikací. - + This is not a masternode. - + Threshold for disconnecting misbehaving peers (default: 100) Práh pro odpojování zlobivých uzlů (výchozí: 100) - + To use the %s option K použití volby %s - + Transaction amount too small Částka v transakci je příliš malá - + Transaction amounts must be positive Částky v transakci musí být kladné - + Transaction created successfully. - + Transaction fees are too high. - + Transaction not valid. - + Transaction too large Transace je příliš velká - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i V -socks byla požadována neznámá verze proxy: %i - + Unknown network specified in -onlynet: '%s' V -onlynet byla uvedena neznámá síť: '%s' - + Upgrade wallet to latest format Převést peněženku na nejnovější formát - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): - + Usage: Užití: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) - + Use OpenSSL (https) for JSON-RPC connections Použít OpenSSL (https) pro JSON-RPC spojení - + Use UPnP to map the listening port (default: 0) Použít UPnP k namapování naslouchacího portu (výchozí: 0) - + Use UPnP to map the listening port (default: 1 when listening) Použít UPnP k namapování naslouchacího portu (výchozí: 1, pokud naslouchá) - + Use the test network Použít testovací síť (testnet) - + Username for JSON-RPC connections Uživatelské jméno pro JSON-RPC spojení - + Value more than Darksend pool maximum allows. - + Verifying blocks... Ověřuji bloky... - + Verifying wallet... Kontroluji peněženku... - + Wait for RPC server to start Počkat, než RPC server nastartuje - + Wallet %s resides outside data directory %s Peněženka %s se nachází mimo datový adresář %s - + Wallet is locked. - + Wallet needed to be rewritten: restart Dash to complete - + Wallet options: Možnosti peněženky: - + Warning Upozornění - + Warning: Deprecated argument -debugnet ignored, use -debug=net Upozornění: Zastaralý argument -debugnet se ignoruje, použij -debug=net - + Warning: This version is obsolete, upgrade required! Upozornění: tahle verze je zastaralá, měl bys ji aktualizovat! @@ -5251,27 +5251,27 @@ Pokud konfigurační soubor ještě neexistuje, vytvoř ho tak, aby ho mohl čí - + You need to rebuild the database using -reindex to change -txindex Je třeba přestavět databázi použitím -reindex, aby bylo možné změnit -txindex - + Zapping all transactions from wallet... Vymazat všechny transakce z peněženky... - + on startup při startu - + version verze - + wallet.dat corrupt, salvage failed Soubor wallet.dat je poškozen, jeho záchrana se nezdařila diff --git a/src/qt/locale/darkcoin_da.ts b/src/qt/locale/dash_da.ts similarity index 91% rename from src/qt/locale/darkcoin_da.ts rename to src/qt/locale/dash_da.ts index b41dad41ae..fb1df18833 100644 --- a/src/qt/locale/darkcoin_da.ts +++ b/src/qt/locale/dash_da.ts @@ -275,7 +275,7 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! @@ -291,7 +291,7 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. @@ -397,7 +397,7 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open - Request payments (generates QR codes and darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) @@ -595,7 +595,7 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open - Open a darkcoin: URI or payment request + Open a dash: URI or payment request @@ -779,7 +779,7 @@ Adresse: %4 Tegnebog er <b>krypteret</b> og i øjeblikket <b>låst</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. @@ -1631,7 +1631,7 @@ Adresse: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2059,7 +2059,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler @@ -2142,35 +2142,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash - + Error: Specified data directory "%1" does not exist. Fejl: Angivet datamappe "%1" eksisterer ikke. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Fejl: Kan ikke fortolke konfigurationsfil: %1. Brug kun syntaksen nøgle=værdi. - + Error reading masternode configuration file: %1 - + Error: Invalid combination of -regtest and -testnet. Fejl: Ugyldig kombination af -regtest og -testnet. - + Dash Core didn't yet exit safely... @@ -2979,7 +2979,7 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. @@ -3916,13 +3916,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3933,247 +3933,247 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Accepterede krypteringer (standard: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s Der opstod en fejl ved angivelse af RPC-porten %u til at lytte på IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Der opstod en fejl ved angivelse af RPC-porten %u til at lytte på IPv6, falder tilbage til IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Tildel til den givne adresse og lyt altid på den. Brug [vært]:port-notation for IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) Rate-begræns kontinuerligt frie transaktioner til <n>*1000 byte i minuttet (standard:15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. Start regressionstesttilstand, som bruger en speciel kæde, hvor blokke kan løses med det samme. Dette er tiltænkt til testværktøjer for regression of programudvikling. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Start regressionstesttilstand, som bruger en speciel kæde, hvor blokke kan løses med det samme. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. Fejl: Transaktionen blev afvist. Dette kan ske, hvis nogle af dine bitcoins i din tegnebog allerede er brugt, som hvis du brugte en kopi af wallet.dat og dine bitcoins er blevet brugt i kopien, men ikke er markeret som brugt her. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Fejl: Denne transaktion kræver et transaktionsgebyr på minimum %s pga. dens beløb, kompleksitet eller anvendelse af nyligt modtagne bitcoins! - + Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Udfør kommando, når en relevant alarm modtages eller vi ser en virkelig lang udsplitning (%s i cmd erstattes af besked) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Udfør kommando, når en transaktion i tegnebogen ændres (%s i kommandoen erstattes med TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Udfør kommando, når den bedste blok ændres (%s i kommandoen erstattes med blokhash) - + Fees smaller than this are considered zero fee (for transaction creation) (default: Gebyrer mindre end dette opfattes som nul-gebyr (for oprettelse af transaktioner) (standard: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) Flyt databaseaktivitet fra hukommelsespulje til disklog hver <n> megabytes (standard: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. - + How thorough the block verification of -checkblocks is (0-4, default: 3) Hvor gennemarbejdet blokverificeringen for -checkblocks er (0-4; standard: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. I denne tilstand styrer -genproclimit hvor mange blokke, der genereres med det samme. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Antal sekunder dårlige forbindelser skal vente før reetablering (standard: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Udskriv fejlsøgningsinformation (standard: 0, angivelse af <kategori> er valgfri) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Sæt maksimumstørrelse for højprioritet/lavgebyr-transaktioner i byte (standard: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Sæt antallet af scriptverificeringstråde (%u til %d, 0 = auto, <0 = efterlad det antal kernet fri, standard: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) Sæt processorbegrænsning for når generering er slået til (-1 = ubegrænset, standard: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Dette er en foreløbig testudgivelse - brug på eget ansvar - brug ikke til udvinding eller handelsprogrammer - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Brug separat SOCS5-proxy for at nå andre knuder via Tor skjulte tjenester (standard: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Advarsel: -paytxfee er sat meget højt! Dette er det gebyr du vil betale, hvis du sender en transaktion. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Advarsel: Netværket ser ikke ud til at være fuldt ud enige! Enkelte minere ser ud til at opleve problemer. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Advarsel: Vi ser ikke ud til at være fuldt ud enige med andre noder! Du kan være nødt til at opgradere, eller andre noder kan være nødt til at opgradere. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Advarsel: fejl under læsning af wallet.dat! Alle nøgler blev læst korrekt, men transaktionsdata eller adressebogsposter kan mangle eller være forkerte. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Advarsel: wallet.dat ødelagt, data reddet! Oprindelig wallet.dat gemt som wallet.{timestamp}.bak i %s; hvis din saldo eller dine transaktioner er forkert, bør du genskabe fra en sikkerhedskopi. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4182,1067 +4182,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. Hvis filen ikke eksisterer, opret den og giv ingen andre end ejeren læserettighed. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + (default: 1) (standard: 1) - + (default: wallet.dat) (standard: wallet.dat) - + <category> can be: <kategori> kan være: - + Accept command line and JSON-RPC commands Acceptér kommandolinje- og JSON-RPC-kommandoer - + Accept connections from outside (default: 1 if no -proxy or -connect) Acceptér forbindelser udefra (standard: 1 hvis hverken -proxy eller -connect) - + Add a node to connect to and attempt to keep the connection open Tilføj en knude til at forbinde til og forsøg at holde forbindelsen åben - + Allow DNS lookups for -addnode, -seednode and -connect Tillad DNS-opslag for -addnode, -seednode og -connect - + Allow JSON-RPC connections from specified IP address Tillad JSON-RPC-forbindelser fra bestemt IP-adresse - + Already have that input. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat Forsøg at genskabe private nøgler fra ødelagt wallet.dat - + Block creation options: Blokoprettelsestilvalg: - + Can't denominate: no compatible inputs left. - + Cannot downgrade wallet Kan ikke nedgradere tegnebog - + Cannot resolve -bind address: '%s' Kan ikke finde -bind adressen: "%s" - + Cannot resolve -externalip address: '%s' Kan ikke finde -externalip adressen: "%s" - + Cannot write default address Kan ikke skrive standardadresse - + Clear list of wallet transactions (diagnostic tool; implies -rescan) Ryd liste over transaktioner i tegnebog (diagnoseværktøj; medfører -rescan) - + Collateral is not valid. - + Collateral not valid. - + Connect only to the specified node(s) Tilslut kun til de(n) angivne knude(r) - + Connect through SOCKS proxy Forbind gennem SOCKS-proxy - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Forbind til en knude for at modtage adresser på andre knuder, og afbryd derefter - + Connection options: Tilvalg for forbindelser: - + Corrupted block database detected Ødelagt blokdatabase opdaget - + Dash Core Daemon - + Dash Core RPC client version - + Darksend is disabled. - + Darksend options: - + Debugging/Testing options: Tilvalg for fejlfinding/test: - + Disable safemode, override a real safe mode event (default: 0) Slå sikker tilstand fra, tilsidesæt hændelser fra sikker tilstand (standard: 0) - + Discover own IP address (default: 1 when listening and no -externalip) Find egen IP-adresse (standard: 1 når lytter og ingen -externalip) - + Do not load the wallet and disable wallet RPC calls Indlæs ikke tegnebogen og slå tegnebogs-RPC-kald fra - + Do you want to rebuild the block database now? Ønsker du at genbygge blokdatabasen nu? - + Done loading Indlæsning gennemført - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) - + Entries are full. - + Error connecting to masternode. - + Error initializing block database Klargøring af blokdatabase mislykkedes - + Error initializing wallet database environment %s! Klargøring af tegnebogsdatabasemiljøet %s mislykkedes! - + Error loading block database Indlæsning af blokdatabase mislykkedes - + Error loading wallet.dat Fejl ved indlæsning af wallet.dat - + Error loading wallet.dat: Wallet corrupted Fejl ved indlæsning af wallet.dat: Tegnebog ødelagt - + Error loading wallet.dat: Wallet requires newer version of Dash - + Error opening block database Åbning af blokdatabase mislykkedes - + Error reading from database, shutting down. - + Error recovering public key. - + Error Fejl - + Error: Disk space is low! Fejl: Mangel på ledig diskplads! - + Error: Wallet locked, unable to create transaction! Fejl: Tegnebog låst, kan ikke oprette transaktion! - + Error: You already have pending entries in the Darksend pool - + Error: system error: Fejl: systemfejl: - + Failed to listen on any port. Use -listen=0 if you want this. Lytning på enhver port mislykkedes. Brug -listen=0, hvis du ønsker dette. - + Failed to read block info Læsning af blokinformation mislykkedes - + Failed to read block Læsning af blok mislykkedes - + Failed to sync block index Synkronisering af blokindeks mislykkedes - + Failed to write block index Skrivning af blokindeks mislykkedes - + Failed to write block info Skrivning af blokinformation mislykkedes - + Failed to write block Skrivning af blok mislykkedes - + Failed to write file info Skriving af filinformation mislykkedes - + Failed to write to coin database Skrivning af bitcoin-database mislykkedes - + Failed to write transaction index Skrivning af transaktionsindeks mislykkedes - + Failed to write undo data Skrivning af genskabelsesdata mislykkedes - + Fee per kB to add to transactions you send Føj gebyr pr. kB til transaktioner, du sender - + Fees smaller than this are considered zero fee (for relaying) (default: Gebyrer mindre end dette opfattes som nul-gebyr (for videreførsler) (standard: - + Force safe mode (default: 0) Gennemtving sikker tilstand (standard: 0) - + Generate coins (default: 0) Generér bitcoins (standard: 0) - + Get help for a command Få hjælp til en kommando - + How many blocks to check at startup (default: 288, 0 = all) Antal blokke som tjekkes ved opstart (standard: 288, 0=alle) - + If <category> is not supplied, output all debugging information. Hvis <kategori> ikke angives, udskriv al fejlsøgningsinformation. - + Ignore masternodes less than version (example: 70050; default : 0) - + Importing... Importerer … - + Imports blocks from external blk000??.dat file Importerer blokke fra ekstern blk000??.dat fil - + Incompatible mode. - + Incompatible version. - + Incorrect or no genesis block found. Wrong datadir for network? Ukorrekt eller ingen tilblivelsesblok fundet. Forkert datamappe for netværk? - + Information Information - + Initialization sanity check failed. Dash Core is shutting down. - + Input is not valid. - + InstantX options: - + Insufficient funds Manglende dækning - + Insufficient funds. - + Invalid -onion address: '%s' Ugyldig -onion adresse: "%s" - + Invalid -proxy address: '%s' Ugyldig -proxy adresse: "%s" - + Invalid amount for -minrelaytxfee=<amount>: '%s' Ugyldigt beløb til -minrelaytxfee=<beløb>: "%s" - + Invalid amount for -mintxfee=<amount>: '%s' Ugyldigt beløb til -mintxfee=<beløb>: "%s" - + Invalid amount for -paytxfee=<amount>: '%s' Ugyldigt beløb for -paytxfee=<beløb>: "%s" - + Invalid amount Ugyldigt beløb - + Invalid masternodeprivkey. Please see documenation. - + Invalid private key. - + Invalid script detected. - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. - + Last successful darksend action was too recent. - + Limit size of signature cache to <n> entries (default: 50000) Begræns størrelsen på signaturcache til <n> indgange (standard: 50000) - + List commands Liste over kommandoer - + Listen for connections on <port> (default: 9999 or testnet: 19999) - + Loading addresses... Indlæser adresser … - + Loading block index... Indlæser blokindeks … - + Loading masternode list... - + Loading wallet... (%3.2f %%) - + Loading wallet... Indlæser tegnebog … - + Log transaction priority and fee per kB when mining blocks (default: 0) Prioritet for transaktionslog og gebyr pr. kB under udvinding af blokke (standard: 0) - + Maintain a full transaction index (default: 0) Vedligehold et komplet transaktionsindeks (standard: 0) - + Maintain at most <n> connections to peers (default: 125) Oprethold højest <n> forbindelser til andre i netværket (standard: 125) - + Masternode options: - + Masternode queue is full. - + Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Maksimum for modtagelsesbuffer pr. forbindelse, <n>*1000 byte (standard: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Maksimum for afsendelsesbuffer pr. forbindelse, <n>*1000 byte (standard: 1000) - + Missing input transaction information. - + No compatible masternode found. - + No funds detected in need of denominating. - + No masternodes detected. - + No matching denominations found for mixing. - + Non-standard public key detected. - + Not compatible with existing transactions. - + Not enough file descriptors available. For få tilgængelige fildeskriptorer. - + Not in the masternode list. - + Only accept block chain matching built-in checkpoints (default: 1) Acceptér kun blokkæde, som matcher indbyggede kontrolposter (standard: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Tilslut kun til knuder i netværk <net> (IPv4, IPv6 eller Tor) - + Options: Indstillinger: - + Password for JSON-RPC connections Adgangskode til JSON-RPC-forbindelser - + Prepend debug output with timestamp (default: 1) Føj tidsstempel foran fejlsøgningsoutput (standard: 1) - + Print block on startup, if found in block index Udskriv blok under opstart, hvis den findes i blokindeks - + Print block tree on startup (default: 0) Udskriv bloktræ under startop (standard: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) Tilvalg for RPC SSL: (se Bitcoin Wiki for instruktioner i SSL-opstart) - + RPC client options: Tilvalg for RPC-klient: - + RPC server options: Tilvalg for RPC-server: - + Randomly drop 1 of every <n> network messages Drop tilfældigt 1 ud af hver <n> netværksbeskeder - + Randomly fuzz 1 of every <n> network messages Slør tilfældigt 1 ud af hver <n> netværksbeskeder - + Rebuild block chain index from current blk000??.dat files Genbyg blokkædeindeks fra nuværende blk000??.dat filer - + Rescan the block chain for missing wallet transactions Gennemsøg blokkæden for manglende tegnebogstransaktioner - + Rescanning... Genindlæser … - + Run a thread to flush wallet periodically (default: 1) Kør en tråd for at rydde tegnebog periodisk (standard: 1) - + Run in the background as a daemon and accept commands Kør i baggrunden som en service, og acceptér kommandoer - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL-indstillinger: (se Bitcoin Wiki for SSL-opsætningsinstruktioner) - + Select SOCKS version for -proxy (4 or 5, default: 5) Vælg SOCKS-version for -proxy (4 eller 5, standard: 5) - + Send command to Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) Send kommandoer til knude, der kører på <ip> (standard: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Send sporings-/fejlsøgningsinformation til konsollen i stedet for debug.log filen - + Server certificate file (default: server.cert) Servercertifikat-fil (standard: server.cert) - + Server private key (default: server.pem) Serverens private nøgle (standard: server.pem) - + Session not complete! - + Session timed out (30 seconds), please resubmit. - + Set database cache size in megabytes (%d to %d, default: %d) Sæt cache-størrelse for database i megabytes (%d til %d; standard: %d) - + Set key pool size to <n> (default: 100) Angiv nøglepoolstørrelse til <n> (standard: 100) - + Set maximum block size in bytes (default: %d) Sæt maksimum blokstørrelse i byte (standard: %d) - + Set minimum block size in bytes (default: 0) Angiv minimumsblokstørrelse i byte (standard: 0) - + Set the masternode private key - + Set the number of threads to service RPC calls (default: 4) Angiv antallet af tråde til at håndtere RPC-kald (standard: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) Sætter DB_PRIVATE-flaget i tegnebogens db-miljø (standard: 1) - + Show all debugging options (usage: --help -help-debug) Vis alle tilvalg for fejlsøgning (brug: --help -help-debug) - + Show benchmark information (default: 0) Vis information om ydelsesmåling (standard: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Formindsk debug.log filen ved klientopstart (standard: 1 hvis ikke -debug) - + Signing failed. - + Signing timed out, please resubmit. - + Signing transaction failed Underskrift af transaktion mislykkedes - - Specify configuration file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Angiv tilslutningstimeout i millisekunder (standard: 5000) - + Specify data directory Angiv datamappe - + Specify masternode configuration file (default: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) - + Specify wallet file (within data directory) Angiv tegnebogsfil (inden for datamappe) - + Specify your own public address Angiv din egen offentlige adresse - + Spend unconfirmed change when sending transactions (default: 1) Brug ubekræftede byttepenge under afsendelse af transaktioner (standard: 1) - + Start Dash Core Daemon - + System error: Systemfejl: - + This help message Denne hjælpebesked - + This is intended for regression testing tools and app development. This is intended for regression testing tools and app development. - + This is not a masternode. - + Threshold for disconnecting misbehaving peers (default: 100) Grænse for afbrydelse til dårlige forbindelser (standard: 100) - + To use the %s option For at bruge %s mulighed - + Transaction amount too small Transaktionsbeløb er for lavt - + Transaction amounts must be positive Transaktionsbeløb skal være positive - + Transaction created successfully. - + Transaction fees are too high. - + Transaction not valid. - + Transaction too large Transaktionen er for stor - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i Ukendt -socks proxy-version: %i - + Unknown network specified in -onlynet: '%s' Ukendt netværk anført i -onlynet: "%s" - + Upgrade wallet to latest format Opgrader tegnebog til seneste format - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): - + Usage: Anvendelse: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) - + Use OpenSSL (https) for JSON-RPC connections Brug OpenSSL (https) for JSON-RPC-forbindelser - + Use UPnP to map the listening port (default: 0) Brug UPnP til at konfigurere den lyttende port (standard: 0) - + Use UPnP to map the listening port (default: 1 when listening) Brug UPnP til at konfigurere den lyttende port (standard: 1 under lytning) - + Use the test network Brug testnetværket - + Username for JSON-RPC connections Brugernavn til JSON-RPC-forbindelser - + Value more than Darksend pool maximum allows. - + Verifying blocks... Verificerer blokke … - + Verifying wallet... Verificerer tegnebog … - + Wait for RPC server to start Vent på opstart af RPC-server - + Wallet %s resides outside data directory %s Tegnebog %s findes uden for datamappe %s - + Wallet is locked. - + Wallet needed to be rewritten: restart Dash to complete - + Wallet options: Tilvalg for tegnebog: - + Warning Advarsel - + Warning: Deprecated argument -debugnet ignored, use -debug=net Advarsel: Forældet argument -debugnet ignoreret; brug -debug=net - + Warning: This version is obsolete, upgrade required! Advarsel: Denne version er forældet, opgradering påkrævet! @@ -5251,27 +5251,27 @@ Hvis filen ikke eksisterer, opret den og giv ingen andre end ejeren læserettigh - + You need to rebuild the database using -reindex to change -txindex Du er nødt til at genopbygge databasen ved hjælp af -reindex for at ændre -txindex - + Zapping all transactions from wallet... Zapper alle transaktioner fra tegnebog … - + on startup under opstart - + version version - + wallet.dat corrupt, salvage failed wallet.dat ødelagt, redning af data mislykkedes diff --git a/src/qt/locale/darkcoin_de.ts b/src/qt/locale/dash_de.ts similarity index 92% rename from src/qt/locale/darkcoin_de.ts rename to src/qt/locale/dash_de.ts index a2be686f2d..65bf95dc0b 100644 --- a/src/qt/locale/darkcoin_de.ts +++ b/src/qt/locale/dash_de.ts @@ -280,7 +280,7 @@ Dieses Produkt enthält zudem folgende Dritt-Software: - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! Warnung: Wenn Sie ihre Wallet verschlüsseln und ihre Passphrase verlieren werden Sie <b>alle ihre Darkcoins verlieren</b>! @@ -296,7 +296,7 @@ Dieses Produkt enthält zudem folgende Dritt-Software: - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. Dash wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Wallet-Verschlüsselung nicht vollständig vor Diebstahl ihrer Darkcoins durch Schadsoftware schützt, die ihren Computer befällt. @@ -402,8 +402,8 @@ Dieses Produkt enthält zudem folgende Dritt-Software: - Request payments (generates QR codes and darkcoin: URIs) - Zahlungen anfordern (erzeugt QR-Codes und "darkcoin:"-URIs) + Request payments (generates QR codes and dash: URIs) + Zahlungen anfordern (erzeugt QR-Codes und "dash:"-URIs) @@ -600,8 +600,8 @@ Dieses Produkt enthält zudem folgende Dritt-Software: - Open a darkcoin: URI or payment request - Eine "darkcoin:"-URI oder Zahlungsanforderung öffnen + Open a dash: URI or payment request + Eine "dash:"-URI oder Zahlungsanforderung öffnen @@ -783,7 +783,7 @@ Adresse: %4 Wallet ist <b>verschlüsselt</b> und aktuell <b>gesperrt</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Ein schwerer Fehler ist aufgetreten. Dash kann nicht mehr sicher ausgeführt werden und wird beendet. @@ -1635,9 +1635,9 @@ Adresse: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ Fehlt eine Sprache oder ist unvollständig übersetzt? Hier können Sie helfen: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2065,7 +2065,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler Dash kann nicht gestartet werden: click-to-pay handler @@ -2148,35 +2148,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. Fehler: Angegebenes Datenverzeichnis "%1" existiert nicht. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Fehler: Konfigurationsdatei kann nicht analysiert werden: %1. Bitte nur "Schlüssel=Wert"-Syntax verwenden. - + Error reading masternode configuration file: %1 Fehler beim Lesen der Masternode-Konfigurations-Datei: %1 - + Error: Invalid combination of -regtest and -testnet. Fehler: Ungültige Kombination von -regtest und -testnet. - + Dash Core didn't yet exit safely... Dash Core wurde noch nicht sicher beendet. @@ -2987,8 +2987,8 @@ Dies kann passieren, wenn einige Darkcoins aus ihrer Wallet bereits ausgegeben w - 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 Dash network. - Eine an die "darkcoin:"-URI angefügte Nachricht, die zusammen mit der Transaktion gespeichert wird. Hinweis: Diese Nachricht wird nicht über das Dash-Netzwerk gesendet. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + Eine an die "dash:"-URI angefügte Nachricht, die zusammen mit der Transaktion gespeichert wird. Hinweis: Diese Nachricht wird nicht über das Dash-Netzwerk gesendet. @@ -3925,13 +3925,13 @@ Dies kann passieren, wenn einige Darkcoins aus ihrer Wallet bereits ausgegeben w - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3942,7 +3942,7 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com %s, Sie müssen ein rpcpasswort in dieser Konfigurationsdatei angeben: %s Es wird empfohlen das folgende Zufallspasswort zu verwenden: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (Sie müssen sich dieses Passwort nicht merken!) Der Benutzername und das Passwort dürfen NICHT identisch sein. @@ -3951,247 +3951,247 @@ Es wird ebenfalls empfohlen alertnotify anzugeben, um im Problemfall benachricht zum Beispiel: alertnotify=echo %%s | mail -s \"Dash Alert\" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Zulässige Chiffren (Standard: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s Beim Einrichten des RPC-Ports %u zum Abhören von IPv4 ist ein Fehler aufgetreten: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Beim Einrichten des RPC-Ports %u zum Abhören von IPv6 ist ein Fehler aufgetreten, es wird auf IPv4 zurückgegriffen: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 An die angegebene Adresse binden und immer abhören. Für IPv6 "[Host]:Port"-Schreibweise verwenden - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. Das Programm kann das Daten-Verzeichnis %s nicht als "in Verwendung" markieren. Wahrscheinlich läuft das Programm bereits. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) Anzahl der freien Transaktionen auf <n> * 1000 Byte pro Minute begrenzen (Standard: 15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. Darksend benutzt exakt gestückelte Beträge zum Versenden, Sie müssen dafür möglicherweise noch mehr Darkcoins anonymisieren. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) Deaktiviere alle Masternode- und Darksend-spezifischen Funktionen (0-1, Standard: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) Aktiviere InstantX, zeige Bestätigungen für gesperrte Transaktionen an (bool, Standard: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) Aktiviere Darksend automatisch (0-1, Standard: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. Regressionstest-Modus aktivieren, der eine spezielle Blockkette nutzt, in der Blöcke sofort gelöst werden können. Dies ist für Regressionstest-Tools und Anwendungsentwicklung gedacht. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Regressionstest-Modus aktivieren, der eine spezielle Blockkette nutzt, in der Blöcke sofort gelöst werden können. - + Error: Listening for incoming connections failed (listen returned error %s) Fehler: Abhören nach eingehenden Verbindungen fehlgeschlagen (Fehler %s) - + 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 and coins were spent in the copy but not marked as spent here. Fehler: Die Transaktion wurde abgelehnt! Dies kann passieren, wenn einige Darkcoins aus ihrer Wallet bereits ausgegeben wurden. Beispielsweise weil Sie eine Kopie ihrer wallet.dat genutzt, die Bitcoins dort ausgegeben haben und dies daher in der derzeit aktiven Wallet nicht vermerkt ist. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Fehler: Diese Transaktion benötigt aufgrund ihres Betrags, ihrer Komplexität oder der Nutzung erst kürzlich erhaltener Zahlungen eine Transaktionsgebühr in Höhe von mindestens %s! - + Error: Wallet unlocked for anonymization only, unable to create transaction. Fehler: das Wallet ist nur zum Anonymisieren entsperrt, erzeugen von Transaktionen nicht möglichen. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Befehl ausführen wenn ein relevanter Alarm empfangen wird oder wir einen wirklich langen Fork entdecken (%s im Befehl wird durch die Nachricht ersetzt) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Befehl ausführen wenn sich eine Wallet-Transaktion verändert (%s im Befehl wird durch die TxID ersetzt) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Befehl ausführen wenn der beste Block wechselt (%s im Befehl wird durch den Hash des Blocks ersetzt) - + Fees smaller than this are considered zero fee (for transaction creation) (default: Niedrigere Gebühren als diese werden als gebührenfrei angesehen (bei der Transaktionserstellung) (Standard: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) Datenbankaktivitäten vom Arbeitsspeicher-Pool alle <n> Megabyte auf den Datenträger schreiben (Standard: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. Unbestätigte für Darksend vorbereitete Ausgabebeträge gefunden, warte bis sie bestätigt sind bevor weitergemacht wird. - + How thorough the block verification of -checkblocks is (0-4, default: 3) Legt fest, wie gründlich die Blockverifikation von -checkblocks ist (0-4, Standard: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. In diesem Modus legt -genproclimit fest, wie viele Blöcke sofort erzeugt werden. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. InstantX benötigt Zahlungseingänge mit mindestens 6 Bestätigungen, warten Sie also ein paar Minuten und versuchen Sie es dann erneut. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) <port>nach JSON-RPC-Verbindungen abhören (Standard: 9998 oder Testnetz: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase Name, um eine URL für den KeyPass-Eintrag zu erzeugen, der die Wallet-Passphrase speichert. - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Anzahl Sekunden, während denen sich nicht konform verhaltenden Gegenstellen die Wiederverbindung verweigert wird (Standard: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Debugginginformationen ausgeben (Standard: 0, <category> anzugeben ist optional) - + 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) Durch diese Einstellung können Sie dem Darksend-Netzwerk zusätzliche Liquidität zur Verfügung stellen in dem Sie von Zeit zu Zeit bereits anonymisierte Darkcoins wieder dem Mixing-Prozess zuführen. (0-100) [0=aus, 1=sehr oft, 100=sehr selten] Voreinstellung: 0 - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Abfrage der Peer-Adressen über DNS, falls es wenige Adressen gibt (Standard: 1, außer wenn -connect konfiguriert wurde) - + Set external address:port to get to this masternode (example: address:port) Setze externe Adresse und Port, um diesen Masternode zu erreichen (Beispiel: Adresse:Port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Maximale Größe in Byte von Transaktionen hoher Priorität/mit niedrigen Gebühren festlegen (Standard: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Maximale Anzahl an Skript-Verifizierungs-Threads festlegen (%u bis %d, 0 = automatisch, <0 = so viele Kerne frei lassen, Standard: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) Legt ein Prozessor-/CPU-Kernlimit fest, wenn CPU-Mining aktiviert ist (-1 = unbegrenzt, Standard: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) Anzahl Bestätigungen für eine erfolgreich gesperrte Transaktion (0-9999, voreingestellt: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Dies ist eine Vorab-Testversion - Verwendung auf eigene Gefahr - nicht für Mining- oder Handelsanwendungen nutzen! - + Unable to bind to %s on this computer. Dash Core is probably already running. Dash Core den Prozess %s auf dem Computer nicht an sich binden. Wahrscheinlich läuft das Programm bereits. - + Unable to locate enough Darksend denominated funds for this transaction. Für diese Transaktion konnten nicht genug mit Darksend gestückelte Beträge gefunden werden. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. Für diese Transaktion konnten nicht genug nicht mit Darksend gestückelte Beträge gefunden werden, die ungleich 1000 DASH sind. - + Unable to locate enough Darksend non-denominated funds for this transaction. Für diese Transaktion konnten nicht genug nicht mit Darksend gestückelte Beträge gefunden werden. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Separaten SOCKS5-Proxy verwenden, um Gegenstellen über versteckte Tor-Dienste zu erreichen (Standard: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Warnung: -paytxfee ist auf einen sehr hohen Wert festgelegt! Dies ist die Gebühr die beim Senden einer Transaktion fällig wird. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. Warnung: Bitte überprüfen Sie die Datums- und Uhrzeiteinstellungen ihres Computers, da Dash ansonsten nicht ordnungsgemäß funktionieren wird! - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Warnung: Das Netzwerk scheint nicht vollständig übereinzustimmen! Einige Miner scheinen Probleme zu haben. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Warnung: Wir scheinen nicht vollständig mit unseren Gegenstellen übereinzustimmen! Sie oder die anderen Knoten müssen unter Umständen ihre Client-Software aktualisieren. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Warnung: Lesen von wallet.dat fehlgeschlagen! Alle Schlüssel wurden korrekt gelesen, Transaktionsdaten bzw. Adressbucheinträge fehlen aber möglicherweise oder sind inkorrekt. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Warnung: wallet.dat beschädigt, Datenrettung erfolgreich! Original wallet.dat wurde als wallet.{Zeitstempel}.dat in %s gespeichert. Falls ihr Kontostand oder Transaktionen nicht korrekt sind, sollten Sie dem vorangegangenen Zustand durch die Datensicherung wiederherstellen. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4200,1068 +4200,1068 @@ If the file does not exist, create it with owner-readable-only file permissions. Falls die Konfigurationsdatei nicht existiert, erzeugen Sie diese bitte mit Leserechten nur für den Dateibesitzer. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. Es muss ein Masternode-Geheimschlüssel (masternodeprivkey) in der Konfiguration angegeben werden. Für weitere Informationen siehe Dokumentation. - + (default: 1) (Standard: 1) - + (default: wallet.dat) (Standard: wallet.dat) - + <category> can be: <category> kann sein: - + Accept command line and JSON-RPC commands Kommandozeilen- und JSON-RPC-Befehle annehmen - + Accept connections from outside (default: 1 if no -proxy or -connect) Eingehende Verbindungen annehmen (Standard: 1, wenn nicht -proxy oder -connect) - + Add a node to connect to and attempt to keep the connection open Mit dem angegebenen Knoten verbinden und versuchen die Verbindung aufrecht zu erhalten - + Allow DNS lookups for -addnode, -seednode and -connect Erlaube DNS-Abfragen für -addnode, -seednode und -connect - + Allow JSON-RPC connections from specified IP address JSON-RPC-Verbindungen von der angegebenen IP-Adresse erlauben - + Already have that input. Haben diesen Eintrag bereits. - + Always query for peer addresses via DNS lookup (default: 0) Peer-Adressen immer über DNS abfragen (Standard: 0) - + Attempt to recover private keys from a corrupt wallet.dat Versuchen, private Schlüssel aus einer beschädigten wallet.dat wiederherzustellen - + Block creation options: Blockerzeugungsoptionen: - + Can't denominate: no compatible inputs left. Kann nicht zerstückeln: keine kompatiblen Eingänge übrig. - + Cannot downgrade wallet Wallet kann nicht auf eine ältere Version herabgestuft werden - + Cannot resolve -bind address: '%s' Kann Adresse in -bind nicht auflösen: '%s' - + Cannot resolve -externalip address: '%s' Kann Adresse in -externalip nicht auflösen: '%s' - + Cannot write default address Standardadresse kann nicht geschrieben werden - + Clear list of wallet transactions (diagnostic tool; implies -rescan) Liste der Wallet-Transaktionen zurücksetzen (Diagnosetool; beinhaltet -rescan) - + Collateral is not valid. Sicherheitszahlung ist nicht gültig. - + Collateral not valid. Sicherheitszahlung nicht gültig. - + Connect only to the specified node(s) Mit nur dem oder den angegebenen Knoten verbinden - + Connect through SOCKS proxy Über einen SOCKS-Proxy verbinden - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) Mit JSON-RPC auf <port> verbinden (Standard: 9998 oder Testnetz: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) Mit KeePassHttp auf <port> verbinden (Standard: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Mit dem angegebenen Knoten verbinden, um Adressen von Gegenstellen abzufragen, danach trennen - + Connection options: Verbindungsoptionen: - + Corrupted block database detected Beschädigte Blockdatenbank erkannt - + Dash Core Daemon Dash-Core Daemon - + Dash Core RPC client version Dash-Core RPC-client Version - + Darksend is disabled. Darksend ist deaktiviert. - + Darksend options: Darksend Optionen: - + Debugging/Testing options: Debugging-/Testoptionen: - + Disable safemode, override a real safe mode event (default: 0) Sicherheitsmodus deaktivieren, übergeht ein echtes Sicherheitsmodusereignis (Standard: 0) - + Discover own IP address (default: 1 when listening and no -externalip) Eigene IP-Adresse erkennen (Standard: 1, wenn abgehört wird und nicht -externalip) - + Do not load the wallet and disable wallet RPC calls Die Wallet nicht laden und Wallet-RPC-Aufrufe deaktivieren - + Do you want to rebuild the block database now? Möchten Sie die Blockdatenbank jetzt neu aufbauen? - + Done loading Laden abgeschlossen - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) Masternode-Modus aktivieren. (0=aus, 1=an; Voreinstellung: 0) - + Entries are full. Warteschlange ist voll. - + Error connecting to masternode. Fehler bei der Verbindung zur Masternode. - + Error initializing block database Fehler beim Initialisieren der Blockdatenbank - + Error initializing wallet database environment %s! Fehler beim Initialisieren der Wallet-Datenbankumgebung %s! - + Error loading block database Fehler beim Laden der Blockdatenbank - + Error loading wallet.dat Fehler beim Laden von wallet.dat - + Error loading wallet.dat: Wallet corrupted Fehler beim Laden von wallet.dat: Wallet beschädigt - + Error loading wallet.dat: Wallet requires newer version of Dash Fehler beim Laden von wallet.dat: Wallet benötigt neuere Version von Dash - + Error opening block database Fehler beim Öffnen der Blockdatenbank - + Error reading from database, shutting down. Fehler beim Lesen der Datenbank, Anwendung wird heruntergefahren. - + Error recovering public key. Fehler bei der Wiederherstellung des öffentlichen Schlüssels. - + Error Fehler - + Error: Disk space is low! Fehler: Zu wenig freier Speicherplatz auf dem Datenträger! - + Error: Wallet locked, unable to create transaction! Fehler: Wallet gesperrt, Transaktion kann nicht erstellt werden! - + Error: You already have pending entries in the Darksend pool Fehler: Es sind bereits anstehende Einträge im Darksend-Pool - + Error: system error: Fehler: Systemfehler: - + Failed to listen on any port. Use -listen=0 if you want this. Fehler, es konnte kein Port abgehört werden. Wenn dies so gewünscht wird -listen=0 verwenden. - + Failed to read block info Lesen der Blockinformationen fehlgeschlagen - + Failed to read block Lesen des Blocks fehlgeschlagen - + Failed to sync block index Synchronisation des Blockindex fehlgeschlagen - + Failed to write block index Schreiben des Blockindex fehlgeschlagen - + Failed to write block info Schreiben der Blockinformationen fehlgeschlagen - + Failed to write block Schreiben des Blocks fehlgeschlagen - + Failed to write file info Schreiben der Dateiinformationen fehlgeschlagen - + Failed to write to coin database Schreiben in die Münzendatenbank fehlgeschlagen - + Failed to write transaction index Schreiben des Transaktionsindex fehlgeschlagen - + Failed to write undo data Schreiben der Rücksetzdaten fehlgeschlagen - + Fee per kB to add to transactions you send Gebühr pro kB, die gesendeten Transaktionen hinzugefügt wird - + Fees smaller than this are considered zero fee (for relaying) (default: Niedrigere Gebühren als diese werden als gebührenfrei angesehen (bei der Vermittlung) (Standard: - + Force safe mode (default: 0) Sicherheitsmodus erzwingen (Standard: 0) - + Generate coins (default: 0) Bitcoins erzeugen (Standard: 0) - + Get help for a command Hilfe zu einem Befehl erhalten - + How many blocks to check at startup (default: 288, 0 = all) Wieviele Blöcke beim Starten geprüft werden sollen (Standard: 288, 0 = alle) - + If <category> is not supplied, output all debugging information. Wenn <category> nicht angegeben wird, jegliche Debugginginformationen ausgeben. - + Ignore masternodes less than version (example: 70050; default : 0) Masternodes mit einer Version welche älter ist als X ignorieren (z.B. Version 70050, Voreinstellung: 0) - + Importing... Importiere... - + Imports blocks from external blk000??.dat file Blöcke aus externer Datei blk000??.dat importieren - + Incompatible mode. Inkompatibler Modus. - + Incompatible version. Inkompatible Version. - + Incorrect or no genesis block found. Wrong datadir for network? Fehlerhafter oder kein Genesis-Block gefunden. Falsches Datenverzeichnis für das Netzwerk? - + Information Hinweis - + Initialization sanity check failed. Dash Core is shutting down. Fehler beim Initialisieren (Plausibilitätsprüfung fehlgeschlagen). Dash Core wird heruntergefahren. - + Input is not valid. Eintrag ist nicht gültig. - + InstantX options: InstantX Optionen: - + Insufficient funds Unzureichender Kontostand - + Insufficient funds. Unzureichender Kontostand. - + Invalid -onion address: '%s' Ungültige "-onion"-Adresse: '%s' - + Invalid -proxy address: '%s' Ungültige Adresse in -proxy: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' Ungültiger Betrag für -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' Ungültiger Betrag für -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Ungültiger Betrag für -paytxfee=<amount>: '%s' - + Invalid amount Ungültiger Betrag - + Invalid masternodeprivkey. Please see documenation. Masternode-Geheimschlüssel (masternodeprivkey) ist ungültig. Siehe Dokumentation. - + Invalid private key. Fehlerhafter privater Schlüssel. - + Invalid script detected. Invalides Zahlskript entdeckt. - + KeePassHttp id for the established association "KeePassHttp id" für bestehende verknüpfte Verbindungen. - + KeePassHttp key for AES encrypted communication with KeePass "KeePassHttp key" für die AES-verschlüsselte Kommunikation mit "KeePass" - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) Betrag welcher anonymisiert vorgehalten wird. (Voreinstellung: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) Maximal <n> (noch) nicht einsortierte Blöcke zwischenspeichern (Voreinstellung: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) Maximal <n> (noch) nicht einsortierte Zahlungen zwischenspeichern (Voreinstellung: %u) - + Last Darksend was too recent. Letzte Darksend-Transaktion ist noch zu neu. - + Last successful darksend action was too recent. Letzte erfolgreiche Darksend-Transaktion ist noch zu neu. - + Limit size of signature cache to <n> entries (default: 50000) Größe des Signaturcaches auf <n> Einträge begrenzen (Standard: 50000) - + List commands Befehle auflisten - + Listen for connections on <port> (default: 9999 or testnet: 19999) <port> nach Verbindungen abhören (Standard: 9999 oder Testnetz: 19999) - + Loading addresses... Lade Adressen... - + Loading block index... Lade Blockindex... - + Loading masternode list... - + Loading wallet... (%3.2f %%) Lade Wallet... (%3.2f %%) - + Loading wallet... Lade Wallet... - + Log transaction priority and fee per kB when mining blocks (default: 0) Transaktionspriorität und Gebühr pro kB beim Erzeugen von Blöcken protokollieren (Standard: 0) - + Maintain a full transaction index (default: 0) Einen vollständigen Transaktionsindex führen (Standard: 0) - + Maintain at most <n> connections to peers (default: 125) Maximal <n> Verbindungen zu Gegenstellen aufrechterhalten (Standard: 125) - + Masternode options: Masternode Optionen: - + Masternode queue is full. Warteschlange der Masternode ist voll. - + Masternode: Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Maximale Größe des Empfangspuffers pro Verbindung, <n> * 1000 Byte (Standard: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Maximale Größe des Sendepuffers pro Verbindung, <n> * 1000 Byte (Standard: 1000) - + Missing input transaction information. Fehlende Informationen zur Eingangs-Transaktion. - + No compatible masternode found. Keine kompatible Masternode gefunden. - + No funds detected in need of denominating. Kein Kapital gefunden, dass zerstückelt werden muss. - + No masternodes detected. Kein Masternodes gefunden. - + No matching denominations found for mixing. Keine passende Zerstückelungen zum Mixen gefunden. - + Non-standard public key detected. nicht Standard öffentlicher Schlüssel erkannt. - + Not compatible with existing transactions. Nicht kompatibel mit existierenden Transaktionen. - + Not enough file descriptors available. Nicht genügend Datei-Deskriptoren verfügbar. - + Not in the masternode list. Nicht in der Masternode-Liste. - + Only accept block chain matching built-in checkpoints (default: 1) Blockkette nur als gültig ansehen, wenn sie mit den integrierten Prüfpunkten übereinstimmt (Standard: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Verbinde nur zu Knoten des Netztyps <net> (IPv4, IPv6 oder Tor) - + Options: Optionen: - + Password for JSON-RPC connections Passwort für JSON-RPC-Verbindungen - + Prepend debug output with timestamp (default: 1) Debugausgaben einen Zeitstempel voranstellen (Standard: 1) - + Print block on startup, if found in block index Block beim Starten ausgeben, wenn dieser im Blockindex gefunden wurde. - + Print block tree on startup (default: 0) Blockbaum beim Starten ausgeben (Standard: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) RPC SSL Optionen: (siehe Bitcoin Wiki für eine Installationsanleitung) - + RPC client options: RPC-Client-Optionen: - + RPC server options: RPC-Serveroptionen: - + Randomly drop 1 of every <n> network messages Zufällig eine von <n> Netzwerknachrichten verwerfen - + Randomly fuzz 1 of every <n> network messages Zufällig eine von <n> Netzwerknachrichten verwürfeln - + Rebuild block chain index from current blk000??.dat files Blockkettenindex aus aktuellen Dateien blk000??.dat wiederaufbauen - + Rescan the block chain for missing wallet transactions Blockkette erneut nach fehlenden Wallet-Transaktionen durchsuchen - + Rescanning... Durchsuche erneut... - + Run a thread to flush wallet periodically (default: 1) Einen Thread starten, der periodisch die Wallet sicher auf den Datenträger schreibt (Standard: 1) - + Run in the background as a daemon and accept commands Als Hintergrunddienst ausführen und Befehle annehmen - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL-Optionen (siehe Bitcoin-Wiki für SSL-Einrichtungssanweisungen): - + Select SOCKS version for -proxy (4 or 5, default: 5) SOCKS-Version des Proxies wählen (4 oder 5, Standard: 5) - + Send command to Dash Core Befehl an Dash Core senden - + Send commands to node running on <ip> (default: 127.0.0.1) Sende Befehle an Knoten <ip> (Standard: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Rückverfolgungs- und Debuginformationen an die Konsole senden, anstatt sie in debug.log zu schreiben - + Server certificate file (default: server.cert) Serverzertifikat (Standard: server.cert) - + Server private key (default: server.pem) Privater Serverschlüssel (Standard: server.pem) - + Session not complete! Sitzung ist nicht vollständig! - + Session timed out (30 seconds), please resubmit. Zeitüberschreitung der Sitzung (30 Sekunden), bitte erneut abschicken. - + Set database cache size in megabytes (%d to %d, default: %d) Größe des Datenbankcaches in Megabyte festlegen (%d bis %d, Standard: %d) - + Set key pool size to <n> (default: 100) Größe des Schlüsselpools festlegen auf <n> (Standard: 100) - + Set maximum block size in bytes (default: %d) Maximale Blockgröße in Byte festlegen (Standard: %d) - + Set minimum block size in bytes (default: 0) Minimale Blockgröße in Byte festlegen (Standard: 0) - + Set the masternode private key Privaten Masternode-Schlüssel setzen - + Set the number of threads to service RPC calls (default: 4) Maximale Anzahl an Threads zur Verarbeitung von RPC-Anfragen festlegen (Standard: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) DB_PRIVATE-Flag in der Wallet-Datenbankumgebung setzen (Standard: 1) - + Show all debugging options (usage: --help -help-debug) Zeige alle Debuggingoptionen (Benutzung: --help -help-debug) - + Show benchmark information (default: 0) Zeige Benchmarkinformationen (Standard: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Protokolldatei debug.log beim Starten des Clients kürzen (Standard: 1, wenn kein -debug) - + Signing failed. Signierung fehlgeschalgen. - + Signing timed out, please resubmit. Zeitüberschreitung der Signierung, bitte erneut abschicken. - + Signing transaction failed Signierung der Transaktion fehlgeschlagen - - Specify configuration file (default: darkcoin.conf) - Konfigurationsdatei festlegen (Standard: darkcoin.conf) + + Specify configuration file (default: dash.conf) + Konfigurationsdatei festlegen (Standard: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Verbindungzeitüberschreitung in Millisekunden festlegen (Standard: 5000) - + Specify data directory Datenverzeichnis festlegen - + Specify masternode configuration file (default: masternode.conf) Konfigurationsdatei der Masternode-Einstellungen angeben (Standart: masternode.conf) - - Specify pid file (default: darkcoind.pid) - pid-Datei angeben (Standard: darkcoin.pid) + + Specify pid file (default: dashd.pid) + pid-Datei angeben (Standard: dash.pid) - + Specify wallet file (within data directory) Wallet-Datei angeben (innerhalb des Datenverzeichnisses) - + Specify your own public address Die eigene öffentliche Adresse angeben - + Spend unconfirmed change when sending transactions (default: 1) Unbestätigtes Wechselgeld beim Senden von Transaktionen ausgeben (Standard: 1) - + Start Dash Core Daemon Dash Core starten - + System error: Systemfehler: - + This help message Dieser Hilfetext - + This is intended for regression testing tools and app development. Dies ist für Regressionstest-Tools und Anwendungsentwicklung gedacht. - + This is not a masternode. Das ist keine Masternode. - + Threshold for disconnecting misbehaving peers (default: 100) Schwellenwert, um Verbindungen zu sich nicht konform verhaltenden Gegenstellen zu beenden (Standard: 100) - + To use the %s option Zur Nutzung der %s-Option - + Transaction amount too small Transaktionsbetrag zu niedrig - + Transaction amounts must be positive Transaktionsbeträge müssen positiv sein - + Transaction created successfully. Transaktion erfolgreich erstellt. - + Transaction fees are too high. Transaktionsgebühren sind zu hoch. - + Transaction not valid. Transaktion ungültig. - + Transaction too large Transaktion zu groß - + Unable to bind to %s on this computer (bind returned error %s) Kann auf diesem Computer nicht an %s binden (von bind zurückgegebener Fehler: %s) - + Unable to sign masternode payment winner, wrong key? Die Zahlung an den Gewinner der Masternode-Runde konnte nicht signiert werden. Wurde der Key falsch gesetzt? - + Unable to sign spork message, wrong key? Die Spork-Nachricht konnte nicht signiert werden. Wurde der Key falsch gesetzt? - + Unknown -socks proxy version requested: %i Unbekannte Proxyversion in -socks angefordert: %i - + Unknown network specified in -onlynet: '%s' Unbekannter Netztyp in -onlynet angegeben: '%s' - + Upgrade wallet to latest format Wallet auf das neueste Format aktualisieren - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): Benutzung (veraltet, bitte Dash-cli verwenden): - + Usage: Benutzung: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) "KeePass 2"-Integration mit KeePassHttp-plugin (Standard: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) N unterschiedliche Masternodes benutzen, um Darkcoins zu anonymisieren (2-8, Standard: 2) - + Use OpenSSL (https) for JSON-RPC connections OpenSSL (https) für JSON-RPC-Verbindungen verwenden - + Use UPnP to map the listening port (default: 0) UPnP verwenden, um eine Portweiterleitung einzurichten (Standard: 0) - + Use UPnP to map the listening port (default: 1 when listening) UPnP verwenden, um eine Portweiterleitung einzurichten (Standard: 1, wenn abgehört wird) - + Use the test network Das Testnetz verwenden - + Username for JSON-RPC connections Benutzername für JSON-RPC-Verbindungen - + Value more than Darksend pool maximum allows. Wert größer als der vom Darksend Pool maximal erlaubte. - + Verifying blocks... Verifiziere Blöcke... - + Verifying wallet... Verifiziere Wallet... - + Wait for RPC server to start Warten, bis der RPC-Server gestartet ist - + Wallet %s resides outside data directory %s Wallet %s liegt außerhalb des Datenverzeichnisses %s - + Wallet is locked. Wallet gesperrt. - + Wallet needed to be rewritten: restart Dash to complete Die Wallet musste neu geschrieben werden. Bitte das Programm neu starten um den Vorgang abzuschließen. - + Wallet options: Wallet-Optionen: - + Warning Warnung - + Warning: Deprecated argument -debugnet ignored, use -debug=net Warnung: Veraltetes Argument -debugnet gefunden, bitte -debug=net verwenden - + Warning: This version is obsolete, upgrade required! Warnung: Diese Version is veraltet, Aktualisierung erforderlich! @@ -5270,27 +5270,27 @@ Dash Core wird heruntergefahren. - + You need to rebuild the database using -reindex to change -txindex Sie müssen die Datenbank mit Hilfe von -reindex neu aufbauen, um -txindex zu verändern - + Zapping all transactions from wallet... Lösche alle Transaktionen aus Wallet... - + on startup beim Starten - + version Version - + wallet.dat corrupt, salvage failed wallet.dat beschädigt, Datenrettung fehlgeschlagen diff --git a/src/qt/locale/darkcoin_el.ts b/src/qt/locale/dash_el.ts similarity index 92% rename from src/qt/locale/darkcoin_el.ts rename to src/qt/locale/dash_el.ts index cc0c641beb..4ef24ce36a 100644 --- a/src/qt/locale/darkcoin_el.ts +++ b/src/qt/locale/dash_el.ts @@ -275,8 +275,8 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - ΠΡΟΣΟΧΗ: Εάν κρυπτογραφήσετε το πορτοφόλι σας και χάσετε τον κωδικό, θα χάσετε <b>ΟΛΑ ΤΑ DARKCOINS ΣΑΣ<b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + ΠΡΟΣΟΧΗ: Εάν κρυπτογραφήσετε το πορτοφόλι σας και χάσετε τον κωδικό, θα χάσετε <b>ΟΛΑ ΤΑ DASHS ΣΑΣ<b>! @@ -291,8 +291,8 @@ This product includes software developed by the OpenSSL Project for use in the O - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. - Το Dash θα κλείσει τώρα για να τελειώσει τη διαδικασία κρυπτογράφησης. Θυμηθείτε ότι κρυπτογραφόντας το πορτοφόλι σας δεν μπορείτε να προστατεύσετε πλήρως τα darkcoins σας από υποκλοπή μέσω κακόβουλου λογισμικού που έχει μολύνει τον υπολογιστή σας. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + Το Dash θα κλείσει τώρα για να τελειώσει τη διαδικασία κρυπτογράφησης. Θυμηθείτε ότι κρυπτογραφόντας το πορτοφόλι σας δεν μπορείτε να προστατεύσετε πλήρως τα dashs σας από υποκλοπή μέσω κακόβουλου λογισμικού που έχει μολύνει τον υπολογιστή σας. @@ -397,8 +397,8 @@ This product includes software developed by the OpenSSL Project for use in the O - Request payments (generates QR codes and darkcoin: URIs) - Αίτηση πληρωμών (δημιουργεί QR codes και διευθύνσεις darkcoin: URls) + Request payments (generates QR codes and dash: URIs) + Αίτηση πληρωμών (δημιουργεί QR codes και διευθύνσεις dash: URls) @@ -595,7 +595,7 @@ This product includes software developed by the OpenSSL Project for use in the O - Open a darkcoin: URI or payment request + Open a dash: URI or payment request @@ -779,7 +779,7 @@ Address: %4 Το πορτοφόλι είναι <b>κρυπτογραφημένο</b> και <b>κλειδωμένο</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Παρουσιάστηκε ανεπανόρθωτο σφάλμα. Το Dash δεν μπορεί πλέον να συνεχίσει με ασφάλεια και θα τερματισθεί. @@ -1633,7 +1633,7 @@ Address: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2062,7 +2062,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler @@ -2145,35 +2145,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. Σφάλμα: Ο καθορισμένος φάκελος δεδομένων "%1" δεν υπάρχει. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. - + Error reading masternode configuration file: %1 - + Error: Invalid combination of -regtest and -testnet. Σφάλμα: Άκυρος συνδυασμός των -regtest και -testnet - + Dash Core didn't yet exit safely... Η εφαρμογή Dash Core δεν έχει ακόμα τερματιστεί με ασφάλεια... @@ -2982,7 +2982,7 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. @@ -3919,13 +3919,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3936,248 +3936,248 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s Ένα σφάλμα συνέβη καθώς προετοιμαζόταν η πόρτα RPC %u για αναμονή IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Ένα σφάλμα συνέβη καθώς προετοιμαζόταν η υποδοχη RPC %u για αναμονη του IPv6, επεσε πισω στο IPv4:%s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Αποθηκευση σε συγκεκριμένη διεύθυνση. Χρησιμοποιήστε τα πλήκτρα [Host] : συμβολισμός θύρα για IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. Σφάλμα: Η συναλλαγή απορρίφθηκε. Αυτό ίσως οφείλεται στο ότι τα νομίσματά σας έχουν ήδη ξοδευτεί, π.χ. με την αντιγραφή του wallet.dat σε άλλο σύστημα και την χρήση τους εκεί, χωρίς η συναλλαγή να έχει καταγραφεί στο παρόν σύστημα. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Σφάλμα: Αυτή η συναλλαγή απαιτεί αμοιβή συναλλαγής τουλάχιστον %s λόγω του μεγέθους, πολυπλοκότητας ή της χρήσης πρόσφατης παραλαβής κεφαλαίου - + Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Εκτέλεσε την εντολή όταν το καλύτερο μπλοκ αλλάξει(%s στην εντολή αντικαθίσταται από το hash του μπλοκ) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Εκτέλεσε την εντολή όταν το καλύτερο μπλοκ αλλάξει(%s στην εντολή αντικαθίσταται από το hash του μπλοκ) - + Fees smaller than this are considered zero fee (for transaction creation) (default: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. - + How thorough the block verification of -checkblocks is (0-4, default: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Δευτερόλεπτα πριν επιτραπεί ξανά η σύνδεση των προβληματικών peers (προεπιλογή: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Πληροφορίες εντοπισμού σφαλμάτων (προεπιλογή: 0, επιλογή <category> είναι προαιρετική) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Αυτό είναι ένα προ-τεστ κυκλοφορίας - χρησιμοποιήστε το με δική σας ευθύνη - δεν χρησιμοποιείτε για εξόρυξη ή για αλλες εφαρμογές - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Προειδοποίηση: Η παράμετρος -paytxfee είναι πολύ υψηλή. Πρόκειται για την αμοιβή που θα πληρώνετε για κάθε συναλλαγή που θα στέλνετε. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Προειδοποίηση : Σφάλμα wallet.dat κατα την ανάγνωση ! Όλα τα κλειδιά αναγνωρισθηκαν σωστά, αλλά τα δεδομένα των συναλλαγών ή καταχωρήσεις στο βιβλίο διευθύνσεων μπορεί να είναι ελλιπείς ή λανθασμένα. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Προειδοποίηση : το αρχειο wallet.dat ειναι διεφθαρμένο, τα δεδομένα σώζονται ! Original wallet.dat αποθηκεύονται ως wallet.{timestamp}.bak στο %s . Αν το υπόλοιπο του ή τις συναλλαγές σας, είναι λάθος θα πρέπει να επαναφέρετε από ένα αντίγραφο ασφαλείας - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4185,1067 +4185,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. Εάν το αρχείο δεν υπάρχει, δημιούργησε το με δικαιώματα μόνο για ανάγνωση από τον δημιουργό - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + (default: 1) (προεπιλογή: 1) - + (default: wallet.dat) (προεπιλογή: wallet.dat) - + <category> can be: - + Accept command line and JSON-RPC commands Αποδοχή εντολών κονσόλας και JSON-RPC - + Accept connections from outside (default: 1 if no -proxy or -connect) Να δέχεσαι συνδέσεις από έξω(προεπιλογή:1) - + Add a node to connect to and attempt to keep the connection open Προσέθεσε ένα κόμβο για σύνδεση και προσπάθησε να κρατήσεις την σύνδεση ανοιχτή - + Allow DNS lookups for -addnode, -seednode and -connect Να επιτρέπονται οι έλεγχοι DNS για προσθήκη και σύνδεση κόμβων - + Allow JSON-RPC connections from specified IP address Αποδοχή συνδέσεων JSON-RPC από συγκεκριμένη διεύθυνση IP - + Already have that input. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat Προσπάθεια για ανακτησει ιδιωτικων κλειδιων από ενα διεφθαρμένο αρχειο wallet.dat - + Block creation options: Αποκλεισμός επιλογων δημιουργίας: - + Can't denominate: no compatible inputs left. - + Cannot downgrade wallet Δεν μπορώ να υποβαθμίσω το πορτοφόλι - + Cannot resolve -bind address: '%s' Δεν μπορώ να γράψω την προεπιλεγμένη διεύθυνση: '%s' - + Cannot resolve -externalip address: '%s' Δεν μπορώ να γράψω την προεπιλεγμένη διεύθυνση: '%s' - + Cannot write default address Δεν μπορώ να γράψω την προεπιλεγμένη διεύθυνση - + Clear list of wallet transactions (diagnostic tool; implies -rescan) - + Collateral is not valid. - + Collateral not valid. - + Connect only to the specified node(s) Σύνδεση μόνο με ορισμένους κόμβους - + Connect through SOCKS proxy - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Σύνδεση σε έναν κόμβο για την ανάκτηση διευθύνσεων από ομοτίμους, και αποσυνδέσh - + Connection options: Επιλογές σύνδεσης: - + Corrupted block database detected Εντοπισθηκε διεφθαρμενη βαση δεδομενων των μπλοκ - + Dash Core Daemon - + Dash Core RPC client version - + Darksend is disabled. - + Darksend options: - + Debugging/Testing options: - + Disable safemode, override a real safe mode event (default: 0) - + Discover own IP address (default: 1 when listening and no -externalip) Ανακαλύψτε την δικη σας IP διεύθυνση (προεπιλογή: 1 όταν ακούει και δεν - externalip) - + Do not load the wallet and disable wallet RPC calls - + Do you want to rebuild the block database now? Θελετε να δημιουργηθει τωρα η βαση δεδομενων του μπλοκ? - + Done loading Η φόρτωση ολοκληρώθηκε - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) - + Entries are full. - + Error connecting to masternode. - + Error initializing block database Σφάλμα κατά την ενεργοποίηση της βάσης δεδομένων μπλοκ - + Error initializing wallet database environment %s! Σφάλμα κατά την ενεργοποίηση της βάσης δεδομένων πορτοφόλιου %s! - + Error loading block database Σφάλμα φορτωσης της βασης δεδομενων των μπλοκ - + Error loading wallet.dat Σφάλμα φόρτωσης αρχείου wallet.dat - + Error loading wallet.dat: Wallet corrupted Σφάλμα φόρτωσης wallet.dat: Κατεστραμμένο Πορτοφόλι - + Error loading wallet.dat: Wallet requires newer version of Dash - + Error opening block database Σφάλμα φορτωσης της βασης δεδομενων των μπλοκ - + Error reading from database, shutting down. - + Error recovering public key. - + Error Σφάλμα - + Error: Disk space is low! Προειδοποίηση: Χαμηλός χώρος στο δίσκο - + Error: Wallet locked, unable to create transaction! Σφάλμα: το πορτοφόλι είναι κλειδωμένο, δεν μπορεί να δημιουργηθεί συναλλαγή - + Error: You already have pending entries in the Darksend pool - + Error: system error: Λάθος: λάθος συστήματος: - + Failed to listen on any port. Use -listen=0 if you want this. ταλαιπωρηθειτε για να ακούσετε σε οποιαδήποτε θύρα. Χρήση - ακούστε = 0 , αν θέλετε αυτό. - + Failed to read block info Αποτυχία αναγνωσης των block πληροφοριων - + Failed to read block Η αναγνωση του μπλοκ απετυχε - + Failed to sync block index Ο συγχρονισμος του μπλοκ ευρετηριου απετυχε - + Failed to write block index Η δημιουργια του μπλοκ ευρετηριου απετυχε - + Failed to write block info Η δημιουργια των μπλοκ πληροφοριων απετυχε - + Failed to write block Η δημιουργια του μπλοκ απετυχε - + Failed to write file info Αδυναμία εγγραφής πληροφοριων αρχειου - + Failed to write to coin database Αποτυχία εγγραφής στη βάση δεδομένων νομίσματος - + Failed to write transaction index Αποτυχία εγγραφής δείκτη συναλλαγών - + Failed to write undo data Αποτυχία εγγραφής αναίρεσης δεδομένων - + Fee per kB to add to transactions you send Προσθήκη αμοιβής ανά kB στις συναλλαγές που στέλνετε - + Fees smaller than this are considered zero fee (for relaying) (default: - + Force safe mode (default: 0) - + Generate coins (default: 0) Δημιουργία νομισμάτων (προκαθορισμος: 0) - + Get help for a command Επεξήγηση εντολής - + How many blocks to check at startup (default: 288, 0 = all) Πόσα μπλοκ να ελέγχθουν κατά την εκκίνηση (προεπιλογή:288,0=όλα) - + If <category> is not supplied, output all debugging information. - + Ignore masternodes less than version (example: 70050; default : 0) - + Importing... ΕΙσαγωγή... - + Imports blocks from external blk000??.dat file Εισαγωγή μπλοκ από εξωτερικό αρχείο blk000?.dat - + Incompatible mode. - + Incompatible version. - + Incorrect or no genesis block found. Wrong datadir for network? - + Information Πληροφορία - + Initialization sanity check failed. Dash Core is shutting down. - + Input is not valid. - + InstantX options: - + Insufficient funds Ανεπαρκές κεφάλαιο - + Insufficient funds. - + Invalid -onion address: '%s' Άκυρη διεύθυνση -onion : '%s' - + Invalid -proxy address: '%s' Δεν είναι έγκυρη η διεύθυνση διαμεσολαβητή: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' Μη έγκυρο ποσό για την παράμετρο -paytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' Μη έγκυρο ποσό για την παράμετρο -paytxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Μη έγκυρο ποσό για την παράμετρο -paytxfee=<amount>: '%s' - + Invalid amount Λάθος ποσότητα - + Invalid masternodeprivkey. Please see documenation. - + Invalid private key. - + Invalid script detected. - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. - + Last successful darksend action was too recent. - + Limit size of signature cache to <n> entries (default: 50000) - + List commands Λίστα εντολών - + Listen for connections on <port> (default: 9999 or testnet: 19999) - + Loading addresses... Φόρτωση διευθύνσεων... - + Loading block index... Φόρτωση ευρετηρίου μπλοκ... - + Loading masternode list... - + Loading wallet... (%3.2f %%) - + Loading wallet... Φόρτωση πορτοφολιού... - + Log transaction priority and fee per kB when mining blocks (default: 0) - + Maintain a full transaction index (default: 0) Διατηρήση ένος πλήρες ευρετήριου συναλλαγών (προεπιλογή: 0) - + Maintain at most <n> connections to peers (default: 125) Μέγιστες αριθμός συνδέσεων με τους peers <n> (προεπιλογή: 125) - + Masternode options: - + Masternode queue is full. - + Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Μέγιστος buffer λήψης ανά σύνδεση, <n>*1000 bytes (προεπιλογή: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Μέγιστος buffer αποστολής ανά σύνδεση, <n>*1000 bytes (προεπιλογή: 1000) - + Missing input transaction information. - + No compatible masternode found. - + No funds detected in need of denominating. - + No masternodes detected. - + No matching denominations found for mixing. - + Non-standard public key detected. - + Not compatible with existing transactions. - + Not enough file descriptors available. Δεν ειναι αρκετες περιγραφες αρχείων διαθέσιμες. - + Not in the masternode list. - + Only accept block chain matching built-in checkpoints (default: 1) Μονο αποδοχη αλυσίδας μπλοκ που ταιριάζει με τα ενσωματωμένα σημεία ελέγχου (προεπιλογή: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Συνδέση μόνο σε κόμβους του δικτύου <net> (IPv4, IPv6 ή Tor) - + Options: Επιλογές: - + Password for JSON-RPC connections Κωδικός για τις συνδέσεις JSON-RPC - + Prepend debug output with timestamp (default: 1) - + Print block on startup, if found in block index - + Print block tree on startup (default: 0) Εκτύπωση μπλοκ δέντρου κατά την εκκίνηση (προεπιλογή: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) Ρυθμίσεις SSL: (ανατρέξτε στο Bitcoin Wiki για οδηγίες ρυθμίσεων SSL) - + RPC client options: - + RPC server options: - + Randomly drop 1 of every <n> network messages - + Randomly fuzz 1 of every <n> network messages - + Rebuild block chain index from current blk000??.dat files Εισαγωγή μπλοκ από εξωτερικό αρχείο blk000?.dat - + Rescan the block chain for missing wallet transactions Επανέλεγχος της αλυσίδας μπλοκ για απούσες συναλλαγές - + Rescanning... Ανίχνευση... - + Run a thread to flush wallet periodically (default: 1) - + Run in the background as a daemon and accept commands Εκτέλεση στο παρασκήνιο κι αποδοχή εντολών - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Ρυθμίσεις SSL: (ανατρέξτε στο Bitcoin Wiki για οδηγίες ρυθμίσεων SSL) - + Select SOCKS version for -proxy (4 or 5, default: 5) - + Send command to Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) Αποστολή εντολών στον κόμβο <ip> (προεπιλογή: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Αποστολή πληροφοριών εντοπισμού σφαλμάτων στην κονσόλα αντί του αρχείου debug.log - + Server certificate file (default: server.cert) Αρχείο πιστοποιητικού του διακομιστή (προεπιλογή: server.cert) - + Server private key (default: server.pem) Προσωπικό κλειδί του διακομιστή (προεπιλογή: server.pem) - + Session not complete! - + Session timed out (30 seconds), please resubmit. - + Set database cache size in megabytes (%d to %d, default: %d) - + Set key pool size to <n> (default: 100) Όριο πλήθους κλειδιών pool <n> (προεπιλογή: 100) - + Set maximum block size in bytes (default: %d) - + Set minimum block size in bytes (default: 0) Ορίστε το μέγιστο μέγεθος μπλοκ σε bytes (προεπιλογή: 0) - + Set the masternode private key - + Set the number of threads to service RPC calls (default: 4) Ορίσμος του αριθμόυ θεματων στην υπηρεσία κλήσεων RPC (προεπιλογή: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) - + Show all debugging options (usage: --help -help-debug) - + Show benchmark information (default: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Συρρίκνωση του αρχείο debug.log κατα την εκκίνηση του πελάτη (προεπιλογή: 1 όταν δεν-debug) - + Signing failed. Η υπογραφή απέτυχε. - + Signing timed out, please resubmit. - + Signing transaction failed Η υπογραφή συναλλαγής απέτυχε - - Specify configuration file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Ορισμός λήξης χρονικού ορίου σε χιλιοστά του δευτερολέπτου(προεπιλογή:5000) - + Specify data directory Ορισμός φακέλου δεδομένων - + Specify masternode configuration file (default: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) - + Specify wallet file (within data directory) Επιλέξτε αρχείο πορτοφολιού (μέσα απο κατάλογο δεδομένων) - + Specify your own public address Διευκρινίστε τη δικιά σας δημόσια διεύθυνση. - + Spend unconfirmed change when sending transactions (default: 1) - + Start Dash Core Daemon - + System error: Λάθος Συστήματος: - + This help message Αυτό το κείμενο βοήθειας - + This is intended for regression testing tools and app development. - + This is not a masternode. - + Threshold for disconnecting misbehaving peers (default: 100) Όριο αποσύνδεσης προβληματικών peers (προεπιλογή: 100) - + To use the %s option Χρήση της %s επιλογής - + Transaction amount too small Το ποσό της συναλλαγής είναι πολύ μικρο - + Transaction amounts must be positive Τα ποσά των συναλλαγών πρέπει να είναι θετικα - + Transaction created successfully. Επιτυχής δημιουργία της συναλλαγής. - + Transaction fees are too high. Τα τέλη της συναλλαγής είναι πολύ ψηλά. - + Transaction not valid. Μη έγκυρη συναλλαγή. - + Transaction too large Η συναλλαγή ειναι πολύ μεγάλη - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i Άγνωστo δίκτυο ορίζεται: %i - + Unknown network specified in -onlynet: '%s' Άγνωστo δίκτυο ορίζεται σε onlynet: '%s' - + Upgrade wallet to latest format Αναβάθμισε το πορτοφόλι στην τελευταία έκδοση - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): - + Usage: Χρήση: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) - + Use OpenSSL (https) for JSON-RPC connections Χρήση του OpenSSL (https) για συνδέσεις JSON-RPC - + Use UPnP to map the listening port (default: 0) Χρησιμοποίηση του UPnP για την χρήση της πόρτας αναμονής (προεπιλογή:0) - + Use UPnP to map the listening port (default: 1 when listening) Χρησιμοποίηση του UPnP για την χρήση της πόρτας αναμονής (προεπιλογή:1) - + Use the test network Χρήση του δοκιμαστικού δικτύου - + Username for JSON-RPC connections Όνομα χρήστη για τις συνδέσεις JSON-RPC - + Value more than Darksend pool maximum allows. - + Verifying blocks... Επαλήθευση των μπλοκ... - + Verifying wallet... Επαλήθευση πορτοφολιου... - + Wait for RPC server to start - + Wallet %s resides outside data directory %s - + Wallet is locked. Το πορτοφόλι είναι κλειδωμένο. - + Wallet needed to be rewritten: restart Dash to complete Απαιτείται η επανεγγραφή του Πορτοφολιού: Επανεκκινήστε το Dash για ολοκήρωση - + Wallet options: Επιλογές πορτοφολιού: - + Warning Προειδοποίηση - + Warning: Deprecated argument -debugnet ignored, use -debug=net - + Warning: This version is obsolete, upgrade required! Προειδοποίηση: Αυτή η έκδοση είναι ξεπερασμένη, απαιτείται αναβάθμιση @@ -5254,27 +5254,27 @@ If the file does not exist, create it with owner-readable-only file permissions. - + You need to rebuild the database using -reindex to change -txindex Χρειάζεται να γίνει ανοικοδόμηση της βάσης δεδομένων χρησιμοποιώντας την εντολή -reindex to change -txindex - + Zapping all transactions from wallet... Μεταφορά όλων των συναλλαγών απο το πορτοφόλι - + on startup κατά την εκκίνηση - + version έκδοση - + wallet.dat corrupt, salvage failed Το αρχειο wallet.dat ειναι διεφθαρμένο, η διάσωση απέτυχε diff --git a/src/qt/locale/darkcoin_en.ts b/src/qt/locale/dash_en.ts similarity index 91% rename from src/qt/locale/darkcoin_en.ts rename to src/qt/locale/dash_en.ts index 47a2e57f3e..183c095d4e 100644 --- a/src/qt/locale/darkcoin_en.ts +++ b/src/qt/locale/dash_en.ts @@ -277,8 +277,8 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! @@ -293,8 +293,8 @@ This product includes software developed by the OpenSSL Project for use in the O - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. @@ -399,8 +399,8 @@ This product includes software developed by the OpenSSL Project for use in the O - Request payments (generates QR codes and darkcoin: URIs) - Request payments (generates QR codes and darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) + Request payments (generates QR codes and dash: URIs) @@ -597,8 +597,8 @@ This product includes software developed by the OpenSSL Project for use in the O - Open a darkcoin: URI or payment request - Open a darkcoin: URI or payment request + Open a dash: URI or payment request + Open a dash: URI or payment request @@ -796,7 +796,7 @@ Address: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. A fatal error occurred. Dash can no longer continue safely and will quit. @@ -1648,7 +1648,7 @@ Address: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2077,8 +2077,8 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler + Cannot start dash: click-to-pay handler @@ -2160,35 +2160,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Error: Cannot parse configuration file: %1. Only use key=value syntax. - + Error reading masternode configuration file: %1 Error reading masternode configuration file: %1 - + Error: Invalid combination of -regtest and -testnet. Error: Invalid combination of -regtest and -testnet. - + Dash Core didn't yet exit safely... Dash Core didn't yet exit safely... @@ -2997,8 +2997,8 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. @@ -3949,13 +3949,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3966,7 +3966,7 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3976,247 +3976,247 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s An error occurred while setting up the RPC port %u for listening on IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Bind to given address and always listen on it. Use [host]:port notation for IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. Cannot obtain a lock on data directory %s. Dash Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) Disable all Masternode and Darksend related functionality (0-1, default: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) Enable instantx, show confirmations for locked transactions (bool, default: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + Error: Listening for incoming connections failed (listen returned error %s) Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. 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 and coins were spent in the copy but not marked as spent here. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - + Error: Wallet unlocked for anonymization only, unable to create transaction. Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Execute command when the best block changes (%s in cmd is replaced by block hash) - + Fees smaller than this are considered zero fee (for transaction creation) (default: Fees smaller than this are considered zero fee (for transaction creation) (default: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) Flush database activity from memory pool to disk log every <n> megabytes (default: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. Found unconfirmed denominated outputs, will wait till they confirm to continue. - + How thorough the block verification of -checkblocks is (0-4, default: 3) How thorough the block verification of -checkblocks is (0-4, default: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. In this mode -genproclimit controls how many blocks are generated immediately. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Output debugging information (default: 0, supplying <category> is optional) - + 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) 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) Set external address:port to get to this masternode (example: address:port) - + 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) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) Set the processor limit for when generation is on (-1 = unlimited, default: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - + Unable to bind to %s on this computer. Dash Core is probably already running. Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4225,1067 +4225,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. If the file does not exist, create it with owner-readable-only file permissions. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + (default: 1) (default: 1) - + (default: wallet.dat) (default: wallet.dat) - + <category> can be: <category> can be: - + Accept command line and JSON-RPC commands Accept command line and JSON-RPC commands - + Accept connections from outside (default: 1 if no -proxy or -connect) Accept connections from outside (default: 1 if no -proxy or -connect) - + Add a node to connect to and attempt to keep the connection open Add a node to connect to and attempt to keep the connection open - + Allow DNS lookups for -addnode, -seednode and -connect Allow DNS lookups for -addnode, -seednode and -connect - + Allow JSON-RPC connections from specified IP address Allow JSON-RPC connections from specified IP address - + Already have that input. Already have that input. - + Always query for peer addresses via DNS lookup (default: 0) Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat Attempt to recover private keys from a corrupt wallet.dat - + Block creation options: Block creation options: - + Can't denominate: no compatible inputs left. Can't denominate: no compatible inputs left. - + Cannot downgrade wallet Cannot downgrade wallet - + Cannot resolve -bind address: '%s' Cannot resolve -bind address: '%s' - + Cannot resolve -externalip address: '%s' Cannot resolve -externalip address: '%s' - + Cannot write default address Cannot write default address - + Clear list of wallet transactions (diagnostic tool; implies -rescan) Clear list of wallet transactions (diagnostic tool; implies -rescan) - + Collateral is not valid. Collateral is not valid. - + Collateral not valid. Collateral not valid. - + Connect only to the specified node(s) Connect only to the specified node(s) - + Connect through SOCKS proxy Connect through SOCKS proxy - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) Connect to KeePassHttp on port <port> (default: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Connect to a node to retrieve peer addresses, and disconnect - + Connection options: Connection options: - + Corrupted block database detected Corrupted block database detected - + Dash Core Daemon Dash Core Daemon - + Dash Core RPC client version Dash Core RPC client version - + Darksend is disabled. Darksend is disabled. - + Darksend options: Darksend options: - + Debugging/Testing options: Debugging/Testing options: - + Disable safemode, override a real safe mode event (default: 0) Disable safemode, override a real safe mode event (default: 0) - + Discover own IP address (default: 1 when listening and no -externalip) Discover own IP address (default: 1 when listening and no -externalip) - + Do not load the wallet and disable wallet RPC calls Do not load the wallet and disable wallet RPC calls - + Do you want to rebuild the block database now? Do you want to rebuild the block database now? - + Done loading Done loading - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) Enable the client to act as a masternode (0-1, default: 0) - + Entries are full. Entries are full. - + Error connecting to masternode. Error connecting to masternode. - + Error initializing block database Error initializing block database - + Error initializing wallet database environment %s! Error initializing wallet database environment %s! - + Error loading block database Error loading block database - + Error loading wallet.dat Error loading wallet.dat - + Error loading wallet.dat: Wallet corrupted Error loading wallet.dat: Wallet corrupted - + Error loading wallet.dat: Wallet requires newer version of Dash Error loading wallet.dat: Wallet requires newer version of Dash - + Error opening block database Error opening block database - + Error reading from database, shutting down. Error reading from database, shutting down. - + Error recovering public key. Error recovering public key. - + Error Error - + Error: Disk space is low! Error: Disk space is low! - + Error: Wallet locked, unable to create transaction! Error: Wallet locked, unable to create transaction! - + Error: You already have pending entries in the Darksend pool Error: You already have pending entries in the Darksend pool - + Error: system error: Error: system error: - + Failed to listen on any port. Use -listen=0 if you want this. Failed to listen on any port. Use -listen=0 if you want this. - + Failed to read block info Failed to read block info - + Failed to read block Failed to read block - + Failed to sync block index Failed to sync block index - + Failed to write block index Failed to write block index - + Failed to write block info Failed to write block info - + Failed to write block Failed to write block - + Failed to write file info Failed to write file info - + Failed to write to coin database Failed to write to coin database - + Failed to write transaction index Failed to write transaction index - + Failed to write undo data Failed to write undo data - + Fee per kB to add to transactions you send Fee per kB to add to transactions you send - + Fees smaller than this are considered zero fee (for relaying) (default: Fees smaller than this are considered zero fee (for relaying) (default: - + Force safe mode (default: 0) Force safe mode (default: 0) - + Generate coins (default: 0) Generate coins (default: 0) - + Get help for a command Get help for a command - + How many blocks to check at startup (default: 288, 0 = all) How many blocks to check at startup (default: 288, 0 = all) - + If <category> is not supplied, output all debugging information. If <category> is not supplied, output all debugging information. - + Ignore masternodes less than version (example: 70050; default : 0) Ignore masternodes less than version (example: 70050; default : 0) - + Importing... Importing... - + Imports blocks from external blk000??.dat file Imports blocks from external blk000??.dat file - + Incompatible mode. Incompatible mode. - + Incompatible version. Incompatible version. - + Incorrect or no genesis block found. Wrong datadir for network? Incorrect or no genesis block found. Wrong datadir for network? - + Information Information - + Initialization sanity check failed. Dash Core is shutting down. Initialization sanity check failed. Dash Core is shutting down. - + Input is not valid. Input is not valid. - + InstantX options: InstantX options: - + Insufficient funds Insufficient funds - + Insufficient funds. Insufficient funds. - + Invalid -onion address: '%s' Invalid -onion address: '%s' - + Invalid -proxy address: '%s' Invalid -proxy address: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' Invalid amount for -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' Invalid amount for -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Invalid amount for -paytxfee=<amount>: '%s' - + Invalid amount Invalid amount - + Invalid masternodeprivkey. Please see documenation. Invalid masternodeprivkey. Please see documenation. - + Invalid private key. Invalid private key. - + Invalid script detected. Invalid script detected. - + KeePassHttp id for the established association KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. Last Darksend was too recent. - + Last successful darksend action was too recent. Last successful darksend action was too recent. - + Limit size of signature cache to <n> entries (default: 50000) Limit size of signature cache to <n> entries (default: 50000) - + List commands List commands - + Listen for connections on <port> (default: 9999 or testnet: 19999) Listen for connections on <port> (default: 9999 or testnet: 19999) - + Loading addresses... Loading addresses... - + Loading block index... Loading block index... - + Loading masternode list... - + Loading wallet... (%3.2f %%) Loading wallet... (%3.2f %%) - + Loading wallet... Loading wallet... - + Log transaction priority and fee per kB when mining blocks (default: 0) Log transaction priority and fee per kB when mining blocks (default: 0) - + Maintain a full transaction index (default: 0) Maintain a full transaction index (default: 0) - + Maintain at most <n> connections to peers (default: 125) Maintain at most <n> connections to peers (default: 125) - + Masternode options: Masternode options: - + Masternode queue is full. Masternode queue is full. - + Masternode: Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Missing input transaction information. Missing input transaction information. - + No compatible masternode found. No compatible masternode found. - + No funds detected in need of denominating. No funds detected in need of denominating. - + No masternodes detected. No masternodes detected. - + No matching denominations found for mixing. No matching denominations found for mixing. - + Non-standard public key detected. Non-standard public key detected. - + Not compatible with existing transactions. Not compatible with existing transactions. - + Not enough file descriptors available. Not enough file descriptors available. - + Not in the masternode list. Not in the masternode list. - + Only accept block chain matching built-in checkpoints (default: 1) Only accept block chain matching built-in checkpoints (default: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + Options: Options: - + Password for JSON-RPC connections Password for JSON-RPC connections - + Prepend debug output with timestamp (default: 1) Prepend debug output with timestamp (default: 1) - + Print block on startup, if found in block index Print block on startup, if found in block index - + Print block tree on startup (default: 0) Print block tree on startup (default: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + RPC client options: RPC client options: - + RPC server options: RPC server options: - + Randomly drop 1 of every <n> network messages Randomly drop 1 of every <n> network messages - + Randomly fuzz 1 of every <n> network messages Randomly fuzz 1 of every <n> network messages - + Rebuild block chain index from current blk000??.dat files Rebuild block chain index from current blk000??.dat files - + Rescan the block chain for missing wallet transactions Rescan the block chain for missing wallet transactions - + Rescanning... Rescanning... - + Run a thread to flush wallet periodically (default: 1) Run a thread to flush wallet periodically (default: 1) - + Run in the background as a daemon and accept commands Run in the background as a daemon and accept commands - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Select SOCKS version for -proxy (4 or 5, default: 5) Select SOCKS version for -proxy (4 or 5, default: 5) - + Send command to Dash Core Send command to Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) Send commands to node running on <ip> (default: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Send trace/debug info to console instead of debug.log file - + Server certificate file (default: server.cert) Server certificate file (default: server.cert) - + Server private key (default: server.pem) Server private key (default: server.pem) - + Session not complete! Session not complete! - + Session timed out (30 seconds), please resubmit. Session timed out (30 seconds), please resubmit. - + Set database cache size in megabytes (%d to %d, default: %d) Set database cache size in megabytes (%d to %d, default: %d) - + Set key pool size to <n> (default: 100) Set key pool size to <n> (default: 100) - + Set maximum block size in bytes (default: %d) Set maximum block size in bytes (default: %d) - + Set minimum block size in bytes (default: 0) Set minimum block size in bytes (default: 0) - + Set the masternode private key Set the masternode private key - + Set the number of threads to service RPC calls (default: 4) Set the number of threads to service RPC calls (default: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) Sets the DB_PRIVATE flag in the wallet db environment (default: 1) - + Show all debugging options (usage: --help -help-debug) Show all debugging options (usage: --help -help-debug) - + Show benchmark information (default: 0) Show benchmark information (default: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Shrink debug.log file on client startup (default: 1 when no -debug) - + Signing failed. Signing failed. - + Signing timed out, please resubmit. Signing timed out, please resubmit. - + Signing transaction failed Signing transaction failed - - Specify configuration file (default: darkcoin.conf) - Specify configuration file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) + Specify configuration file (default: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Specify connection timeout in milliseconds (default: 5000) - + Specify data directory Specify data directory - + Specify masternode configuration file (default: masternode.conf) Specify masternode configuration file (default: masternode.conf) - - Specify pid file (default: darkcoind.pid) - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) + Specify pid file (default: dashd.pid) - + Specify wallet file (within data directory) Specify wallet file (within data directory) - + Specify your own public address Specify your own public address - + Spend unconfirmed change when sending transactions (default: 1) Spend unconfirmed change when sending transactions (default: 1) - + Start Dash Core Daemon Start Dash Core Daemon - + System error: System error: - + This help message This help message - + This is intended for regression testing tools and app development. This is intended for regression testing tools and app development. - + This is not a masternode. This is not a masternode. - + Threshold for disconnecting misbehaving peers (default: 100) Threshold for disconnecting misbehaving peers (default: 100) - + To use the %s option To use the %s option - + Transaction amount too small Transaction amount too small - + Transaction amounts must be positive Transaction amounts must be positive - + Transaction created successfully. Transaction created successfully. - + Transaction fees are too high. Transaction fees are too high. - + Transaction not valid. Transaction not valid. - + Transaction too large Transaction too large - + Unable to bind to %s on this computer (bind returned error %s) Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i Unknown -socks proxy version requested: %i - + Unknown network specified in -onlynet: '%s' Unknown network specified in -onlynet: '%s' - + Upgrade wallet to latest format Upgrade wallet to latest format - - Usage (deprecated, use darkcoin-cli): - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): + Usage (deprecated, use dash-cli): - + Usage: Usage: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) Use N separate masternodes to anonymize funds (2-8, default: 2) - + Use OpenSSL (https) for JSON-RPC connections Use OpenSSL (https) for JSON-RPC connections - + Use UPnP to map the listening port (default: 0) Use UPnP to map the listening port (default: 0) - + Use UPnP to map the listening port (default: 1 when listening) Use UPnP to map the listening port (default: 1 when listening) - + Use the test network Use the test network - + Username for JSON-RPC connections Username for JSON-RPC connections - + Value more than Darksend pool maximum allows. Value more than Darksend pool maximum allows. - + Verifying blocks... Verifying blocks... - + Verifying wallet... Verifying wallet... - + Wait for RPC server to start Wait for RPC server to start - + Wallet %s resides outside data directory %s Wallet %s resides outside data directory %s - + Wallet is locked. Wallet is locked. - + Wallet needed to be rewritten: restart Dash to complete Wallet needed to be rewritten: restart Dash to complete - + Wallet options: Wallet options: - + Warning Warning - + Warning: Deprecated argument -debugnet ignored, use -debug=net Warning: Deprecated argument -debugnet ignored, use -debug=net - + Warning: This version is obsolete, upgrade required! Warning: This version is obsolete, upgrade required! @@ -5294,27 +5294,27 @@ If the file does not exist, create it with owner-readable-only file permissions. Wrong state. - + You need to rebuild the database using -reindex to change -txindex You need to rebuild the database using -reindex to change -txindex - + Zapping all transactions from wallet... Zapping all transactions from wallet... - + on startup on startup - + version version - + wallet.dat corrupt, salvage failed wallet.dat corrupt, salvage failed diff --git a/src/qt/locale/darkcoin_eo.ts b/src/qt/locale/dash_eo.ts similarity index 91% rename from src/qt/locale/darkcoin_eo.ts rename to src/qt/locale/dash_eo.ts index 8529ada284..6163a09208 100644 --- a/src/qt/locale/darkcoin_eo.ts +++ b/src/qt/locale/dash_eo.ts @@ -275,7 +275,7 @@ Tiu ĉi produkto enhavas erojn kreitajn de la "OpenSSL Project" por uz - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! @@ -291,7 +291,7 @@ Tiu ĉi produkto enhavas erojn kreitajn de la "OpenSSL Project" por uz - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. @@ -397,7 +397,7 @@ Tiu ĉi produkto enhavas erojn kreitajn de la "OpenSSL Project" por uz - Request payments (generates QR codes and darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) @@ -595,7 +595,7 @@ Tiu ĉi produkto enhavas erojn kreitajn de la "OpenSSL Project" por uz - Open a darkcoin: URI or payment request + Open a dash: URI or payment request @@ -779,7 +779,7 @@ Adreso: %4 Monujo estas <b>ĉifrita</b> kaj aktuale <b>ŝlosita</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. @@ -1631,7 +1631,7 @@ Adreso: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2059,7 +2059,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler @@ -2142,35 +2142,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash - + Error: Specified data directory "%1" does not exist. Eraro: la elektita dosierujo por datumoj "%1" ne ekzistas. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. - + Error reading masternode configuration file: %1 - + Error: Invalid combination of -regtest and -testnet. Eraro: nevalida kunigo de -regtest kaj -testnet - + Dash Core didn't yet exit safely... @@ -2979,7 +2979,7 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. @@ -3916,13 +3916,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3933,247 +3933,247 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Akcepteblaj ĉifroj (defaŭlte: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s Eraro okazis dum estigo de RPC-pordo %u por aŭskulti per IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Eraro okazis dum estigo de RPC-pordo %u por aŭskulti per IPv6; retrodefaŭltas al IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Bindi al donita adreso kaj ĉiam aŭskulti per ĝi. Uzu la formaton [gastigo]:pordo por IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. Ŝalti reĝimo de regresotestado, kiu uzas specialan ĉenon en kiu oni povas tuj solvi blokojn. La celo de tio estas regresotestilo kaj la kreado de aplikaĵoj. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. Eraro: la transakcio estas rifuzita. Tio povas okazi se iom da Bitmono en via monujo jam elspeziĝis (ekz. se vi uzis kopion de wallet.dat kies Bitmono jam elspeziĝis, sed ne estis markita kiel elspezita ĉi tie). - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Eraro: tiu ĉi transakcio bezonas krompagon de almenaŭ %s pro la sumo, la komplekseco, aŭ la uzo de ĵus ricevita mono! - + Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Plenumi komandon kiam rilata alerto riceviĝas, aŭ kiam ni vidas tre longan forkon (%s en cms anstataŭiĝas per mesaĝo) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Plenumi komandon kiam monuja transakcio ŝanĝiĝas (%s en cmd anstataŭiĝas per TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Plenumi komandon kiam plej bona bloko ŝanĝiĝas (%s en cmd anstataŭiĝas per bloka haketaĵo) - + Fees smaller than this are considered zero fee (for transaction creation) (default: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. - + How thorough the block verification of -checkblocks is (0-4, default: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Nombro da sekundoj por rifuzi rekonekton de misagantaj samtavolanoj (defaŭlte: 86400) - + Output debugging information (default: 0, supplying <category> is optional) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Tiu ĉi estas antaŭeldona testa versio - uzu laŭ via propra risko - ne uzu por minado aŭ por aplikaĵoj por vendistoj - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Averto: -paytxfee estas agordita per tre alta valoro! Tio estas la krompago, kion vi pagos se vi sendas la transakcion. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Averto: La reto ne tute konsentas! Kelkaj minantoj ŝajne spertas problemojn aktuale. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Averto: ŝajne ni ne tute konsentas kun niaj samtavolanoj! Eble vi devas ĝisdatigi vian klienton, aŭ eble aliaj nodoj faru same. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Averto: okazis eraro dum lego de wallet.dat! Ĉiuj ŝlosiloj sukcese legiĝis, sed la transakciaj datumoj aŭ la adresaro eble mankas aŭ malĝustas. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Averto: via wallet.dat estas difektita, sed la datumoj sukcese saviĝis! La originala wallet.dat estas nun konservita kiel wallet.{timestamp}.bak en %s; se via saldo aŭ transakcioj estas malĝustaj vi devus restaŭri per alia sekurkopio. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4182,1067 +4182,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. Se la dosiero ne ekzistas, kreu ĝin kun permeso "nur posedanto rajtas legi". - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + (default: 1) - + (default: wallet.dat) - + <category> can be: <category> povas esti: - + Accept command line and JSON-RPC commands Akcepti komandojn JSON-RPC kaj el komandlinio - + Accept connections from outside (default: 1 if no -proxy or -connect) Akcepti konektojn el ekstere (defaŭlte: 1 se ne estas -proxy nek -connect) - + Add a node to connect to and attempt to keep the connection open Aldoni nodon por alkonekti kaj provi daŭrigi la malferman konekton - + Allow DNS lookups for -addnode, -seednode and -connect Permesi DNS-elserĉojn por -addnote, -seednote kaj -connect - + Allow JSON-RPC connections from specified IP address Permesi konektojn JSON-RPC de specifa IP-adreso - + Already have that input. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat Provo ripari privatajn ŝlosilojn el difektita wallet.dat - + Block creation options: Blok-kreaj agordaĵoj: - + Can't denominate: no compatible inputs left. - + Cannot downgrade wallet Ne eblas malpromocii monujon - + Cannot resolve -bind address: '%s' Ne eblas trovi la adreson -bind: '%s' - + Cannot resolve -externalip address: '%s' Ne eblas trovi la adreson -externalip: '%s' - + Cannot write default address Ne eblas skribi defaŭltan adreson - + Clear list of wallet transactions (diagnostic tool; implies -rescan) - + Collateral is not valid. - + Collateral not valid. - + Connect only to the specified node(s) Konekti nur al specifita(j) nodo(j) - + Connect through SOCKS proxy - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Konekti al nodo por ricevi adresojn de samtavolanoj, kaj malkonekti - + Connection options: - + Corrupted block database detected Difektita blokdatumbazo trovita - + Dash Core Daemon - + Dash Core RPC client version - + Darksend is disabled. - + Darksend options: - + Debugging/Testing options: - + Disable safemode, override a real safe mode event (default: 0) - + Discover own IP address (default: 1 when listening and no -externalip) Malkovri la propran IP-adreson (defaŭlte: 1 dum aŭskultado sen -externalip) - + Do not load the wallet and disable wallet RPC calls - + Do you want to rebuild the block database now? Ĉu vi volas rekonstrui la blokdatumbazon nun? - + Done loading Ŝargado finiĝis - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) - + Entries are full. - + Error connecting to masternode. - + Error initializing block database Eraro dum pravalorizado de blokdatumbazo - + Error initializing wallet database environment %s! Eraro dum pravalorizado de monuj-datumbaza ĉirkaŭaĵo %s! - + Error loading block database Eraro dum ŝargado de blokdatumbazo - + Error loading wallet.dat Eraro dum ŝargado de wallet.dat - + Error loading wallet.dat: Wallet corrupted Eraro dum ŝargado de wallet.dat: monujo difektita - + Error loading wallet.dat: Wallet requires newer version of Dash - + Error opening block database Eraro dum malfermado de blokdatumbazo - + Error reading from database, shutting down. - + Error recovering public key. - + Error Eraro - + Error: Disk space is low! Eraro: restas malmulte da diskospaco! - + Error: Wallet locked, unable to create transaction! Eraro: monujo ŝlosita, ne eblas krei transakcion! - + Error: You already have pending entries in the Darksend pool - + Error: system error: Eraro: sistema eraro: - + Failed to listen on any port. Use -listen=0 if you want this. Ne sukcesis aŭskulti ajnan pordon. Uzu -listen=0 se tion vi volas. - + Failed to read block info Malsukcesis legi blokinformojn - + Failed to read block Malsukcesis legi blokon - + Failed to sync block index Malsukcesis sinkronigi blokindekson - + Failed to write block index Malsukcesis skribi blokindekson - + Failed to write block info Malsukcesis skribi blokinformojn - + Failed to write block Malsukcesis skribi blokon - + Failed to write file info Malsukcesis skribi dosierinformojn - + Failed to write to coin database Malsukcesis skribi Bitmon-datumbazon - + Failed to write transaction index Malsukcesis skribi transakcian indekson - + Failed to write undo data Malsukcesis skribi malfarajn datumojn - + Fee per kB to add to transactions you send - + Fees smaller than this are considered zero fee (for relaying) (default: - + Force safe mode (default: 0) - + Generate coins (default: 0) Generi Bitmonon (defaŭlte: 0) - + Get help for a command Vidigi helpon pri iu komando - + How many blocks to check at startup (default: 288, 0 = all) Kiom da blokoj kontrolendas dum lanĉo (defaŭlte: 288, 0=ĉiuj) - + If <category> is not supplied, output all debugging information. - + Ignore masternodes less than version (example: 70050; default : 0) - + Importing... - + Imports blocks from external blk000??.dat file Importas blokojn el ekstera dosiero blk000??.dat - + Incompatible mode. - + Incompatible version. - + Incorrect or no genesis block found. Wrong datadir for network? Geneza bloko aŭ netrovita aŭ neĝusta. Ĉu eble la datadir de la reto malĝustas? - + Information Informoj - + Initialization sanity check failed. Dash Core is shutting down. - + Input is not valid. - + InstantX options: - + Insufficient funds Nesufiĉa mono - + Insufficient funds. - + Invalid -onion address: '%s' Nevalida -onion-adreso: '%s' - + Invalid -proxy address: '%s' Nevalid adreso -proxy: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' Nevalida sumo por -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' Nevalida sumo por -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Nevalida sumo por -paytxfee=<amount>: '%s' - + Invalid amount Nevalida sumo - + Invalid masternodeprivkey. Please see documenation. - + Invalid private key. - + Invalid script detected. - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. - + Last successful darksend action was too recent. - + Limit size of signature cache to <n> entries (default: 50000) - + List commands Listigi komandojn - + Listen for connections on <port> (default: 9999 or testnet: 19999) - + Loading addresses... Ŝarĝante adresojn... - + Loading block index... Ŝarĝante blok-indekson... - + Loading masternode list... - + Loading wallet... (%3.2f %%) - + Loading wallet... Ŝargado de monujo... - + Log transaction priority and fee per kB when mining blocks (default: 0) - + Maintain a full transaction index (default: 0) Varti kompletan transakcian indekton (defaŭlte: 0) - + Maintain at most <n> connections to peers (default: 125) Subteni maksimume <n> konektojn al samtavolanoj (defaŭlte: 125) - + Masternode options: - + Masternode queue is full. - + Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Maksimuma po riceva bufro por konektoj, <n>*1000 bajtoj (defaŭlte: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Maksimuma po senda bufro por konektoj, <n>*1000 bajtoj (defaŭlte: 1000) - + Missing input transaction information. - + No compatible masternode found. - + No funds detected in need of denominating. - + No masternodes detected. - + No matching denominations found for mixing. - + Non-standard public key detected. - + Not compatible with existing transactions. - + Not enough file descriptors available. Nesufiĉa nombro de dosierpriskribiloj disponeblas. - + Not in the masternode list. - + Only accept block chain matching built-in checkpoints (default: 1) Akcepti nur blokĉenon, kiu kongruas kun integritaj kontrolpunktoj (defaŭlte: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Konekti nur la nodoj en la reto <net> (IPv4, IPv6 aŭ Tor) - + Options: Agordoj: - + Password for JSON-RPC connections Pasvorto por konektoj JSON-RPC - + Prepend debug output with timestamp (default: 1) - + Print block on startup, if found in block index - + Print block tree on startup (default: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + RPC client options: - + RPC server options: - + Randomly drop 1 of every <n> network messages - + Randomly fuzz 1 of every <n> network messages - + Rebuild block chain index from current blk000??.dat files Rekontrui blokĉenan indekson el la aktualaj blk000??.dat dosieroj - + Rescan the block chain for missing wallet transactions Reskani la blokĉenon por mankantaj monujaj transakcioj - + Rescanning... Reskanado... - + Run a thread to flush wallet periodically (default: 1) - + Run in the background as a daemon and accept commands Ruli fone kiel demono kaj akcepti komandojn - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL-agordaĵoj: (vidu la vikio de Bitmono por instrukcioj pri agordado de SSL) - + Select SOCKS version for -proxy (4 or 5, default: 5) - + Send command to Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) Sendi komandon al nodo ĉe <ip> (defaŭlte: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Sendi spurajn/sencimigajn informojn al la konzolo anstataŭ al dosiero debug.log - + Server certificate file (default: server.cert) Dosiero de servila atestilo (defaŭlte: server.cert) - + Server private key (default: server.pem) Dosiero de servila privata ŝlosilo (defaŭlte: server.pem) - + Session not complete! - + Session timed out (30 seconds), please resubmit. - + Set database cache size in megabytes (%d to %d, default: %d) - + Set key pool size to <n> (default: 100) Agordi la grandon de la ŝlosilo-vico al <n> (defaŭlte: 100) - + Set maximum block size in bytes (default: %d) - + Set minimum block size in bytes (default: 0) Agordi minimuman grandon de blokoj je bajtoj (defaŭlte: 0) - + Set the masternode private key - + Set the number of threads to service RPC calls (default: 4) Specifi la nombron de fadenoj por priatenti RPC-alvokojn (defaŭlte: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) - + Show all debugging options (usage: --help -help-debug) - + Show benchmark information (default: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Malpligrandigi la sencimigan protokol-dosieron kiam kliento lanĉiĝas (defaŭlte: 1 kiam mankas -debug) - + Signing failed. - + Signing timed out, please resubmit. - + Signing transaction failed Subskriba transakcio fiaskis - - Specify configuration file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Specifi konektan tempolimon je milisekundoj (defaŭlte: 5000) - + Specify data directory Specifi dosieron por datumoj - + Specify masternode configuration file (default: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) - + Specify wallet file (within data directory) Specifi monujan dosieron (ene de dosierujo por datumoj) - + Specify your own public address Specifi vian propran publikan adreson - + Spend unconfirmed change when sending transactions (default: 1) - + Start Dash Core Daemon - + System error: Sistema eraro: - + This help message Tiu ĉi helpmesaĝo - + This is intended for regression testing tools and app development. - + This is not a masternode. - + Threshold for disconnecting misbehaving peers (default: 100) Sojlo por malkonekti misagantajn samtavolanojn (defaŭlte: 100) - + To use the %s option Por uzi la agordon %s - + Transaction amount too small Transakcia sumo tro malgranda - + Transaction amounts must be positive Transakcia sumo devas esti pozitiva - + Transaction created successfully. - + Transaction fees are too high. - + Transaction not valid. - + Transaction too large Transakcio estas tro granda - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i Nekonata versio de -socks petita: %i - + Unknown network specified in -onlynet: '%s' Nekonata reto specifita en -onlynet: '%s' - + Upgrade wallet to latest format Ĝisdatigi monujon al plej lasta formato - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): - + Usage: Uzado: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) - + Use OpenSSL (https) for JSON-RPC connections Uzi OpenSSL (https) por konektoj JSON-RPC - + Use UPnP to map the listening port (default: 0) Uzi UPnP por mapi la aŭskultan pordon (defaŭlte: 0) - + Use UPnP to map the listening port (default: 1 when listening) Uzi UPnP por mapi la aŭskultan pordon (defaŭlte: 1 dum aŭskultado) - + Use the test network Uzi la test-reton - + Username for JSON-RPC connections Salutnomo por konektoj JSON-RPC - + Value more than Darksend pool maximum allows. - + Verifying blocks... Kontrolado de blokoj... - + Verifying wallet... Kontrolado de monujo... - + Wait for RPC server to start Atendu por RPC-an servilo komenci - + Wallet %s resides outside data directory %s Monujo %s troviĝas ekster la dosierujo por datumoj %s - + Wallet is locked. - + Wallet needed to be rewritten: restart Dash to complete - + Wallet options: Monujaj opcioj: - + Warning Averto - + Warning: Deprecated argument -debugnet ignored, use -debug=net - + Warning: This version is obsolete, upgrade required! Averto: tiu ĉi versio estas eksdata. Vi bezonas ĝisdatigon! @@ -5251,27 +5251,27 @@ Se la dosiero ne ekzistas, kreu ĝin kun permeso "nur posedanto rajtas leg - + You need to rebuild the database using -reindex to change -txindex Vi devas rekontrui la datumbazon kun -reindex por ŝanĝi -txindex - + Zapping all transactions from wallet... - + on startup - + version versio - + wallet.dat corrupt, salvage failed wallet.dat estas difektita, riparo malsukcesis diff --git a/src/qt/locale/darkcoin_es.ts b/src/qt/locale/dash_es.ts similarity index 91% rename from src/qt/locale/darkcoin_es.ts rename to src/qt/locale/dash_es.ts index ed006864ab..e9a09eee7b 100644 --- a/src/qt/locale/darkcoin_es.ts +++ b/src/qt/locale/dash_es.ts @@ -137,7 +137,7 @@ Este producto incluye software desarrollado por OpenSSL Project para su uso en e These are your Dash addresses for sending payments. Always check the amount and the receiving address before sending coins. - Estas son sus direcciones Dash para enviar pagos. Compruebe siempre la cantidad y la dirección receptora antes de enviar darkcoins. + Estas son sus direcciones Dash para enviar pagos. Compruebe siempre la cantidad y la dirección receptora antes de enviar dashs. @@ -277,8 +277,8 @@ Este producto incluye software desarrollado por OpenSSL Project para su uso en e - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - Advertencia: Si cifra la cartera y pierde su contraseña, ¡<b>PERDERÁ TODOS SUS DARKCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Advertencia: Si cifra la cartera y pierde su contraseña, ¡<b>PERDERÁ TODOS SUS DASHS</b>! @@ -293,8 +293,8 @@ Este producto incluye software desarrollado por OpenSSL Project para su uso en e - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. - Dash se cerrará ahora para finalizar el proceso de cifrado. Recuerde que el cifrado de su monedero no puede proteger totalmente sus darkcoins del robo por un malware que infecte su sistema. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + Dash se cerrará ahora para finalizar el proceso de cifrado. Recuerde que el cifrado de su monedero no puede proteger totalmente sus dashs del robo por un malware que infecte su sistema. @@ -399,7 +399,7 @@ Este producto incluye software desarrollado por OpenSSL Project para su uso en e - Request payments (generates QR codes and darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) Solicitar pagos (genera códigos QR y URIs de Dash) @@ -597,8 +597,8 @@ Este producto incluye software desarrollado por OpenSSL Project para su uso en e - Open a darkcoin: URI or payment request - Abrir un darkcoin: URI o petición de pago + Open a dash: URI or payment request + Abrir un dash: URI o petición de pago @@ -781,7 +781,7 @@ Dirección: %4 El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Ha ocurrido un error crítico. Dash ya no puede continuar con seguridad y se cerrará. @@ -1633,9 +1633,9 @@ Dirección: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ ¿Idioma no disponible o traducción incompleta? Contribuye a la traducción aquí: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -1645,7 +1645,7 @@ https://www.transifex.com/projects/p/darkcoin/ Choose the default subdivision unit to show in the interface and when sending coins. - Elegir la subdivisión predeterminada para mostrar las cuantías en la interfaz y cuando se envían darkcoins. + Elegir la subdivisión predeterminada para mostrar las cuantías en la interfaz y cuando se envían dashs. @@ -2063,8 +2063,8 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler - No se pudo iniciar darkcoin: manejador de pago-al-clic + Cannot start dash: click-to-pay handler + No se pudo iniciar dash: manejador de pago-al-clic @@ -2146,35 +2146,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. Error: El directorio de datos especificado "%1" no existe. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Error: No se ha podido procesar el archivo de configuración: %1. Debe utilizarse solamente la sintaxis clave=valor. - + Error reading masternode configuration file: %1 Error en la lectura del archivo con la configuración del masternode: %1 - + Error: Invalid combination of -regtest and -testnet. Error: Combinación no válida de -regtest y -testnet. - + Dash Core didn't yet exit safely... Dash Core no se ha cerrado de forma segura todavía... @@ -2847,7 +2847,7 @@ https://www.transifex.com/projects/p/darkcoin/ Confirm send coins - Confirmar el envío de darkcoins + Confirmar el envío de dashs @@ -2892,12 +2892,12 @@ https://www.transifex.com/projects/p/darkcoin/ 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 and coins were spent in the copy but not marked as spent here. - ¡La transacción fue rechazada! Esto puede suceder si alguno de los darkcoins de su monedero ya se habían gastado, por ejemplo si usó una copia de wallet.dat y los darkcoin se gastaron en dicha copia pero no se aparecen como gastados aqui. + ¡La transacción fue rechazada! Esto puede suceder si alguno de los dashs de su monedero ya se habían gastado, por ejemplo si usó una copia de wallet.dat y los dash se gastaron en dicha copia pero no se aparecen como gastados aqui. Error: The wallet was unlocked only to anonymize coins. - Error: El monedero se desbloqueó solo para anonimizar darkcoins. + Error: El monedero se desbloqueó solo para anonimizar dashs. @@ -2983,8 +2983,8 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. - Un mensaje que se adjuntó al darkcoin: URI que será almacenada con la transacción para su referencia. Nota: Este mensaje no se enviará a través de la red Dash. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + Un mensaje que se adjuntó al dash: URI que será almacenada con la transacción para su referencia. Nota: Este mensaje no se enviará a través de la red Dash. @@ -3446,7 +3446,7 @@ https://www.transifex.com/projects/p/darkcoin/ Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Los darkcoins generados deben madurar %1 bloques antes de que puedan gastarse. Cuando generó este bloque, se transmitió a la red para que se añadiera a la cadena de bloques. Si no consigue entrar en la cadena, su estado cambiará a "no aceptado" y ya no se podrá gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque a pocos segundos del suyo. + Los dashs generados deben madurar %1 bloques antes de que puedan gastarse. Cuando generó este bloque, se transmitió a la red para que se añadiera a la cadena de bloques. Si no consigue entrar en la cadena, su estado cambiará a "no aceptado" y ya no se podrá gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque a pocos segundos del suyo. @@ -3920,13 +3920,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3937,7 +3937,7 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com %s, debe establecer un valor rpcpassword en el archivo de configuración: %s Se recomienda utilizar la siguiente contraseña aleatoria: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (no es necesario recordar esta contraseña) El nombre de usuario y la contraseña NO DEBEN ser iguales. @@ -3947,247 +3947,247 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Cifrados aceptables (predeterminados: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s Ha ocurrido un error al configurar el puerto RPC %u para escucha en IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Ha ocurrido un error al configurar el puerto RPC %u para escuchar mediante IPv6. Recurriendo a IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Vincular a la dirección dada y escuchar siempre en ella. Utilice la notación [host]:port para IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. No se ha podido bloquear el directorio de datos %s. Probablemente ya se está ejecutando Dash Core. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) Limitar continuamente las transacciones gratuitas a <n>*1000 bytes por minuto (predeterminado:15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - Darksend utiliza cuantías denominadas exactas para enviar fondos, simplemente necesita anonimizar algunos darkcoins más. + Darksend utiliza cuantías denominadas exactas para enviar fondos, simplemente necesita anonimizar algunos dashs más. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) Desactivar todas las funciones relacionadas con el Masternode y con Darksend (0-1, por defecto: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) Habilitar InstantX, mostrar las confirmaciones de transacciones bloqueadas (bool, por defecto: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) Activar el uso automatizado de Darksend para los fondos almacenados en este monedero (0-1, por defecto: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. Iniciar modo de prueba de regresión, el cuál utiliza una cadena especial en la cual los bloques pueden ser resueltos instantáneamente. Se utiliza para herramientas de prueba de regresión y desarrollo de aplicaciones. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Ingresar en el modo de prueba de regresión, que utiliza una cadena especial en la que los bloques se pueden resolver instantáneamente. - + Error: Listening for incoming connections failed (listen returned error %s) Error: Ha fallado la escucha de conexiones entrantes (listen ha devuelto el error %s) - + 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 and coins were spent in the copy but not marked as spent here. - ¡Error: se ha rechazado la transacción! Esto puede ocurrir si ya se han gastado algunos de los darkcoins del monedero, como ocurriría si hubiera hecho una copia de wallet.dat y se hubieran gastado darkcoins a partir de la copia, con lo que no se habrían marcado aquí como gastados. + ¡Error: se ha rechazado la transacción! Esto puede ocurrir si ya se han gastado algunos de los dashs del monedero, como ocurriría si hubiera hecho una copia de wallet.dat y se hubieran gastado dashs a partir de la copia, con lo que no se habrían marcado aquí como gastados. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! ¡Error: Esta transacción requiere una comisión de al menos %s debido a su cantidad, complejidad, o al uso de fondos recién recibidos! - + Error: Wallet unlocked for anonymization only, unable to create transaction. Error: Monedero desbloqueado sólo para anonimización, incapaz de crear la transacción. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Ejecutar un comando cuando se reciba un aviso importante o cuando veamos un fork demasiado largo (%s en cmd se reemplazará por el mensaje) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Ejecutar comando cuando una transacción del monedero cambia (%s en cmd se remplazará por TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Ejecutar un comando cuando cambia el mejor bloque (%s en cmd se sustituye por el hash de bloque) - + Fees smaller than this are considered zero fee (for transaction creation) (default: Las comisiones inferiores se consideran comisión cero (a efectos de creación de transacciones) (predeterminado: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) Volcar la actividad de la base de datos de memoria al registro en disco cada <n> megabytes (predeterminado: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. Se han encontrado salidas denominadas sin confirmar, se esperará a su confirmación para continuar. - + How thorough the block verification of -checkblocks is (0-4, default: 3) Nivel de rigor en la verificación de bloques de -checkblocks (0-4; predeterminado: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. En este modo -genproclimit controla cuántos bloques se generan de inmediato. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. InstantX requiere entradas con al menos 6 confirmaciones, puede que neesite esperar unos pocos minutos y volver a intentarlo. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) Escuchar conexiones JSON-RPC en <port> (predeterminado: 9998 o testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase Nombre para construir la url de la entrada KeePass que almacena la contraseña del monedero - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Número de segundos en que se evita la reconexión de pares con mal comportamiento (predeterminado: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Mostrar información de depuración (predeterminado: 0, proporcionar <category> es opcional) - + 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) - Ofrecer liquidez a Darksen mezclando darkcoins con poca frecuencia y de forma contínua (0-100, predeterminado: 0, 1=muy frecuente, comisiones altas, 100=muy infrecuente, comisiones bajas) + Ofrecer liquidez a Darksen mezclando dashs con poca frecuencia y de forma contínua (0-100, predeterminado: 0, 1=muy frecuente, comisiones altas, 100=muy infrecuente, comisiones bajas) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Petición de direcciones de pares mediante búsqueda de DNS , si las direcciones son pocas (predeterminado: 1 salvo con -connect) - + Set external address:port to get to this masternode (example: address:port) Ajustar dirección externa:puerto para acceder a este masternode (p.ej. dirección:puerto) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Establecer tamaño máximo de las transacciones de alta prioridad/baja comisión en bytes (predeterminado: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Establecer el número de hilos (threads) de verificación de scripts (entre %u y %d, 0 = automático, <0 = dejar libres ese número de núcleos; predeterminado: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) Establecer el límite de procesadores cuando está activada la generación (-1 = sin límite; predeterminado: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) Mostrar N confirmaciones para una transacción bloqueada con éxito (0-9999, predeterminado: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Esta es una versión de pre-prueba - utilícela bajo su propio riesgo. No la utilice para usos comerciales o de minería. - + Unable to bind to %s on this computer. Dash Core is probably already running. No se puede enlazar a% s en este equipo. Dash Core probablemente ya está en funcionamiento. - + Unable to locate enough Darksend denominated funds for this transaction. No se pueden localizar fondos denominados de Darksend suficientes para esta transacción. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. No se pueden localizar fondos no denominados de Darksend suficientes para esta transacción que no sean iguales a 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. No se pueden localizar fondos no denominados de Darksend suficientes para esta transacción. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Usar proxy SOCKS5 distinto para comunicarse vía Tor de forma anónima (Predeterminado: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Aviso: ¡-paytxfee tiene un valor muy alto! Esta es la comisión que pagará si envía una transacción. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. Aviso: ¡Verifique que la fecha y hora de su ordenador son correctas! Si su reloj está mal ajustado, Dash no funcionará correctamente. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Aviso: ¡Parece que la red no está totalmente de acuerdo! Algunos mineros están experimentando problemas. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Aviso: ¡Parece que no estamos completamente de acuerdo con nuestros pares! Podría necesitar una actualización, u otros nodos podrían necesitarla. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Aviso: ¡Error al leer wallet.dat! Todas las claves se han leído correctamente, pero podrían faltar o ser incorrectos los datos de transacciones o las entradas de la libreta de direcciones. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Aviso: ¡Recuperados datos de wallet.dat corrupto! El wallet.dat original se ha guardado como wallet.{timestamp}.bak en %s; si hubiera errores en su saldo o transacciones, deberá restaurar una copia de seguridad. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4196,1070 +4196,1070 @@ If the file does not exist, create it with owner-readable-only file permissions. Si el archivo no existe, créelo con permiso de lectura solamente del propietario. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. Debe especificar una masternodeprivkey en la configuración. Por favor, consulte la documentación para obtener ayuda. - + (default: 1) (predeterminado: 1) - + (default: wallet.dat) (predeterminado: wallet.dat) - + <category> can be: <category> puede ser: - + Accept command line and JSON-RPC commands Aceptar comandos de la consola y JSON-RPC - + Accept connections from outside (default: 1 if no -proxy or -connect) Aceptar conexiones desde el exterior (predeterminado: 1 si no -proxy o -connect) - + Add a node to connect to and attempt to keep the connection open Añadir un nodo al que conectarse y tratar de mantener la conexión abierta - + Allow DNS lookups for -addnode, -seednode and -connect Permitir búsquedas DNS para -addnode, -seednode y -connect - + Allow JSON-RPC connections from specified IP address Permitir conexiones JSON-RPC desde la dirección IP especificada - + Already have that input. Ya tiene esa entrada. - + Always query for peer addresses via DNS lookup (default: 0) Solicitar siempre direcciones de pares mediante búsqueda DNS (predeterminado: 0) - + Attempt to recover private keys from a corrupt wallet.dat Intentar recuperar claves privadas de un wallet.dat corrupto - + Block creation options: Opciones de creación de bloques: - + Can't denominate: no compatible inputs left. No se puede denominar: no quedan entradas compatibles. - + Cannot downgrade wallet No se puede regresar a una versión anterior del monedero - + Cannot resolve -bind address: '%s' No se puede resolver la dirección de -bind: '%s' - + Cannot resolve -externalip address: '%s' No se puede resolver la dirección de -externalip: '%s' - + Cannot write default address No se puede escribir la dirección predeterminada - + Clear list of wallet transactions (diagnostic tool; implies -rescan) Limpiar lista de transacciones del monedero (herramienta de diagnóstico; implica -rescan) - + Collateral is not valid. El colateral no es válido. - + Collateral not valid. Colateral no válido. - + Connect only to the specified node(s) Conectar sólo a los nodos (o nodo) especificados - + Connect through SOCKS proxy Conectar a través de un proxy SOCKS - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) Conectar a JSON-RPC en <port> (predeterminado: 9998 o testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) Conectar a KeepassHttp con el puerto <port> (predeterminado: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Conectar a un nodo para obtener direcciones de pares y desconectar - + Connection options: Opciones de conexión: - + Corrupted block database detected Corrupción de base de datos de bloques detectada. - + Dash Core Daemon Dash Core Daemon - + Dash Core RPC client version Versión del cliente RPC de Dash Core - + Darksend is disabled. Darksend está desactivado. - + Darksend options: Opciones de Darksend: - + Debugging/Testing options: Opciones de Depuración/Pruebas: - + Disable safemode, override a real safe mode event (default: 0) Desactivar el modo seguro, no considerar un suceso real de modo seguro (predeterminado: 0) - + Discover own IP address (default: 1 when listening and no -externalip) Descubrir dirección IP propia (predeterminado: 1 al escuchar sin -externalip) - + Do not load the wallet and disable wallet RPC calls No cargar el monedero y desactivar las llamadas RPC del monedero - + Do you want to rebuild the block database now? ¿Quieres reconstruir la base de datos de bloques ahora? - + Done loading Carga finalizada - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) Permitir que el cliente pueda actuar como Masternode (0-1, por defecto: 0) - + Entries are full. Las entradas están agotadas. - + Error connecting to masternode. Error conectando a masternode. - + Error initializing block database Error al inicializar la base de datos de bloques - + Error initializing wallet database environment %s! Error al inicializar el entorno de la base de datos del monedero %s - + Error loading block database Error cargando base de datos de bloques - + Error loading wallet.dat Error al cargar wallet.dat - + Error loading wallet.dat: Wallet corrupted Error al cargar wallet.dat: el monedero está dañado - + Error loading wallet.dat: Wallet requires newer version of Dash Error cargando wallet.dat: El monedero requiere la versión más reciente de Dash - + Error opening block database Error al abrir la base de datos de bloques. - + Error reading from database, shutting down. Error leyendo la base de datos, cerrando. - + Error recovering public key. Error recuperando clave pública. - + Error Error - + Error: Disk space is low! Error: ¡Espacio en disco bajo! - + Error: Wallet locked, unable to create transaction! Error: ¡El monedero está bloqueado; no se puede crear la transacción! - + Error: You already have pending entries in the Darksend pool Error: Ya tiene entradas pendientes en el pool de Darksend - + Error: system error: Error: error de sistema: - + Failed to listen on any port. Use -listen=0 if you want this. Ha fallado la escucha en todos los puertos. Use -listen=0 si desea esto. - + Failed to read block info No se ha podido leer la información de bloque - + Failed to read block No se ha podido leer el bloque - + Failed to sync block index No se ha podido sincronizar el índice de bloques - + Failed to write block index No se ha podido escribir en el índice de bloques - + Failed to write block info No se ha podido escribir la información de bloques - + Failed to write block No se ha podido escribir el bloque - + Failed to write file info No se ha podido escribir la información de archivo - + Failed to write to coin database No se ha podido escribir en la base de datos de monedas - + Failed to write transaction index No se ha podido escribir en el índice de transacciones - + Failed to write undo data No se han podido escribir los datos de deshacer - + Fee per kB to add to transactions you send Comisión por KB que se añade a las transacciones que envíe - + Fees smaller than this are considered zero fee (for relaying) (default: Las comisiones inferiores se consideran comisión cero (a efectos de propagación) (predeterminado: - + Force safe mode (default: 0) Forzar modo seguro (predeterminado: 0) - + Generate coins (default: 0) - Generar darkcoins (predeterminado: 0) + Generar dashs (predeterminado: 0) - + Get help for a command Recibir ayuda para un comando - + How many blocks to check at startup (default: 288, 0 = all) Cuántos bloques comprobar al inicio (predeterminado: 288, 0 = todos) - + If <category> is not supplied, output all debugging information. Si no se proporciona <category>, mostrar toda la información de depuración - + Ignore masternodes less than version (example: 70050; default : 0) Ignorar Masternodes de versión inferior (ejemplo: 70050; por defecto: 0) - + Importing... Importando... - + Imports blocks from external blk000??.dat file Importa los bloques desde un archivo blk000??.dat externo - + Incompatible mode. Modo incompatible. - + Incompatible version. Versión incompatible. - + Incorrect or no genesis block found. Wrong datadir for network? Bloque génesis incorrecto o no encontrado. ¿Es el directorio datadir incorrecto para la red? - + Information Información - + Initialization sanity check failed. Dash Core is shutting down. La comprobación de validez de inicio falló. Dash Core se está cerrando. - + Input is not valid. La entrada no es válida. - + InstantX options: Opciones de InstantX: - + Insufficient funds Fondos insuficientes - + Insufficient funds. Fondos insuficientes. - + Invalid -onion address: '%s' Dirección -onion inválida: '%s' - + Invalid -proxy address: '%s' Dirección -proxy inválida: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' Cuantía inválida para -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' Cuantía inválida para -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Cuantía inválida para -paytxfee=<amount>: '%s' - + Invalid amount Cuantía no válida - + Invalid masternodeprivkey. Please see documenation. Masternodeprivkey inválida. Por favor, lea la documentación. - + Invalid private key. Clave privada inválida. - + Invalid script detected. Script inválido detectado. - + KeePassHttp id for the established association Identificación del KeePassHttp para la asociación establecida - + KeePassHttp key for AES encrypted communication with KeePass Clave KeePassHttp para la comunicación cifrada AES con KeePass - - Keep N darkcoin anonymized (default: 0) - Mantenga N darkcoins anónimos (por defecto: 0) + + Keep N dash anonymized (default: 0) + Mantenga N dashs anónimos (por defecto: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) Mantener a lo sumo <n> bloques no conectables en memoria (por defecto: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) Mantenga a lo sumo <n> transacciones no conectables en la memoria (por defecto:% u) - + Last Darksend was too recent. El último Darksend era demasiado reciente. - + Last successful darksend action was too recent. La última acción Darksend exitosa era demasiado reciente. - + Limit size of signature cache to <n> entries (default: 50000) Limitar tamaño de la cache de firmas a <n> entradas (predeterminado: 50000) - + List commands Listar comandos - + Listen for connections on <port> (default: 9999 or testnet: 19999) Escuchar las conexiones en <port> (por defecto: 9999 o testnet: 19999) - + Loading addresses... Cargando direcciones... - + Loading block index... Cargando el índice de bloques... - + Loading masternode list... Cargando lista de masternodes... - + Loading wallet... (%3.2f %%) Cargando monedero... (%3.2f %%) - + Loading wallet... Cargando monedero... - + Log transaction priority and fee per kB when mining blocks (default: 0) Registrar prioridad de las transacciones y comisión por kB al minar bloques (predeterminado: 0) - + Maintain a full transaction index (default: 0) Mantener índice de transacciones completo (predeterminado: 0) - + Maintain at most <n> connections to peers (default: 125) Mantener como máximo <n> conexiones a pares (predeterminado: 125) - + Masternode options: Opciones del Masternode: - + Masternode queue is full. La cola del masternode está llena. - + Masternode: Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Búfer máximo de recepción por conexión, <n>*1000 bytes (predeterminado: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Búfer máximo de envío por conexión, , <n>*1000 bytes (predeterminado: 1000) - + Missing input transaction information. Información ausente en la transacción de entrada. - + No compatible masternode found. No se ha encontrado un masternode compatible. - + No funds detected in need of denominating. No se han detectado fondos que necesiten denominarse. - + No masternodes detected. No se han detectado masternodes. - + No matching denominations found for mixing. No se han encontrado denominaciones iguales para mezclar. - + Non-standard public key detected. Se detectó una llave publica en formato no estándar. - + Not compatible with existing transactions. No es compatible con las transacciones existentes. - + Not enough file descriptors available. No hay suficientes descriptores de archivo disponibles. - + Not in the masternode list. No se encuentra en la lista de masternodes. - + Only accept block chain matching built-in checkpoints (default: 1) Aceptar solamente cadena de bloques que concuerde con los puntos de control internos (predeterminado: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Conectarse solo a nodos de la red <net> (IPv4, IPv6 o Tor) - + Options: Opciones: - + Password for JSON-RPC connections Contraseña para las conexiones JSON-RPC - + Prepend debug output with timestamp (default: 1) Anteponer marca temporal a la información de depuración (predeterminado: 1) - + Print block on startup, if found in block index Imprimir bloque al iniciar, si se encuentra en el índice de bloques - + Print block tree on startup (default: 0) Imprimir árbol de bloques al iniciar (predeterminado: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opciones SSL de RPC: (véase la wiki de Bitcoin para las instrucciones de instalación de SSL) - + RPC client options: Opciones para cliente RPC: - + RPC server options: Opciones de servidor RPC: - + Randomly drop 1 of every <n> network messages Ignorar 1 de cada <n> mensajes de red al azar - + Randomly fuzz 1 of every <n> network messages Fuzzear 1 de cada <n> mensajes de red al azar - + Rebuild block chain index from current blk000??.dat files Reconstruir el índice de la cadena de bloques a partir de los archivos blk000??.dat actuales - + Rescan the block chain for missing wallet transactions Volver a examinar la cadena de bloques en busca de transacciones perdidas del monedero - + Rescanning... Reexplorando... - + Run a thread to flush wallet periodically (default: 1) Ejecutar un hilo (thread) para refrescar el monedero periódicamente (predeterminado: 1) - + Run in the background as a daemon and accept commands Ejecutar en segundo plano como daemon y aceptar comandos - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) - + Select SOCKS version for -proxy (4 or 5, default: 5) Seleccionar versión de SOCKS para -proxy (4 o 5, predeterminado: 5) - + Send command to Dash Core Enviar orden a Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) Enviar comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Enviar información de trazas/depuración a la consola en lugar de al archivo debug.log - + Server certificate file (default: server.cert) Certificado del servidor (predeterminado: server.cert) - + Server private key (default: server.pem) Clave privada del servidor (predeterminado: server.pem) - + Session not complete! ¡La sesión no está completa! - + Session timed out (30 seconds), please resubmit. La sesión ha caducado (30 segundos), por favor inténtelo de nuevo. - + Set database cache size in megabytes (%d to %d, default: %d) Asignar tamaño de cache en megabytes (entre %d y %d; predeterminado: %d) - + Set key pool size to <n> (default: 100) Ajustar el número de claves en reserva <n> (predeterminado: 100) - + Set maximum block size in bytes (default: %d) Establecer tamaño máximo de bloque en bytes (predeterminado: %d) - + Set minimum block size in bytes (default: 0) Establecer tamaño mínimo de bloque en bytes (predeterminado: 0) - + Set the masternode private key Establezca la clave privada del masternode - + Set the number of threads to service RPC calls (default: 4) Establecer el número de hilos para atender las llamadas RPC (predeterminado: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) Establece la opción DB_PRIVATE en el entorno de base de datos del monedero (predeterminado: 1) - + Show all debugging options (usage: --help -help-debug) Muestra todas las opciones de depuración (uso: --help -help-debug) - + Show benchmark information (default: 0) Mostrar información de benchmarking (predeterminado: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Reducir el archivo debug.log al iniciar el cliente (predeterminado: 1 sin -debug) - + Signing failed. No se pudo firmar. - + Signing timed out, please resubmit. La sesión de firma ha caducado, por favor inténtelo de nuevo. - + Signing transaction failed Falló la firma de la transacción - - Specify configuration file (default: darkcoin.conf) - Especificar el archivo de configuración (predeterminado: darkcoin.conf) + + Specify configuration file (default: dash.conf) + Especificar el archivo de configuración (predeterminado: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Especificar el tiempo máximo de desconexión en milisegundos (predeterminado: 5000) - + Specify data directory Especificar directorio para los datos - + Specify masternode configuration file (default: masternode.conf) Especificar el archivo de configuración del Masternode (predeterminado: masternode.conf) - - Specify pid file (default: darkcoind.pid) - Especificar archivo pid (por defecto: darkcoind.pid) + + Specify pid file (default: dashd.pid) + Especificar archivo pid (por defecto: dashd.pid) - + Specify wallet file (within data directory) Especificar archivo de monedero (dentro del directorio de datos) - + Specify your own public address Especifique su propia dirección pública - + Spend unconfirmed change when sending transactions (default: 1) Gastar cambio no confirmado al enviar transacciones (predeterminado: 1) - + Start Dash Core Daemon Iniciar Daemon de Dash Core - + System error: Error de sistema: - + This help message Este mensaje de ayuda - + This is intended for regression testing tools and app development. Esto está enfocado a las herramientas de prueba de regresión y desarrollo de aplicaciones. - + This is not a masternode. Esto no es un masternode. - + Threshold for disconnecting misbehaving peers (default: 100) Umbral para la desconexión de pares con mal comportamiento (predeterminado: 100) - + To use the %s option Para utilizar la opción %s - + Transaction amount too small Cuantía de la transacción demasiado pequeña - + Transaction amounts must be positive Las cuantías en las transacciones deben ser positivas - + Transaction created successfully. Transacción creada con éxito. - + Transaction fees are too high. Las comisiones por transacción son demasiado elevadas. - + Transaction not valid. La transacción no es válida. - + Transaction too large Transacción demasiado grande - + Unable to bind to %s on this computer (bind returned error %s) No es posible enlazar con %s en este sistema (bind ha dado el error %s) - + Unable to sign masternode payment winner, wrong key? No fue posible firmar el Masternode ganador del pago, ¿clave incorrecta? - + Unable to sign spork message, wrong key? No fue posible firmar el mensaje de spork, ¿clave incorrecta? - + Unknown -socks proxy version requested: %i Solicitada versión de proxy -socks desconocida: %i - + Unknown network specified in -onlynet: '%s' La red especificada en -onlynet '%s' es desconocida - + Upgrade wallet to latest format Actualizar el monedero al formato más reciente - - Usage (deprecated, use darkcoin-cli): - Uso (obsoleto, use darkcoin-cli): + + Usage (deprecated, use dash-cli): + Uso (obsoleto, use dash-cli): - + Usage: Uso: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) Utilice la integración KeePass 2 usando el plugin KeePassHttp (por defecto: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) Utilice N masternodes distintos para anonimizar los fondos (2-8, por defecto: 2) - + Use OpenSSL (https) for JSON-RPC connections Usar OpenSSL (https) para las conexiones JSON-RPC - + Use UPnP to map the listening port (default: 0) Usar UPnP para asignar el puerto de escucha (predeterminado: 0) - + Use UPnP to map the listening port (default: 1 when listening) Usar UPnP para asignar el puerto de escucha (predeterminado: 1 al escuchar) - + Use the test network Usar la red de pruebas - + Username for JSON-RPC connections Nombre de usuario para las conexiones JSON-RPC - + Value more than Darksend pool maximum allows. El valor es mayor al máximo permitido por el pool Darksend. - + Verifying blocks... Verificando bloques... - + Verifying wallet... Verificando monedero... - + Wait for RPC server to start Espere a que se inicie el servidor RPC - + Wallet %s resides outside data directory %s El monedero %s se encuentra fuera del directorio de datos %s - + Wallet is locked. El monedero está bloqueado. - + Wallet needed to be rewritten: restart Dash to complete El monedero necesita ser reescrito: reinicie Dash para terminar - + Wallet options: Opciones de monedero: - + Warning Aviso - + Warning: Deprecated argument -debugnet ignored, use -debug=net Aviso: El argumento obsoleto -debugnet se ignoró, utilice -debug=net - + Warning: This version is obsolete, upgrade required! Aviso: Esta versión se ha quedado obsoleta, ¡actualización obligatoria! @@ -5268,27 +5268,27 @@ Si el archivo no existe, créelo con permiso de lectura solamente del propietari - + You need to rebuild the database using -reindex to change -txindex Usted necesita reconstruir la base de datos utilizando -reindex para cambiar -txindex - + Zapping all transactions from wallet... Eliminando todas las transacciones del monedero... - + on startup al iniciar - + version versión - + wallet.dat corrupt, salvage failed wallet.dat dañado, falló el rescate diff --git a/src/qt/locale/darkcoin_fi.ts b/src/qt/locale/dash_fi.ts similarity index 92% rename from src/qt/locale/darkcoin_fi.ts rename to src/qt/locale/dash_fi.ts index d5b8d06226..215b978328 100644 --- a/src/qt/locale/darkcoin_fi.ts +++ b/src/qt/locale/dash_fi.ts @@ -277,9 +277,9 @@ Tämä ohjelma sisältää OpenSSL projektin OpenSSL työkalupakin (http://www.o - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! Varoitus: Jos salaat lompakon ja unohdat salasanan, -<b>MENETÄT KAIKKI DARKCOINISI</b>! +<b>MENETÄT KAIKKI DASHISI</b>! @@ -294,7 +294,7 @@ Tämä ohjelma sisältää OpenSSL projektin OpenSSL työkalupakin (http://www.o - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. Dash sulkeutuu nyt salauksen viimeistelyä varten. Muista että salaus pelkästään ei voi estää Darkcoiniesi varastamista jos koneesi saastuu haittaohjelmilla tai viruksilla. @@ -400,7 +400,7 @@ Tämä ohjelma sisältää OpenSSL projektin OpenSSL työkalupakin (http://www.o - Request payments (generates QR codes and darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) Pyydä maksuja (Luo QR koodit ja Dash: URIt) @@ -598,7 +598,7 @@ Tämä ohjelma sisältää OpenSSL projektin OpenSSL työkalupakin (http://www.o - Open a darkcoin: URI or payment request + Open a dash: URI or payment request Avaa Dash: URI tai maksupyyntö @@ -782,7 +782,7 @@ Osoite: %4 Lompakko on <b>salattu</b> ja tällä hetkellä <b>lukittu</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Vakava virhe tapahtunut. Dash ei voi enää toimia turvallisesti ja sulkeutuu. @@ -1635,9 +1635,9 @@ Varoitus: Jos käytät käyttöjärjestelmää (Live os) suoraan usb, dvd tai cd Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ Puuttuuko sopiva kieli tai käännös on kesken? Auta käännöstyössä täällä: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2065,7 +2065,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler Ei voi käynnistää Darkcoinia: click-to-pay handler @@ -2148,35 +2148,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. Virhe: Annettua data-hakemistoa "%1" ei ole olemassa. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Virhe: Ei voida jäsentää asetustiedostoa: %1. Käytä vain avain=arvo syntaksia. - + Error reading masternode configuration file: %1 Virhe luettaessa masternoden asetustiedostoa: %1 - + Error: Invalid combination of -regtest and -testnet. Virhe: Virheellinen yhdistelmä -regtest ja -testnet. - + Dash Core didn't yet exit safely... Dash Core ei ole vielä sulkeutunut turvallisesti... @@ -2985,8 +2985,8 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. - Viesti joka liitettiin darkcoin: URI joka talletetaan siirtotapahtuman kanssa viitteeksi sinulle. Huomio: Tätä viestiä ei lähetetä Dash verkkoon. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + Viesti joka liitettiin dash: URI joka talletetaan siirtotapahtuman kanssa viitteeksi sinulle. Huomio: Tätä viestiä ei lähetetä Dash verkkoon. @@ -3922,13 +3922,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3939,7 +3939,7 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com %s, sinun tulee asettaa rpc salasana asetustietostossa: %s Suositellaan että käytät allaolevaa satunnaista salasanaa: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (sinun ei tarvitse muistaa tätä salasanaa) Tämä tunnus ja salasana on oltava ERILAISET. @@ -3949,247 +3949,247 @@ esimerkiksi: alertnotify=echo %%s | mail -s "Dash Hälytys" admin@foo. - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Hyväksytyt salakirjoitukset (oletus: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s Virhe asetettaessa RPC porttia %u IPv4 verkkoliikenteelle: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Virhe asetettaessa RPC porttia %u IPv6 verkkoliikenteelle, palataan takaisin IPv4:ään %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Kytkeydy annettuun osoitteeseen ja pidä linja aina auki. Käytä [host]:portin merkintätapaa IPv6:lle. - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. Ei voida lukita data hakemistoa %s. Dash Core on luultavasti jo käynnissä. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) Rajoita yhtäaikaiset siirtotapahtumat <n>*1000 tavua per minuutti (oletus: 15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. Darksend käyttää tarkalleen denominoituja syötteitä lähettäessään varoja, saatat tarvita anonymisoida lisää kolikoita. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) Kytke pois käytöstä kaikki Masternode ja Darksend toiminnot (0-1, oletus: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) Ota instantx käyttöön, näytä lukittujen siirtojen vahvistukset (oletus: päällä) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) Ota käyttöön automaattinen Darksend rahavaroille tässä lompakossa (0-1, oletus: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. Aloita regressio testimoodi joka käyttää erikoisketjua missä lohkot voidaan ratkaista välittömästi. Tämä on tarkoitettu regressiotestien työkaluksi ja ohjelman kehittämiseen. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Aloita regressio testimoodi joka käyttää erikoisketjua jossa lohkoja voidaan ratkaista välittömästi. - + Error: Listening for incoming connections failed (listen returned error %s) Virhe: Sisääntulevien yhteyksien kuuntelu epäonnistui (kuuntelu palautti virheen %s) - + 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 and coins were spent in the copy but not marked as spent here. Virhe: Siirtotapahtuma hylättiin! Tämä saattaa tapahtua jos jotkut kolikot lompakossa on jo käytetty. Esimerkiksi jos käytit kopioitua lompakkoa ja kolikot on käytetty jo siellä, mutta ei ole merkattu käytetyksi täällä. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Virhe: Tämä siirtotapahtuma vaatii siirtopalkkion vähintään %s johtuen sen määrästä, monimutkaisuudesta tai äskettäin vastaanotettujen varojen käytöstä - + Error: Wallet unlocked for anonymization only, unable to create transaction. Virhe: Lompakko on avattu vain anonymisointia varten, siirtotapahtumaa ei voida luoda. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Aja komento kun olennainen hälytys vastaanotetaan tai nähdään todella pitkä haara (%s cmd korvataan viestillä) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Suorita käsky kun lompakon siirtotapahtuma muuttuu (%s cmd on vaihdettu TxID kanssa) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Suorita käsky kun paras lohko muuttuu (%s cmd on korvattu lohko tarkisteella) - + Fees smaller than this are considered zero fee (for transaction creation) (default: Tätä pienemmät palkkiot lasketaan nollaksi (siirtotapahtuman luonnissa) (oletus: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) Aja tietokannan tapahtumat muistivarannosta kovalevylogiin joka <n> megatavu (oletus: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. Löytyi vahvistamattomia syötteitä, odotetaan että ne vahvistetaan. - + How thorough the block verification of -checkblocks is (0-4, default: 3) Kuinka vaativa lohkonvarmistus -checkblocks on (0-4, oletus: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. Tässä moodissa -genproclimit ohjaa kuinka monta lohkoa luodaan välittömästi. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. Instantx vaatii vähintään 6 varmistusta, odota muutama minuutti ja yritä uudelleen. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) Kuuntele JSON-RPC yhteyksiä portista <port> (oletus: 9998 tai testiverkko: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase Rakenne url nimi KeePass merkinnälle joka talentaa lompakon salasanan - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Sekuntien määrä, kuinka kauan yritetään uudelleen kytkeytyä vertaisverkkoon (oletus: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Tulosta debuggaustieto (oletus: 0, annettu <kategoria> on valinnainen) - + 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) Tarjoa Darksend:ille likviditeettiä jatkuvaa kolikoiden sekoitusta varten (0-100, oletus: 0, 1=usein, isot maksukulut, 100=harvoin, pienet maksukulut) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Tiedustele vertaisverkon osoitteita DNS hakua käyttäen jos osoitteita ei ole riittävästi (oletus: 1 paitsi jos -connect) - + Set external address:port to get to this masternode (example: address:port) Aseta ulkoinen osoite:portti tälle masternodelle (esim: osoite:portti) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Aseta maksimikoko korkea prioriteetti/pieni palkkio siirtotapahtumiin tavuissa (oletus: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Aseta script varmistuksen säikeiden määrä (%u - %d, 0= auto, <0 = jätä näin monta prosessorin ydintä vapaaksi, oletus: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) Aseta prosessorin raja kun lohkojen louhiminen on päällä (-1 = rajoittamaton, oletus: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) Näytä N vahvistusta onnistuneesti lukitulle siirtotapahtumalle (0-9999, oletus: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Tämä on esi-julkaistu testiversio - Käytä omalla vastuulla - Älä käytä louhimiseen tai kauppasovelluksiin. - + Unable to bind to %s on this computer. Dash Core is probably already running. Ei voida yhdistää %s tässä tietokoneessa. Dash Core on luultavasti jo käynnissä. - + Unable to locate enough Darksend denominated funds for this transaction. Ei tarpeeksi Darksend anonymisoituja varoja tälle siirtotapahtumalle. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. Ei tarpeeksi Darksend ei-anonymisoituja varoja tälle siirtotapahtumalle, joka ei ole 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. Ei tarpeeksi Darksend ei-anonymisoituja varoja tälle siirtotapahtumalle. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Käytä erillistä SOCKS5 proxya tavoittaaksesi vertaisverkon Tor palvelun kautta (oletus: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Varoitus: Siirtomaksu on asetettu erittäin korkeaksi! Tämä on maksukulu jonka tulet maksamaan kun lähetät siirron. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. Varoitus: Tarkista että tietokoneesi kellonaika ja päivämäärä ovat ajan tasalla! Dash ei toimi oikein väärällä päivämäärällä ja/tai kellonajalla. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Varoitus: Dash verkossa on ristiriitoja! Louhijat näyttävät kokevan virhetilanteita. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Varoitus: Olemme vertaisverkon kanssa ristiriidassa! Sinun ja/tai solmujen tulee päivitää uusimpaan Dash versioon. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Varoitus: Virhe luettaessa wallet.dat lompakkotiedostoa. Kaikki avaimet luettiin onnistuneesti, mutta siirtohistoria tai osoitekirja saattavat olla kadonneet tai virheellisiä. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Varoitus: Wallet.dat lompakkotiedosto on vioittunut, tiedot pelastettu. Alkuperäinen wallet.dat lompakkotiedosto on tallennettu wallet.{timestamp}.bak kansioon %s, jos saldosi tai siirtohistoria on virheellinen, sinun tulisi palauttaa lompakkotiedosto varmuuskopiosta. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4198,1067 +4198,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. Jos tiedostoa ei ole, niin luo se ainoastaan omistajan kirjoitusoikeuksin. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. Sinun täytyy määritellä masternodeprivkey asetustiedostoon. Katso lisätietoja dokumentaatiosta. - + (default: 1) (oletus: 1) - + (default: wallet.dat) (oletus: wallet.dat) - + <category> can be: <category> voi olla: - + Accept command line and JSON-RPC commands Hyväksy merkkipohjaiset ja JSON-RPC käskyt - + Accept connections from outside (default: 1 if no -proxy or -connect) Hyväksy yhteyksiä ulkopuolelta (oletus: 1 jos -proxy tai -connect ei ole määritelty) - + Add a node to connect to and attempt to keep the connection open Linää solmu mihin liittyä pitääksesi yhteyden auki - + Allow DNS lookups for -addnode, -seednode and -connect Salli DNS kyselyt -addnode, -seednode ja -connect yhteydessä - + Allow JSON-RPC connections from specified IP address Salli JSON-RPC yhteydet tietystä ip-osoitteesta - + Already have that input. Syöte on jo olemassa. - + Always query for peer addresses via DNS lookup (default: 0) Tiedustele aina vertaisverkon osoitteita DNS hakua käyttäen (oletus: 0) - + Attempt to recover private keys from a corrupt wallet.dat Yritetään palauttaa yksityisiä avaimia vioittuneesta wallet.dat lompakkotiedostosta - + Block creation options: Lohkon luonnin asetukset: - + Can't denominate: no compatible inputs left. Ei voida denomnoida: yhteensopivia syötteitä ei ole jäljellä. - + Cannot downgrade wallet Et voi päivittää lompakkoasi vanhempaan versioon - + Cannot resolve -bind address: '%s' -bind osoitteen '%s' selvittäminen epäonnistui - + Cannot resolve -externalip address: '%s' -externalip osoitteen '%s' selvittäminen epäonnistui - + Cannot write default address Oletusosoitetta ei voi kirjoittaa - + Clear list of wallet transactions (diagnostic tool; implies -rescan) Tyhjennä lompakon siirtotapahtumien lista (diagnostiikka työkalu; olettaa -rescan) - + Collateral is not valid. Vakuus ei ole pätevä. - + Collateral not valid. Vakuus ei ole pätevä. - + Connect only to the specified node(s) Yhdistä ainoastaan määriteltyihin solmuihin - + Connect through SOCKS proxy Yhdistä SOCKS proxyn kautta - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) Yhdistä JSON-RPC porttiin <port> (oletus: 9998 tai testiverkko: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) Yhdistä KeePassHttp porttiin <port> (oletus: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Yhdistä solmuun hakeaksesi vertaisverkon osoitteet ja katkaise yhteys - + Connection options: Yhteyden valinnat: - + Corrupted block database detected Vioittunut lohkotietokanta havaittu - + Dash Core Daemon Dash Core Palveluprosessi - + Dash Core RPC client version Dash Core RPC asiakas versio - + Darksend is disabled. Darksend on pois käytöstä. - + Darksend options: Darksend valinnat: - + Debugging/Testing options: Debuggaus/Testauksen valinnat: - + Disable safemode, override a real safe mode event (default: 0) Poista turvatila käytöstä, syrjäytä todellinen turvatilatapahtuma (oletus: 0) - + Discover own IP address (default: 1 when listening and no -externalip) Hae oma IP osoite (oletus: 1 kun kuunnellaan ja ei -externalip) - + Do not load the wallet and disable wallet RPC calls Älä lataa lompakkoa ja poista käytöstä lompakon RPC kutsut - + Do you want to rebuild the block database now? Haluatko uudelleenrakentaa lohkotietokannan nyt? - + Done loading Lataus on valmis - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) Aseta asiakasohjelma masternodeksi (0-1, oletus: 0) - + Entries are full. Merkinnät on täynnä. - + Error connecting to masternode. Virhe masternodeen kytkeytymisessä. - + Error initializing block database Virhe lohkotietokannan alustuksessa - + Error initializing wallet database environment %s! Virhe lompakon tietokantaympäristön alustuksessa %s! - + Error loading block database Virhe lohkotietokannan latauksessa - + Error loading wallet.dat Virhe ladattaessa wallet.dat tiedostoa - + Error loading wallet.dat: Wallet corrupted Virhe ladattaessa wallet.dat tiedostoa: Lompakko vioittunut - + Error loading wallet.dat: Wallet requires newer version of Dash Virhe ladattaessa wallet.dat lompakkotiedostoa: Tarvitset uudemman version Darkcoinista - + Error opening block database Virhe lohkotietokannan avauksessa - + Error reading from database, shutting down. Virhe luettaessa tietokantaa, ohjelma suljetaan. - + Error recovering public key. Virhe yleisen avaimen palautuksessa. - + Error Virhe - + Error: Disk space is low! Virhe: Levytila on alhainen! - + Error: Wallet locked, unable to create transaction! Virhe: Lompakko on lukittu, siirtotapahtumaa ei voida luoda! - + Error: You already have pending entries in the Darksend pool Virhe: Sinulla on jo odottavia syötteitä Darksend varannossa - + Error: system error: Virhe: Järjestelmävirhe: - + Failed to listen on any port. Use -listen=0 if you want this. Ei onnistuttu kuuntelemaan mitään porttia. Käytä -listen=0 jos haluat tätä. - + Failed to read block info Lohkotietojen luku epäonnistui - + Failed to read block Lohkon luku epäonnistui - + Failed to sync block index Lohkoindeksin synkronointi epäonnistui - + Failed to write block index Lohkoindeksin kirjoitus epäonnistui - + Failed to write block info Lohkotiedon kirjoitus epäonnistui - + Failed to write block Lohkon kirjoitus epäonnistui - + Failed to write file info Tiedoston tietojen kirjoitus epäonnistui - + Failed to write to coin database Kolikkotietokannan kirjoitus epäonnistui - + Failed to write transaction index Siirtotapahtumien indeksin kirjoitus epäonnistui - + Failed to write undo data Palautustiedon kirjoitus epäonnistui - + Fee per kB to add to transactions you send Palkkio per kB joka lisätään lähettämiisi siirtotapahtumiin - + Fees smaller than this are considered zero fee (for relaying) (default: Tätä pienemmät palkkiot lasketaan nollaksi (välittämisessä) (oletus: - + Force safe mode (default: 0) Pakota turvatila (oletus: 0) - + Generate coins (default: 0) Luo kolikoita (oletus: 0) - + Get help for a command Etsi apua käskyyn - + How many blocks to check at startup (default: 288, 0 = all) Kuinka monta lohkoa tarkistetaan käynnistettäessä (oletus: 288, 0 = kaikki) - + If <category> is not supplied, output all debugging information. Jos <kategoria> ei ole toimitettu, tulosta kaikki debuggaustieto. - + Ignore masternodes less than version (example: 70050; default : 0) Ohita masternodet jotka ovat pienempiä versioltaan (esim: 70050; oletus: 0) - + Importing... Tuodaan... - + Imports blocks from external blk000??.dat file Tuodaan lohkoja ulkoisesta blk000??.dat tiedostosta - + Incompatible mode. Yhteensopimaton tila: - + Incompatible version. Yhteensopimaton versio. - + Incorrect or no genesis block found. Wrong datadir for network? Väärä tai ei alkuperäinen lohko löydetty. Väärä data hakemisto verkolle? - + Information Tietoa - + Initialization sanity check failed. Dash Core is shutting down. Alkuperäisyyden tarkistus epäonnistui. Dash Core sulkeutuu. - + Input is not valid. Syöte ei ole pätevä. - + InstantX options: Instantx valinnat: - + Insufficient funds Saldo ei riitä - + Insufficient funds. Saldo ei riitä. - + Invalid -onion address: '%s' Virheellinen -onion osoite: '%s' - + Invalid -proxy address: '%s' Virheellinen proxyn osoite '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' Virheellinen määrä -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' Virheellinen määrä -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Virheellinen määrä -paytxfee=<amount>: '%s' - + Invalid amount Virheellinen määrä - + Invalid masternodeprivkey. Please see documenation. Virheellinen masternoden yksityisavain (masternodeprivkey). Katso lisätietoja dokumentaatiosta. - + Invalid private key. Virheellinen yksityisavain. - + Invalid script detected. Virheellinen scripti havaittu. - + KeePassHttp id for the established association KeePassHttp tunnus (id) yhdistymiseen - + KeePassHttp key for AES encrypted communication with KeePass KeePassHttp avain AES salattuun viestintään - - Keep N darkcoin anonymized (default: 0) - Pidä N darkcoinia anonymisoituna (default: 0) + + Keep N dash anonymized (default: 0) + Pidä N dashia anonymisoituna (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) Pidä enintään <n> ei yhdistettyä lohkoa muistissa (oletus: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) Pidä enintään <n> ei yhdistettyä siirtotapahtumaa muistissa (oletus: %u) - + Last Darksend was too recent. Viimeisin Darksend oli liian äskettäin. - + Last successful darksend action was too recent. Viimeisin onnistunut Darksend oli liian äskettäin. - + Limit size of signature cache to <n> entries (default: 50000) Rajaa allekirjoituksen välimuistin koko <n> alkioon (oletus: 50000) - + List commands Lista komennoista - + Listen for connections on <port> (default: 9999 or testnet: 19999) Kuuntele yhteyksiä portista <port> (oletus: 9999 tai testiverkko: 19999) - + Loading addresses... Ladataan osoitteita... - + Loading block index... Ladataan lohkoindeksiä... - + Loading masternode list... Ladataan masternode listaa... - + Loading wallet... (%3.2f %%) Ladataan lompakkoa... (%3.2f %%) - + Loading wallet... Ladataan lompakkoa... - + Log transaction priority and fee per kB when mining blocks (default: 0) Kirjaa siirtotapahtuman prioriteetti ja palkkio per kB kun louhitaan lohkoja (oletus: 0) - + Maintain a full transaction index (default: 0) Ylläpidä täydellistä siirtotapahtumien indeksiä (oletus: 0) - + Maintain at most <n> connections to peers (default: 125) Pidä enintään <n> yhteyttä vertaisverkkoon (oletus: 125) - + Masternode options: Masternode valinnat: - + Masternode queue is full. Masternode jono on täysi. - + Masternode: Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Suurin vastaanottopuskuri yksittäiselle yhteydelle, <n>*1000 tavua (oletus: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Suurin lähetyspuskuri yksittäiselle yhteydelle, <n>*1000 tavua (oletus: 1000) - + Missing input transaction information. Puuttuva siirtotapahtuman tieto. - + No compatible masternode found. Yhteensopivaa masternodea ei löytynyt. - + No funds detected in need of denominating. Denominointia tarvitsevia varoja ei löydy. - + No masternodes detected. Masternodeja ei havaittu. - + No matching denominations found for mixing. Vastaavia denominointeja sekoitukseen ei löydy. - + Non-standard public key detected. Epästandardi yleinen avain havaittu. - + Not compatible with existing transactions. Ei yhteensopiva olemassa olevien siirtotapahtumien kanssa. - + Not enough file descriptors available. Ei tarpeeksi tiedostomerkintöjä saatavilla. - + Not in the masternode list. Ei ole masternode listassa. - + Only accept block chain matching built-in checkpoints (default: 1) Hyväksy vain lohkoketjua vastaavat sisäänrakennetut varmistuspisteet (Oletus: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Yhdistä vain verkkosolmuihin <net> (IPv4, IPv6 tai Tor) - + Options: Asetukset: - + Password for JSON-RPC connections Salasana JSON-RPC yhteyksille - + Prepend debug output with timestamp (default: 1) Lisää aikamerkintä debug tulosteen eteen (oletus: 1) - + Print block on startup, if found in block index Tulosta lohko käynnistyksessä jos löydetään lohkoindeksistä - + Print block tree on startup (default: 0) Tulosta lohkopuu käynnistyksessä (oletus: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) RPC SSL valinnat: (katso Bitcoin Wikistä SSL-asennuksen ohjeet) - + RPC client options: RPC asiakas valinnat: - + RPC server options: RPC palvelimen valinnat: - + Randomly drop 1 of every <n> network messages Satunnaisesti pudota 1 joka <n> verkkoviestistä - + Randomly fuzz 1 of every <n> network messages Satunnaisesti sekoita 1 joka <n> verkkoviestistä - + Rebuild block chain index from current blk000??.dat files Uudelleenrakenna lohkoketjuindeksi nykyisistä blk000??.dat tiedostoista - + Rescan the block chain for missing wallet transactions Skannaa uudelleen lohkoketju lompakon puuttuvien siirtotapahtumien vuoksi - + Rescanning... Skannataan uudelleen... - + Run a thread to flush wallet periodically (default: 1) Aja säie joka tallentaa lompakon ajoittain (oletus: 1) - + Run in the background as a daemon and accept commands Aja taustalla palveluprosessina ja hyväksy komennot - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL asetukset: (katso Bitcoin Wikistä tarkemmat SSL ohjeet) - + Select SOCKS version for -proxy (4 or 5, default: 5) Valitse SOCKS versio -proxy:lle (4 tai 5, oletus: 5) - + Send command to Dash Core Lähetä komento Dash Core:lle - + Send commands to node running on <ip> (default: 127.0.0.1) Lähetä komentoja solmuun osoitteessa <ip> (oletus: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Lähetä jäljitys/debug-tieto konsoliin, debug.log tiedoston sijaan - + Server certificate file (default: server.cert) Palvelimen sertifikaatti tiedosto (oletus: server.cert) - + Server private key (default: server.pem) Palvelimen yksityisavain (oletus: server.pem) - + Session not complete! Istunto ei ole valmis! - + Session timed out (30 seconds), please resubmit. Istunnon aikaraja (30 sekuntia), esitä uudestaan. - + Set database cache size in megabytes (%d to %d, default: %d) Aseta tietokannan välimuistin koko megatavuissa (%d - %d, oletus: %d - + Set key pool size to <n> (default: 100) Aseta avainvarannon koko <n> (oletus: 100) - + Set maximum block size in bytes (default: %d) Aseta lohkon maksimikoko tavuissa (oletus: %d) - + Set minimum block size in bytes (default: 0) Aseta pienin lohkon koko tavuissa (oletus: 0) - + Set the masternode private key Aseta masternoden yksityisavain. - + Set the number of threads to service RPC calls (default: 4) Aseta säikeiden lukumäärä RPC kutsuille (oletus: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) Asettaa DB_PRIVATE lipun lompakon tietokantaympäristössä (oletus: 1) - + Show all debugging options (usage: --help -help-debug) Näytä kaikki debuggaus valinnat: (käyttö: --help -help-debug) - + Show benchmark information (default: 0) Näytä suorituskykytietoja (oletus: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Pienennä debug.log tiedosto käynnistyksen yhteydessä (vakioasetus: 1 kun ei -debug) - + Signing failed. Allekirjoitus epäonnistui. - + Signing timed out, please resubmit. Allekirjoitus aikaraja, esitä uudestaan. - + Signing transaction failed Siirtotapahtuman allekirjoitus epäonnistui - - Specify configuration file (default: darkcoin.conf) - Määritä asetustiedosto (oletus: darkcoin.conf) + + Specify configuration file (default: dash.conf) + Määritä asetustiedosto (oletus: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Määritä yhteyden aikaraja millisekunneissa (vakioasetus: 5000) - + Specify data directory Määritä data hakemisto - + Specify masternode configuration file (default: masternode.conf) Määritä masternoden asetustiedosto (oletus: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) Määritä pid tiedosto (oletus: masternode.pid) - + Specify wallet file (within data directory) Määritä lompakkotiedosto (data hakemiston sisällä) - + Specify your own public address Määritä julkinen osoitteesi - + Spend unconfirmed change when sending transactions (default: 1) Käytä varmistamattomia vaihtorahoja lähetettäessä siirtotapahtumia (oletus: 1) - + Start Dash Core Daemon Käynnistä Dash Core palveluprosessi - + System error: Järjestelmävirhe: - + This help message Tämä ohjeviesti - + This is intended for regression testing tools and app development. Tämä on tarkoitettu regression testityökaluille ja ohjelman kehittämiseen. - + This is not a masternode. Tämä ei ole masternode. - + Threshold for disconnecting misbehaving peers (default: 100) Kynnysarvo aikakatkaisulle heikosti toimivalle vertaisverkolle (oletus: 100) - + To use the %s option Käytä %s valintaa - + Transaction amount too small Siirtosumma on liian pieni - + Transaction amounts must be positive Siirtosumman tulee olla positiivinen - + Transaction created successfully. Siirtotapahtuma luotu onnistuneesti. - + Transaction fees are too high. Siirtotapahtuman maksukulu on liian iso. - + Transaction not valid. Siirtotapahtuma ei ole voimassa. - + Transaction too large Siirtosumma on liian iso - + Unable to bind to %s on this computer (bind returned error %s) Ei voida yhdistää %s tässä tietokoneessa (yhdistäminen palautti virheen %s) - + Unable to sign masternode payment winner, wrong key? En voida osoittaa masternode maksun sajaa, väärä avain? - + Unable to sign spork message, wrong key? En voida osoittaa spork viestiä, väärä avain? - + Unknown -socks proxy version requested: %i Tuntematon -socks proxy versio pyydetty: %i - + Unknown network specified in -onlynet: '%s' Tuntematon verkkomääritys -onlynet parametrissa: '%s' - + Upgrade wallet to latest format Päivitä lompakko uusimpaan formaattiin - - Usage (deprecated, use darkcoin-cli): - Käyttö (käytöstä poistunut, käytä darkcoin-cli): + + Usage (deprecated, use dash-cli): + Käyttö (käytöstä poistunut, käytä dash-cli): - + Usage: Käyttö: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) Käytä KeePass 2 integrointia käyttäen KeePassHttp liitännäistä (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) Käytä N erillistä masternodea varojen anonymisointiin (2-8, oletus: 2) - + Use OpenSSL (https) for JSON-RPC connections Käytä OpenSSL:ää (https) JSON-RPC yhteyksille - + Use UPnP to map the listening port (default: 0) Käytä UPnP:tä kuunneltavan portin kartoitukseen (oletus: 0) - + Use UPnP to map the listening port (default: 1 when listening) Käytä UPnP:tä kuunneltavan portin kartoitukseen (oletus: 1 kun kuunellaan) - + Use the test network Käytä testiverkkoa - + Username for JSON-RPC connections Käyttäjätunnus JSON-RPC yhteyksille - + Value more than Darksend pool maximum allows. Määrä on enemmän kuin Darksend varannon maksimi sallii. - + Verifying blocks... Varmistetaan lohkoja... - + Verifying wallet... Varmistetaan lompakko... - + Wait for RPC server to start Odota että RPC palvelin käynnistyy - + Wallet %s resides outside data directory %s Lompakko %s sijaitsee data hakemiston ulkopuolella %s - + Wallet is locked. Lompakko on lukittu. - + Wallet needed to be rewritten: restart Dash to complete Lompakko on kirjoitettava uudelleen, käynnistä Dash uudestaan - + Wallet options: Lompakon valinnat: - + Warning Varoitus - + Warning: Deprecated argument -debugnet ignored, use -debug=net Varoitus: Käytöstä poistunut argumentti -debugnet sivutettu, käytä debug=net - + Warning: This version is obsolete, upgrade required! Varoitus: Tämä versio on vanhentunut, päivitys on tarpeen! @@ -5267,27 +5267,27 @@ Jos tiedostoa ei ole, niin luo se ainoastaan omistajan kirjoitusoikeuksin. - + You need to rebuild the database using -reindex to change -txindex Sinun tulee uudelleenrakentaa tietokanta käyttäen -reindex vaihtaen -txindex - + Zapping all transactions from wallet... Tyhjennetään kaikki siirtotapahtumat lompakosta.... - + on startup käynnistyksessä - + version versio - + wallet.dat corrupt, salvage failed wallet.dat lompakkotiedosto vioittunut, palastaminen epäonnistui diff --git a/src/qt/locale/darkcoin_fr.ts b/src/qt/locale/dash_fr.ts similarity index 92% rename from src/qt/locale/darkcoin_fr.ts rename to src/qt/locale/dash_fr.ts index 2343030876..7cfab46e21 100644 --- a/src/qt/locale/darkcoin_fr.ts +++ b/src/qt/locale/dash_fr.ts @@ -276,8 +276,8 @@ Ce produit comprend des logiciels développés par le projet OpenSSL afin d&apos - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - Attention : Si vous chiffrez votre portefeuille et perdez votre phrase de passe, vous <b>PERDREZ TOUS VOS DARKCOINS</b> ! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Attention : Si vous chiffrez votre portefeuille et perdez votre phrase de passe, vous <b>PERDREZ TOUS VOS DASHS</b> ! @@ -292,7 +292,7 @@ Ce produit comprend des logiciels développés par le projet OpenSSL afin d&apos - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. Dash va à présent se fermer pour terminer le chiffrement. N'oubliez pas que le chiffrement de votre portefeuille n'est pas une protection totale contre le vol par des logiciels malveillants qui infecteraient votre ordinateur. @@ -398,8 +398,8 @@ Ce produit comprend des logiciels développés par le projet OpenSSL afin d&apos - Request payments (generates QR codes and darkcoin: URIs) - Demande de paiements (Générer des QR code et des URIs darkcoin) + Request payments (generates QR codes and dash: URIs) + Demande de paiements (Générer des QR code et des URIs dash) @@ -596,8 +596,8 @@ Ce produit comprend des logiciels développés par le projet OpenSSL afin d&apos - Open a darkcoin: URI or payment request - Ouvrir une URI ou demande de paiement darkcoin + Open a dash: URI or payment request + Ouvrir une URI ou demande de paiement dash @@ -780,7 +780,7 @@ Adresse : %4 Le portefeuille est <b>chiffré</b> et actuellement <b>verrouillé</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Une erreur fatale est survenue. Dash ne peut plus continuer de façon sûre et va s'arrêter. @@ -1632,9 +1632,9 @@ Adresse : %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ Langage manquant ou traduction incomplète ? Participez aux traductions ici : -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2062,8 +2062,8 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler - Impossible de démarrer darkcoin: click-to-pay le gestionnaire + Cannot start dash: click-to-pay handler + Impossible de démarrer dash: click-to-pay le gestionnaire @@ -2145,35 +2145,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Le Dash - + Error: Specified data directory "%1" does not exist. Erreur : le répertoire de données spécifié « %1 » n'existe pas. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Erreur : impossible d'analyser le fichier de configuration : %1. N’utilisez que la syntaxe clef=valeur. - + Error reading masternode configuration file: %1 Erreur de lecture du fichier de configuration du masternode: %1 - + Error: Invalid combination of -regtest and -testnet. Erreur : combinaison invalide de -regtest et de -testnet. - + Dash Core didn't yet exit safely... Dash Core ne s'est pas encore arrêté en toute sécurité... @@ -2982,7 +2982,7 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. Un message qui était joint au Dash : URI qui sera sauvegardée avec la transaction pour référence. Note : Ce message ne sera pas envoyé à travers le réseau Dash. @@ -3919,13 +3919,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3936,7 +3936,7 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com %s, vous devez définir un rpc mot de passe dans le fichier de configuration: %s Il est recommandé que vous utilisiez ce mot de passe aléatoire: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (Vous ne devez pas vous souvenir de ce mot de passe) Le nom d'utilisateur et le mot de passe NE DOIVENT PAS être équivalent. @@ -3946,247 +3946,247 @@ Pour exemple: alertnotify=echo %%s | mail -s "Alerte Dash" admin@foo.c - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Chiffrements acceptables (par défaut : TLSv1.2+HIGH : TLSv1+HIGH : !SSLv2 : !aNULL : !eNULL : !3DES : @STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s Une erreur est survenue lors du réglage du port RPC %u pour écouter sur IPv4 : %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Une erreur est survenue lors du réglage du port RPC %u pour écouter sur IPv6, retour à IPv4 : %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Se lier à l'adresse donnée et toujours l'écouter. Utilisez la notation [host]:port pour l'IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. Impossible d’obtenir un verrou sur le répertoire de données %s. Dash Core fonctionne probablement déjà. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) Limiter continuellement les transactions gratuites à <n>*1000 octets par minute (par défaut : 15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. Darksend utilise les montants dénominés exacts pour envoyer des fonds, vous pourriez simplement avoir besoin d'anonymiser plus de pièces. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) Désactivez toutes les fonctionnalités liées à Masternode et Darksend (0-1, par défaut: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) Activer instantx, montrer les confirmations pour les transactions verrouillées (bool, par defaut: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) Activer l'utilisation automatique de Darksend pour les fonds stockés dans ce portefeuille (0-1, défaut: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. Entrer dans le mode de test de régression qui utilise une chaîne spéciale dans laquelle les blocs peuvent être résolus instantanément. Ceci est destiné aux outils de test de régression et au développement d'applications. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Passer en mode de test de régression qui utilise une chaîne spéciale dans laquelle les blocs sont résolus instantanément. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. Erreur : La transaction a été rejetée ! Ceci peut arriver si certaines pièces de votre portefeuille étaient déjà dépensées, par exemple si vous avez utilisé une copie de wallet.dat et les pièces ont été dépensées avec cette copie sans être marquées comme tel ici. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Erreur : Cette transaction nécessite des frais de transaction d'au moins %s en raison de son montant, de sa complexité ou de l'utilisation de fonds reçus récemment ! - + Error: Wallet unlocked for anonymization only, unable to create transaction. Erreur: Portefeuille uniquement déverrouillé pour l'anonymisation, impossible d'effectuer une transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Exécuter une commande lorsqu'une alerte pertinente est reçue ou si nous voyons une bifurcation vraiment étendue (%s dans la commande est remplacé par le message) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Exécuter la commande lorsqu'une transaction de portefeuille change (%s dans la commande est remplacée par TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Exécuter la commande lorsque le meilleur bloc change (%s dans cmd est remplacé par le hachage du bloc) - + Fees smaller than this are considered zero fee (for transaction creation) (default: Les frais inférieurs à ce seuil sont considérés comme nuls (pour la création de transactions) (par défaut : - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) Purger l’activité de la base de données de la zone de mémoire vers le journal sur disque tous les <n> mégaoctets (par défaut : 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. Détection de sorties dénominées non confirmées, attente de leur confirmation pour continuer. - + How thorough the block verification of -checkblocks is (0-4, default: 3) Degré de profondeur de la vérification des blocs -checkblocks (0-4, par défaut : 3) - + In this mode -genproclimit controls how many blocks are generated immediately. Dans ce mode -genproclimit contrôle combien de blocs sont générés immédiatement. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. InstantX nécessite des entrées avec au moins 6 confirmations, vous devriez attendre quelques minutes avant de réessayer. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) Écouter les connexions JSON-RPC sur <port> (par défaut : 9998 ou tesnet : 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase Nom pour construire l'URL pour l'entrée KeePass qui conserve la phrase de passe du portefeuille - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Délai en secondes de refus de reconnexion pour les pairs présentant un mauvais comportement (par défaut : 86400) - + Output debugging information (default: 0, supplying <category> is optional) Extraire les informations de débogage (par défaut : 0, fournir <category> est optionnel) - + 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) Fournir des liquidités à Darksend en mélangeant occasionnellement mais régulièrement des pièces (0-100, par défaut : 0, 1=très fréquent, frais élevés, 100=très rare, frais bas) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) Définir une adresse externe:port pour accéder à ce masternode (exemple : adresse:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Définir la taille maximale en octets des transactions prioritaires/à frais modiques (par défaut : %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Définir le nombre d'exétrons de vérification des scripts (%u à %d, 0 = auto, < 0 = laisser ce nombre de cœurs inutilisés, par défaut : %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) Définir la limite processeur définissant quand la génération est en fonction (-1 = illimité, par défaut : -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) Afficher N confirmations for une transaction verrouillée réussie (0-9999, default : 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Ceci est une pré-version de test - l'utiliser à vos risques et périls - ne pas l'utiliser pour miner ou pour des applications marchandes - + Unable to bind to %s on this computer. Dash Core is probably already running. Impossible de se lier à %s sur cet ordinateur. Dash Core fonctionne probablement déjà. - + Unable to locate enough Darksend denominated funds for this transaction. Impossible de localiser suffisamment de fonds Darksend dénominés pour cette transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. Impossible de localiser suffisamment de fonds non-dénominés Darksend pour cette transaction qui ne sont pas égaux à 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. Impossible de localiser suffisamment de fonds Darksend non-dénominés pour cette transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Utiliser un serveur mandataire SOCKS5 séparé pour atteindre les pairs par les services cachés de Tor (par défaut : -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Attention : -paytxfee est réglée sur un montant très élevé ! Il s'agit des frais de transaction que vous payerez si vous envoyez une transaction. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. Attention : Veuillez vérifier que la date et l'heure de votre ordinateur sont justes ! Si votre horloge n'est pas à l'heure, Dash ne fonctionnera pas correctement. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Attention : Le réseau ne semble pas totalement d'accord ! Quelques mineurs semblent éprouver des difficultés. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Attention : Nous ne semblons pas être en accord complet avec nos pairs ! Vous pourriez avoir besoin d'effectuer une mise à niveau, ou d'autres nœuds du réseau pourraient avoir besoin d'effectuer une mise à niveau. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Avertissement : une erreur est survenue lors de la lecture de wallet.dat ! Toutes les clefs ont été lues correctement mais les données de transaction ou les entrées du carnet d'adresses sont peut-être incorrectes ou manquantes. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Avertissement : wallet.dat corrompu, données récupérées ! Le fichier wallet.dat original a été enregistré en tant que wallet.{timestamp}.bak dans %s ; si votre solde ou transactions sont incorrects vous devriez effectuer une restauration depuis une sauvegarde. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4195,1067 +4195,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. Si le fichier n'existe pas, créez-le avec les droits de lecture seule accordés au propriétaire. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. Vous devez définir masternodeprivkey dans la configuration. Veuillez consulter la documentation pour plus d'aide. - + (default: 1) (par défaut : 1) - + (default: wallet.dat) (par défaut : wallet.dat) - + <category> can be: <category> peut être : - + Accept command line and JSON-RPC commands Accepter les commandes de JSON-RPC et de la ligne de commande - + Accept connections from outside (default: 1 if no -proxy or -connect) Accepter les connexions entrantes (par défaut : 1 si aucun -proxy ou -connect ) - + Add a node to connect to and attempt to keep the connection open Ajouter un nœud auquel se connecter et tenter de garder la connexion ouverte - + Allow DNS lookups for -addnode, -seednode and -connect Autoriser les recherches DNS pour -addnode, -seednode et -connect - + Allow JSON-RPC connections from specified IP address Autoriser les connexions JSON-RPC depuis l'adresse IP spécifiée - + Already have that input. Entrée déjà présente. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat Tenter de récupérer les clefs privées d'un wallet.dat corrompu - + Block creation options: Options de création de bloc : - + Can't denominate: no compatible inputs left. - + Cannot downgrade wallet Impossible de revenir à une version inférieure du portefeuille - + Cannot resolve -bind address: '%s' Impossible de résoudre l'adresse -bind : « %s » - + Cannot resolve -externalip address: '%s' Impossible de résoudre l'adresse -externalip : « %s » - + Cannot write default address Impossible d'écrire l'adresse par défaut - + Clear list of wallet transactions (diagnostic tool; implies -rescan) Effacer la liste des transactions du portefeuille (outil de diagnostic, implique un nouveau balayage -rescan) - + Collateral is not valid. Le collatéral est invalide. - + Collateral not valid. Collatéral invalide. - + Connect only to the specified node(s) Ne se connecter qu'au(x) nœud(s) spécifié(s) - + Connect through SOCKS proxy Connexion à travers un serveur mandataire SOCKS - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) Connecter à KeePassHttp sur le pot <port> (par défaut: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Se connecter à un nœud pour obtenir des adresses de pairs puis se déconnecter - + Connection options: Options de connexion : - + Corrupted block database detected Base corrompue de données des blocs détectée - + Dash Core Daemon Démon Dash Core - + Dash Core RPC client version Version du client RPC de Dash Core - + Darksend is disabled. Darksend est désactivé. - + Darksend options: Options Darksend : - + Debugging/Testing options: Options de test/de débogage : - + Disable safemode, override a real safe mode event (default: 0) Désactiver le mode sans échec, passer outre un événement sans échec réel (par défaut : 0) - + Discover own IP address (default: 1 when listening and no -externalip) Découvrir sa propre adresse IP (par défaut : 1 lors de l'écoute et si aucun -externalip) - + Do not load the wallet and disable wallet RPC calls Ne pas charger le portefeuille et désactiver les appels RPC - + Do you want to rebuild the block database now? Voulez-vous reconstruire la base de données des blocs maintenant ? - + Done loading Chargement terminé - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) Autoriser le client à agir en tant que masternode (0-1, par défaut : 0) - + Entries are full. - + Error connecting to masternode. Erreur de connexion au masternode. - + Error initializing block database Erreur lors de l'initialisation de la base de données des blocs - + Error initializing wallet database environment %s! Erreur lors de l'initialisation de l'environnement de la base de données du portefeuille %s ! - + Error loading block database Erreur du chargement de la base de données des blocs - + Error loading wallet.dat Erreur lors du chargement de wallet.dat - + Error loading wallet.dat: Wallet corrupted Erreur lors du chargement de wallet.dat : portefeuille corrompu - + Error loading wallet.dat: Wallet requires newer version of Dash Erreur au chargement de wallet.dat : le Portefeuille nécessite une nouvelle version de Dash - + Error opening block database Erreur lors de l'ouverture de la base de données des blocs - + Error reading from database, shutting down. Erreur à la lecture de la base de données, arrêt en cours. - + Error recovering public key. Erreur à la récupération de la clé publique. - + Error Erreur - + Error: Disk space is low! Erreur : l'espace disque est faible ! - + Error: Wallet locked, unable to create transaction! Erreur : Portefeuille verrouillé, impossible de créer la transaction ! - + Error: You already have pending entries in the Darksend pool Erreur : Vous avez déjà des entrées en attente dans la pool Darksend - + Error: system error: Erreur : erreur système : - + Failed to listen on any port. Use -listen=0 if you want this. Échec de l'écoute sur un port quelconque. Utilisez -listen=0 si vous voulez ceci. - + Failed to read block info La lecture des informations de bloc a échoué - + Failed to read block La lecture du bloc a échoué - + Failed to sync block index La synchronisation de l'index des blocs a échoué - + Failed to write block index L''écriture de l'index des blocs a échoué - + Failed to write block info L'écriture des informations du bloc a échoué - + Failed to write block L'écriture du bloc a échoué - + Failed to write file info L'écriture des informations de fichier a échoué - + Failed to write to coin database L'écriture dans la base de données des pièces a échoué - + Failed to write transaction index L'écriture de l'index des transactions a échoué - + Failed to write undo data L'écriture des données d'annulation a échoué - + Fee per kB to add to transactions you send Frais par ko à ajouter aux transactions que vous envoyez - + Fees smaller than this are considered zero fee (for relaying) (default: Les frais inférieurs à ce seuil sont considérés comme nuls (pour le relayage) (par défaut : - + Force safe mode (default: 0) Forcer le mode sans échec (par défaut : 0) - + Generate coins (default: 0) Générer des pièces (défaut : 0) - + Get help for a command Obtenir de l’aide pour une commande - + How many blocks to check at startup (default: 288, 0 = all) Nombre de blocs à vérifier au démarrage (par défaut : 288, 0 = tous) - + If <category> is not supplied, output all debugging information. Si <category> n'est pas indiqué, extraire toutes les données de débogage. - + Ignore masternodes less than version (example: 70050; default : 0) Ignorer les masternodes ayant une version inférieure (exemple: 70050 ; par défaut : 0) - + Importing... Importation... - + Imports blocks from external blk000??.dat file Importe des blocs depuis un fichier blk000??.dat externe - + Incompatible mode. Mode incompatible. - + Incompatible version. Version incompatible. - + Incorrect or no genesis block found. Wrong datadir for network? Bloc de genèse incorrect ou introuvable. Mauvais répertoire de données pour le réseau ? - + Information Informations - + Initialization sanity check failed. Dash Core is shutting down. - + Input is not valid. L'entrée est invalide. - + InstantX options: Options InstantX : - + Insufficient funds Fonds insuffisants - + Insufficient funds. Fonds insuffisants - + Invalid -onion address: '%s' Adresse -onion invalide : « %s » - + Invalid -proxy address: '%s' Adresse -proxy invalide : « %s » - + Invalid amount for -minrelaytxfee=<amount>: '%s' Montant invalide pour -minrelayfee=<montant> : « %s » - + Invalid amount for -mintxfee=<amount>: '%s' Montant invalide pour -mintxfee=<montant> : « %s » - + Invalid amount for -paytxfee=<amount>: '%s' Montant invalide pour -paytxfee=<montant> : « %s » - + Invalid amount Montant invalide - + Invalid masternodeprivkey. Please see documenation. masternodeprivkey invalide. Veuillez vous référer à la documentation. - + Invalid private key. Clé privée invalide. - + Invalid script detected. Script invalide détecté. - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) - Maintenir N darkcoin anonymisé en permanence (défaut: 0) + + Keep N dash anonymized (default: 0) + Maintenir N dash anonymisé en permanence (défaut: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. Le dernier Darksend est trop récent. - + Last successful darksend action was too recent. La dernière action Darksend est trop récente. - + Limit size of signature cache to <n> entries (default: 50000) Limiter la taille du cache des signatures à <n> entrées (par défaut : 50000) - + List commands Lister les commandes - + Listen for connections on <port> (default: 9999 or testnet: 19999) Écouter les connexions sur <port> (par défaut: 9999 ou testnet: 19999) - + Loading addresses... Chargement des adresses… - + Loading block index... Chargement de l’index des blocs… - + Loading masternode list... - + Loading wallet... (%3.2f %%) Chargement du portefeuille... (%3.2f %%) - + Loading wallet... Chargement du portefeuille… - + Log transaction priority and fee per kB when mining blocks (default: 0) Lors du minage, journaliser la priorité des transactions et les frais par ko (par défaut : 0) - + Maintain a full transaction index (default: 0) Maintenir un index complet des transactions (par défaut : 0) - + Maintain at most <n> connections to peers (default: 125) Garder au plus <n> connexions avec les pairs (par défaut : 125) - + Masternode options: Options Masternode : - + Masternode queue is full. La file d'attente du masternode est pleine. - + Masternode: Masternode : - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Tampon maximal de réception par connexion, <n>*1 000 octets (par défaut : 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Tampon maximal d'envoi par connexion », <n>*1000 octets (par défaut : 1000) - + Missing input transaction information. Informations de transaction entrante manquantes. - + No compatible masternode found. Aucun masternode compatible trouvé. - + No funds detected in need of denominating. Aucuns fonds détectés nécessitant une dénomination. - + No masternodes detected. Aucun masternode détecté. - + No matching denominations found for mixing. Pas de dénominations équivalentes trouvées pour le mélange. - + Non-standard public key detected. Clé publique non standard détectée. - + Not compatible with existing transactions. Non compatible avec les transactions existantes. - + Not enough file descriptors available. Pas assez de descripteurs de fichiers de disponibles. - + Not in the masternode list. Absent de la liste des masternodes. - + Only accept block chain matching built-in checkpoints (default: 1) N'accepter qu'une chaîne de blocs correspondant aux points de vérification intégrés (par défaut : 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Se connecter uniquement aux nœuds du réseau <net> (IPv4, IPv6 ou Tor) - + Options: Options : - + Password for JSON-RPC connections Mot de passe pour les connexions JSON-RPC - + Prepend debug output with timestamp (default: 1) Ajouter l'horodatage au début de la sortie de débogage (par défaut : 1) - + Print block on startup, if found in block index Imprimer le bloc au démarrage s'il est trouvé dans l'index des blocs - + Print block tree on startup (default: 0) Imprimer l'arborescence des blocs au démarrage (par défaut : 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) Options RPC SSL : (voir le wiki Bitcoin pour les instructions de configuration de SSL) - + RPC client options: Options du client RPC : - + RPC server options: Options du serveur RPC : - + Randomly drop 1 of every <n> network messages Abandonner aléatoirement 1 message du réseau sur <n> - + Randomly fuzz 1 of every <n> network messages Tester aléatoirement 1 message du réseau sur <n> - + Rebuild block chain index from current blk000??.dat files Reconstruire l'index de la chaîne de blocs à partir des fichiers blk000??.dat courants - + Rescan the block chain for missing wallet transactions Réanalyser la chaîne de blocs pour les transactions de portefeuille manquantes - + Rescanning... Nouvelle analyse… - + Run a thread to flush wallet periodically (default: 1) Exécuter une tâche pour purger le portefeuille périodiquement (par défaut : 1) - + Run in the background as a daemon and accept commands Fonctionner en arrière-plan en tant que démon et accepter les commandes - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Options SSL : (voir le Wiki de Bitcoin pour les instructions de configuration du SSL) - + Select SOCKS version for -proxy (4 or 5, default: 5) Choisir la version SOCKS pour -proxy (4 ou 5, par défaut : 5) - + Send command to Dash Core Envoyer commandes vers Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) Envoyer des commandes au nœud fonctionnant sur <ip> (par défaut : 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Envoyer les informations de débogage/trace à la console au lieu du fichier debug.log - + Server certificate file (default: server.cert) Fichier de certification du serveur (par défaut : server.cert) - + Server private key (default: server.pem) Clef privée du serveur (par défaut : server.pem) - + Session not complete! Session incomplète! - + Session timed out (30 seconds), please resubmit. Session expirée (30 secondes), veuillez s'il vous plaît réessayer. - + Set database cache size in megabytes (%d to %d, default: %d) Définir la taille du cache de la base de données en mégaoctets (%d to %d, default: %d) - + Set key pool size to <n> (default: 100) Définir la taille de la réserve de clefs à <n> (par défaut : 100) - + Set maximum block size in bytes (default: %d) Définir la taille minimale de bloc en octets (par défaut : %d) - + Set minimum block size in bytes (default: 0) Définir la taille de bloc minimale en octets (par défaut : 0) - + Set the masternode private key Définir la clé privée du masternode - + Set the number of threads to service RPC calls (default: 4) Définir le nombre d'exétrons pour desservir les appels RPC (par défaut : 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) Définit le drapeau DB_PRIVATE dans l'environnement de la BD du portefeuille (par défaut : 1) - + Show all debugging options (usage: --help -help-debug) Montrer toutes les options de débogage (utilisation : --help --help-debug) - + Show benchmark information (default: 0) Afficher les infos du test de performance (par défaut : 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Réduire le fichier debug.log lors du démarrage du client (par défaut : 1 lorsque -debug n'est pas présent) - + Signing failed. La signature a échoué. - + Signing timed out, please resubmit. Signature expirée, veuillez s'il vous plaît réessayer. - + Signing transaction failed La signature de la transaction a échoué - - Specify configuration file (default: darkcoin.conf) - Définir le fichier de configuration (défaut: darkcoin.conf) + + Specify configuration file (default: dash.conf) + Définir le fichier de configuration (défaut: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Spécifier le délai d'expiration de la connexion en millisecondes (par défaut : 5 000) - + Specify data directory Spécifier le répertoire de données - + Specify masternode configuration file (default: masternode.conf) Définir le fichier de configuration du masternode (par défaut : masternode.conf) - - Specify pid file (default: darkcoind.pid) - Définir le fichier pid (défaut: darkcoind.pid) + + Specify pid file (default: dashd.pid) + Définir le fichier pid (défaut: dashd.pid) - + Specify wallet file (within data directory) Spécifiez le fichier de portefeuille (dans le répertoire de données) - + Specify your own public address Spécifier votre propre adresse publique - + Spend unconfirmed change when sending transactions (default: 1) Dépenser la monnaie non confirmée lors de l'envoi de transactions (par défaut : 1) - + Start Dash Core Daemon Démarrer le démon Dash Core - + System error: Erreur système : - + This help message Ce message d'aide - + This is intended for regression testing tools and app development. Ceci est à l'intention des outils de test de régression et du développement applicatif. - + This is not a masternode. Ceci n'est pas un masternode. - + Threshold for disconnecting misbehaving peers (default: 100) Seuil de déconnexion des pairs présentant un mauvais comportement (par défaut : 100) - + To use the %s option Pour utiliser l'option %s - + Transaction amount too small Montant de la transaction trop bas - + Transaction amounts must be positive Les montants de transaction doivent être positifs - + Transaction created successfully. Transaction créée avec succès. - + Transaction fees are too high. Les frais de transaction sont trop élevés. - + Transaction not valid. Transaction invalide. - + Transaction too large Transaction trop volumineuse - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i Version inconnue de serveur mandataire -socks demandée : %i - + Unknown network specified in -onlynet: '%s' Réseau inconnu spécifié sur -onlynet : « %s » - + Upgrade wallet to latest format Mettre à niveau le portefeuille vers le format le plus récent - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): - + Usage: Utilisation : - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) Utiliser N masternodes différents pour anonymiser les fonds (2-8, par défaut : 2) - + Use OpenSSL (https) for JSON-RPC connections Utiliser OpenSSL (https) pour les connexions JSON-RPC - + Use UPnP to map the listening port (default: 0) Utiliser l'UPnP pour mapper le port d'écoute (par défaut : 0) - + Use UPnP to map the listening port (default: 1 when listening) Utiliser l'UPnP pour mapper le port d'écoute (par défaut : 1 lors de l'écoute) - + Use the test network Utiliser le réseau de test - + Username for JSON-RPC connections Nom d'utilisateur pour les connexions JSON-RPC - + Value more than Darksend pool maximum allows. Valeur supérieure au maximum autorisé par le pool. - + Verifying blocks... Vérification des blocs en cours... - + Verifying wallet... Vérification du portefeuille en cours... - + Wait for RPC server to start Attendre le démarrage du serveur RPC - + Wallet %s resides outside data directory %s Le portefeuille %s réside en dehors du répertoire de données %s - + Wallet is locked. Le Portefeuille est verrouillé. - + Wallet needed to be rewritten: restart Dash to complete Le portefeuille devait être réécrit : redémarrer Dash pour terminer l'opération. - + Wallet options: Options du portefeuille : - + Warning Avertissement - + Warning: Deprecated argument -debugnet ignored, use -debug=net Attention : l'argument obsolète -debugnet a été ignoré, utiliser -debug=net - + Warning: This version is obsolete, upgrade required! Avertissement : cette version est obsolète, une mise à niveau est nécessaire ! @@ -5264,27 +5264,27 @@ Si le fichier n'existe pas, créez-le avec les droits de lecture seule acco - + You need to rebuild the database using -reindex to change -txindex Vous devez reconstruire la base de données en utilisant -reindex afin de modifier -txindex - + Zapping all transactions from wallet... Supprimer toutes les transactions du portefeuille... - + on startup au démarrage - + version version - + wallet.dat corrupt, salvage failed wallet.dat corrompu, la récupération a échoué diff --git a/src/qt/locale/darkcoin_hu_HU.ts b/src/qt/locale/dash_hu_HU.ts similarity index 91% rename from src/qt/locale/darkcoin_hu_HU.ts rename to src/qt/locale/dash_hu_HU.ts index f850d60eaa..34ac36a6d0 100644 --- a/src/qt/locale/darkcoin_hu_HU.ts +++ b/src/qt/locale/dash_hu_HU.ts @@ -275,8 +275,8 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - Figyelem! Ha kódolod a tárcád és elveszíted a jelszót, akkor az <b>ÖSSZES DARKCOINOD ELVESZIK<b/> + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Figyelem! Ha kódolod a tárcád és elveszíted a jelszót, akkor az <b>ÖSSZES DASHOD ELVESZIK<b/> @@ -291,7 +291,7 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. A Dash kliens most befejezi a kódolási folyamatot. Ne felejtsd, hogy egy kódolt pénztárca önmagában nem elegendő a Darkcoinjaid teljes mértékű védelméhez egy fertőzött számítógép esetén. @@ -397,8 +397,8 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt - Request payments (generates QR codes and darkcoin: URIs) - Fizetési bekérő generálása (QR kód, valamint darkcoin: URI) + Request payments (generates QR codes and dash: URIs) + Fizetési bekérő generálása (QR kód, valamint dash: URI) @@ -595,7 +595,7 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt - Open a darkcoin: URI or payment request + Open a dash: URI or payment request @@ -779,7 +779,7 @@ Cím: %4 Tárca <b>kódolva</b> és jelenleg <b>zárva</b>. - + A fatal error occurred. Dash can no longer continue safely and will quit. Végzetes hiba történt. A Dash kliens nem futtatható tovább biztonságban, ezért bezáródik. @@ -1633,7 +1633,7 @@ A pénztárca fájl is ebben a könyvtárban kerül letárolásra. Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2061,7 +2061,7 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler + Cannot start dash: click-to-pay handler @@ -2144,35 +2144,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. - + Error reading masternode configuration file: %1 - + Error: Invalid combination of -regtest and -testnet. - + Dash Core didn't yet exit safely... @@ -2981,8 +2981,8 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. - Egy üzenet ami a Dash URI-hoz volt kapcsolva, és a tranzakcióval együtt tárolva lesz jövőbeli tájékoztatás céljából. Megjegyzés: Az üzenet NEM kerül elküldésre a darkcoin hálózaton. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + Egy üzenet ami a Dash URI-hoz volt kapcsolva, és a tranzakcióval együtt tárolva lesz jövőbeli tájékoztatás céljából. Megjegyzés: Az üzenet NEM kerül elküldésre a dash hálózaton. @@ -3919,13 +3919,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3936,1314 +3936,1314 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - + Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) - + Fees smaller than this are considered zero fee (for transaction creation) (default: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. - + How thorough the block verification of -checkblocks is (0-4, default: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + Output debugging information (default: 0, supplying <category> is optional) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + (default: 1) - + (default: wallet.dat) - + <category> can be: - + Accept command line and JSON-RPC commands - + Accept connections from outside (default: 1 if no -proxy or -connect) - + Add a node to connect to and attempt to keep the connection open - + Allow DNS lookups for -addnode, -seednode and -connect - + Allow JSON-RPC connections from specified IP address - + Already have that input. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat - + Block creation options: - + Can't denominate: no compatible inputs left. - + Cannot downgrade wallet - + Cannot resolve -bind address: '%s' - + Cannot resolve -externalip address: '%s' - + Cannot write default address - + Clear list of wallet transactions (diagnostic tool; implies -rescan) - + Collateral is not valid. - + Collateral not valid. - + Connect only to the specified node(s) - + Connect through SOCKS proxy - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) - + Connect to a node to retrieve peer addresses, and disconnect - + Connection options: - + Corrupted block database detected - + Dash Core Daemon - + Dash Core RPC client version - + Darksend is disabled. - + Darksend options: - + Debugging/Testing options: - + Disable safemode, override a real safe mode event (default: 0) - + Discover own IP address (default: 1 when listening and no -externalip) - + Do not load the wallet and disable wallet RPC calls - + Do you want to rebuild the block database now? - + Done loading - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) - + Entries are full. - + Error connecting to masternode. - + Error initializing block database - + Error initializing wallet database environment %s! - + Error loading block database - + Error loading wallet.dat - + Error loading wallet.dat: Wallet corrupted - + Error loading wallet.dat: Wallet requires newer version of Dash - + Error opening block database - + Error reading from database, shutting down. - + Error recovering public key. - + Error Hiba - + Error: Disk space is low! - + Error: Wallet locked, unable to create transaction! - + Error: You already have pending entries in the Darksend pool - + Error: system error: - + Failed to listen on any port. Use -listen=0 if you want this. - + Failed to read block info - + Failed to read block - + Failed to sync block index - + Failed to write block index - + Failed to write block info - + Failed to write block - + Failed to write file info - + Failed to write to coin database - + Failed to write transaction index - + Failed to write undo data - + Fee per kB to add to transactions you send - + Fees smaller than this are considered zero fee (for relaying) (default: - + Force safe mode (default: 0) - + Generate coins (default: 0) - + Get help for a command - + How many blocks to check at startup (default: 288, 0 = all) - + If <category> is not supplied, output all debugging information. - + Ignore masternodes less than version (example: 70050; default : 0) - + Importing... - + Imports blocks from external blk000??.dat file - + Incompatible mode. - + Incompatible version. - + Incorrect or no genesis block found. Wrong datadir for network? - + Information Információ - + Initialization sanity check failed. Dash Core is shutting down. - + Input is not valid. - + InstantX options: - + Insufficient funds - + Insufficient funds. - + Invalid -onion address: '%s' - + Invalid -proxy address: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' - + Invalid amount - + Invalid masternodeprivkey. Please see documenation. - + Invalid private key. - + Invalid script detected. - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. - + Last successful darksend action was too recent. - + Limit size of signature cache to <n> entries (default: 50000) - + List commands - + Listen for connections on <port> (default: 9999 or testnet: 19999) - + Loading addresses... - + Loading block index... - + Loading masternode list... - + Loading wallet... (%3.2f %%) - + Loading wallet... - + Log transaction priority and fee per kB when mining blocks (default: 0) - + Maintain a full transaction index (default: 0) - + Maintain at most <n> connections to peers (default: 125) - + Masternode options: - + Masternode queue is full. - + Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Missing input transaction information. - + No compatible masternode found. - + No funds detected in need of denominating. - + No masternodes detected. - + No matching denominations found for mixing. - + Non-standard public key detected. - + Not compatible with existing transactions. - + Not enough file descriptors available. - + Not in the masternode list. - + Only accept block chain matching built-in checkpoints (default: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + Options: - + Password for JSON-RPC connections - + Prepend debug output with timestamp (default: 1) - + Print block on startup, if found in block index - + Print block tree on startup (default: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + RPC client options: - + RPC server options: - + Randomly drop 1 of every <n> network messages - + Randomly fuzz 1 of every <n> network messages - + Rebuild block chain index from current blk000??.dat files - + Rescan the block chain for missing wallet transactions - + Rescanning... - + Run a thread to flush wallet periodically (default: 1) - + Run in the background as a daemon and accept commands - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Select SOCKS version for -proxy (4 or 5, default: 5) - + Send command to Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Session not complete! - + Session timed out (30 seconds), please resubmit. - + Set database cache size in megabytes (%d to %d, default: %d) - + Set key pool size to <n> (default: 100) - + Set maximum block size in bytes (default: %d) - + Set minimum block size in bytes (default: 0) - + Set the masternode private key - + Set the number of threads to service RPC calls (default: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) - + Show all debugging options (usage: --help -help-debug) - + Show benchmark information (default: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) - + Signing failed. - + Signing timed out, please resubmit. - + Signing transaction failed - - Specify configuration file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) - + Specify data directory - + Specify masternode configuration file (default: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) - + Specify wallet file (within data directory) - + Specify your own public address - + Spend unconfirmed change when sending transactions (default: 1) - + Start Dash Core Daemon - + System error: - + This help message - + This is intended for regression testing tools and app development. - + This is not a masternode. - + Threshold for disconnecting misbehaving peers (default: 100) - + To use the %s option - + Transaction amount too small - + Transaction amounts must be positive - + Transaction created successfully. - + Transaction fees are too high. - + Transaction not valid. - + Transaction too large - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i - + Unknown network specified in -onlynet: '%s' - + Upgrade wallet to latest format - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): - + Usage: Használat: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) - + Use OpenSSL (https) for JSON-RPC connections - + Use UPnP to map the listening port (default: 0) - + Use UPnP to map the listening port (default: 1 when listening) - + Use the test network - + Username for JSON-RPC connections - + Value more than Darksend pool maximum allows. - + Verifying blocks... - + Verifying wallet... - + Wait for RPC server to start - + Wallet %s resides outside data directory %s - + Wallet is locked. - + Wallet needed to be rewritten: restart Dash to complete - + Wallet options: - + Warning Figyelem - + Warning: Deprecated argument -debugnet ignored, use -debug=net - + Warning: This version is obsolete, upgrade required! @@ -5252,27 +5252,27 @@ If the file does not exist, create it with owner-readable-only file permissions. - + You need to rebuild the database using -reindex to change -txindex - + Zapping all transactions from wallet... - + on startup - + version verzió - + wallet.dat corrupt, salvage failed diff --git a/src/qt/locale/darkcoin_it.ts b/src/qt/locale/dash_it.ts similarity index 91% rename from src/qt/locale/darkcoin_it.ts rename to src/qt/locale/dash_it.ts index abdaefbe9e..c1a0075f02 100644 --- a/src/qt/locale/darkcoin_it.ts +++ b/src/qt/locale/dash_it.ts @@ -111,12 +111,12 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Choose the address to send coins to - Scegli l'indirizzo a cui inviare i darkcoin + Scegli l'indirizzo a cui inviare i dash Choose the address to receive coins with - Scegli l'indirizzo con cui ricevere darkcoin + Scegli l'indirizzo con cui ricevere dash @@ -136,7 +136,7 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso These are your Dash addresses for sending payments. Always check the amount and the receiving address before sending coins. - Questi sono i tuoi indirizzi Dash per inviare i pagamenti. Controlla sempre l'ammontare e l'indirizzo destinatario prima di inviare i darkcoin. + Questi sono i tuoi indirizzi Dash per inviare i pagamenti. Controlla sempre l'ammontare e l'indirizzo destinatario prima di inviare i dash. @@ -276,8 +276,8 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - Attenzione: se crittografi il tuo portafoglio e perdi la tua passphrase, PERDERAI TUTTI I TUOI DARKCOIN! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Attenzione: se crittografi il tuo portafoglio e perdi la tua passphrase, PERDERAI TUTTI I TUOI DASH! @@ -292,7 +292,7 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. Dash adesso si chiuderá per finire il processo di crittografia. Ricorda che crittogafiare il tuo portafoglio non ti da una protezione totale se il tuo computer é infettato da malware @@ -389,7 +389,7 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Send coins to a Dash address - Spedire darkcoin ad un indirizzo Dash + Spedire dash ad un indirizzo Dash @@ -398,8 +398,8 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso - Request payments (generates QR codes and darkcoin: URIs) - Richieste di pagamenti (genera codici QR e darkcoin: URLs) + Request payments (generates QR codes and dash: URIs) + Richieste di pagamenti (genera codici QR e dash: URLs) @@ -596,8 +596,8 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso - Open a darkcoin: URI or payment request - Apri un darkcoin: URI o una richiesta di pagamento + Open a dash: URI or payment request + Apri un dash: URI o una richiesta di pagamento @@ -781,7 +781,7 @@ Indirizzo: %4 Il portafoglio è <b>cifrato</b> ed attualmente <b>bloccato</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Si è verificato un errore fatale. Dash non può continuare a funzionare correttamente e verrà chiuso. @@ -1633,9 +1633,9 @@ Indirizzo: %4 Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ La tua lingua manca o la traduzione è incompleta? Contribuisci alla traduzione qui: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2064,8 +2064,8 @@ Più URL vengono separati da una barra verticale |. - Cannot start darkcoin: click-to-pay handler - Impossibile avviare darkcoin: gestore click-to-pay + Cannot start dash: click-to-pay handler + Impossibile avviare dash: gestore click-to-pay @@ -2147,35 +2147,35 @@ Più URL vengono separati da una barra verticale |. QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. Errore: La cartella dati "%1" specificata non esiste. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. Errore: impossibile interpretare il file di configurazione: %1. Usare esclusivamente la sintassi chiave=valore. - + Error reading masternode configuration file: %1 Errore nella lettura del file di configurazione del masternode: %1 - + Error: Invalid combination of -regtest and -testnet. Errore: combinazione di -regtest e -testnet non valida. - + Dash Core didn't yet exit safely... Dash Core non e' chiuso sicuro ancora... @@ -2622,7 +2622,7 @@ Più URL vengono separati da una barra verticale |. Send Coins - Invia darkcoin + Invia dash @@ -2848,7 +2848,7 @@ Più URL vengono separati da una barra verticale |. Confirm send coins - Conferma l'invio di darkcoin + Conferma l'invio di dash @@ -2984,8 +2984,8 @@ Più URL vengono separati da una barra verticale |. - 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 Dash network. - Un messaggio allegato con l'URI darkcoin che verrà memorizzato nella transazione per il tuo referente. Nota: questo messaggio non verrà inviato attraverso il network Dash. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + Un messaggio allegato con l'URI dash che verrà memorizzato nella transazione per il tuo referente. Nota: questo messaggio non verrà inviato attraverso il network Dash. @@ -3869,7 +3869,7 @@ Più URL vengono separati da una barra verticale |. Send Coins - Invia darkcoin + Invia dash @@ -3921,13 +3921,13 @@ Più URL vengono separati da una barra verticale |. - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3938,7 +3938,7 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com %s, devi settare la rpcpassword nel file de configurazione: %s Si raccomanda di utilizzare la seguente password randomizzata: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (non è necessario che ti ricordi questa password) username e password NON devono essere uguali. @@ -3948,247 +3948,247 @@ ad esempio: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Cifrature accettabili (predefinito: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s Errore riscontrato durante l'impostazione della porta RPC %u per l'ascolto su IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Errore riscontrato durante l'impostazione della porta RPC %u per l'ascolto su IPv6, tornando su IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Associa all'indirizzo indicato e resta permanentemente in ascolto su questo. Usa la notazione [host]:porta per l'IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. Impossibile ottenere un blocco sulla data directory % s. Dash Core è probabilmente già in esecuzione. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) Limita la quantità di transazioni gratuite ad <n>*1000 byte al minuto (predefinito: 15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) Disabilita tutti i Masternode e le funzioni relative a Darksend (0-1, default: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. Entra in modalità di test di regressione, la quale usa una speciale catena in cui i blocchi sono risolti istantaneamente. Questo è fatto per lo sviluppo di strumenti e applicazioni per test di regressione. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Entra in modalità di test di regressione, la quale usa una speciale catena in cui i blocchi possono essere risolti istantaneamente. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. Errore: la transazione è stata rifiutata! Questo può accadere se alcuni bitcoin nel tuo portamonete sono già stati spesi, ad esempio se hai utilizzato una copia del file wallet.dat per spendere bitcoin e questi non sono stati considerati spesi dal portamonete corrente. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Errore: questa transazione necessita di una commissione di almeno %s a causa del suo ammontare, della sua complessità, o dell'uso di fondi recentemente ricevuti! - + Error: Wallet unlocked for anonymization only, unable to create transaction. Errore: Portafoglio sbloccato solamente per l'anonimizzazione, impossibile creare la transazione. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Esegue un comando quando viene ricevuto un allarme rilevante o quando vediamo un fork veramente lungo (%s in cmd è sostituito dal messaggio) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Esegui comando quando una transazione del portamonete cambia (%s in cmd è sostituito da TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Esegui il comando quando il migliore blocco cambia(%s nel cmd è sostituito dall'hash del blocco) - + Fees smaller than this are considered zero fee (for transaction creation) (default: Le commissioni inferiori a questo valore saranno considerate nulle (per la creazione della transazione) (prefedinito: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) Scarica l'attività del database dalla memoria al log su disco ogni <n> megabytes (predefinito: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. - + How thorough the block verification of -checkblocks is (0-4, default: 3) Determina quanto sarà approfondita la verifica da parte di -checkblocks (0-4, predefinito: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. In questa modalità -genproclimit determina quanti blocchi saranno generati immediatamente. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. InstantX richiede input con almeno 6 conferme, potrebbe essere necessario attendere qualche minuto e poi riprovare. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Numero di secondi di sospensione che i peer di cattiva qualità devono attendere prima di potersi riconnettere (predefiniti: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Emette informazioni di debug in output (predefinito: 0, fornire <category> è opzionale) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Imposta la dimensione massima in byte delle transazioni ad alta-priorità/basse-commissioni (predefinita: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Imposta il numero di thread per la verifica degli script (da %u a %d, 0 = automatico, <0 = lascia questo numero di core liberi, predefinito: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) Imposta il limite della cpu quando la generazione è abilitata (-1 = non limitato, predefinito: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Questa versione è una compilazione pre-rilascio - usala a tuo rischio - non utilizzarla per la generazione o per applicazioni di commercio - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Usa un SOCKS5 proxy separato per raggiungere servizi nascosti di Tor (predefinito: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Attenzione: -paytxfee è molto alta. Questa è la commissione che si paga quando si invia una transazione. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. Attenzione: Per favore assicurati che la data e l'ora del tuo computer siano corrette, altrimenti Dash non funzionará adeguatamente. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Attenzione: La rete non sembra essere d'accordo pienamente! Alcuni minatori sembrano riscontrare problemi. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Attenzione: Sembra che non ci sia completo accordo con i nostri peer! Un aggiornamento da parte tua o degli altri nodi potrebbe essere necessario. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Attenzione: errore di lettura di wallet.dat! Tutte le chiavi sono state lette correttamente, ma i dati delle transazioni o le voci in rubrica potrebbero mancare o non essere corretti. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Attenzione: wallet.dat corrotto, dati recuperati! Il wallet.dat originale è stato salvato come wallet.{timestamp}.bak in %s; se il tuo saldo o le transazioni non sono corrette dovresti ripristinare da un backup. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4197,1073 +4197,1073 @@ If the file does not exist, create it with owner-readable-only file permissions. Se il file non esiste, crealo assegnando i permessi di lettura solamente al proprietario. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. Devi specificare una masternodeprivkey nella configurazione. Per favore consulta la documentazione di aiuto. - + (default: 1) (predefinito: 1) - + (default: wallet.dat) (predefinito: wallet.dat) - + <category> can be: <category> può essere: - + Accept command line and JSON-RPC commands Accetta comandi da riga di comando e JSON-RPC - + Accept connections from outside (default: 1 if no -proxy or -connect) Accetta connessioni dall'esterno (predefinito: 1 se no -proxy o -connect) - + Add a node to connect to and attempt to keep the connection open Aggiunge un nodo a cui connettersi e tenta di tenere aperta la connessione - + Allow DNS lookups for -addnode, -seednode and -connect Consenti ricerche DNS per -addnode, -seednode e -connect - + Allow JSON-RPC connections from specified IP address Consenti connessioni JSON-RPC dall'indirizzo IP specificato - + Already have that input. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat Tenta di recuperare le chiavi private da un wallet.dat corrotto - + Block creation options: Opzioni creazione blocco: - + Can't denominate: no compatible inputs left. - + Cannot downgrade wallet Non è possibile effettuare il downgrade del portamonete - + Cannot resolve -bind address: '%s' Impossibile risolvere -bind address: '%s' - + Cannot resolve -externalip address: '%s' Impossibile risolvere indirizzo -externalip: '%s' - + Cannot write default address Non è possibile scrivere l'indirizzo predefinito - + Clear list of wallet transactions (diagnostic tool; implies -rescan) Cancella elenco delle transazioni sul portamonete (strumento di diagnostica; implica -rescan) - + Collateral is not valid. Il collateral non è valido. - + Collateral not valid. Collateral non valido. - + Connect only to the specified node(s) Connetti solo al nodo specificato - + Connect through SOCKS proxy Connetti attraverso SOCKS proxy - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) Connetti a JSON-RPC su <port> (predefinita: 9998 o testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) Connetti a KeePassHttp sulla porta <port> (predefinita: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Connettiti ad un nodo per recuperare gli indirizzi dei peer e scollegati - + Connection options: Opzioni di connessione: - + Corrupted block database detected Rilevato database blocchi corrotto - + Dash Core Daemon Dash Core Daemon - + Dash Core RPC client version Versione client RPC di Dash Core - + Darksend is disabled. Darksend è disabilitato - + Darksend options: Opzioni Darksend: - + Debugging/Testing options: Opzioni di Debug/Test: - + Disable safemode, override a real safe mode event (default: 0) Disabilita la modalità sicura, escludi effettivamente gli eventi di modalità sicura (predefinito: 0) - + Discover own IP address (default: 1 when listening and no -externalip) Scopre il proprio indirizzo IP (predefinito: 1 se in ascolto e no -externalip) - + Do not load the wallet and disable wallet RPC calls Non caricare il portamonete e disabilita le chiamate RPC al portamonete - + Do you want to rebuild the block database now? Vuoi ricostruire ora il database dei blocchi? - + Done loading Caricamento completato - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) - + Entries are full. Entrate sono piene. - + Error connecting to masternode. Connesione per masternode error. - + Error initializing block database Errore durante l'inizializzazione del database dei blocchi - + Error initializing wallet database environment %s! Errore durante l'inizializzazione dell'ambiente %s del database del portamonete! - + Error loading block database Errore caricamento database blocchi - + Error loading wallet.dat Errore caricamento wallet.dat - + Error loading wallet.dat: Wallet corrupted Errore caricamento wallet.dat: Portamonete corrotto - + Error loading wallet.dat: Wallet requires newer version of Dash Errore caricando wallet.dat: Wallet necessita la versione piú recente di Dash - + Error opening block database Errore caricamento database blocchi - + Error reading from database, shutting down. Errore di lettura del database, spegnimento - + Error recovering public key. Errore nel recupero della chiave pubblica. - + Error Errore - + Error: Disk space is low! Errore: la spazio libero sul disco è insufficiente! - + Error: Wallet locked, unable to create transaction! Errore: portamonete bloccato, impossibile creare la transazione! - + Error: You already have pending entries in the Darksend pool - + Error: system error: Errore: errore di sistema: - + Failed to listen on any port. Use -listen=0 if you want this. Nessuna porta disponibile per l'ascolto. Usa -listen=0 se vuoi procedere comunque. - + Failed to read block info Lettura informazioni blocco fallita - + Failed to read block Lettura blocco fallita - + Failed to sync block index Sincronizzazione dell'indice del blocco fallita - + Failed to write block index Scrittura dell'indice del blocco fallita - + Failed to write block info Scrittura informazioni blocco fallita - + Failed to write block Scrittura blocco fallita - + Failed to write file info Scrittura informazioni file fallita - + Failed to write to coin database Scrittura nel database dei bitcoin fallita - + Failed to write transaction index Scrittura dell'indice di transazione fallita - + Failed to write undo data Scrittura dei dati di ripristino fallita - + Fee per kB to add to transactions you send Commissione per kB da aggiungere alle transazioni in uscita - + Fees smaller than this are considered zero fee (for relaying) (default: Le commissioni inferiori a questo valore saranno considerate nulle (per la trasmissione) (prefedinito: - + Force safe mode (default: 0) Forza modalità provvisoria (predefinito: 0) - + Generate coins (default: 0) Genera valuta (predefinito: 0) - + Get help for a command Aiuto su un comando - + How many blocks to check at startup (default: 288, 0 = all) Numero di blocchi da controllare all'avvio (predefinito: 288, 0 = tutti) - + If <category> is not supplied, output all debugging information. Se <category> non è specificata, mostra tutte le informazioni di debug. - + Ignore masternodes less than version (example: 70050; default : 0) - + Importing... Importazione... - + Imports blocks from external blk000??.dat file Importa blocchi da un file blk000??.dat esterno - + Incompatible mode. Modalità incompatibile - + Incompatible version. Versione incompatibile - + Incorrect or no genesis block found. Wrong datadir for network? Blocco genesis non corretto o non trovato. Cartella dati errata? - + Information Informazioni - + Initialization sanity check failed. Dash Core is shutting down. Controllo di inizializzazione sanity fallito. Dash Core verrà chiuso. - + Input is not valid. L'input non è valido. - + InstantX options: Opzioni InstantX - + Insufficient funds Fondi insufficienti - + Insufficient funds. Fondi insufficienti. - + Invalid -onion address: '%s' Indirizzo -onion non valido: '%s' - + Invalid -proxy address: '%s' Indirizzo -proxy non valido: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' Importo non valido per -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' Importo non valido per -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Importo non valido per -paytxfee=<amount>: '%s' - + Invalid amount Importo non valido - + Invalid masternodeprivkey. Please see documenation. masternodeprivkey non valida. Per favore consulta la documentazione - + Invalid private key. Chiave privata incompatibile - + Invalid script detected. Script invalido - + KeePassHttp id for the established association ID KeePassHttp per la connessione stabilita - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. L'ultima darksend è troppo recente - + Last successful darksend action was too recent. - + Limit size of signature cache to <n> entries (default: 50000) Limita la dimensione della cache delle firme a <n> voci (predefinito: 50000) - + List commands Elenco comandi - + Listen for connections on <port> (default: 9999 or testnet: 19999) - + Loading addresses... Caricamento indirizzi... - + Loading block index... Caricamento dell'indice del blocco... - + Loading masternode list... Sto carricando la lista dei masternode... - + Loading wallet... (%3.2f %%) Caricando portafoglio... (%3.2f %%) - + Loading wallet... Caricamento portafoglio... - + Log transaction priority and fee per kB when mining blocks (default: 0) Abilita il log della priorità di transazione e della commissione per kB quando si generano blocchi (default: 0) - + Maintain a full transaction index (default: 0) Mantieni un indice di transazione completo (predefinito: 0) - + Maintain at most <n> connections to peers (default: 125) Mantieni al massimo <n> connessioni ai peer (predefinite: 125) - + Masternode options: Opzioni masternode: - + Masternode queue is full. La lista di masternode e' piena. - + Masternode: Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Buffer di ricezione massimo per connessione, <n>*1000 byte (predefinito: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Buffer di invio massimo per connessione, <n>*1000 byte (predefinito: 1000) - + Missing input transaction information. Mancano le informazioni di input della transazione - + No compatible masternode found. Nessun masternode compatibile trovato - + No funds detected in need of denominating. - + No masternodes detected. La rilevazione di masternode impossibile. - + No matching denominations found for mixing. - + Non-standard public key detected. - + Not compatible with existing transactions. - + Not enough file descriptors available. Non ci sono abbastanza descrittori di file disponibili. - + Not in the masternode list. Non presente nella lista masternode - + Only accept block chain matching built-in checkpoints (default: 1) Accetta solo una catena di blocchi che corrisponde ai checkpoint predefiniti (predefinito: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Connetti solo a nodi nella rete <net> (IPv4, IPv6 o Tor) - + Options: Opzioni: - + Password for JSON-RPC connections Password per connessioni JSON-RPC - + Prepend debug output with timestamp (default: 1) Preponi timestamp all'output di debug (predefinito: 1) - + Print block on startup, if found in block index Stampa il blocco all'avvio, se presente nell'indice dei blocchi - + Print block tree on startup (default: 0) Stampa l'albero dei blocchi all'avvio (default: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opzioni RPC SSL: (consulta la Bitcoin Wiki per le istruzioni relative alla configurazione SSL) - + RPC client options: Opzioni client RPC: - + RPC server options: Opzioni server RPC: - + Randomly drop 1 of every <n> network messages Scarta casualmente 1 ogni <n> messaggi di rete - + Randomly fuzz 1 of every <n> network messages Altera casualmente 1 ogni <n> messaggi di rete - + Rebuild block chain index from current blk000??.dat files Ricreare l'indice della catena di blocchi dai file blk000??.dat correnti - + Rescan the block chain for missing wallet transactions Ripeti analisi della catena dei blocchi per cercare le transazioni mancanti dal portamonete - + Rescanning... Ripetizione scansione... - + Run a thread to flush wallet periodically (default: 1) Mantieni in esecuzione un thread per scaricare periodicamente il portafoglio (predefinito: 1) - + Run in the background as a daemon and accept commands Esegui in background come demone ed accetta i comandi - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opzioni SSL: (vedi il wiki di Bitcoin per le istruzioni di configurazione SSL) - + Select SOCKS version for -proxy (4 or 5, default: 5) Selezionare la versione SOCKS per -proxy (4 o 5, predefinito: 5) - + Send command to Dash Core Invia comando a Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) Inviare comandi al nodo in esecuzione su <ip> (predefinito: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Invia le informazioni di trace/debug alla console invece che al file debug.log - + Server certificate file (default: server.cert) File certificato del server (predefinito: server.cert) - + Server private key (default: server.pem) Chiave privata del server (predefinito: server.pem) - + Session not complete! Sessione non completata! - + Session timed out (30 seconds), please resubmit. - + Set database cache size in megabytes (%d to %d, default: %d) Imposta la dimensione cache del database in megabyte (%d a %d, predefinito: %d) - + Set key pool size to <n> (default: 100) Impostare la quantità di chiavi nel key pool a <n> (predefinita: 100) - + Set maximum block size in bytes (default: %d) Imposta la dimensione massima del blocco in byte (predefinita: %d) - + Set minimum block size in bytes (default: 0) Imposta dimensione minima del blocco in bytes (predefinita: 0) - + Set the masternode private key Configura la chiave privata del Masternode - + Set the number of threads to service RPC calls (default: 4) Specifica il numero massimo di richieste RPC in parallelo (predefinito: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) Imposta il flag DB_PRIVATE nell'ambiente di database del portamonete (predefinito: 1) - + Show all debugging options (usage: --help -help-debug) Mostra tutte le opzioni di debug (utilizzo: --help -help-debug) - + Show benchmark information (default: 0) Visualizza le informazioni relative al benchmark (predefinito: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) Riduci il file debug.log all'avvio del client (predefinito: 1 se non impostato -debug) - + Signing failed. Firma fallita. - + Signing timed out, please resubmit. - + Signing transaction failed Transazione di firma fallita - - Specify configuration file (default: darkcoin.conf) - Configurazioni specifiche file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) + Configurazioni specifiche file (default: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) Specifica il timeout di connessione in millisecondi (predefinito: 5000) - + Specify data directory Specifica la cartella dati - + Specify masternode configuration file (default: masternode.conf) Configurazioni specifiche dei file Masternode (default: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) - + Specify wallet file (within data directory) Specifica il file portamonete (all'interno della cartella dati) - + Specify your own public address Specifica il tuo indirizzo pubblico - + Spend unconfirmed change when sending transactions (default: 1) Spendi il resto non confermato quando si inviano transazioni (predefinito: 1) - + Start Dash Core Daemon Avvia il demone Dash Core - + System error: Errore di sistema: - + This help message Questo messaggio di aiuto - + This is intended for regression testing tools and app development. Questo è previsto per l'uso con test di regressione e per lo sviluppo di applicazioni. - + This is not a masternode. Questo non è un Masternode - + Threshold for disconnecting misbehaving peers (default: 100) Soglia di disconnessione dei peer di cattiva qualità (predefinita: 100) - + To use the %s option Per usare l'opzione %s - + Transaction amount too small Importo transazione troppo piccolo - + Transaction amounts must be positive L'importo della transazione deve essere positivo - + Transaction created successfully. Transazione creata con successo. - + Transaction fees are too high. Commissioni della transazione troppo alte. - + Transaction not valid. Transazione non valida - + Transaction too large Transazione troppo grande - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i Versione -socks proxy sconosciuta richiesta: %i - + Unknown network specified in -onlynet: '%s' Rete sconosciuta specificata in -onlynet: '%s' - + Upgrade wallet to latest format Aggiorna il portafoglio all'ultimo formato - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): - + Usage: Utilizzo: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) - + Use OpenSSL (https) for JSON-RPC connections Utilizzare OpenSSL (https) per le connessioni JSON-RPC - + Use UPnP to map the listening port (default: 0) Usa UPnP per mappare la porta in ascolto (predefinito: 0) - + Use UPnP to map the listening port (default: 1 when listening) Usa UPnP per mappare la porta in ascolto (predefinito: 1 when listening) - + Use the test network Utilizza la rete di prova - + Username for JSON-RPC connections Nome utente per connessioni JSON-RPC - + Value more than Darksend pool maximum allows. - + Verifying blocks... Verifica blocchi... - + Verifying wallet... Verifica portafoglio... - + Wait for RPC server to start Attendere l'avvio dell'RPC server - + Wallet %s resides outside data directory %s Il portafoglio %s si trova al di fuori dalla cartella dati %s - + Wallet is locked. Portafoglio bloccato - + Wallet needed to be rewritten: restart Dash to complete Il portafoglio necessita di essere riscritto: riavvare Dash per compeltare. - + Wallet options: Opzioni portafoglio: - + Warning Attenzione - + Warning: Deprecated argument -debugnet ignored, use -debug=net Attenzione: Argomento deprecato -debugnet ignorato, usare -debug=net - + Warning: This version is obsolete, upgrade required! Attenzione: questa versione è obsoleta, aggiornamento necessario! @@ -5272,27 +5272,27 @@ Se il file non esiste, crealo assegnando i permessi di lettura solamente al prop - + You need to rebuild the database using -reindex to change -txindex È necessario ricostruire il database usando -reindex per cambiare -txindex - + Zapping all transactions from wallet... Cancella e ricompila tutte le transazioni dal wallet... - + on startup all'avvio - + version versione - + wallet.dat corrupt, salvage failed wallet.dat corrotto, recupero fallito diff --git a/src/qt/locale/darkcoin_lv_LV.ts b/src/qt/locale/dash_lv_LV.ts similarity index 91% rename from src/qt/locale/darkcoin_lv_LV.ts rename to src/qt/locale/dash_lv_LV.ts index 33248011a1..2cced745b3 100644 --- a/src/qt/locale/darkcoin_lv_LV.ts +++ b/src/qt/locale/dash_lv_LV.ts @@ -277,8 +277,8 @@ Nesniedz reālu drošību - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DARKCOINS</b>! - Uzmanību: Ja nošifrēsiet maciņu un pazaudēsiet paroli, Jūs <b>ZAUDĒSIET VISUS JŪSU DARKCOINUS</b> + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Uzmanību: Ja nošifrēsiet maciņu un pazaudēsiet paroli, Jūs <b>ZAUDĒSIET VISUS JŪSU DASHUS</b> @@ -293,7 +293,7 @@ Nesniedz reālu drošību - Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your darkcoins from being stolen by malware infecting your computer. + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. Dash aizvērsies, lai pabeigtu šifrēšanu. Atcerieties, ka maciņa šifrēšana nevar pilnībā novērst Darkcoinu zādzību, ko veic datorā ieviesušās kaitīgas programmas. @@ -399,8 +399,8 @@ Nesniedz reālu drošību - Request payments (generates QR codes and darkcoin: URIs) - Pieprasīt maksājumus (izveido QR kodu un darkcoin: URIs) + Request payments (generates QR codes and dash: URIs) + Pieprasīt maksājumus (izveido QR kodu un dash: URIs) @@ -597,8 +597,8 @@ Nesniedz reālu drošību - Open a darkcoin: URI or payment request - Atvērt darkcoin URI vai maksājuma pieprasījumu + Open a dash: URI or payment request + Atvērt dash URI vai maksājuma pieprasījumu @@ -781,7 +781,7 @@ Adrese: %4 Maciņš ir <b>šifrēts</b> un pašlaik <b>slēgts</b> - + A fatal error occurred. Dash can no longer continue safely and will quit. Radās fatāla kļūda. Dash Core nevar vairs droši turpināt un tiks izslēgta. @@ -1637,9 +1637,9 @@ Tas iespaido arī jūsu bilances aprēķinu. Language missing or translation incomplete? Help contributing translations here: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ Trūkst tulkojums vai tulkojums nav pabeigts? Palīdzi tulkot šeit: -https://www.transifex.com/projects/p/darkcoin/ +https://www.transifex.com/projects/p/dash/ @@ -2067,8 +2067,8 @@ https://www.transifex.com/projects/p/darkcoin/ - Cannot start darkcoin: click-to-pay handler - Nevar palaist darkcoin: nospied-lai-maksātu apstrādātāju + Cannot start dash: click-to-pay handler + Nevar palaist dash: nospied-lai-maksātu apstrādātāju @@ -2150,35 +2150,35 @@ https://www.transifex.com/projects/p/darkcoin/ QObject - - - - + + + + Dash Dash - + Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. - + Error reading masternode configuration file: %1 - + Error: Invalid combination of -regtest and -testnet. - + Dash Core didn't yet exit safely... Dash Core netika aizvērts droši... @@ -2987,7 +2987,7 @@ https://www.transifex.com/projects/p/darkcoin/ - 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 Dash network. + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. @@ -3924,13 +3924,13 @@ https://www.transifex.com/projects/p/darkcoin/ - darkcoin-core + dash-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=darkcoinrpc +rpcuser=dashrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3941,247 +3941,247 @@ for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 - + Cannot obtain a lock on data directory %s. Dash Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. - + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + Error: Listening for incoming connections failed (listen returned error %s) - + 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 and coins were spent in the copy but not marked as spent here. - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - + Error: Wallet unlocked for anonymization only, unable to create transaction. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Execute command when the best block changes (%s in cmd is replaced by block hash) Izpildīt komandu, kad labāk atbilstošais bloks izmainās (%s cmd aizvieto ar bloka hešu) - + Fees smaller than this are considered zero fee (for transaction creation) (default: - + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) - + Found unconfirmed denominated outputs, will wait till they confirm to continue. - + How thorough the block verification of -checkblocks is (0-4, default: 3) - + In this mode -genproclimit controls how many blocks are generated immediately. - + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) - + Name to construct url for KeePass entry that stores the wallet passphrase - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Sekundes, cik ilgi atturēt pārkāpējmezglus no atkārtotas pievienošanās (pēc noklusēšanas: 86400) - + Output debugging information (default: 0, supplying <category> is optional) - + 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) - + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - + Set external address:port to get to this masternode (example: address:port) - + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - + Set the processor limit for when generation is on (-1 = unlimited, default: -1) - + Show N confirmations for a successfully locked transaction (0-9999, default: 1) - + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - + Unable to bind to %s on this computer. Dash Core is probably already running. - + Unable to locate enough Darksend denominated funds for this transaction. - + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. - + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4190,1067 +4190,1067 @@ If the file does not exist, create it with owner-readable-only file permissions. Ja fails neeksistē, izveidojiet to ar atļauju lasīšanai tikai īpašniekam. - + You must specify a masternodeprivkey in the configuration. Please see documentation for help. - + (default: 1) (noklusējums: 1) - + (default: wallet.dat) (noklusējums: wallet.dat) - + <category> can be: <category> var būt: - + Accept command line and JSON-RPC commands Pieņemt komandrindas un JSON-RPC komandas - + Accept connections from outside (default: 1 if no -proxy or -connect) - + Add a node to connect to and attempt to keep the connection open Pievienot mezglu, kam pievienoties un turēt savienojumu atvērtu - + Allow DNS lookups for -addnode, -seednode and -connect Atļaut DNS uzmeklēšanu priekš -addnode, -seednode un -connect - + Allow JSON-RPC connections from specified IP address Atļaut JSON-RPC savienojumus no norādītās IP adreses - + Already have that input. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat Mēģināt atgūt privātās atslēgas no bojāta wallet.dat - + Block creation options: Bloka izveidošanas iestatījumi: - + Can't denominate: no compatible inputs left. - + Cannot downgrade wallet Nevar maciņa formātu padarīt vecāku - + Cannot resolve -bind address: '%s' Nevar uzmeklēt -bind adresi: '%s' - + Cannot resolve -externalip address: '%s' Nevar atrisināt -externalip adresi: '%s' - + Cannot write default address Nevar ierakstīt adresi pēc noklusēšanas - + Clear list of wallet transactions (diagnostic tool; implies -rescan) - + Collateral is not valid. - + Collateral not valid. - + Connect only to the specified node(s) Savienoties tikai ar norādītajām nodēm. - + Connect through SOCKS proxy Savienoties caur SOCKS starpniekserveri - + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) - + Connect to KeePassHttp on port <port> (default: 19455) - + Connect to a node to retrieve peer addresses, and disconnect Pievienoties mezglam, lai iegūtu citu mezglu adreses, un atvienoties - + Connection options: Savienojuma iestatījumi: - + Corrupted block database detected - + Dash Core Daemon - + Dash Core RPC client version - + Darksend is disabled. - + Darksend options: - + Debugging/Testing options: Atkļūdošanas/Testēšanas iestatījumi: - + Disable safemode, override a real safe mode event (default: 0) - + Discover own IP address (default: 1 when listening and no -externalip) - + Do not load the wallet and disable wallet RPC calls - + Do you want to rebuild the block database now? - + Done loading Ielāde pabeigta - + Downgrading and trying again. - + Enable the client to act as a masternode (0-1, default: 0) - + Entries are full. - + Error connecting to masternode. - + Error initializing block database - + Error initializing wallet database environment %s! - + Error loading block database Kļūda ielādējot bloku datubāzi - + Error loading wallet.dat Kļūda ielādējot wallet.dat - + Error loading wallet.dat: Wallet corrupted Nevar ielādēt wallet.dat: maciņš bojāts - + Error loading wallet.dat: Wallet requires newer version of Dash - + Error opening block database - + Error reading from database, shutting down. - + Error recovering public key. - + Error Kļūda - + Error: Disk space is low! Kļūda: Zema diska vieta! - + Error: Wallet locked, unable to create transaction! Kļūda: Maciņš ir aizslēgts, nevar izveidot transakciju! - + Error: You already have pending entries in the Darksend pool - + Error: system error: Kļūda: sistēmas kļūda: - + Failed to listen on any port. Use -listen=0 if you want this. - + Failed to read block info - + Failed to read block - + Failed to sync block index - + Failed to write block index - + Failed to write block info - + Failed to write block - + Failed to write file info - + Failed to write to coin database - + Failed to write transaction index - + Failed to write undo data - + Fee per kB to add to transactions you send Pievienot maksu par kB tām transakcijām kuras tu sūti - + Fees smaller than this are considered zero fee (for relaying) (default: - + Force safe mode (default: 0) Piespiest drošo režīmu (noklusējums: 0) - + Generate coins (default: 0) - + Get help for a command Palīdzība par komandu - + How many blocks to check at startup (default: 288, 0 = all) - + If <category> is not supplied, output all debugging information. Ja <category> nav norādīta, izvadīt visu atkļūdošanas informāciju. - + Ignore masternodes less than version (example: 70050; default : 0) - + Importing... Importē... - + Imports blocks from external blk000??.dat file Importēt blokus no ārējās blk000??.dat datnes - + Incompatible mode. - + Incompatible version. - + Incorrect or no genesis block found. Wrong datadir for network? - + Information Informācija - + Initialization sanity check failed. Dash Core is shutting down. - + Input is not valid. - + InstantX options: - + Insufficient funds Nepietiek bitkoinu - + Insufficient funds. - + Invalid -onion address: '%s' - + Invalid -proxy address: '%s' Nederīga -proxy adrese: '%s' - + Invalid amount for -minrelaytxfee=<amount>: '%s' - + Invalid amount for -mintxfee=<amount>: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Nederīgs daudzums priekš -paytxfree=<amount>: '%s' - + Invalid amount Nederīgs daudzums - + Invalid masternodeprivkey. Please see documenation. - + Invalid private key. - + Invalid script detected. - + KeePassHttp id for the established association - + KeePassHttp key for AES encrypted communication with KeePass - - Keep N darkcoin anonymized (default: 0) + + Keep N dash anonymized (default: 0) - + Keep at most <n> unconnectable blocks in memory (default: %u) - + Keep at most <n> unconnectable transactions in memory (default: %u) - + Last Darksend was too recent. - + Last successful darksend action was too recent. - + Limit size of signature cache to <n> entries (default: 50000) - + List commands Komandu saraksts - + Listen for connections on <port> (default: 9999 or testnet: 19999) - + Loading addresses... Ielādē adreses... - + Loading block index... Ielādē bloku indeksu... - + Loading masternode list... - + Loading wallet... (%3.2f %%) - + Loading wallet... Ielādē maciņu... - + Log transaction priority and fee per kB when mining blocks (default: 0) - + Maintain a full transaction index (default: 0) - + Maintain at most <n> connections to peers (default: 125) Uzturēt līdz <n> savienojumiem ar citiem mezgliem(pēc noklusēšanas: 125) - + Masternode options: - + Masternode queue is full. - + Masternode: - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Missing input transaction information. - + No compatible masternode found. - + No funds detected in need of denominating. - + No masternodes detected. - + No matching denominations found for mixing. - + Non-standard public key detected. - + Not compatible with existing transactions. - + Not enough file descriptors available. - + Not in the masternode list. - + Only accept block chain matching built-in checkpoints (default: 1) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + Options: Iespējas: - + Password for JSON-RPC connections JSON-RPC savienojumu parole - + Prepend debug output with timestamp (default: 1) - + Print block on startup, if found in block index - + Print block tree on startup (default: 0) - + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + RPC client options: RPC klienta iespējas: - + RPC server options: RPC servera iestatījumi: - + Randomly drop 1 of every <n> network messages - + Randomly fuzz 1 of every <n> network messages - + Rebuild block chain index from current blk000??.dat files - + Rescan the block chain for missing wallet transactions Atkārtoti skanēt bloku virkni, meklējot trūkstošās maciņa transakcijas - + Rescanning... Skanēju no jauna... - + Run a thread to flush wallet periodically (default: 1) - + Run in the background as a daemon and accept commands Darbināt fonā kā servisu un pieņemt komandas - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Select SOCKS version for -proxy (4 or 5, default: 5) - + Send command to Dash Core - + Send commands to node running on <ip> (default: 127.0.0.1) Nosūtīt komandas mezglam, kas darbojas adresē <ip> (pēc noklusēšanas: 127.0.0.1) - + Send trace/debug info to console instead of debug.log file Debug/trace informāciju izvadīt konsolē, nevis debug.log failā - + Server certificate file (default: server.cert) Servera sertifikāta fails (pēc noklusēšanas: server.cert) - + Server private key (default: server.pem) Servera privātā atslēga (pēc noklusēšanas: server.pem) - + Session not complete! - + Session timed out (30 seconds), please resubmit. - + Set database cache size in megabytes (%d to %d, default: %d) - + Set key pool size to <n> (default: 100) Uzstādīt atslēgu bufera izmēru uz <n> (pēc noklusēšanas: 100) - + Set maximum block size in bytes (default: %d) - + Set minimum block size in bytes (default: 0) - + Set the masternode private key - + Set the number of threads to service RPC calls (default: 4) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) - + Show all debugging options (usage: --help -help-debug) - + Show benchmark information (default: 0) Rādīt etalonuzdevuma informāciju (noklusējums: 0) - + Shrink debug.log file on client startup (default: 1 when no -debug) - + Signing failed. Ielogošanās neveiksmīga. - + Signing timed out, please resubmit. - + Signing transaction failed Transakcijas parakstīšana neizdevās - - Specify configuration file (default: darkcoin.conf) + + Specify configuration file (default: dash.conf) - + Specify connection timeout in milliseconds (default: 5000) - + Specify data directory Norādiet datu direktoriju - + Specify masternode configuration file (default: masternode.conf) - - Specify pid file (default: darkcoind.pid) + + Specify pid file (default: dashd.pid) Norādiet pid failu (standarta: darcoind.pid) - + Specify wallet file (within data directory) Norādiet maciņa failu ( datu glabātuvē) - + Specify your own public address Norādiet savu publisko adresi - + Spend unconfirmed change when sending transactions (default: 1) Tērēt neapstiprinātu atlikumu kad sūta transakcijas (noklusējums: 1) - + Start Dash Core Daemon Sākt Dash Core Daemon - + System error: Sistēmas kļūda: - + This help message Šis palīdzības paziņojums - + This is intended for regression testing tools and app development. - + This is not a masternode. - + Threshold for disconnecting misbehaving peers (default: 100) Slieksnis pārkāpējmezglu atvienošanai (pēc noklusēšanas: 100) - + To use the %s option Izmantot opciju %s - + Transaction amount too small Transakcijas summa ir pārāk maza - + Transaction amounts must be positive Transakcijas summai ir jābūt pozitīvai - + Transaction created successfully. - + Transaction fees are too high. - + Transaction not valid. Transakcija nav derīga. - + Transaction too large Transakcija ir pārāk liela - + Unable to bind to %s on this computer (bind returned error %s) - + Unable to sign masternode payment winner, wrong key? - + Unable to sign spork message, wrong key? - + Unknown -socks proxy version requested: %i Pieprasīta nezināma -socks starpniekservera versija: %i - + Unknown network specified in -onlynet: '%s' -onlynet komandā norādīts nepazīstams tīkls: '%s' - + Upgrade wallet to latest format Atjaunot maciņa formātu uz jaunāko - - Usage (deprecated, use darkcoin-cli): + + Usage (deprecated, use dash-cli): - + Usage: Lietojums: - + Use KeePass 2 integration using KeePassHttp plugin (default: 0) - + Use N separate masternodes to anonymize funds (2-8, default: 2) - + Use OpenSSL (https) for JSON-RPC connections JSON-RPC savienojumiem izmantot OpenSSL (https) - + Use UPnP to map the listening port (default: 0) - + Use UPnP to map the listening port (default: 1 when listening) - + Use the test network Izmantot testa tīklu - + Username for JSON-RPC connections JSON-RPC savienojumu lietotājvārds - + Value more than Darksend pool maximum allows. - + Verifying blocks... Pārbauda blokus... - + Verifying wallet... Pārbauda maciņu... - + Wait for RPC server to start Uzgaidi līdz RPC serveris palaižas - + Wallet %s resides outside data directory %s - + Wallet is locked. Maciņš ir slēgts. - + Wallet needed to be rewritten: restart Dash to complete Maciņš ir jāpārraksta: restartēt Dash, lai pabeigtu - + Wallet options: Maciņa iespējas: - + Warning Brīdinājums - + Warning: Deprecated argument -debugnet ignored, use -debug=net - + Warning: This version is obsolete, upgrade required! Brīdinājums: Šī versija ir novecojusi, nepieciešams atjauninājums! @@ -5259,27 +5259,27 @@ Ja fails neeksistē, izveidojiet to ar atļauju lasīšanai tikai īpašniekam.< - + You need to rebuild the database using -reindex to change -txindex - + Zapping all transactions from wallet... - + on startup startēšanas laikā - + version versija - + wallet.dat corrupt, salvage failed wallet.dat ir bojāts, glābšana neizdevās diff --git a/src/qt/locale/dash_nb.ts b/src/qt/locale/dash_nb.ts new file mode 100644 index 0000000000..0a141ef002 --- /dev/null +++ b/src/qt/locale/dash_nb.ts @@ -0,0 +1,5280 @@ + + + AboutDialog + + + About Dash Core + Om Dash Core + + + + <b>Dash Core</b> version + <b>Dash Core</b> versjon + + + + Copyright &copy; 2009-2014 The Bitcoin Core developers. +Copyright &copy; 2014-YYYY The Dash Core developers. + Opphavsrettsbeskyttet &kopi; 2009-2014 Bitcoin Core utviklerne. +Opphavsrettsbeskyttet &kopi; 2014-YYYY The Dash Core utviklerne. + + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +Dette er eksperimentell programvare. + +Distribuert under MIT/X11 programvarelisensen, se medfølgende fil COPYING eller http://www.opensource.org/licenses/mit-license.php. + +Dette produktet inneholder programvare utviklet av OpenSSL Projektet for bruk i OpenSSL-verktøy (http://www.openssl.org/), kryptografisk programvare skrevet av Eric Young (eay@cryptsoft.com) og UPnP programvare skrevet av Thomas Bernard. + + + + + Copyright + Opphavsrettsbeskyttet + + + + The Bitcoin Core developers + Bitcoin Core utviklerne + + + + The Dash Core developers + Dash Core utviklerne + + + + + (%1-bit) + (%1-bit) + + + + AddressBookPage + + + Double-click to edit address or label + Dobbelklikk for å redigere adresse eller merkelapp + + + + Create a new address + Lag en ny adresse + + + + &New + &Ny + + + + Copy the currently selected address to the system clipboard + Kopier den valgte adressen til operativsystemets utklippstavle + + + + &Copy + &Kopiér + + + + Delete the currently selected address from the list + Slett den valgte adressen fra listen. + + + + &Delete + &Slett + + + + Export the data in the current tab to a file + Eksportér data fra nåværende fane til fil + + + + &Export + &Eksportér + + + + C&lose + &Lukk + + + + Choose the address to send coins to + Velg adressen å sende mynter til + + + + Choose the address to receive coins with + Velg adressen til å motta mynter med + + + + C&hoose + &Velg + + + + Sending addresses + Utsendingsadresser + + + + Receiving addresses + Mottaksadresser + + + + These are your Dash addresses for sending payments. Always check the amount and the receiving address before sending coins. + Dette er dine lagrede Dash-adresser for å sende betalinger til. Alltid sjekk at beløpet og mottakeradressen stemmer før mynter sendes. + + + + These are your Dash addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Dette er Dash-adressene dine for å motta betalinger. Det er anbefalt å bruke en ny mottaksadresse for hver transaksjon. + + + + &Copy Address + &Kopiér Adresse + + + + Copy &Label + Kopiér &Merkelapp + + + + &Edit + &Redigér + + + + Export Address List + Ekportér Adresseliste + + + + Comma separated file (*.csv) + Kommaseparert fil (*.csv) + + + + Exporting Failed + Eksport Feilet + + + + There was an error trying to save the address list to %1. + En feil oppstod ved lagring av adresselisten til %1. + + + + AddressTableModel + + + Label + Merkelapp + + + + Address + Adresse + + + + (no label) + (ingen merkelapp) + + + + AskPassphraseDialog + + + Passphrase Dialog + Dialog for Adgangsfrase + + + + Enter passphrase + Angi adgangsfrase + + + + New passphrase + Ny adgangsfrase + + + + Repeat new passphrase + Gjenta ny adgangsfrase + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Slår av den trivielle sendmoney når operativsystembrukeren er kompromitert. Gir ingen ekte sikkerhet. + + + + For anonymization only + Kun for anonymisering + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Skriv inn den nye adgangsfrasen for lommeboka.<br/>Vennligst bruk en adgangsfrase med <b>minimum 10 tilfeldige tegn</b>, eller <b>minimum åtte ord</b>. + + + + Encrypt wallet + Kryptér lommebok + + + + This operation needs your wallet passphrase to unlock the wallet. + Denne operasjonen krever adgangsfrasen til lommeboka for å låse den opp. + + + + Unlock wallet + Lås opp lommeboka + + + + This operation needs your wallet passphrase to decrypt the wallet. + Denne operasjonen krever adgangsfrasen til lommeboka for å dekryptere den. + + + + Decrypt wallet + Dekryptér lommebok + + + + Change passphrase + Endre adgangsfrase + + + + Enter the old and new passphrase to the wallet. + Skriv inn gammel og ny adgangsfrase for lommeboka. + + + + Confirm wallet encryption + Bekreft kryptering av lommebok + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Advarsel: Hvis du krypterer lommeboka og mister adgangsfrasen vil du <b>MISTE ALLE DINE DASHS</b>! + + + + Are you sure you wish to encrypt your wallet? + Er du sikker på at du vil kryptere lommeboka? + + + + + Wallet encrypted + Lommeboka er kryptert + + + + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + Dash vil lukke seg nå for å fullføre krypteringsprosessen. Husk at kryptering av lommeboka ikke fullstendig kan beskytte dine dashs fra å bli stjålet av virus som kan infisere datamaskinen din. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + VIKTIG: Tidligere sikkerhetskopier av lommebokfilen din bør erstattes med den nylig genererte og krypterte filen, da de blir ugyldiggjort av sikkerhetshensyn så snart du begynner å bruke den nye krypterte lommeboka. + + + + + + + Wallet encryption failed + Kryptering av lommebok feilet + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Kryptering av lommebok feilet på grunn av en intern feil. Lommeboka di ble ikke kryptert. + + + + + The supplied passphrases do not match. + De angitte adgangsfrasene er ulike. + + + + Wallet unlock failed + Opplåsing av lommebok feilet + + + + + + The passphrase entered for the wallet decryption was incorrect. + Adgangsfrasen angitt for dekryptering av lommeboken var feil. + + + + Wallet decryption failed + Dekryptering av lommebok feilet + + + + Wallet passphrase was successfully changed. + Adgangsfrase for lommebok ble endret. + + + + + Warning: The Caps Lock key is on! + Advarsel: Caps Lock er på! + + + + BitcoinGUI + + + Dash Core + Dash Core + + + + Wallet + Lommebok + + + + Node + Node + + + + + [testnet] + [testnett] + + + + &Overview + &Oversikt + + + + Show general overview of wallet + Vis generell oversikt over lommeboka + + + + &Send + &Send + + + + Send coins to a Dash address + Send mynter til en Dash-adresse + + + + &Receive + &Motta + + + + Request payments (generates QR codes and dash: URIs) + Etterspør betalinger (genererer QR-koder og dash: URIer) + + + + &Transactions + &Transaksjoner + + + + Browse transaction history + Vis transaksjonshistorikk + + + + E&xit + &Avslutt + + + + Quit application + Avslutt applikasjonen + + + + + &About Dash Core + &Om Dash Core + + + + Show information about Dash + Vis informasjon om Dash + + + + + About &Qt + Om &Qt + + + + Show information about Qt + Vis informasjon om Qt + + + + &Options... + &Innstillinger... + + + + Modify configuration options for Dash + Endre konfigurasjonsinnstillinger for Dash + + + + + &Show / Hide + &Vis / Skjul + + + + Show or hide the main Window + Vis eller skjul hovedvinduet + + + + &Encrypt Wallet... + &Kryptér Lommebok... + + + + Encrypt the private keys that belong to your wallet + Kryptér de private nøklene som tilhører lommeboka di + + + + &Backup Wallet... + &Sikkerhetskopiér Lommebok... + + + + Backup wallet to another location + Sikkerhetskopiér lommebok til et annet sted + + + + &Change Passphrase... + &Endre Adgangsfrase... + + + + Change the passphrase used for wallet encryption + Endre adgangsfrasen brukt for kryptering av lommebok + + + + &Unlock Wallet... + &Lås opp Lommebok... + + + + Unlock wallet + Lås opp lommebok + + + + &Lock Wallet + &Lås Lommebok + + + + Sign &message... + Signér &melding... + + + + Sign messages with your Dash addresses to prove you own them + Signér meldinger med Dash-privatnøklene dine for å bevise at du eier de tilhørende Dash-adressene + + + + &Verify message... + &Verifisér melding... + + + + Verify messages to ensure they were signed with specified Dash addresses + Verifisér meldinger for å forsikre at de ble signert av eieren til de spesifiserte Dash adressene + + + + &Information + &Informasjon + + + + Show diagnostic information + Vis diagnostikkinformasjon + + + + &Debug console + &Konsoll + + + + Open debugging console + Åpne konsollen + + + + &Network Monitor + &Nettverksmonitorering + + + + Show network monitor + Vis nettverksmonitor + + + + Open &Configuration File + + + + + Open configuration file + + + + + &Sending addresses... + &Utsendingsadresser... + + + + Show the list of used sending addresses and labels + Vis listen av brukte utsendingsadresser og merkelapper + + + + &Receiving addresses... + &Mottaksadresser... + + + + Show the list of used receiving addresses and labels + Vis listen over bruke mottaksadresser og merkelapper + + + + Open &URI... + Åpne &URI... + + + + Open a dash: URI or payment request + Åpne en dash: URI eller betalingsforespørsel + + + + &Command-line options + &Kommandolinjevalg + + + + Show the Dash Core help message to get a list with possible Dash command-line options + Vis Dash Core hjelpemelding for å få en liste over alle mulige Dash kommandolinjevalg + + + + &File + &Fil + + + + &Settings + &Innstillinger + + + + &Tools + &Verktøy + + + + &Help + &Hjelp + + + + Tabs toolbar + Verktøylinje for faner + + + + + Dash client + Dash-klient + + + + %n active connection(s) to Dash network + %n aktiv(e) tilkobling(er) til Dash-nettverket%n aktiv(e) tilkobling(er) til Dash-nettverket + + + + Synchronizing with network... + Synkroniserer med nettverk... + + + + Importing blocks from disk... + Importerer blokker fra harddisk... + + + + Reindexing blocks on disk... + Reindekserer blokker på harddisk... + + + + No block source available... + Ingen kilde for blokker tilgjengelig... + + + + Processed %1 blocks of transaction history. + Lastet %1 blokker med transaksjonshistorikk. + + + + Up to date + Ajour + + + + %n hour(s) + %n time(r)%n time(r) + + + + %n day(s) + %n dag(er)%n dag(er) + + + + + %n week(s) + %n uke(r)%n uke(r) + + + + %1 and %2 + %1 og %2 + + + + %n year(s) + %n år%n år + + + + %1 behind + %1 bak + + + + Catching up... + Kommer ajour... + + + + Last received block was generated %1 ago. + Siste mottatte blokk ble generert for %1 siden. + + + + Transactions after this will not yet be visible. + Transaksjoner etter dette vil ikke være synlige ennå. + + + + Dash + Dash + + + + Error + Feil + + + + Warning + Advarsel + + + + Information + Informasjon + + + + Sent transaction + Sendt transaksjon + + + + Incoming transaction + Innkommende transaksjon + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Dato: %1 +Beløp: %2 +Type: %3 +Adresse: %4 + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Lommeboka er <b>kryptert</b> og for tiden <b>ulåst</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only + Lommeboka er <b>kryptert</b> og for tiden <b>ulåst</b> kun for anonymisering + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Lommeboken er <b>kryptert</b> og for tiden <b>låst</b> + + + + A fatal error occurred. Dash can no longer continue safely and will quit. + En fatal feil har oppstått. Dash kan ikke lenger fortsette trygt og vil avsluttes. + + + + ClientModel + + + Network Alert + Nettverksvarsel + + + + CoinControlDialog + + + Coin Control Address Selection + Myntkontroll Adressevalg + + + + Quantity: + Mengde: + + + + Bytes: + Bytes: + + + + Amount: + Beløp: + + + + Priority: + Prioritet: + + + + Fee: + Avgift: + + + + Low Output: + Lav Output: + + + + After Fee: + Etter Gebyr: + + + + Change: + Veksel: + + + + (un)select all + velg (fjern) alt + + + + Tree mode + Tremodus + + + + List mode + Listemodus + + + + (1 locked) + (1 låst) + + + + Amount + Beløp + + + + Label + Merkelapp + + + + Address + Adresse + + + + Darksend Rounds + Darksend-runder + + + + Date + Dato + + + + Confirmations + Bekreftelser + + + + Confirmed + Bekreftet + + + + Priority + Prioritet + + + + Copy address + Kopiér adresse + + + + Copy label + Kopiér merkelapp + + + + + Copy amount + Kopiér beløp + + + + Copy transaction ID + Kopiér transaksjons-ID + + + + Lock unspent + Lås ubrukte + + + + Unlock unspent + Lås opp ubrukte + + + + Copy quantity + Kopiér mengde + + + + Copy fee + Kopiér gebyr + + + + Copy after fee + Kopiér etter gebyr + + + + Copy bytes + Kopiér bytes + + + + Copy priority + Kopiér prioritet + + + + Copy low output + Kopiér lav output + + + + Copy change + Kopiér veksel + + + + highest + høyest + + + + higher + høyere + + + + high + høy + + + + medium-high + medium-høy + + + + n/a + n/a + + + + + medium + medium + + + + low-medium + lav-medium + + + + low + lav + + + + lower + lavere + + + + lowest + lavest + + + + (%1 locked) + (%1 låst) + + + + none + ingen + + + + Dust + Støv + + + + yes + ja + + + + + no + nei + + + + This label turns red, if the transaction size is greater than 1000 bytes. + Denne merkelappen blir rød hvis transaksjonsstørrelsen er større enn 1000 bytes. + + + + + This means a fee of at least %1 per kB is required. + Dette betyr at et gebyr på minst %1 per KB er påkrevd. + + + + Can vary +/- 1 byte per input. + Kan variere +/- 1 byte per input. + + + + Transactions with higher priority are more likely to get included into a block. + Transaksjoner med høyere prioritet har større sannsynlighet for å bli inkludert i en blokk. + + + + This label turns red, if the priority is smaller than "medium". + Denne merkelappen blir rød hvis prioriteten er mindre enn "medium". + + + + This label turns red, if any recipient receives an amount smaller than %1. + Denne merkelappen blir rød hvis en mottaker mottar en mengde på mindre enn %1. + + + + + This means a fee of at least %1 is required. + Dette betyr at et gebyr på minst %1 er påkrevd. + + + + Amounts below 0.546 times the minimum relay fee are shown as dust. + Mengder under 0.546 ganget med det minste relégebyr er vist som støv. + + + + This label turns red, if the change is smaller than %1. + Denne merkelappen blir rød hvis vekselet er mindre enn %1. + + + + + (no label) + (ingen merkelapp) + + + + change from %1 (%2) + veksel fra %1 (%2) + + + + (change) + (veksel) + + + + DarksendConfig + + + Configure Darksend + Konfigurér Darksend + + + + Basic Privacy + Grunnleggende personvern + + + + High Privacy + Veldig godt personvern + + + + Maximum Privacy + Maksimalt personvern + + + + Please select a privacy level. + Vennligst velg et personvernsnivå. + + + + Use 2 separate masternodes to mix funds up to 1000 DASH + Bruk 2 separate masternoder for å mikse verdier opp til 1000 DASH + + + + Use 8 separate masternodes to mix funds up to 1000 DASH + Bruk 8 separate masternoder for å mikse verdier opp til 1000 DASH + + + + Use 16 separate masternodes + Bruk 16 separate masternoder + + + + This option is the quickest and will cost about ~0.025 DASH to anonymize 1000 DASH + Dette alternativet er det raskeste og vil koste omtrent ~0.025 DASH for å anonymisere 1000 DASH + + + + This option is moderately fast and will cost about 0.05 DASH to anonymize 1000 DASH + Dette alternativet er moderat raskt og vil koste omtrent 0.05 DASH for å anonymisere 1000 DASH + + + + 0.1 DASH per 1000 DASH you anonymize. + 0.1 DASH per 1000 DASH du anonymiserer + + + + This is the slowest and most secure option. Using maximum anonymity will cost + Dette er det tregeste og mest sikre alternativet. Å bruke maksimal anonymitet vil koste + + + + + + Darksend Configuration + Darksend-konfigurasjon + + + + Darksend was successfully set to basic (%1 and 2 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend ble satt til grunnleggende (%1 og 2 runder). Du kan endre dette når som helst ved å åpne Darkcoins konfigurasjonvindu. + + + + Darksend was successfully set to high (%1 and 8 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend ble satt til veldig godt (%1 og 8 runder). Du kan endre dette når som helst ved å åpne Darkcoins konfigurasjonvindu. + + + + Darksend was successfully set to maximum (%1 and 16 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend ble satt til maksimalt (%1 og 16 runder). Du kan endre dette når som helst ved å åpne Darkcoins konfigurasjonvindu. + + + + EditAddressDialog + + + Edit Address + Redigér adresse + + + + &Label + &Merkelapp + + + + The label associated with this address list entry + Merkelappen koblet til denne adresselisteoppføringen + + + + &Address + &Adresse + + + + The address associated with this address list entry. This can only be modified for sending addresses. + Adressen til denne oppføringen i adresseboken. Denne kan kun endres for utsendingsadresser. + + + + New receiving address + Ny mottaksadresse + + + + New sending address + Ny utsendingsadresse + + + + Edit receiving address + Redigér mottaksadresse + + + + Edit sending address + Redigér utsendingsadresse + + + + The entered address "%1" is not a valid Dash address. + Den oppgitte adressen "%1" er ikke en gyldig Dash-adresse. + + + + The entered address "%1" is already in the address book. + Den oppgitte adressen "%1" er allerede i adresseboken. + + + + Could not unlock wallet. + Kunne ikke låse opp lommeboka. + + + + New key generation failed. + Generering av ny nøkkel feilet. + + + + FreespaceChecker + + + A new data directory will be created. + En ny datamappe vil bli laget. + + + + name + navn + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Mappe finnes allerede. Legg til %1 hvis du vil lage en ny mappe her. + + + + Path already exists, and is not a directory. + Plasseringen finnes allerede, og er ikke en mappe. + + + + Cannot create data directory here. + Kan ikke lage datamappe her. + + + + HelpMessageDialog + + + Dash Core - Command-line options + Dash Core - Kommandolinjealternativer + + + + Dash Core + Dash Core + + + + version + versjon + + + + Usage: + Bruk: + + + + command-line options + kommandolinjealternativer + + + + UI options + valg i brukergrensesnitt + + + + Choose data directory on startup (default: 0) + Velg datamappe ved oppstart (standard: 0) + + + + Set language, for example "de_DE" (default: system locale) + Sett språk, for eksempel "de_DE" (standardverdi: fra operativsystem) + + + + Start minimized + Start minimert + + + + Set SSL root certificates for payment request (default: -system-) + Sett SSL-rotsertifikat for betalingsforespørsel (standard: -system-) + + + + Show splash screen on startup (default: 1) + Vis oppstartvindu ved oppstart (standardverdi: 1) + + + + Intro + + + Welcome + Velkommen + + + + Welcome to Dash Core. + Velkommen til Dash Core. + + + + As this is the first time the program is launched, you can choose where Dash Core will store its data. + Ettersom dette er første gangen programmet kjøres, kan du velge hvor Dash Core skal lagre dataene sine. + + + + Dash Core will download and store a copy of the Dash block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Dash Core vil laste ned og lagre en kopi av Dash blockchainen. Minst %1GB med data vil bli lagret til denne mappen, og den vil vokse over tid. Lommeboka vil også lagres i denne mappen. + + + + Use the default data directory + Bruk standard datamappe + + + + Use a custom data directory: + Bruk en egendefinert datamappe: + + + + Dash + Dash + + + + Error: Specified data directory "%1" can not be created. + Feil: Spesifisert datamappe "%1" kan ikke opprettes. + + + + Error + Feil + + + + GB of free space available + GB ledig lagringsplass + + + + (of %1GB needed) + (av %1GB trengtes) + + + + OpenURIDialog + + + Open URI + Åpne URI + + + + Open payment request from URI or file + Åpne betalingsforespørsel fra URI eller fil + + + + URI: + URI: + + + + Select payment request file + Velg fil for betalingsforespørsel + + + + Select payment request file to open + Velg fil for betalingsforespørsel som skal åpnes + + + + OptionsDialog + + + Options + Innstillinger + + + + &Main + &Hoved + + + + Automatically start Dash after logging in to the system. + Automatisk start Dash etter å ha logget på systemet. + + + + &Start Dash on system login + &Start Dash ved pålogging. + + + + Size of &database cache + Størrelse på &database hurtigbuffer + + + + MB + MB + + + + Number of script &verification threads + Antall script &verifikasjonstråder + + + + (0 = auto, <0 = leave that many cores free) + (0 = automatisk, <0 = la så mange kjerner være ledig) + + + + <html><head/><body><p>This setting determines the amount of individual masternodes that an input will be anonymized through. More rounds of anonymization gives a higher degree of privacy, but also costs more in fees.</p></body></html> + <html><head/><body><p>Denne instillingen bestemmer mengden individuelle masternoder som en input vil bli anonymisert via. Flere runder med anonymisering gir en større grad av personvern, men koster også mer i avgifter.</p></body></html> + + + + Darksend rounds to use + Darksend runder å bruke + + + + This amount acts as a threshold to turn off Darksend once it's reached. + Dette beløpet fungerer som en grense for å skru av Darksend når det er nådd. + + + + Amount of Dash to keep anonymized + Beløp av Dash å holde anonymisert + + + + W&allet + L&ommebok + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. + Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. + + + + Pay transaction &fee + Betal &transaksjonsgebyr + + + + Expert + Ekspert + + + + Whether to show coin control features or not. + Skal myntkontroll funksjoner vises eller ikke. + + + + Enable coin &control features + Aktivér &myntkontroll funksjoner + + + + 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. + Hvis du sperrer for bruk av ubekreftet veksel, kan ikke vekselen fra transaksjonen bli brukt før transaksjonen har minimum én bekreftelse. Dette påvirker også hvordan balansen din blir beregnet. + + + + &Spend unconfirmed change + &Bruk ubekreftet veksel + + + + &Network + &Nettverk + + + + Automatically open the Dash client port on the router. This only works when your router supports UPnP and it is enabled. + Automatisk åpne porten for Dash-klienten i ruteren. Dette fungerer bare hvis ruteren din støtter UPnP og hvis dette er aktivert. + + + + Map port using &UPnP + Sett opp port ved hjelp av &UPnP + + + + Connect to the Dash network through a SOCKS proxy. + Koble til Dash-nettverket gjennom en SOCKS proxy. + + + + &Connect through SOCKS proxy (default proxy): + &Koble til gjennom SOCKS proxy (standardvalg proxy): + + + + Proxy &IP: + Proxy &IP: + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP-adressen til proxyen (f.eks. IPv4: 127.0.0.1 / IPv6: ::1) + + + + &Port: + &Port: + + + + Port of the proxy (e.g. 9050) + Proxyens port (f.eks. 9050) + + + + SOCKS &Version: + SOCKS &Versjon: + + + + SOCKS version of the proxy (e.g. 5) + Proxyens SOCKS versjon (f.eks. 5) + + + + &Window + &Vindu + + + + Show only a tray icon after minimizing the window. + Vis kun ikon i systemkurv etter minimering av vinduet. + + + + &Minimize to the tray instead of the taskbar + &Minimer til systemkurv istedenfor oppgavelinjen + + + + 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. + Minimerer vinduet istedenfor å avslutte applikasjonen når vinduet lukkes. Når dette er slått på avsluttes applikasjonen kun ved å velge avslutt i menyen. + + + + M&inimize on close + &Minimér ved lukking + + + + &Display + &Visning + + + + User Interface &language: + &Språk for brukergrensesnitt + + + + The user interface language can be set here. This setting will take effect after restarting Dash. + Språk for brukergrensesnitt kan bli satt her. Denne innstillingen vil tre i kraft etter en omstart av Dash. + + + + Language missing or translation incomplete? Help contributing translations here: +https://www.transifex.com/projects/p/dash/ + Manglende språk eller ufullstendig oversettelse? Hjelp med oversettelser her: +https://www.transifex.com/projects/p/dash/ + + + + &Unit to show amounts in: + &Enhet for visning av beløper: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Velg standard enhet for visning i grensesnittet og for sending av mynter. + + + + Whether to show Dash addresses in the transaction list or not. + Valg av om Dash-adresser skal vises i transaksjonslista eller ikke. + + + + &Display addresses in transaction list + &Vis adresser i transaksjonslisten + + + + + 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 |. + Tredjepart URLer (f. eks. en blokkutforsker) som dukker opp i transaksjonsfanen som kontekst meny elementer. %s i URLen er erstattet med transaksjonen sin hash. Flere URLer er separert av en vertikal linje |. + + + + Third party transaction URLs + Tredjepart transaksjon-URLer + + + + Active command-line options that override above options: + Aktive kommandolinjevalg som overstyrer valgene ovenfor: + + + + Reset all client options to default. + Tilbakestill alle klient-valg til standard + + + + &Reset Options + &Tilbakestill Instillinger + + + + &OK + &OK + + + + &Cancel + &Avbryt + + + + default + standardverdi + + + + none + ingen + + + + Confirm options reset + Bekreft tilbakestilling av innstillinger + + + + + Client restart required to activate changes. + Omstart av klienten er nødvendig for å aktivere endringene. + + + + Client will be shutdown, do you want to proceed? + Klienten vil bli lukket, vil du fortsette? + + + + This change would require a client restart. + Denne endringen krever omstart av klienten. + + + + The supplied proxy address is invalid. + Angitt proxyadresse er ugyldig. + + + + OverviewPage + + + Form + Skjema + + + + Wallet + Lommebok + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Dash network after a connection is established, but this process has not completed yet. + Den viste informasjonen kan være gammel. Lommeboka di synkroniserer automatisk med Dash-nettverket etter en tilkobling er funnet, men denne prosessen er ikke fullført ennå. + + + + Available: + Tilgjengelig: + + + + Your current spendable balance + Din nåværende saldo + + + + Pending: + Under behandling: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Totalt antall ubekreftede transaksjoner som ikke ennå teller med i saldo + + + + Immature: + Umoden: + + + + Mined balance that has not yet matured + Gruvedriftutvunnet saldo har ikke modnet enda + + + + Total: + Totalt: + + + + Your current total balance + Din nåværende totale saldo + + + + Status: + Status: + + + + Enabled/Disabled + Aktivert/Deaktivert + + + + Completion: + Fullførelse: + + + + Darksend Balance: + Darksend Saldo: + + + + 0 DASH + 0 DASH + + + + Amount and Rounds: + Beløp og Runder: + + + + 0 DASH / 0 Rounds + 0 DASH / 0 Runder + + + + Submitted Denom: + Innsendt Valør: + + + + The denominations you submitted to the Masternode. To mix, other users must submit the exact same denominations. + Valørene du sendte inn til Masternoden. For å blande må andre brukere sende inn de eksakt samme valørene. + + + + n/a + n/a + + + + + + + Darksend + Darksend + + + + Start/Stop Mixing + Start/Stopp Blanding + + + + (Last Message) + (Siste Melding) + + + + Try to manually submit a Darksend request. + Prøv å manuelt sende inn en Darksend-forespørsel. + + + + Try Mix + Forsøk blanding + + + + Reset the current status of Darksend (can interrupt Darksend if it's in the process of Mixing, which can cost you money!) + Nullstill nåværende Darksend-status (dette kan avbryte Darksend hvis den er midt i en blanderunde, og det kan koste deg penger!) + + + + Reset + Nullstill + + + + <b>Recent transactions</b> + <b>Siste transaksjoner</b> + + + + + + out of sync + ute av synk + + + + + Disabled + Deaktivert + + + + + + Start Darksend Mixing + Start Darksend + + + + + Stop Darksend Mixing + Stopp Darksend + + + + No inputs detected + Ingen inputs detektert + + + + Found unconfirmed denominated outputs, will wait till they confirm to recalculate. + Fant ubekreftede denominerte outputs, vil vente med å rekalkulere til de bekreftes. + + + + Rounds + Runder + + + + Enabled + Aktivert + + + + Last Darksend message: + + Siste Darksend melding: + + + + + + Darksend is idle. + Darksend er inaktiv. + + + + Mixing in progress... + + + + + Darksend request complete: Your transaction was accepted into the pool! + Darksend-forespørsel fullført: Transaksjonen din til blanderunden ble akseptert! + + + + Submitted following entries to masternode: + + + + + + + Submitted to masternode, Waiting for more entries + + + + + Found enough users, signing ... + + + + + Found enough users, signing ( waiting. ) + + + + + Found enough users, signing ( waiting.. ) + + + + + Found enough users, signing ( waiting... ) + + + + + Transmitting final transaction. + + + + + Finalizing transaction. + + + + + Darksend request incomplete: + + + + + Will retry... + + + + + Darksend request complete: + + + + + Submitted to masternode, waiting in queue . + + + + + Submitted to masternode, waiting in queue .. + + + + + Submitted to masternode, waiting in queue ... + + + + + Unknown state: + + + + + N/A + - + + + + Darksend was successfully reset. + + + + + Darksend requires at least %1 to use. + + + + + Wallet is locked and user declined to unlock. Disabling Darksend. + + + + + PaymentServer + + + + + + + + Payment request error + Betalingsforespørsel feil + + + + Cannot start dash: click-to-pay handler + + + + + Net manager warning + Nettleder advarsel + + + + Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. + Din aktive proxy har ikke støtte for SOCKS5, som er påkrevd for betalingsforespørsler via proxy. + + + + + URI handling + URI-håndtering + + + + Payment request fetch URL is invalid: %1 + Hentelenke for betalingsforespørsel er ugyldig: %1 + + + + URI can not be parsed! This can be caused by an invalid Dash address or malformed URI parameters. + + + + + Payment request file handling + Filhåndtering for betalingsforespørsel + + + + Payment request file can not be read or processed! This can be caused by an invalid payment request file. + Fil for betalingsforespørsel kan ikke leses eller behandles! Dette kan skyldes en ugyldig fil for betalingsforespørsel. + + + + Unverified payment requests to custom payment scripts are unsupported. + Uverifiserte betalingsforespørsler til egentilpassede betalingscript er ikke støttet. + + + + Requested payment amount of %1 is too small (considered dust). + Forespurt betalingsmengde på %1 er for liten (betraktet som støv). + + + + Refund from %1 + Refundering fra %1 + + + + Error communicating with %1: %2 + Feil i kommunikasjonen med %1: %2 + + + + Payment request can not be parsed or processed! + Betalingsforespørsler kan ikke analyseres eller behandles! + + + + Bad response from server %1 + Dårlig svar fra server %1 + + + + Network request error + Nettverksforespørsel feil + + + + Payment acknowledged + Betaling erkjent + + + + QObject + + + + + + Dash + Dash + + + + Error: Specified data directory "%1" does not exist. + Feil: Spesifisert datamappe "%1" finnes ikke. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Feil: Kan ikke lese konfigurasjonsfil: %1. Bruk kun syntaksen nøkkel=verdi. + + + + Error reading masternode configuration file: %1 + + + + + Error: Invalid combination of -regtest and -testnet. + Feil: Ugyldig kombinasjon av -regtest og -testnet. + + + + Dash Core didn't yet exit safely... + + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + QRImageWidget + + + &Save Image... + &Lagre Bilde... + + + + &Copy Image + &Kopier Bilde + + + + Save QR Code + Lagre QR-kode + + + + PNG Image (*.png) + PNG-bilde (*.png) + + + + RPCConsole + + + Tools window + + + + + &Information + &Informasjon + + + + Masternode Count + + + + + General + Generelt + + + + Name + Navn + + + + Client name + Klientnavn + + + + + + + + + + + + + N/A + - + + + + Number of connections + Antall tilkoblinger + + + + Open the Dash debug log file from the current data directory. This can take a few seconds for large log files. + + + + + &Open + &Åpne + + + + Startup time + Oppstartstidspunkt + + + + Network + Nettverk + + + + Last block time + Tidspunkt for siste blokk + + + + Debug log file + Loggfil for feilsøk + + + + Using OpenSSL version + Bruker OpenSSL versjon + + + + Build date + Byggedato + + + + Current number of blocks + Nåværende antall blokker + + + + Client version + Klientversjon + + + + Block chain + Blokkjeden + + + + &Console + &Konsoll + + + + Clear console + Tøm konsoll + + + + &Network Traffic + &Nettverkstrafikk + + + + &Clear + &Fjern + + + + Totals + Totalt + + + + + In: + Inn: + + + + + Out: + Ut: + + + + Welcome to the Dash RPC console. + + + + + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + Bruk opp og ned pil for å navigere historikken, og <b>Ctrl-L</b> for å tømme skjermen. + + + + Type <b>help</b> for an overview of available commands. + Skriv <b>help</b> for en oversikt over kommandoer. + + + + %1 B + %1 B + + + + %1 KB + %1 KB + + + + %1 MB + %1 MB + + + + %1 GB + %1 GB + + + + %1 m + %1 m + + + + %1 h + %1 t + + + + %1 h %2 m + %1 t %2 m + + + + ReceiveCoinsDialog + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Gjenbruk en av de tidligere brukte mottaksadressene. Gjenbruk av adresser har sikkerhets- og personvernsutfordringer. Ikke bruk dette med unntak for å gjennopprette en betalingsforespørsel som ble gjort tidligere. + + + + R&euse an existing receiving address (not recommended) + Gj&enbruk en eksisterende mottaksadresse (ikke anbefalt) + + + + + 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 Dash network. + + + + + &Message: + &Melding: + + + + + An optional label to associate with the new receiving address. + En valgfri merkelapp å tilknytte den nye mottakeradressen. + + + + Use this form to request payments. All fields are <b>optional</b>. + Bruk dette skjemaet til betalingsforespørsler. Alle felt er <b>valgfrie</b>. + + + + &Label: + &Merkelapp: + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Et valgfritt beløp å etterspørre. La stå tomt eller null for ikke å etterspørre et spesifikt beløp. + + + + &Amount: + &Beløp: + + + + &Request payment + &Etterspør betaling + + + + Clear all fields of the form. + Fjern alle felter fra skjemaet. + + + + Clear + Fjern + + + + Requested payments history + Etterspurt betalingshistorikk + + + + Show the selected request (does the same as double clicking an entry) + Vis den valgte etterspørringen (gjør det samme som å dobbelklikke på en oppføring) + + + + Show + Vis + + + + Remove the selected entries from the list + Fjern de valgte oppføringene fra listen + + + + Remove + Fjern + + + + Copy label + Kopier merkelapp + + + + Copy message + Kopier melding + + + + Copy amount + Kopier beløp + + + + ReceiveRequestDialog + + + QR Code + QR-kode + + + + Copy &URI + Kopier &URI + + + + Copy &Address + Kopier &Adresse + + + + &Save Image... + &Lagre Bilde... + + + + Request payment to %1 + Etterspør betaling til %1 + + + + Payment information + Betalingsinformasjon + + + + URI + URI + + + + Address + Adresse + + + + Amount + Beløp + + + + Label + Merkelapp + + + + Message + Melding + + + + Resulting URI too long, try to reduce the text for label / message. + Resultat URI for lang, prøv å redusere teksten for merkelapp / melding. + + + + Error encoding URI into QR Code. + Feil ved koding av URI til QR-kode. + + + + RecentRequestsTableModel + + + Date + Dato + + + + Label + Merkelapp + + + + Message + Melding + + + + Amount + Beløp + + + + (no label) + (ingen merkelapp) + + + + (no message) + (ingen melding) + + + + (no amount) + (intet beløp) + + + + SendCoinsDialog + + + + + + Send Coins + Send Bitcoins + + + + Coin Control Features + Myntkontroll Funksjoner + + + + Inputs... + Inputs... + + + + automatically selected + automatisk valgte + + + + Insufficient funds! + Utilstrekkelige midler! + + + + Quantity: + Mengde: + + + + Bytes: + Bytes: + + + + Amount: + Beløp: + + + + Priority: + Prioritet: + + + + medium + medium + + + + Fee: + Gebyr: + + + + Low Output: + Lav Output: + + + + no + nei + + + + After Fee: + Etter Gebyr: + + + + Change: + Veksel: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Hvis dette er aktivert, men adressen for veksel er tom eller ugyldig, vil veksel bli sendt til en nylig generert adresse. + + + + Custom change address + Egendefinert adresse for veksel + + + + Confirm the send action + Bekreft sending + + + + S&end + S&end + + + + Clear all fields of the form. + Fjern alle felter fra skjemaet. + + + + Clear &All + Fjern &Alt + + + + Send to multiple recipients at once + Send til flere enn en mottaker + + + + Add &Recipient + Legg til &Mottaker + + + + Darksend + Darksend + + + + InstantX + + + + + Balance: + Saldo: + + + + Copy quantity + Kopier mengde + + + + Copy amount + Kopier beløp + + + + Copy fee + Kopier gebyr + + + + Copy after fee + Kopier fra gebyr + + + + Copy bytes + Kopier bytes + + + + Copy priority + Kopier prioritet + + + + Copy low output + Kopiér lav output + + + + Copy change + Kopier veksel + + + + + + using + + + + + + anonymous funds + + + + + (darksend requires this amount to be rounded up to the nearest %1). + + + + + any available funds (not recommended) + + + + + and InstantX + + + + + + + + %1 to %2 + %1 til %2 + + + + Are you sure you want to send? + Er du sikker på at du vil sende? + + + + are added as transaction fee + + + + + Total Amount %1 (= %2) + Totalt Beløp %1 (= %2) + + + + or + eller + + + + Confirm send coins + Bekreft sending av bitcoins + + + + Payment request expired + Betalingsforespørsel utgått + + + + Invalid payment address %1 + Ugyldig betalingsadresse %1 + + + + The recipient address is not valid, please recheck. + Adresse for mottaker er ugyldig. + + + + The amount to pay must be larger than 0. + Beløpet som skal betales må være over 0. + + + + The amount exceeds your balance. + Beløpet overstiger saldo. + + + + The total exceeds your balance when the %1 transaction fee is included. + Totalbeløpet overstiger saldo etter at %1 transaksjonsgebyr er lagt til. + + + + Duplicate address found, can only send to each address once per send operation. + Doble antall adresser funnet. Kan bare sende en gang til hver adresse per operasjon. + + + + Transaction creation failed! + Opprettelse av transaksjon feilet! + + + + 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 and coins were spent in the copy but not marked as spent here. + Transaksjonen ble avvist! Dette kan skje hvis noen av myntene i lommeboken allerede er brukt, som hvis du kopierte wallet.dat og mynter ble brukt i kopien uten å bli markert som brukt her. + + + + Error: The wallet was unlocked only to anonymize coins. + + + + + Warning: Invalid Dash address + + + + + Warning: Unknown change address + Advarsel: Ukjent adresse for veksel + + + + (no label) + (ingen merkelapp) + + + + SendCoinsEntry + + + This is a normal payment. + Dette er en normal betaling. + + + + Pay &To: + Betal &Til: + + + + The address to send the payment to (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + Choose previously used address + Velg tidligere brukt adresse + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Lim inn adresse fra utklippstavlen + + + + Alt+P + Alt+P + + + + + + Remove this entry + Fjern denne oppføringen + + + + &Label: + &Merkelapp: + + + + Enter a label for this address to add it to the list of used addresses + Skriv inn en merkelapp for denne adressen for å legge den til listen av brukte adresser + + + + + + A&mount: + &Beløp: + + + + Message: + Melding: + + + + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + + + + + This is an unverified payment request. + Dette er en uverifisert betalingsetterspørring + + + + + Pay To: + Betal Til: + + + + + Memo: + Memo: + + + + This is a verified payment request. + Dette er en verifisert betalingsetterspørring + + + + Enter a label for this address to add it to your address book + Skriv inn en merkelapp for denne adressen for å legge den til i din adressebok + + + + ShutdownWindow + + + Dash Core is shutting down... + + + + + Do not shut down the computer until this window disappears. + Slå ikke av datamaskinen før dette vinduet forsvinner. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Signaturer - Signer / Verifiser en Melding + + + + &Sign Message + &Signér Melding + + + + You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + Du kan signere meldinger med dine adresser for å bevise at du eier dem. Ikke signer vage meldinger da phishing-angrep kan prøve å lure deg til å signere din identitet over til andre. Signer kun fullt detaljerte utsagn som du er enig i. + + + + The address to sign the message with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + + Choose previously used address + Velg tidligere brukt adresse + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Lim inn adresse fra utklippstavlen + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Skriv inn meldingen du vil signere her + + + + Signature + Signatur + + + + Copy the current signature to the system clipboard + Kopier valgt signatur til utklippstavle + + + + Sign the message to prove you own this Dash address + + + + + Sign &Message + Signer &Melding + + + + Reset all sign message fields + Tilbakestill alle felter for meldingssignering + + + + + Clear &All + Fjern &Alt + + + + &Verify Message + &Verifiser Melding + + + + 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. + Angi adresse for signering, melding (vær sikker på at du kopierer linjeskift, mellomrom, tab, etc. helt nøyaktig) og signatur under for å verifisere meldingen. Vær forsiktig med at du ikke gir signaturen mer betydning enn det som faktisk står i meldingen, for å unngå å bli lurt av såkalte "man-in-the-middle" angrep. + + + + The address the message was signed with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + Verify the message to ensure it was signed with the specified Dash address + + + + + Verify &Message + Verifiser &Melding + + + + Reset all verify message fields + Tilbakestill alle felter for meldingsverifikasjon + + + + Click "Sign Message" to generate signature + Klikk "Signer Melding" for å generere signatur + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + + The entered address is invalid. + Angitt adresse er ugyldig. + + + + + + + Please check the address and try again. + Vennligst sjekk adressen og prøv igjen. + + + + + The entered address does not refer to a key. + Angitt adresse refererer ikke til en nøkkel. + + + + Wallet unlock was cancelled. + Opplåsing av lommebok ble avbrutt. + + + + Private key for the entered address is not available. + Privat nøkkel for den angitte adressen er ikke tilgjengelig. + + + + Message signing failed. + Signering av melding feilet. + + + + Message signed. + Melding signert. + + + + The signature could not be decoded. + Signaturen kunne ikke dekodes. + + + + + Please check the signature and try again. + Vennligst sjekk signaturen og prøv igjen. + + + + The signature did not match the message digest. + Signaturen passer ikke til meldingen. + + + + Message verification failed. + Verifikasjon av melding feilet. + + + + Message verified. + Melding verifisert. + + + + SplashScreen + + + Dash Core + Dash Core + + + + Version %1 + + + + + The Bitcoin Core developers + Bitcoin Core utviklerne + + + + The Dash Core developers + Dash Core utviklerne + + + + [testnet] + [testnett] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + Åpen til %1 + + + + + + + conflicted + konflikt + + + + %1/offline (verified via instantx) + + + + + %1/confirmed (verified via instantx) + + + + + %1 confirmations (verified via instantx) + + + + + %1/offline + %1/frakoblet + + + + %1/unconfirmed + %1/ubekreftet + + + + + %1 confirmations + %1 bekreftelser + + + + %1/offline (InstantX verification in progress - %2 of %3 signatures) + + + + + %1/confirmed (InstantX verification in progress - %2 of %3 signatures ) + + + + + %1 confirmations (InstantX verification in progress - %2 of %3 signatures) + + + + + %1/offline (InstantX verification failed) + + + + + %1/confirmed (InstantX verification failed) + + + + + Status + Status + + + + , has not been successfully broadcast yet + , har ikke blitt kringkastet med hell enda + + + + , broadcast through %n node(s) + + + + + Date + Dato + + + + Source + Kilde + + + + Generated + Generert + + + + + From + Fra + + + + unknown + ukjent + + + + + + To + Til + + + + + own address + egen adresse + + + + label + merkelapp + + + + + + + + Credit + Kredit + + + + matures in %n more block(s) + + + + + not accepted + ikke akseptert + + + + + + + Debit + Debet + + + + Transaction fee + Transaksjonsgebyr + + + + Net amount + Nettobeløp + + + + + Message + Melding + + + + Comment + Kommentar + + + + Transaction ID + Transaksjons-ID + + + + Merchant + Forhandler + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Genererte bitcoins må modnes %1 blokker før de kan brukes. Da du genererte denne blokken ble den kringkastet på nettverket for å bli lagt til i kjeden av blokker. Hvis den ikke kommer med i kjeden vil den endre seg til "ikke akseptert" og pengene vil ikke kunne brukes. Dette vil noen ganger skje hvis en annen node genererer en blokk noen sekunder i tid fra din egen. + + + + Debug information + Informasjon for feilsøk + + + + Transaction + Transaksjon + + + + Inputs + Inputs + + + + Amount + Beløp + + + + true + sann + + + + false + usann + + + + TransactionDescDialog + + + Transaction details + Transaksjonsdetaljer + + + + This pane shows a detailed description of the transaction + Her vises en detaljert beskrivelse av transaksjonen + + + + TransactionTableModel + + + Date + Dato + + + + Type + Type + + + + Address + Adresse + + + + Amount + Beløp + + + + Open for %n more block(s) + + + + + Open until %1 + Åpen til %1 + + + + Offline + Frakoblet + + + + Unconfirmed + Ubekreftet + + + + Confirming (%1 of %2 recommended confirmations) + Bekrefter (%1 av %2 anbefalte bekreftelser) + + + + Confirmed (%1 confirmations) + Bekreftet (%1 bekreftelser) + + + + Conflicted + Konflikt + + + + Immature (%1 confirmations, will be available after %2) + Umoden (%1 bekreftelser, vil være tilgjengelig etter %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Denne blokken har ikke blitt mottatt av noen andre noder og vil sannsynligvis ikke bli akseptert! + + + + Generated but not accepted + Generert men ikke akseptert + + + + Received with + Mottatt med + + + + Received from + Mottatt fra + + + + Received via Darksend + + + + + Sent to + Sendt til + + + + Payment to yourself + Betaling til deg selv + + + + Mined + Utvunnet + + + + Darksend Denominate + + + + + Darksend Collateral Payment + + + + + Darksend Make Collateral Inputs + Darksend Lag Sikkerhet-Inputs + + + + Darksend Create Denominations + + + + + Darksent + + + + + (n/a) + - + + + + Transaction status. Hover over this field to show number of confirmations. + Transaksjonsstatus. Hold muspekeren over dette feltet for å se antall bekreftelser. + + + + Date and time that the transaction was received. + Dato og tid for da transaksjonen ble mottat. + + + + Type of transaction. + Type transaksjon. + + + + Destination address of transaction. + Mottaksadresse for transaksjonen. + + + + Amount removed from or added to balance. + Beløp fjernet eller lagt til saldo. + + + + TransactionView + + + + All + Alle + + + + Today + I dag + + + + This week + Denne uken + + + + This month + Denne måneden + + + + Last month + Forrige måned + + + + This year + Dette året + + + + Range... + Intervall... + + + + Received with + Mottatt med + + + + Sent to + Sendt til + + + + Darksent + + + + + Darksend Make Collateral Inputs + Darksend Lag Sikkerhet-Inputs + + + + Darksend Create Denominations + + + + + Darksend Denominate + + + + + Darksend Collateral Payment + + + + + To yourself + Til deg selv + + + + Mined + Utvunnet + + + + Other + Andre + + + + Enter address or label to search + Skriv inn adresse eller merkelapp for søk + + + + Min amount + Minimumsbeløp + + + + Copy address + Kopier adresse + + + + Copy label + Kopier merkelapp + + + + Copy amount + Kopier beløp + + + + Copy transaction ID + Kopier transaksjons-ID + + + + Edit label + Rediger merkelapp + + + + Show transaction details + Vis transaksjonsdetaljer + + + + Export Transaction History + Eksporter Transaksjonshistorikk + + + + Comma separated file (*.csv) + Kommaseparert fil (*.csv) + + + + Confirmed + Bekreftet + + + + Date + Dato + + + + Type + Type + + + + Label + Merkelapp + + + + Address + Adresse + + + + Amount + Beløp + + + + ID + ID + + + + Exporting Failed + Ekport Feilet + + + + There was an error trying to save the transaction history to %1. + En feil oppstod ved lagring av transaksjonshistorikken til %1. + + + + Exporting Successful + Ekport Fullført + + + + The transaction history was successfully saved to %1. + Transaksjonshistorikken ble lagret til %1. + + + + Range: + Intervall: + + + + to + til + + + + WalletFrame + + + No wallet has been loaded. + Ingen lommebok har blitt lastet. + + + + WalletModel + + + + Send Coins + Send Bitcoins + + + + InstantX doesn't support sending values that high yet. Transactions are currently limited to %n DASH. + + + + + WalletView + + + &Export + &Eksporter + + + + Export the data in the current tab to a file + Eksporter data fra nåværende fane til fil + + + + Backup Wallet + Sikkerhetskopier Lommebok + + + + Wallet Data (*.dat) + Lommebokdata (*.dat) + + + + Backup Failed + Sikkerhetskopiering Feilet + + + + There was an error trying to save the wallet data to %1. + En feil oppstod ved lagring av lommebok til %1. + + + + Backup Successful + Sikkerhetskopiering Fullført + + + + The wallet data was successfully saved to %1. + Lommeboken ble lagret til %1. + + + + dash-core + + + %s, you must set a rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=dashrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com + + + + + + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. Dash Core is probably already running. + + + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + + + + + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. + + + + + Disable all Masternode and Darksend related functionality (0-1, default: 0) + + + + + Enable instantx, show confirmations for locked transactions (bool, default: true) + + + + + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) + + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. + + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + 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 and coins were spent in the copy but not marked as spent here. + + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! + + + + + Error: Wallet unlocked for anonymization only, unable to create transaction. + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Fees smaller than this are considered zero fee (for transaction creation) (default: + + + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + + + + + Found unconfirmed denominated outputs, will wait till they confirm to continue. + Fant ubekreftede denominerte outputs, vil vente med å gå videre til de bekreftes. + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. + InstantX trenger inputs med minst 6 bekreftelser, du trenger kanskje å vente noen minutter før du prøver igjen. + + + + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) + + + + + Name to construct url for KeePass entry that stores the wallet passphrase + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Output debugging information (default: 0, supplying <category> is optional) + Vis debug-informasjon (standard: 0, Å oppgi <kategori> er frivillig) + + + + 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) + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + + + + + Set external address:port to get to this masternode (example: address:port) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + + + + + Show N confirmations for a successfully locked transaction (0-9999, default: 1) + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + Unable to bind to %s on this computer. Dash Core is probably already running. + + + + + Unable to locate enough Darksend denominated funds for this transaction. + + + + + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. + + + + + Unable to locate enough Darksend non-denominated funds for this transaction. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) + + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + + + + + You must specify a masternodeprivkey in the configuration. Please see documentation for help. + + + + + (default: 1) + + + + + (default: wallet.dat) + + + + + <category> can be: + + + + + Accept command line and JSON-RPC commands + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Add a node to connect to and attempt to keep the connection open + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + Allow JSON-RPC connections from specified IP address + + + + + Already have that input. + Har allerede den inputen. + + + + Always query for peer addresses via DNS lookup (default: 0) + + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + + Block creation options: + + + + + Can't denominate: no compatible inputs left. + Kan ikke denominere: Ingen kompatible inputs eksisterer. + + + + Cannot downgrade wallet + + + + + Cannot resolve -bind address: '%s' + + + + + Cannot resolve -externalip address: '%s' + + + + + Cannot write default address + + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + + Collateral is not valid. + + + + + Collateral not valid. + + + + + Connect only to the specified node(s) + + + + + Connect through SOCKS proxy + + + + + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) + + + + + Connect to KeePassHttp on port <port> (default: 19455) + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Connection options: + + + + + Corrupted block database detected + + + + + Dash Core Daemon + + + + + Dash Core RPC client version + + + + + Darksend is disabled. + + + + + Darksend options: + + + + + Debugging/Testing options: + + + + + Disable safemode, override a real safe mode event (default: 0) + + + + + Discover own IP address (default: 1 when listening and no -externalip) + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Done loading + + + + + Downgrading and trying again. + + + + + Enable the client to act as a masternode (0-1, default: 0) + + + + + Entries are full. + + + + + Error connecting to masternode. + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading block database + + + + + Error loading wallet.dat + + + + + Error loading wallet.dat: Wallet corrupted + + + + + Error loading wallet.dat: Wallet requires newer version of Dash + + + + + Error opening block database + + + + + Error reading from database, shutting down. + + + + + Error recovering public key. + + + + + Error + Feil + + + + Error: Disk space is low! + + + + + Error: Wallet locked, unable to create transaction! + + + + + Error: You already have pending entries in the Darksend pool + + + + + Error: system error: + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Failed to read block info + + + + + Failed to read block + + + + + Failed to sync block index + + + + + Failed to write block index + + + + + Failed to write block info + + + + + Failed to write block + + + + + Failed to write file info + + + + + Failed to write to coin database + + + + + Failed to write transaction index + + + + + Failed to write undo data + + + + + Fee per kB to add to transactions you send + + + + + Fees smaller than this are considered zero fee (for relaying) (default: + + + + + Force safe mode (default: 0) + + + + + Generate coins (default: 0) + + + + + Get help for a command + + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + + If <category> is not supplied, output all debugging information. + Hvis <kategori> ikke er oppgitt, vis all debug-informasjon. + + + + Ignore masternodes less than version (example: 70050; default : 0) + + + + + Importing... + + + + + Imports blocks from external blk000??.dat file + + + + + Incompatible mode. + + + + + Incompatible version. + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Information + Informasjon + + + + Initialization sanity check failed. Dash Core is shutting down. + + + + + Input is not valid. + Input er ikke gyldig. + + + + InstantX options: + + + + + Insufficient funds + + + + + Insufficient funds. + + + + + Invalid -onion address: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + + Invalid amount + + + + + Invalid masternodeprivkey. Please see documenation. + + + + + Invalid private key. + + + + + Invalid script detected. + + + + + KeePassHttp id for the established association + + + + + KeePassHttp key for AES encrypted communication with KeePass + + + + + Keep N dash anonymized (default: 0) + + + + + Keep at most <n> unconnectable blocks in memory (default: %u) + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Last Darksend was too recent. + + + + + Last successful darksend action was too recent. + + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + + List commands + + + + + Listen for connections on <port> (default: 9999 or testnet: 19999) + + + + + Loading addresses... + + + + + Loading block index... + + + + + Loading masternode list... + + + + + Loading wallet... (%3.2f %%) + + + + + Loading wallet... + + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + + Maintain a full transaction index (default: 0) + + + + + Maintain at most <n> connections to peers (default: 125) + + + + + Masternode options: + + + + + Masternode queue is full. + + + + + Masternode: + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + + Missing input transaction information. + Mangler transaksjoninformasjon for input. + + + + No compatible masternode found. + + + + + No funds detected in need of denominating. + + + + + No masternodes detected. + + + + + No matching denominations found for mixing. + + + + + Non-standard public key detected. + + + + + Not compatible with existing transactions. + + + + + Not enough file descriptors available. + + + + + Not in the masternode list. + + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + + Options: + + + + + Password for JSON-RPC connections + + + + + Prepend debug output with timestamp (default: 1) + Foranstill debug-visning med tidsstempel (standard: 1) + + + + Print block on startup, if found in block index + + + + + Print block tree on startup (default: 0) + + + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + + RPC client options: + + + + + RPC server options: + + + + + Randomly drop 1 of every <n> network messages + + + + + Randomly fuzz 1 of every <n> network messages + + + + + Rebuild block chain index from current blk000??.dat files + + + + + Rescan the block chain for missing wallet transactions + + + + + Rescanning... + + + + + Run a thread to flush wallet periodically (default: 1) + + + + + Run in the background as a daemon and accept commands + + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + + Send command to Dash Core + + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + + Send trace/debug info to console instead of debug.log file + + + + + Server certificate file (default: server.cert) + + + + + Server private key (default: server.pem) + + + + + Session not complete! + + + + + Session timed out (30 seconds), please resubmit. + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Set key pool size to <n> (default: 100) + + + + + Set maximum block size in bytes (default: %d) + + + + + Set minimum block size in bytes (default: 0) + + + + + Set the masternode private key + + + + + Set the number of threads to service RPC calls (default: 4) + + + + + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Show benchmark information (default: 0) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing failed. + + + + + Signing timed out, please resubmit. + + + + + Signing transaction failed + + + + + Specify configuration file (default: dash.conf) + + + + + Specify connection timeout in milliseconds (default: 5000) + + + + + Specify data directory + + + + + Specify masternode configuration file (default: masternode.conf) + + + + + Specify pid file (default: dashd.pid) + + + + + Specify wallet file (within data directory) + + + + + Specify your own public address + + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + + Start Dash Core Daemon + + + + + System error: + + + + + This help message + + + + + This is intended for regression testing tools and app development. + + + + + This is not a masternode. + + + + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + To use the %s option + + + + + Transaction amount too small + + + + + Transaction amounts must be positive + + + + + Transaction created successfully. + + + + + Transaction fees are too high. + + + + + Transaction not valid. + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Unable to sign masternode payment winner, wrong key? + + + + + Unable to sign spork message, wrong key? + + + + + Unknown -socks proxy version requested: %i + + + + + Unknown network specified in -onlynet: '%s' + + + + + Upgrade wallet to latest format + + + + + Usage (deprecated, use dash-cli): + + + + + Usage: + Bruk: + + + + Use KeePass 2 integration using KeePassHttp plugin (default: 0) + + + + + Use N separate masternodes to anonymize funds (2-8, default: 2) + + + + + Use OpenSSL (https) for JSON-RPC connections + + + + + Use UPnP to map the listening port (default: 0) + + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + + Use the test network + + + + + Username for JSON-RPC connections + + + + + Value more than Darksend pool maximum allows. + + + + + Verifying blocks... + + + + + Verifying wallet... + + + + + Wait for RPC server to start + + + + + Wallet %s resides outside data directory %s + + + + + Wallet is locked. + + + + + Wallet needed to be rewritten: restart Dash to complete + + + + + Wallet options: + + + + + Warning + Advarsel + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + + Warning: This version is obsolete, upgrade required! + + + + Wrong state. + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + on startup + + + + + version + versjon + + + + wallet.dat corrupt, salvage failed + + + + \ No newline at end of file diff --git a/src/qt/locale/dash_nl.ts b/src/qt/locale/dash_nl.ts new file mode 100644 index 0000000000..e1c732932a --- /dev/null +++ b/src/qt/locale/dash_nl.ts @@ -0,0 +1,5279 @@ + + + AboutDialog + + + About Dash Core + Over Dash Core + + + + <b>Dash Core</b> version + <b>Dash Core</b> versie + + + + Copyright &copy; 2009-2014 The Bitcoin Core developers. +Copyright &copy; 2014-YYYY The Dash Core developers. + + + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +Dit is experimentele software. + +Gedistribueerd onder de MIT/X11 software licentie, zie het bijgevoegde bestand COPYING of http://www.opensource.org/licenses/mit-license.php. + +Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in de OpenSSL Toolkit (http://www.openssl.org/) en cryptografische software gemaakt door Eric Young (eay@cryptsoft.com) en UPnP software geschreven door Thomas Bernard. + + + + + Copyright + Auteursrecht + + + + The Bitcoin Core developers + De Bitcoin Core ontwikkelaars + + + + The Dash Core developers + De Dash Core ontwikkelaars + + + + + (%1-bit) + (%1-bit) + + + + AddressBookPage + + + Double-click to edit address or label + Dubbelklik om adres of label te wijzigen + + + + Create a new address + Maak een nieuw adres aan + + + + &New + &Nieuw + + + + Copy the currently selected address to the system clipboard + Kopieer het huidig geselecteerde adres naar het klembord + + + + &Copy + &Kopieer + + + + Delete the currently selected address from the list + Verwijder het geselecteerde adres van de lijst + + + + &Delete + &Verwijder + + + + Export the data in the current tab to a file + Exporteer de data in de huidige tab naar een bestand + + + + &Export + &Exporteer + + + + C&lose + S&luiten + + + + Choose the address to send coins to + Kies het adres om munten naar te versturen + + + + Choose the address to receive coins with + Kies het adres om munten mee te ontvangen + + + + C&hoose + K&iezen + + + + Sending addresses + Verzend adressen + + + + Receiving addresses + Ontvangst adressen + + + + These are your Dash addresses for sending payments. Always check the amount and the receiving address before sending coins. + Dit zijn uw Dash adressen om betalingen uit te voeren. Kijk steeds het bedrag en ontvangstadres na alvorens munten te verzenden. + + + + These are your Dash addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Dit zijn uw Dash adressen om betalingen te ontvangen. Het is aangeraden om een nieuw ontvangstadres te gebruiken voor elke transactie. + + + + &Copy Address + &Kopiëer Adres + + + + Copy &Label + Kopiëer &Label + + + + &Edit + &Bewerk + + + + Export Address List + Exporteer adreslijst + + + + Comma separated file (*.csv) + Kommagescheiden bestand (*.csv) + + + + Exporting Failed + Export Mislukt + + + + There was an error trying to save the address list to %1. + Er is een fout is opgetreden tijdens het opslaan van deze adreslijst naar %1. + + + + AddressTableModel + + + Label + Label + + + + Address + Adres + + + + (no label) + (geen label) + + + + AskPassphraseDialog + + + Passphrase Dialog + Wachtwoorddialoogscherm + + + + Enter passphrase + Voer wachtwoord in + + + + New passphrase + Nieuw wachtwoord + + + + Repeat new passphrase + Herhaal nieuw wachtwoord + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Dient voor het uitschakelen van de triviale sendmoney wanneer het gebruikersaccount van het besturingssysteem gecompromitteerd is. Biedt geen echte veiligheid. + + + + For anonymization only + Alleen voor anonimisatie + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Vul een nieuw wachtwoord in voor uw portemonnee. <br/> Gebruik een wachtwoord van <b>10 of meer lukrake karakters</b>, of <b>acht of meer woorden</b> . + + + + Encrypt wallet + Versleutel portemonnee + + + + This operation needs your wallet passphrase to unlock the wallet. + Deze operatie vereist uw portemonneewachtwoord om de portemonnee te openen. + + + + Unlock wallet + Open portemonnee + + + + This operation needs your wallet passphrase to decrypt the wallet. + Deze operatie vereist uw portemonneewachtwoord om de portemonnee te ontsleutelen + + + + Decrypt wallet + Ontsleutel portemonnee + + + + Change passphrase + Wijzig wachtwoord + + + + Enter the old and new passphrase to the wallet. + Vul uw oude en nieuwe portemonneewachtwoord in. + + + + Confirm wallet encryption + Bevestig versleuteling van de portemonnee + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Opgelet: Wanneer u uw beurs encrypteert en paswoordzin verliest, de zal u <b>AL UW DASHS VERLIEZEN</b>! + + + + Are you sure you wish to encrypt your wallet? + Weet u zeker dat u uw portemonnee wilt versleutelen? + + + + + Wallet encrypted + Portemonnee versleuteld + + + + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + Dash zal nu sluiten om het encrypteerproces te voltooien. Onthoud dat het encrypteren de beurs niet volledig kan beschermen tegen het stelen van dashs door malware die uw computer besmet. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + BELANGRIJK: Elke eerder gemaakte backup van uw portemonneebestand dient u te vervangen door het nieuw gegenereerde, versleutelde portemonneebestand. Om veiligheidsredenen zullen eerdere backups van het niet-versleutelde portemonneebestand onbruikbaar worden zodra u uw nieuwe, versleutelde, portemonnee begint te gebruiken. + + + + + + + Wallet encryption failed + Portemonneeversleuteling mislukt + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Portemonneeversleuteling mislukt door een interne fout. Uw portemonnee is niet versleuteld. + + + + + The supplied passphrases do not match. + De opgegeven wachtwoorden komen niet overeen + + + + Wallet unlock failed + Portemonnee openen mislukt + + + + + + The passphrase entered for the wallet decryption was incorrect. + Het opgegeven wachtwoord voor de portemonnee-ontsleuteling is niet correct. + + + + Wallet decryption failed + Portemonnee-ontsleuteling mislukt + + + + Wallet passphrase was successfully changed. + Portemonneewachtwoord is met succes gewijzigd. + + + + + Warning: The Caps Lock key is on! + Waarschuwing: De Caps-Lock-toets staat aan! + + + + BitcoinGUI + + + Dash Core + Dash Core + + + + Wallet + Portemonnee + + + + Node + Node + + + + + [testnet] + [testnetwerk] + + + + &Overview + &Overzicht + + + + Show general overview of wallet + Toon algemeen overzicht van de portemonnee + + + + &Send + &Versturen + + + + Send coins to a Dash address + Verzend munten naar een Dash adres + + + + &Receive + &Ontvangen + + + + Request payments (generates QR codes and dash: URIs) + Vraag betaling (genereert QR codes en dash: URIs) + + + + &Transactions + &Transacties + + + + Browse transaction history + Blader door transactieverleden + + + + E&xit + &Afsluiten + + + + Quit application + Programma afsluiten + + + + + &About Dash Core + &Over Dash Core + + + + Show information about Dash + Toon informatie over Dash + + + + + About &Qt + Over &Qt + + + + Show information about Qt + Toon informatie over Qt + + + + &Options... + O&pties... + + + + Modify configuration options for Dash + Aanpassen van configuratie opties voor Dash + + + + + &Show / Hide + &Toon / Verberg + + + + Show or hide the main Window + Toon of verberg het hoofdvenster + + + + &Encrypt Wallet... + &Versleutel Portemonnee... + + + + Encrypt the private keys that belong to your wallet + Versleutel de geheime sleutels die bij uw portemonnee horen + + + + &Backup Wallet... + &Backup Portemonnee... + + + + Backup wallet to another location + Backup portemonnee naar een andere locatie + + + + &Change Passphrase... + &Wijzig Wachtwoord + + + + Change the passphrase used for wallet encryption + Wijzig het wachtwoord voor uw portemonneversleuteling + + + + &Unlock Wallet... + &Ontgrendel portemonnee + + + + Unlock wallet + Open portemonnee + + + + &Lock Wallet + &Vergrendel portemonnee + + + + Sign &message... + &Onderteken bericht... + + + + Sign messages with your Dash addresses to prove you own them + Onderteken berichten met uw Dash adres om te bewijzen dat u deze bezit + + + + &Verify message... + &Verifiëer bericht... + + + + Verify messages to ensure they were signed with specified Dash addresses + Verifieer berichten om zeket te zijn dat deze werden ondertekend met het specifiek Dash adres + + + + &Information + &Informatie + + + + Show diagnostic information + Toon diagnostische informatie + + + + &Debug console + &Debug console + + + + Open debugging console + Open debugging console + + + + &Network Monitor + &Netwerk Monitor + + + + Show network monitor + Toon netwerk monitor + + + + Open &Configuration File + + + + + Open configuration file + + + + + &Sending addresses... + &Adressen aan het versturen. + + + + Show the list of used sending addresses and labels + Toon de lijst met gebruikt verzend adressen en labels + + + + &Receiving addresses... + &Adressen aan het ontvangen... + + + + Show the list of used receiving addresses and labels + Toon de lijst met gebruikte ontvangst adressen en labels + + + + Open &URI... + Open &URI... + + + + Open a dash: URI or payment request + Open een dash: URI of betalingsverzoek + + + + &Command-line options + &Commandoregel-opties + + + + Show the Dash Core help message to get a list with possible Dash command-line options + Geef het help bericht weer om een lijst te krijgen met alle Dash command-line opties + + + + &File + &Bestand + + + + &Settings + &Instellingen + + + + &Tools + &Gereedschap + + + + &Help + &Hulp + + + + Tabs toolbar + Tab-werkbalk + + + + + Dash client + Dash cliënt + + + + %n active connection(s) to Dash network + + + + + Synchronizing with network... + Synchroniseren met netwerk... + + + + Importing blocks from disk... + Blokken aan het importeren vanaf harde schijf... + + + + Reindexing blocks on disk... + Bezig met herindexeren van blokken op harde schijf... + + + + No block source available... + Geen bron van blokken beschikbaar... + + + + Processed %1 blocks of transaction history. + %1 blokken van transactiehistorie verwerkt. + + + + Up to date + Bijgewerkt + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 en %2 + + + + %n year(s) + %n jaren + + + + + %1 behind + %1 achter + + + + Catching up... + Aan het bijwerken... + + + + Last received block was generated %1 ago. + Laatst ontvangen blok was %1 geleden gegenereerd. + + + + Transactions after this will not yet be visible. + Transacties na dit moment zullen nu nog niet zichtbaar zijn. + + + + Dash + Dash + + + + Error + Fout + + + + Warning + Waarschuwing + + + + Information + Informatie + + + + Sent transaction + Verzonden transactie + + + + Incoming transaction + Binnenkomende transactie + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datum: %1 +Bedrag: %2 +Type: %3 +Adres: %4 + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Portemonnee is <b>versleuteld</b> en momenteel <b>geopend</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Portemonnee is <b>versleuteld</b> en momenteel <b>gesloten</b> + + + + A fatal error occurred. Dash can no longer continue safely and will quit. + Een fatale fout is opgetreden. Dash kan niet langer veilig opereren en zal sluiten. + + + + ClientModel + + + Network Alert + Netwerkwaarschuwing + + + + CoinControlDialog + + + Coin Control Address Selection + Coin controle adres selectie + + + + Quantity: + Kwantiteit + + + + Bytes: + Bytes: + + + + Amount: + Bedrag: + + + + Priority: + Prioriteit: + + + + Fee: + Vergoeding: + + + + Low Output: + Lage uitvoer: + + + + After Fee: + Na vergoeding: + + + + Change: + Wisselgeld: + + + + (un)select all + (de)selecteer alles + + + + Tree mode + Boom modus + + + + List mode + Lijst modus + + + + (1 locked) + + + + + Amount + Bedrag + + + + Label + Label + + + + Address + Adres + + + + Darksend Rounds + Darksend Rondes + + + + Date + Datum + + + + Confirmations + Bevestigingen + + + + Confirmed + Bevestigd + + + + Priority + Prioriteit + + + + Copy address + Kopieer adres + + + + Copy label + Kopieer label + + + + + Copy amount + Kopieer bedrag + + + + Copy transaction ID + Kopieer transactie-ID + + + + Lock unspent + Blokeer niet gebruikte + + + + Unlock unspent + Deblokkeer ongebruikte + + + + Copy quantity + Kopieer aantal + + + + Copy fee + Kopieer vergoeding + + + + Copy after fee + Kopieer na vergoeding + + + + Copy bytes + Kopieer bytes + + + + Copy priority + Kopieer prioriteit + + + + Copy low output + Kopieer lage uitvoer + + + + Copy change + Kopieer wisselgeld + + + + highest + hoogste + + + + higher + hoger + + + + high + hoog + + + + medium-high + gemiddeld hoog + + + + n/a + niet beschikbaar + + + + + medium + gemiddeld + + + + low-medium + laag gemiddeld + + + + low + laag + + + + lower + lager + + + + lowest + laagste + + + + (%1 locked) + (%1 geblokeerd) + + + + none + geen + + + + Dust + Stof + + + + yes + ja + + + + + no + nee + + + + This label turns red, if the transaction size is greater than 1000 bytes. + Dit label wordt rood, als de transactie grootte meer dan 1000 bytes is. + + + + + This means a fee of at least %1 per kB is required. + Dit betekent dat een vergoeding van minimaal %1 per kB nodig is. + + + + Can vary +/- 1 byte per input. + Kan +/- byte per invoer variëren. + + + + Transactions with higher priority are more likely to get included into a block. + Transacties met een hogere prioriteit zullen eerder in een block gezet worden. + + + + This label turns red, if the priority is smaller than "medium". + Als dit label rood is, is de prioriteit minder dan "medium". + + + + This label turns red, if any recipient receives an amount smaller than %1. + Dit label wordt rood, als een ontvanger een bedrag van minder dan %1 gekregen heeft. + + + + + This means a fee of at least %1 is required. + Dit betekend dat een minimale vergoeding van %1 nodig is. + + + + Amounts below 0.546 times the minimum relay fee are shown as dust. + Bedragen beneden 0.546 keer het minimum relais vergoeding, worden als stof aangemerkt. + + + + This label turns red, if the change is smaller than %1. + Dit label wordt rood, als de wijziging is kleiner dan %1. + + + + + (no label) + (geen label) + + + + change from %1 (%2) + wijzig van %1 (%2) + + + + (change) + (wijzig) + + + + DarksendConfig + + + Configure Darksend + Darksend configureren + + + + Basic Privacy + Eenvoudige Privacy + + + + High Privacy + Hoge Privacy + + + + Maximum Privacy + Maximum Privacy + + + + Please select a privacy level. + Kies een privacy niveau + + + + Use 2 separate masternodes to mix funds up to 1000 DASH + Gebruik 2 verschillende masternodes om tot en met 1000DRK te mixen + + + + Use 8 separate masternodes to mix funds up to 1000 DASH + Gebruik 8 verschillende masternodes om tot en met 1000DRK te mixen + + + + Use 16 separate masternodes + Gebruik 16 verschillende masternodes + + + + This option is the quickest and will cost about ~0.025 DASH to anonymize 1000 DASH + Deze optie is het snelst en kost ongeveer ~0.025DRK om 1000DRK te anonimiseren + + + + This option is moderately fast and will cost about 0.05 DASH to anonymize 1000 DASH + Deze optie is relatief snel en zal ongeveer 0.05 DASH kosten om 1000 DASH te anonimiseren + + + + 0.1 DASH per 1000 DASH you anonymize. + 0.1 DASH per 1000 DASH die je anonimiseert. + + + + This is the slowest and most secure option. Using maximum anonymity will cost + Deze optie is het langzaamst en meest veilig. Maximimum anonimiteit kost + + + + + + Darksend Configuration + Darksend Configuratie + + + + Darksend was successfully set to basic (%1 and 2 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend is succesvol geconfigureed als 'eenvoudig' (%1 en 2 rondes). Je kan dit op elk ogenblik veranderen in het configuratiescherm van Darksend. + + + + Darksend was successfully set to high (%1 and 8 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend is succesvol geconfigureed als 'hoog'(%1 en 8 rondes). Je kan dit op elk ogenblik veranderen in het configuratiescherm van Darksend. + + + + Darksend was successfully set to maximum (%1 and 16 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend is succesvol geconfigureed als 'maximum'(%1 en 16 rondes). Je kan dit op elk ogenblik veranderen in het configuratiescherm van Darksend. + + + + EditAddressDialog + + + Edit Address + Bewerk Adres + + + + &Label + &Label + + + + The label associated with this address list entry + Het label dat bij dit adres item hoort + + + + &Address + &Adres + + + + The address associated with this address list entry. This can only be modified for sending addresses. + Het adres dat bij dit adres item hoort. Dit kan alleen bewerkt worden voor verstuur adressen. + + + + New receiving address + Nieuw ontvangstadres + + + + New sending address + Nieuw adres om naar te verzenden + + + + Edit receiving address + Bewerk ontvangstadres + + + + Edit sending address + Bewerk adres om naar te verzenden + + + + The entered address "%1" is not a valid Dash address. + Het ingevoerde adres "%1" is geen geldig Dash adres. + + + + The entered address "%1" is already in the address book. + Het opgegeven adres "%1" bestaat al in uw adresboek. + + + + Could not unlock wallet. + Kon de portemonnee niet openen. + + + + New key generation failed. + Genereren nieuwe sleutel mislukt. + + + + FreespaceChecker + + + A new data directory will be created. + Een nieuwe gegevensmap wordt aangemaakt. + + + + name + naam + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Map bestaat al. Voeg %1 toe als u van plan bent hier een nieuwe map aan te maken. + + + + Path already exists, and is not a directory. + Communicatiepad bestaat al, en is geen folder. + + + + Cannot create data directory here. + Kan hier geen gegevensmap aanmaken. + + + + HelpMessageDialog + + + Dash Core - Command-line options + Dash Core - Command-line opties + + + + Dash Core + Dash Core + + + + version + versie + + + + Usage: + Gebruik: + + + + command-line options + commandoregel-opties + + + + UI options + gebruikersinterfaceopties + + + + Choose data directory on startup (default: 0) + Kies de gegevensmap tijdens het opstarten (standaard: 0) + + + + Set language, for example "de_DE" (default: system locale) + Stel taal in, bijvoorbeeld ''de_DE" (standaard: systeeminstellingen) + + + + Start minimized + Geminimaliseerd starten + + + + Set SSL root certificates for payment request (default: -system-) + Zet SSL root certificaten voor betalingsverzoek (standaard: -sytem-) + + + + Show splash screen on startup (default: 1) + Laat laadscherm zien bij het opstarten. (standaard: 1) + + + + Intro + + + Welcome + Welkom + + + + Welcome to Dash Core. + Welkom bij Dash Core + + + + As this is the first time the program is launched, you can choose where Dash Core will store its data. + Gezien dit de eerste keer is dat het programma word uitgevoerd, kunt u kiezen waar Dash Core zijn gegevens opslaat. + + + + Dash Core will download and store a copy of the Dash block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Dash Core zal een kopie van de Dash block chain downloaden en opslaan. Ten minste %1GB aan data zal worden opgeslagen in deze folder, dit zal toenemen in de toekomst. De beurs zal ook in deze folder worden opgeslagen. + + + + Use the default data directory + Gebruik de standaard gegevensmap + + + + Use a custom data directory: + Gebruik een persoonlijke gegevensmap: + + + + Dash + Dash + + + + Error: Specified data directory "%1" can not be created. + Fout: Opgegeven gegevensmap "%1" kan niet aangemaakt worden. + + + + Error + Fout + + + + GB of free space available + GB aan vrije opslagruimte beschikbaar + + + + (of %1GB needed) + (van %1GB benodigd) + + + + OpenURIDialog + + + Open URI + Open URI + + + + Open payment request from URI or file + Open betalingsverzoek via URI of bestand + + + + URI: + URI: + + + + Select payment request file + Selecteer betalingsverzoek bestand + + + + Select payment request file to open + Selecteer betalingsverzoek bestand om te openen + + + + OptionsDialog + + + Options + Opties + + + + &Main + &Algemeen + + + + Automatically start Dash after logging in to the system. + Dash automatisch starten na inloggen op het systeem. + + + + &Start Dash on system login + &Start Dash bij inloggen systeem + + + + Size of &database cache + Grootte van de &database cache + + + + MB + MB + + + + Number of script &verification threads + Aantal threads voor &scriptverificatie + + + + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = laat dit aantal kernen vrij) + + + + <html><head/><body><p>This setting determines the amount of individual masternodes that an input will be anonymized through. More rounds of anonymization gives a higher degree of privacy, but also costs more in fees.</p></body></html> + <html><head/><body><p>Deze instelling bepaalt het aantal individuele masternodes waardoor een input zal worden geanonimiseerd. Meer anonimisatie rondes geeft een hoger niveau van privacy, maar kost ook meer aan vergoedingen.</p></body></html> + + + + Darksend rounds to use + Darksend rondes te gebruiken + + + + This amount acts as a threshold to turn off Darksend once it's reached. + + + + + Amount of Dash to keep anonymized + Aantal Dash om geanonimiseerd te houden + + + + W&allet + W&allet + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. + Optionele transactiekosten per kB. Transactiekosten helpen ervoor te zorgen dat uw transacties snel verwerkt worden. De meeste transacties zijn 1kB. + + + + Pay transaction &fee + Betaal &transactiekosten + + + + Expert + Expert + + + + Whether to show coin control features or not. + Munt controle functies weergeven of niet. + + + + Enable coin &control features + Coin &Control activeren + + + + 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. + Indien het uitgeven van onbevestigd wisselgeld uitgeschakeld wordt dan kan het wisselgeld van een transactie niet worden gebruikt totdat de transactie ten minste een bevestiging heeft. Dit heeft ook invloed op de manier waarop uw saldo wordt berekend. + + + + &Spend unconfirmed change + &Spendeer onbevestigd wisselgeld + + + + &Network + &Netwerk + + + + Automatically open the Dash client port on the router. This only works when your router supports UPnP and it is enabled. + Open automatisch de Dash client poort op de router. Dit werkt alleen als uw router UPnP ondersteunt en deze is ingeschakeld. + + + + Map port using &UPnP + Portmapping via &UPnP + + + + Connect to the Dash network through a SOCKS proxy. + Verbind met het Dash netwerk via een SOCKS proxy. + + + + &Connect through SOCKS proxy (default proxy): + &Verbind via een SOCKS-proxy (standaardproxy): + + + + Proxy &IP: + Proxy &IP: + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP-adres van de proxy (bijv. IPv4: 127.0.0.1 / IPv6: ::1) + + + + &Port: + &Poort: + + + + Port of the proxy (e.g. 9050) + Poort van de proxy (bijv. 9050) + + + + SOCKS &Version: + SOCKS-&Versie: + + + + SOCKS version of the proxy (e.g. 5) + SOCKS-versie van de proxy (bijv. 5) + + + + &Window + &Scherm + + + + Show only a tray icon after minimizing the window. + Laat alleen een systeemvak-icoon zien wanneer het venster geminimaliseerd is + + + + &Minimize to the tray instead of the taskbar + &Minimaliseer naar het systeemvak in plaats van de taakbalk + + + + 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. + Minimaliseer het venster in de plaats van de applicatie af te sluiten als het venster gesloten wordt. Wanneer deze optie aan staan, kan de applicatie alleen worden afgesloten door Afsluiten te kiezen in het menu. + + + + M&inimize on close + Minimaliseer bij sluiten van het &venster + + + + &Display + &Interface + + + + User Interface &language: + Taal &Gebruikersinterface: + + + + The user interface language can be set here. This setting will take effect after restarting Dash. + De taal van de gebruikersinterface kan hier worden ingesteld. Deze instelling wordt pas van kracht na het herstarten van Dash. + + + + Language missing or translation incomplete? Help contributing translations here: +https://www.transifex.com/projects/p/dash/ + + + + + &Unit to show amounts in: + &Eenheid om bedrag in te tonen: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Kies de standaard onderverdelingseenheid om weer te geven in uw programma, en voor het versturen van munten + + + + Whether to show Dash addresses in the transaction list or not. + Dash adressen weergeven in transactielijsten of niet. + + + + &Display addresses in transaction list + Toon a&dressen in de transactielijst + + + + + 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 |. + Derde partijen URL's (bijvoorbeeld block explorer) dat in de transacties tab verschijnen als contextmenu elementen. %s in de URL is vervangen door transactie hash. Verscheidene URL's zijn gescheiden door een verticale streep |. + + + + Third party transaction URLs + Transactie-URLs van derde partijen + + + + Active command-line options that override above options: + Actieve commandoregelopties die bovenstaande opties overschrijven: + + + + Reset all client options to default. + Reset alle clientopties naar de standaardinstellingen. + + + + &Reset Options + &Reset Opties + + + + &OK + &OK + + + + &Cancel + Ann&uleren + + + + default + standaard + + + + none + geen + + + + Confirm options reset + Bevestig reset opties + + + + + Client restart required to activate changes. + Herstart van de client is vereist om veranderingen door te voeren. + + + + Client will be shutdown, do you want to proceed? + De client zal worden afgesloten, wilt u doorgaan? + + + + This change would require a client restart. + Om dit aan te passen moet de client opnieuw gestart worden. + + + + The supplied proxy address is invalid. + Het opgegeven proxyadres is ongeldig. + + + + OverviewPage + + + Form + Vorm + + + + Wallet + Portemonnee + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Dash network after a connection is established, but this process has not completed yet. + De weergegeven informatie kan achterhaald zijn. De beurs synchroniseert automatisch met het Dash netwerk nadat de verbinding is gelegd, maar dit proces is nog niet beeindigd. + + + + Available: + Beschikbaar: + + + + Your current spendable balance + Uw beschikbare saldo + + + + Pending: + Afwachtend: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + De som van de transacties die nog bevestigd moeten worden, en nog niet meetellen in uw beschikbare saldo + + + + Immature: + Immatuur: + + + + Mined balance that has not yet matured + Gedolven saldo dat nog niet tot wasdom is gekomen + + + + Total: + Totaal: + + + + Your current total balance + Uw totale saldo + + + + Status: + Status: + + + + Enabled/Disabled + Ingeschakeld/Uitgeschakeld + + + + Completion: + Voltooiing: + + + + Darksend Balance: + Darksend Balans: + + + + 0 DASH + 0 DASH + + + + Amount and Rounds: + Bedrag en Rondes: + + + + 0 DASH / 0 Rounds + 0 DASH / 0 Rondes + + + + Submitted Denom: + Ingezonden Denom: + + + + The denominations you submitted to the Masternode. To mix, other users must submit the exact same denominations. + De denominaties zijn bij de Masternode ingebracht. Om te mixen moeten andere gebruikers exact dezelfde denominaties inbrengen. + + + + n/a + niet beschikbaar + + + + + + + Darksend + Darksend + + + + Start/Stop Mixing + Start/Stop met Mixen + + + + (Last Message) + (Laatste Bericht) + + + + Try to manually submit a Darksend request. + Probeer handmatig een Darksend verzoek in te dienen. + + + + Try Mix + Probeer te Mixen + + + + Reset the current status of Darksend (can interrupt Darksend if it's in the process of Mixing, which can cost you money!) + Reset de huidige status van Darksend (kan Darksend onderbreken indien het Mix proces bezig is, wat u geld kan kosten!) + + + + Reset + Reset + + + + <b>Recent transactions</b> + <b>Recente transacties</b> + + + + + + out of sync + niet gesynchroniseerd + + + + + Disabled + Uitgeschakeld + + + + + + Start Darksend Mixing + Start Darksend Mixing + + + + + Stop Darksend Mixing + Stop Darksend Mixing + + + + No inputs detected + Geen input gedetecteerd + + + + Found unconfirmed denominated outputs, will wait till they confirm to recalculate. + Niet geconfirmeerde gedenummuriseerde + + + + Rounds + Rondes + + + + Enabled + Ingeschakeld + + + + Last Darksend message: + + Laatste Darksend bericht: + + + + + + Darksend is idle. + + + + + Mixing in progress... + + + + + Darksend request complete: Your transaction was accepted into the pool! + + + + + Submitted following entries to masternode: + + + + + + + Submitted to masternode, Waiting for more entries + + + + + Found enough users, signing ... + Genoeg gebruikers gevonden, aan het signeren.... + + + + Found enough users, signing ( waiting. ) + Genoeg gebruikers gevonden, aan het signeren (aan het wachten.) + + + + Found enough users, signing ( waiting.. ) + Genoeg gebruikers gevonden, aan het signeren (aan het wachten.) + + + + Found enough users, signing ( waiting... ) + Genoeg gebruikers gevonden, aan het signeren (aan het wachten.) + + + + Transmitting final transaction. + + + + + Finalizing transaction. + Transactie aan het afronden + + + + Darksend request incomplete: + + + + + Will retry... + + + + + Darksend request complete: + + + + + Submitted to masternode, waiting in queue . + + + + + Submitted to masternode, waiting in queue .. + + + + + Submitted to masternode, waiting in queue ... + + + + + Unknown state: + + + + + N/A + N.v.t. + + + + Darksend was successfully reset. + Darksend is succesvol gereset + + + + Darksend requires at least %1 to use. + Darksend benodigd ten minste %1 om te gebruiken. + + + + Wallet is locked and user declined to unlock. Disabling Darksend. + + + + + PaymentServer + + + + + + + + Payment request error + Fout bij betalingsverzoek + + + + Cannot start dash: click-to-pay handler + + + + + Net manager warning + Netmanager waarschuwing + + + + Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. + Uw actieve proxy ondersteunt geen SOCKS5, dewelke vereist is voor betalingsverzoeken via proxy. + + + + + URI handling + URI-behandeling + + + + Payment request fetch URL is invalid: %1 + URL om betalingsverzoek te verkrijgen is ongeldig: %1 + + + + URI can not be parsed! This can be caused by an invalid Dash address or malformed URI parameters. + + + + + Payment request file handling + Betalingsverzoek bestandsafhandeling + + + + Payment request file can not be read or processed! This can be caused by an invalid payment request file. + Betalingsverzoek-bestand kan niet gelezen of verwerkt worden! Dit kan veroorzaakt worden door een ongeldig betalingsverzoek-bestand. + + + + Unverified payment requests to custom payment scripts are unsupported. + Niet-geverifieerde betalingsverzoeken naar aangepaste betaling scripts worden niet ondersteund. + + + + Requested payment amount of %1 is too small (considered dust). + Het gevraagde betalingsbedrag van %1 is te weinig (beschouwd als stof). + + + + Refund from %1 + Restitutie van %1 + + + + Error communicating with %1: %2 + Fout bij communiceren met %1: %2 + + + + Payment request can not be parsed or processed! + Betalingsverzoek kan niet juist worden ontleed of verwerkt! + + + + Bad response from server %1 + Ongeldige respons van server %1 + + + + Network request error + Netwerkfout bij verzoek + + + + Payment acknowledged + Betaling bevestigd + + + + QObject + + + + + + Dash + Dash + + + + Error: Specified data directory "%1" does not exist. + Fout: Opgegeven gegevensmap "%1" bestaat niet. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Fout: Kan configuratiebestand niet parsen: %1. Gebruik enkel de key=value syntax. + + + + Error reading masternode configuration file: %1 + + + + + Error: Invalid combination of -regtest and -testnet. + Fout: Ongeldige combinatie van -regtest en -testnet + + + + Dash Core didn't yet exit safely... + + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Voer een Dash adres in (b.v. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + QRImageWidget + + + &Save Image... + &Afbeelding opslaan... + + + + &Copy Image + &Afbeelding kopiëren + + + + Save QR Code + Sla QR-code op + + + + PNG Image (*.png) + PNG afbeelding (*.png) + + + + RPCConsole + + + Tools window + + + + + &Information + &Informatie + + + + Masternode Count + Masternode Telling + + + + General + Algemeen + + + + Name + Naam + + + + Client name + Clientnaam + + + + + + + + + + + + + N/A + N.v.t. + + + + Number of connections + Aantal connecties + + + + Open the Dash debug log file from the current data directory. This can take a few seconds for large log files. + Open het Dash debug log bestand in de huidige data folder. Dit kan enkele seconden in beslag nemen bij grote bestanden. + + + + &Open + &Open + + + + Startup time + Opstarttijd + + + + Network + Netwerk + + + + Last block time + Tijd laatste blok + + + + Debug log file + Debug-logbestand + + + + Using OpenSSL version + Gebruikt OpenSSL versie + + + + Build date + Bouwdatum + + + + Current number of blocks + Huidig aantal blokken + + + + Client version + Clientversie + + + + Block chain + Blokketen + + + + &Console + &Console + + + + Clear console + Maak console leeg + + + + &Network Traffic + &Netwerkverkeer + + + + &Clear + &Wissen + + + + Totals + Totalen + + + + + In: + In; + + + + + Out: + Uit: + + + + Welcome to the Dash RPC console. + + + + + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + Gebruik de pijltjestoetsen om door de geschiedenis te navigeren, en <b>Ctrl-L</b> om het scherm leeg te maken. + + + + Type <b>help</b> for an overview of available commands. + Typ <b>help</b> voor een overzicht van de beschikbare commando's. + + + + %1 B + %1 B + + + + %1 KB + %1 Kb + + + + %1 MB + %1 MB + + + + %1 GB + %1 Gb + + + + %1 m + %1 m + + + + %1 h + %1 uur + + + + %1 h %2 m + %1 h %2 m + + + + ReceiveCoinsDialog + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Gebruik een van de eerder gebruikte ontvangstadressen opnieuw. Het opnieuw gebruiken van adressen heeft beveiliging- en privacy problemen. Gebruik dit niet, behalve als er eerder een betalingsverzoek opnieuw gegenereerd is. + + + + R&euse an existing receiving address (not recommended) + H&ergebruik en bestaand ontvangstadres (niet aanbevolen) + + + + + 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 Dash network. + Een optioneel bericht om aan het betalingsverzoek toe te voegen, die zal worden getoond wanneer het verzoek wordt geopend. Nota: Het bericht zal niet verzonden worden met de betaling over het Dash netwerk. + + + + &Message: + &Bericht + + + + + An optional label to associate with the new receiving address. + Een optioneel label om te associëren met het nieuwe ontvangende adres + + + + Use this form to request payments. All fields are <b>optional</b>. + Gebruik dit formulier om te verzoeken tot betaling. Alle velden zijn <b>optioneel</b>. + + + + &Label: + &Label: + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Een optioneel te verzoeken bedrag. Laat dit leeg, of nul, om geen specifiek bedrag aan te vragen. + + + + &Amount: + &Bedrag + + + + &Request payment + &Betalingsverzoek + + + + Clear all fields of the form. + Wis alle velden op het formulier. + + + + Clear + Wissen + + + + Requested payments history + Geschiedenis van de betalingsverzoeken + + + + Show the selected request (does the same as double clicking an entry) + Toon het geselecteerde verzoek (doet hetzelfde als dubbelklikken) + + + + Show + Toon + + + + Remove the selected entries from the list + Verwijder de geselecteerde items van de lijst + + + + Remove + Verwijder + + + + Copy label + Kopieer label + + + + Copy message + Kopieer bericht + + + + Copy amount + Kopieer bedrag + + + + ReceiveRequestDialog + + + QR Code + QR-code + + + + Copy &URI + Kopieer &URI + + + + Copy &Address + Kopieer &adres + + + + &Save Image... + &Sla afbeelding op... + + + + Request payment to %1 + Betalingsverzoek tot %1 + + + + Payment information + Betalingsinformatie + + + + URI + URI + + + + Address + Adres + + + + Amount + Bedrag + + + + Label + Label + + + + Message + Bericht + + + + Resulting URI too long, try to reduce the text for label / message. + Resulterende URI te lang, probeer de tekst korter te maken voor het label/bericht. + + + + Error encoding URI into QR Code. + Fout tijdens encoderen URI in QR-code + + + + RecentRequestsTableModel + + + Date + Datum + + + + Label + Label + + + + Message + Bericht + + + + Amount + Bedrag + + + + (no label) + (geen label) + + + + (no message) + (geen bericht) + + + + (no amount) + (geen bedrag) + + + + SendCoinsDialog + + + + + + Send Coins + Verstuur munten + + + + Coin Control Features + Coin controle opties + + + + Inputs... + Invoer... + + + + automatically selected + automatisch geselecteerd + + + + Insufficient funds! + Onvoldoende fonds! + + + + Quantity: + Kwantiteit + + + + Bytes: + Bytes: + + + + Amount: + Bedrag: + + + + Priority: + Prioriteit: + + + + medium + gemiddeld + + + + Fee: + Vergoeding: + + + + Low Output: + Lage uitvoer: + + + + no + nee + + + + After Fee: + Na vergoeding: + + + + Change: + Wisselgeld: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Als dit is geactiveerd, maar het wisselgeldadres is leeg of ongeldig, dan wordt het wisselgeld verzonden naar een nieuw gegenereerd adres. + + + + Custom change address + Aangepast wisselgeldadres + + + + Confirm the send action + Bevestig de verstuuractie + + + + S&end + &Verstuur + + + + Clear all fields of the form. + Wis alle velden van het formulier. + + + + Clear &All + Verwijder &Alles + + + + Send to multiple recipients at once + Verstuur aan verschillende ontvangers ineens + + + + Add &Recipient + Voeg &Ontvanger Toe + + + + Darksend + Darksend + + + + InstantX + InstantX + + + + Balance: + Saldo: + + + + Copy quantity + Kopieer aantal + + + + Copy amount + Kopieer bedrag + + + + Copy fee + Kopieer vergoeding + + + + Copy after fee + Kopieer na vergoeding + + + + Copy bytes + Kopieer bytes + + + + Copy priority + Kopieer prioriteit + + + + Copy low output + Kopieer lage uitvoer + + + + Copy change + Kopieer wijziging + + + + + + using + + + + + + anonymous funds + + + + + (darksend requires this amount to be rounded up to the nearest %1). + + + + + any available funds (not recommended) + + + + + and InstantX + + + + + + + + %1 to %2 + %1 tot %2 + + + + Are you sure you want to send? + Weet u zeker dat u wilt verzenden? + + + + are added as transaction fee + + + + + Total Amount %1 (= %2) + Totaal bedrag %1 (= %2) + + + + or + of + + + + Confirm send coins + Bevestig versturen munten + + + + Payment request expired + Betalingsverzoek verlopen + + + + Invalid payment address %1 + Ongeldig betalingsadres %1 + + + + The recipient address is not valid, please recheck. + Het ontvangstadres is niet geldig, controleer uw invoer. + + + + The amount to pay must be larger than 0. + Het ingevoerde bedrag moet groter zijn dan 0. + + + + The amount exceeds your balance. + Bedrag is hoger dan uw huidige saldo + + + + The total exceeds your balance when the %1 transaction fee is included. + Totaal overschrijdt uw huidige saldo wanneer de %1 transactiekosten worden meegerekend + + + + Duplicate address found, can only send to each address once per send operation. + Dubbel adres gevonden, u kunt slechts eenmaal naar een bepaald adres verzenden per verstuurtransactie + + + + Transaction creation failed! + Transactie creatie niet gelukt! + + + + 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 and coins were spent in the copy but not marked as spent here. + De transactie was afgewezen. Dit kan gebeuren als u eerder uitgegeven munten opnieuw wilt versturen, zoals wanneer u een kopie van uw wallet.dat heeft gebruikt en in de kopie deze munten zijn gemarkeerd als uitgegeven, maar in de huidige nog niet. + + + + Error: The wallet was unlocked only to anonymize coins. + + + + + Warning: Invalid Dash address + Waarschuwing: Ongeldig Dash adres + + + + Warning: Unknown change address + Waarschuwing: Onbekend wisselgeldadres + + + + (no label) + (geen label) + + + + SendCoinsEntry + + + This is a normal payment. + Dit is een normale betaling. + + + + Pay &To: + Betaal &Aan: + + + + The address to send the payment to (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Het adres om de betaling naar te versturen (bijv. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + Choose previously used address + Kies een eerder gebruikt adres + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Plak adres vanuit klembord + + + + Alt+P + Alt+P + + + + + + Remove this entry + Verwijder deze toevoeging + + + + &Label: + &Label: + + + + Enter a label for this address to add it to the list of used addresses + Vul een label voor dit adres in om het aan de lijst met gebruikte adressen toe te voegen + + + + + + A&mount: + Bedra&g: + + + + Message: + Bericht: + + + + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + Een boodschap die was bijgevoegd aan de dash: URI die met de transactie voor uw referentie wordt opgeslagen. Opmerking: Dit bericht zal niet over het Dash netwerk worden verzonden. + + + + This is an unverified payment request. + Dit is een ongeverifieerd betalingsverzoek. + + + + + Pay To: + Betaal Aan: + + + + + Memo: + Memo: + + + + This is a verified payment request. + Dit is een geverifieerd betalingsverzoek. + + + + Enter a label for this address to add it to your address book + Vul een label in voor dit adres om het toe te voegen aan uw adresboek + + + + ShutdownWindow + + + Dash Core is shutting down... + Dash Core is aan het sluiten... + + + + Do not shut down the computer until this window disappears. + Sluit de computer niet af totdat dit venster verdwenen is. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Handtekeningen - Onderteken een bericht / Verifiëer een handtekening + + + + &Sign Message + O&nderteken Bericht + + + + 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. + U kunt berichten ondertekenen met een van uw adressen om te bewijzen dat u dit adres bezit. Pas op dat u geen onduidelijke dingen ondertekent, want phishingaanvallen zouden u kunnen misleiden om zo uw identiteit te stelen. Onderteken alleen berichten waarmee u het volledig eens bent. + + + + The address to sign the message with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Het adres om het bericht mee te tekenen (vb. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + Choose previously used address + Kies een eerder gebruikt adres + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Plak adres vanuit klembord + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Typ hier het bericht dat u wilt ondertekenen + + + + Signature + Handtekening + + + + Copy the current signature to the system clipboard + Kopieer de huidige handtekening naar het systeemklembord + + + + Sign the message to prove you own this Dash address + Teken het bericht om te bewijzen dat u dit Dash adres bezit + + + + Sign &Message + Onderteken &Bericht + + + + Reset all sign message fields + Verwijder alles in de invulvelden + + + + + Clear &All + Verwijder &Alles + + + + &Verify Message + &Verifiëer Bericht + + + + 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. + Voer het ondertekenende adres, bericht en handtekening hieronder in (let erop dat u nieuwe regels, spaties en tabs juist overneemt) om de handtekening te verifiëren. Let erop dat u niet meer uit het bericht interpreteert dan er daadwerkelijk staat, om te voorkomen dat u wordt misleid in een man-in-the-middle-aanval. + + + + The address the message was signed with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Het adres waarmee het bericht werd ondertekend (vb. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + Verify the message to ensure it was signed with the specified Dash address + Verifieer het bericht om zeker te zijn dat het getekend werd met het opgegeven Dash adres + + + + Verify &Message + Verifiëer &Bericht + + + + Reset all verify message fields + Verwijder alles in de invulvelden + + + + Click "Sign Message" to generate signature + Klik "Onderteken Bericht" om de handtekening te genereren + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Voer een Dash adres in (b.v. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + The entered address is invalid. + Het opgegeven adres is ongeldig. + + + + + + + Please check the address and try again. + Controleer s.v.p. het adres en probeer het opnieuw. + + + + + The entered address does not refer to a key. + Het opgegeven adres verwijst niet naar een sleutel. + + + + Wallet unlock was cancelled. + Portemonnee-ontsleuteling is geannuleerd + + + + Private key for the entered address is not available. + Geheime sleutel voor het ingevoerde adres is niet beschikbaar. + + + + Message signing failed. + Ondertekenen van het bericht is mislukt. + + + + Message signed. + Bericht ondertekend. + + + + The signature could not be decoded. + De handtekening kon niet worden gedecodeerd. + + + + + Please check the signature and try again. + Controleer s.v.p. de handtekening en probeer het opnieuw. + + + + The signature did not match the message digest. + De handtekening hoort niet bij het bericht. + + + + Message verification failed. + Berichtverificatie mislukt. + + + + Message verified. + Bericht correct geverifiëerd. + + + + SplashScreen + + + Dash Core + Dash Core + + + + Version %1 + Versie %1 + + + + The Bitcoin Core developers + De Bitcoin Core ontwikkelaars + + + + The Dash Core developers + De Dash Core ontwikkelaars + + + + [testnet] + [testnetwerk] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + Openen totdat %1 + + + + + + + conflicted + conflicterend + + + + %1/offline (verified via instantx) + + + + + %1/confirmed (verified via instantx) + + + + + %1 confirmations (verified via instantx) + %1 confirmatie (geverifieerd met instantx) + + + + %1/offline + %1/offline + + + + %1/unconfirmed + %1/onbevestigd + + + + + %1 confirmations + %1 bevestigingen + + + + %1/offline (InstantX verification in progress - %2 of %3 signatures) + + + + + %1/confirmed (InstantX verification in progress - %2 of %3 signatures ) + + + + + %1 confirmations (InstantX verification in progress - %2 of %3 signatures) + + + + + %1/offline (InstantX verification failed) + + + + + %1/confirmed (InstantX verification failed) + + + + + Status + Status + + + + , has not been successfully broadcast yet + , is nog niet met succes uitgezonden + + + + , broadcast through %n node(s) + + + + + Date + Datum + + + + Source + Bron + + + + Generated + Gegenereerd + + + + + From + Van + + + + unknown + onbekend + + + + + + To + Aan + + + + + own address + eigen adres + + + + label + label + + + + + + + + Credit + Credit + + + + matures in %n more block(s) + + + + + not accepted + niet geaccepteerd + + + + + + + Debit + Debet + + + + Transaction fee + Transactiekosten + + + + Net amount + Netto bedrag + + + + + Message + Bericht + + + + Comment + Opmerking + + + + Transaction ID + Transactie-ID: + + + + Merchant + Handelaar + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Gegenereerde munten moeten %1 blokken rijpen voordat ze kunnen worden besteed. Toen dit blok gegenereerd werd, werd het uitgezonden naar het netwerk om aan de blokketen toegevoegd te worden. Als het niet lukt om in de keten toegevoegd te worden, zal de status te veranderen naar "niet geaccepteerd" en het zal deze niet besteedbaar zijn. Dit kan soms gebeuren als een ander knooppunt een blok genereert binnen een paar seconden na die van u. + + + + Debug information + Debug-informatie + + + + Transaction + Transactie + + + + Inputs + Inputs + + + + Amount + Bedrag + + + + true + waar + + + + false + onwaar + + + + TransactionDescDialog + + + Transaction details + Transactiedetails + + + + This pane shows a detailed description of the transaction + Dit venster laat een uitgebreide beschrijving van de transactie zien + + + + TransactionTableModel + + + Date + Datum + + + + Type + Type + + + + Address + Adres + + + + Amount + Bedrag + + + + Open for %n more block(s) + + + + + Open until %1 + Open tot %1 + + + + Offline + Niet verbonden + + + + Unconfirmed + Onbevestigd + + + + Confirming (%1 of %2 recommended confirmations) + Bevestigen (%1 van %2 aanbevolen bevestigingen) + + + + Confirmed (%1 confirmations) + Bevestigd (%1 bevestigingen) + + + + Conflicted + Conflicterend + + + + Immature (%1 confirmations, will be available after %2) + immatuur (%1 bevestigingen, zal beschikbaar zijn na %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Dit blok is niet ontvangen bij andere nodes en zal waarschijnlijk niet worden geaccepteerd! + + + + Generated but not accepted + Gegenereerd maar niet geaccepteerd + + + + Received with + Ontvangen met + + + + Received from + Ontvangen van + + + + Received via Darksend + Ontvangen via Darksend + + + + Sent to + Verzonden aan + + + + Payment to yourself + Betaling aan uzelf + + + + Mined + Gedolven + + + + Darksend Denominate + + + + + Darksend Collateral Payment + + + + + Darksend Make Collateral Inputs + + + + + Darksend Create Denominations + + + + + Darksent + Darksent + + + + (n/a) + (nvt) + + + + Transaction status. Hover over this field to show number of confirmations. + Transactiestatus. Houd de muiscursor boven dit veld om het aantal bevestigingen te laten zien. + + + + Date and time that the transaction was received. + Datum en tijd waarop deze transactie is ontvangen. + + + + Type of transaction. + Type transactie. + + + + Destination address of transaction. + Ontvangend adres van transactie. + + + + Amount removed from or added to balance. + Bedrag verwijderd van of toegevoegd aan saldo + + + + TransactionView + + + + All + Alles + + + + Today + Vandaag + + + + This week + Deze week + + + + This month + Deze maand + + + + Last month + Vorige maand + + + + This year + Dit jaar + + + + Range... + Bereik... + + + + Received with + Ontvangen met + + + + Sent to + Verzonden aan + + + + Darksent + Darksent + + + + Darksend Make Collateral Inputs + + + + + Darksend Create Denominations + + + + + Darksend Denominate + + + + + Darksend Collateral Payment + + + + + To yourself + Aan uzelf + + + + Mined + Gedolven + + + + Other + Anders + + + + Enter address or label to search + Vul adres of label in om te zoeken + + + + Min amount + Min. bedrag + + + + Copy address + Kopieer adres + + + + Copy label + Kopieer label + + + + Copy amount + Kopieer bedrag + + + + Copy transaction ID + Kopieer transactie-ID + + + + Edit label + Bewerk label + + + + Show transaction details + Toon transactiedetails + + + + Export Transaction History + Exporteer Transactieverleden + + + + Comma separated file (*.csv) + Kommagescheiden bestand (*.csv) + + + + Confirmed + Bevestigd + + + + Date + Datum + + + + Type + Type + + + + Label + Label + + + + Address + Adres + + + + Amount + Bedrag + + + + ID + ID + + + + Exporting Failed + Export Mislukt + + + + There was an error trying to save the transaction history to %1. + Er is een fout opgetreden bij het opslaan van het transactieverleden naar %1. + + + + Exporting Successful + Export Succesvol + + + + The transaction history was successfully saved to %1. + Het transactieverleden was succesvol bewaard in %1. + + + + Range: + Bereik: + + + + to + naar + + + + WalletFrame + + + No wallet has been loaded. + Portemonnee werd niet geladen. + + + + WalletModel + + + + Send Coins + Verstuur munten + + + + InstantX doesn't support sending values that high yet. Transactions are currently limited to %n DASH. + + + + + WalletView + + + &Export + &Exporteer + + + + Export the data in the current tab to a file + Exporteer de data in de huidige tab naar een bestand + + + + Backup Wallet + Portemonnee backuppen + + + + Wallet Data (*.dat) + Portemonnee-data (*.dat) + + + + Backup Failed + Backup Mislukt + + + + There was an error trying to save the wallet data to %1. + Er is een fout opgetreden bij het wegschrijven van de portemonnee-data naar %1. + + + + Backup Successful + Backup Succesvol + + + + The wallet data was successfully saved to %1. + De portemonneedata is succesvol opgeslagen in %1. + + + + dash-core + + + %s, you must set a rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=dashrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com + + + + + + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. Dash Core is probably already running. + + + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + + + + + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. + + + + + Disable all Masternode and Darksend related functionality (0-1, default: 0) + + + + + Enable instantx, show confirmations for locked transactions (bool, default: true) + + + + + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) + + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. + + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + 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 and coins were spent in the copy but not marked as spent here. + + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! + + + + + Error: Wallet unlocked for anonymization only, unable to create transaction. + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Fees smaller than this are considered zero fee (for transaction creation) (default: + + + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + + + + + Found unconfirmed denominated outputs, will wait till they confirm to continue. + + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. + + + + + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) + + + + + Name to construct url for KeePass entry that stores the wallet passphrase + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + + 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) + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + + + + + Set external address:port to get to this masternode (example: address:port) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + + + + + Show N confirmations for a successfully locked transaction (0-9999, default: 1) + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + Unable to bind to %s on this computer. Dash Core is probably already running. + + + + + Unable to locate enough Darksend denominated funds for this transaction. + + + + + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. + + + + + Unable to locate enough Darksend non-denominated funds for this transaction. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) + + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Waarschuwing: -paytxfee is erg hoog ingesteld! Dit bedrag wordt in rekening gebracht bij het uitvoeren van een transactie. + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. + Waarschuwing: Controleer a.u.b. de datum en tijd van uw computer! Dash zal niet goed functioneren indien dit niet correct is ingesteld. + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + + + + + You must specify a masternodeprivkey in the configuration. Please see documentation for help. + + + + + (default: 1) + + + + + (default: wallet.dat) + + + + + <category> can be: + + + + + Accept command line and JSON-RPC commands + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Add a node to connect to and attempt to keep the connection open + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + Allow JSON-RPC connections from specified IP address + + + + + Already have that input. + + + + + Always query for peer addresses via DNS lookup (default: 0) + + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + + Block creation options: + + + + + Can't denominate: no compatible inputs left. + + + + + Cannot downgrade wallet + + + + + Cannot resolve -bind address: '%s' + + + + + Cannot resolve -externalip address: '%s' + + + + + Cannot write default address + + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + + Collateral is not valid. + + + + + Collateral not valid. + + + + + Connect only to the specified node(s) + + + + + Connect through SOCKS proxy + + + + + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) + + + + + Connect to KeePassHttp on port <port> (default: 19455) + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Connection options: + + + + + Corrupted block database detected + + + + + Dash Core Daemon + Dash Core Daemon + + + + Dash Core RPC client version + + + + + Darksend is disabled. + + + + + Darksend options: + Darksend opties: + + + + Debugging/Testing options: + + + + + Disable safemode, override a real safe mode event (default: 0) + + + + + Discover own IP address (default: 1 when listening and no -externalip) + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Done loading + Klaar met laden + + + + Downgrading and trying again. + + + + + Enable the client to act as a masternode (0-1, default: 0) + + + + + Entries are full. + + + + + Error connecting to masternode. + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading block database + Fout tijdens laden van block database + + + + Error loading wallet.dat + Fout bij het laden van wallet.dat + + + + Error loading wallet.dat: Wallet corrupted + + + + + Error loading wallet.dat: Wallet requires newer version of Dash + + + + + Error opening block database + + + + + Error reading from database, shutting down. + + + + + Error recovering public key. + + + + + Error + Fout + + + + Error: Disk space is low! + Fout: Schijfruimte is laag! + + + + Error: Wallet locked, unable to create transaction! + + + + + Error: You already have pending entries in the Darksend pool + + + + + Error: system error: + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Failed to read block info + + + + + Failed to read block + + + + + Failed to sync block index + + + + + Failed to write block index + + + + + Failed to write block info + + + + + Failed to write block + + + + + Failed to write file info + + + + + Failed to write to coin database + + + + + Failed to write transaction index + + + + + Failed to write undo data + + + + + Fee per kB to add to transactions you send + + + + + Fees smaller than this are considered zero fee (for relaying) (default: + + + + + Force safe mode (default: 0) + + + + + Generate coins (default: 0) + + + + + Get help for a command + + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + + If <category> is not supplied, output all debugging information. + + + + + Ignore masternodes less than version (example: 70050; default : 0) + + + + + Importing... + + + + + Imports blocks from external blk000??.dat file + + + + + Incompatible mode. + + + + + Incompatible version. + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Information + Informatie + + + + Initialization sanity check failed. Dash Core is shutting down. + + + + + Input is not valid. + + + + + InstantX options: + + + + + Insufficient funds + + + + + Insufficient funds. + + + + + Invalid -onion address: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + + Invalid amount + + + + + Invalid masternodeprivkey. Please see documenation. + + + + + Invalid private key. + + + + + Invalid script detected. + + + + + KeePassHttp id for the established association + + + + + KeePassHttp key for AES encrypted communication with KeePass + + + + + Keep N dash anonymized (default: 0) + + + + + Keep at most <n> unconnectable blocks in memory (default: %u) + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Last Darksend was too recent. + + + + + Last successful darksend action was too recent. + + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + + List commands + + + + + Listen for connections on <port> (default: 9999 or testnet: 19999) + + + + + Loading addresses... + + + + + Loading block index... + + + + + Loading masternode list... + + + + + Loading wallet... (%3.2f %%) + + + + + Loading wallet... + + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + + Maintain a full transaction index (default: 0) + + + + + Maintain at most <n> connections to peers (default: 125) + + + + + Masternode options: + + + + + Masternode queue is full. + + + + + Masternode: + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + + Missing input transaction information. + + + + + No compatible masternode found. + + + + + No funds detected in need of denominating. + + + + + No masternodes detected. + + + + + No matching denominations found for mixing. + + + + + Non-standard public key detected. + + + + + Not compatible with existing transactions. + + + + + Not enough file descriptors available. + + + + + Not in the masternode list. + + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + + Options: + + + + + Password for JSON-RPC connections + + + + + Prepend debug output with timestamp (default: 1) + + + + + Print block on startup, if found in block index + + + + + Print block tree on startup (default: 0) + + + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + + RPC client options: + + + + + RPC server options: + + + + + Randomly drop 1 of every <n> network messages + + + + + Randomly fuzz 1 of every <n> network messages + + + + + Rebuild block chain index from current blk000??.dat files + + + + + Rescan the block chain for missing wallet transactions + + + + + Rescanning... + + + + + Run a thread to flush wallet periodically (default: 1) + + + + + Run in the background as a daemon and accept commands + + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + + Send command to Dash Core + + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + + Send trace/debug info to console instead of debug.log file + + + + + Server certificate file (default: server.cert) + + + + + Server private key (default: server.pem) + + + + + Session not complete! + + + + + Session timed out (30 seconds), please resubmit. + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Set key pool size to <n> (default: 100) + + + + + Set maximum block size in bytes (default: %d) + + + + + Set minimum block size in bytes (default: 0) + + + + + Set the masternode private key + Stel de masternode private key in + + + + Set the number of threads to service RPC calls (default: 4) + + + + + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Show benchmark information (default: 0) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing failed. + + + + + Signing timed out, please resubmit. + + + + + Signing transaction failed + + + + + Specify configuration file (default: dash.conf) + + + + + Specify connection timeout in milliseconds (default: 5000) + + + + + Specify data directory + + + + + Specify masternode configuration file (default: masternode.conf) + + + + + Specify pid file (default: dashd.pid) + + + + + Specify wallet file (within data directory) + + + + + Specify your own public address + + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + + Start Dash Core Daemon + + + + + System error: + + + + + This help message + + + + + This is intended for regression testing tools and app development. + + + + + This is not a masternode. + + + + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + To use the %s option + + + + + Transaction amount too small + + + + + Transaction amounts must be positive + Transactiebedrag moet positief zijn + + + + Transaction created successfully. + + + + + Transaction fees are too high. + + + + + Transaction not valid. + + + + + Transaction too large + Transactie te groot + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Unable to sign masternode payment winner, wrong key? + + + + + Unable to sign spork message, wrong key? + + + + + Unknown -socks proxy version requested: %i + + + + + Unknown network specified in -onlynet: '%s' + + + + + Upgrade wallet to latest format + Upgrade portemonnee naar nieuwste format + + + + Usage (deprecated, use dash-cli): + + + + + Usage: + Gebruik: + + + + Use KeePass 2 integration using KeePassHttp plugin (default: 0) + + + + + Use N separate masternodes to anonymize funds (2-8, default: 2) + + + + + Use OpenSSL (https) for JSON-RPC connections + + + + + Use UPnP to map the listening port (default: 0) + + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + + Use the test network + + + + + Username for JSON-RPC connections + + + + + Value more than Darksend pool maximum allows. + + + + + Verifying blocks... + + + + + Verifying wallet... + + + + + Wait for RPC server to start + + + + + Wallet %s resides outside data directory %s + + + + + Wallet is locked. + + + + + Wallet needed to be rewritten: restart Dash to complete + + + + + Wallet options: + + + + + Warning + Waarschuwing + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + Waarschuwing: Verouderd parameter -debugnet niet uitgevoerd, gebruik -debug=net + + + + Warning: This version is obsolete, upgrade required! + + + + Wrong state. + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + on startup + + + + + version + versie + + + + wallet.dat corrupt, salvage failed + + + + \ No newline at end of file diff --git a/src/qt/locale/dash_pl.ts b/src/qt/locale/dash_pl.ts new file mode 100644 index 0000000000..c7488db957 --- /dev/null +++ b/src/qt/locale/dash_pl.ts @@ -0,0 +1,5291 @@ + + + AboutDialog + + + About Dash Core + O Dash Core + + + + <b>Dash Core</b> version + <b>Dash Core<b> wersja + + + + Copyright &copy; 2009-2014 The Bitcoin Core developers. +Copyright &copy; 2014-YYYY The Dash Core developers. + Prawa autorskie %copy; 2009-2014 deweloperzy Bitcoin Core +Prawa autorskie %copy; 2014-YYYY deweloperzy Dash Core + + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +Jest to oprogramowanie eksperymentalne. + +Dystrybutowane pod licencją oprogramowania MIT/X11, zobacz akompaniujący plik COPYING lub odwiedź http://www.opensource.org/licenses/mit-license.php. + +Ten produkt zawiera oprogramowanie opracowane przez Projekt OpenSSL do użycia w OpenSSL Toolkit (http://www.openssl.org/) i oprogramowanie kryptograficzne napisane przez Eric Young (eay@cryptsoft.com) i także oprogramowanie UPnP napisane przez Thomas Bernard. + + + + + Copyright + Prawo autorskie + + + + The Bitcoin Core developers + Deweloperzy Bitcoin Core + + + + The Dash Core developers + Deweloperzy Dash Core + + + + + (%1-bit) + (%1-bit) + + + + AddressBookPage + + + Double-click to edit address or label + Kliknij dwukrotnie, aby edytować adres lub etykietę + + + + Create a new address + Utwórz nowy adres + + + + &New + &Nowy + + + + Copy the currently selected address to the system clipboard + Skopiuj aktualnie wybrany adres do schowka + + + + &Copy + &Kopiuj + + + + Delete the currently selected address from the list + Usuń obecnie zaznaczony adres z listy + + + + &Delete + &Usuń + + + + Export the data in the current tab to a file + Eksportuj dane z aktywnej karty do pliku + + + + &Export + &Eksportuj + + + + C&lose + Z&amknij + + + + Choose the address to send coins to + Wybierz adres na który wysłać monety + + + + Choose the address to receive coins with + Wybierz adres do otrzymania monet. + + + + C&hoose + W&ybierz + + + + Sending addresses + Adres wysyłania + + + + Receiving addresses + Adres odbiorczy + + + + These are your Dash addresses for sending payments. Always check the amount and the receiving address before sending coins. + To są twoje adresy Dash z których wysyłasz Darkcoiny. Zawsze upewnij się, że kwota i adres do ktoórego wysyłasz Dash są prawidłowe. + + + + These are your Dash addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + To są twoje adresy do otrzymywania Dashów. Zaleca się aby tworzyć nowy adres dla każdej transakcji + + + + &Copy Address + &Kopiuj adres + + + + Copy &Label + Kopiuj &Etykietę + + + + &Edit + &Modyfikuj + + + + Export Address List + Eksportuj listę adresową + + + + Comma separated file (*.csv) + Plik *.CSV (rozdzielany przecinkami) + + + + Exporting Failed + Błąd przy próbie eksportu + + + + There was an error trying to save the address list to %1. + Wystąpił błąd podczas próby zapisu listy adresów do %1. + + + + AddressTableModel + + + Label + Etykieta + + + + Address + Adres + + + + (no label) + (bez etykiety) + + + + AskPassphraseDialog + + + Passphrase Dialog + Okienko Hasła + + + + Enter passphrase + Wpisz hasło + + + + New passphrase + Nowe hasło + + + + Repeat new passphrase + Powtórz nowe hasło + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Służy do zablokowania funkcji wysyłania monet gdy konto użytkownika systemu operacyjnego zostało przejęte przez kogoś innego. Nie oferuje prawdziwego bezpieczeństwa. Wirus lub haker wciąż może uzyskać dostęp do twojego portfela. + + + + For anonymization only + Tylko dla anonimizacji + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Wprowadź nowe hasło dla portfela.<br/>Proszę użyć hasła składającego się z <b>10 lub więcej losowych znaków</b> lub <b>ośmiu lub więcej słów</b>. + + + + Encrypt wallet + Zaszyfruj portfel + + + + This operation needs your wallet passphrase to unlock the wallet. + Ta operacja wymaga hasła do portfela ażeby odblokować portfel. + + + + Unlock wallet + Odblokuj portfel + + + + This operation needs your wallet passphrase to decrypt the wallet. + Ta operacja wymaga hasła do portfela ażeby odszyfrować portfel. + + + + Decrypt wallet + Odszyfruj portfel + + + + Change passphrase + Zmień hasło + + + + Enter the old and new passphrase to the wallet. + Podaj stare i nowe hasło do portfela. + + + + Confirm wallet encryption + Potwierdź szyfrowanie portfela + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Ostrzeżenie: Jeśli zaszyfrujesz swój portfel i zgubisz swoje hasło, <b>STRACISZ WSZYSTKIE DASHY</b> + + + + Are you sure you wish to encrypt your wallet? + Jesteś pewien, że chcesz zaszyfrować swój portfel? + + + + + Wallet encrypted + Portfel zaszyfrowany + + + + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + Dash zostanie teraz zamknięty aby zakończyć proces szyfrowania. Pamiętaj, że zaszyfrowanie portfela nie gwarantuje pełnej ochrony przed kradzieżą twoich monet przez złośliwe oprogramowanie. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + WAŻNE: Wszystkie wykonane wcześniej kopie pliku portfela powinny być zamienione na nowe, szyfrowane pliki. Z powodów bezpieczeństwa, poprzednie kopie nieszyfrowanych plików portfela staną się bezużyteczne jak tylko zaczniesz korzystać z nowego, szyfrowanego portfela. + + + + + + + Wallet encryption failed + Szyfrowanie portfela nie powiodło się + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Szyfrowanie portfela nie powiodło się z powodu wewnętrznego błędu. Twój portfel nie został zaszyfrowany. + + + + + The supplied passphrases do not match. + Podane hasła nie są takie same. + + + + Wallet unlock failed + Odblokowanie portfela nie powiodło się + + + + + + The passphrase entered for the wallet decryption was incorrect. + Wprowadzone hasło do odszyfrowania portfela jest niepoprawne. + + + + Wallet decryption failed + Odszyfrowanie portfela nie powiodło się + + + + Wallet passphrase was successfully changed. + Hasło portfela zostało pomyślnie zmienione. + + + + + Warning: The Caps Lock key is on! + Uwaga: Klawisz Caps Lock jest włączony + + + + BitcoinGUI + + + Dash Core + Dash Core + + + + Wallet + Portfel + + + + Node + Węzeł + + + + + [testnet] + [testnet] + + + + &Overview + P&odsumowanie + + + + Show general overview of wallet + Pokazuje ogólny zarys portfela + + + + &Send + Wyślij + + + + Send coins to a Dash address + Wyślij monety na adres Darkcoina + + + + &Receive + Odbie&rz + + + + Request payments (generates QR codes and dash: URIs) + Poproś o płatności (tworzy kod QR oraz dash: link) + + + + &Transactions + &Transakcje + + + + Browse transaction history + Przeglądaj historię transakcji + + + + E&xit + &Zakończ + + + + Quit application + Zamknij program + + + + + &About Dash Core + &O Dash Core + + + + Show information about Dash + Pokaż informacje na temat Dash + + + + + About &Qt + O &Qt + + + + Show information about Qt + Pokazuje informacje o Qt + + + + &Options... + &Opcje... + + + + Modify configuration options for Dash + Zmień opcje konfiguracji dla Dash + + + + + &Show / Hide + &Pokaż / Ukryj + + + + Show or hide the main Window + Pokazuje lub ukrywa główne okno + + + + &Encrypt Wallet... + Zaszyfruj Portf&el + + + + Encrypt the private keys that belong to your wallet + Szyfruj klucze prywatne, które są powiązane z twoim portfelem + + + + &Backup Wallet... + Wykonaj kopię zapasową... + + + + Backup wallet to another location + Zapasowy portfel w innej lokalizacji + + + + &Change Passphrase... + &Zmień hasło... + + + + Change the passphrase used for wallet encryption + Zmień hasło użyte do szyfrowania portfela + + + + &Unlock Wallet... + Odblok&uj Portfel + + + + Unlock wallet + Odblokuj portfel + + + + &Lock Wallet + Zab&lokuj Porftel + + + + Sign &message... + Podpisz wiado&mość... + + + + Sign messages with your Dash addresses to prove you own them + Podpisz wiadomości swoim adresem Dash aby udowodnić, że jesteś ich właścicielem. + + + + &Verify message... + &Zweryfikuj wiadomość... + + + + Verify messages to ensure they were signed with specified Dash addresses + Zweryfikuj wiadomości aby upewnić się, że zostały one podpisane wybranym adresem Dash + + + + &Information + &Informacje + + + + Show diagnostic information + Pokaż informacje diagnostyczne + + + + &Debug console + Konsola &debugowania + + + + Open debugging console + Otwórz konsole debugowania + + + + &Network Monitor + Mo&nitor Sieci + + + + Show network monitor + Pokaż monitor sieci + + + + Open &Configuration File + Otwórz plik konfiguracji + + + + Open configuration file + Otworz plik konfiguracji + + + + &Sending addresses... + Adres wysyłania + + + + Show the list of used sending addresses and labels + Pokaż listę użytych adresów wysyłających i etykiety + + + + &Receiving addresses... + Adres odbiorczy + + + + Show the list of used receiving addresses and labels + Pokaż listę użytych adresów odbiorczych i etykiety + + + + Open &URI... + Otwórz URI... + + + + Open a dash: URI or payment request + Otwórz dash: Link lub żądanie zapłaty + + + + &Command-line options + &Opcje konsoli + + + + Show the Dash Core help message to get a list with possible Dash command-line options + Pokaż wiadomość pomocy Dash Core aby otrzymać listę z dostępnymi opcjami linii komend. + + + + &File + &Plik + + + + &Settings + P&referencje + + + + &Tools + &Narzędzia + + + + &Help + Pomo&c + + + + Tabs toolbar + Pasek zakładek + + + + + Dash client + Klient Dash + + + + %n active connection(s) to Dash network + %n aktywne połączenie do sieci Dash%n aktywne połączenia do sieci Dash%n aktywnych połączeń do sieci Dash + + + + Synchronizing with network... + Synchronizacja z siecią... + + + + Importing blocks from disk... + Importowanie bloków z dysku... + + + + Reindexing blocks on disk... + Ponowne indeksowanie bloków na dysku... + + + + No block source available... + Brak dostępnych źródeł bloków... + + + + Processed %1 blocks of transaction history. + Pobrano %1 bloków z historią transakcji. + + + + Up to date + Aktualny + + + + %n hour(s) + %n godzina%n godziny%n godzina(y) + + + + %n day(s) + %n dzień%n dni%n dzień(dni) + + + + + %n week(s) + %n tydzień%n tygodnie%n tydzień(tygodnie) + + + + %1 and %2 + %1 i %2 + + + + %n year(s) + %n rok%n lat%n rok(lata) + + + + %1 behind + %1 wstecz + + + + Catching up... + Łapanie bloków... + + + + Last received block was generated %1 ago. + Ostatni otrzymany blok został wygenerowany %1 temu. + + + + Transactions after this will not yet be visible. + Transakcje po tym momencie nie będą jeszcze widoczne. + + + + Dash + Dash + + + + Error + Błąd + + + + Warning + Ostrzeżenie + + + + Information + Informacja + + + + Sent transaction + Transakcja wysłana + + + + Incoming transaction + Transakcja przychodząca + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Data: %1 +Kwota: %2 +Typ: %3 +Adres: %4 + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Portfel jest <b>zaszyfrowany</b> i obecnie <b>niezablokowany</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only + Portfel jest <b>zaszyfrowany</b> a obecnie <b>odblokowany</b> tylko w celu miksowania + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Portfel jest <b>zaszyfrowany</b> i obecnie <b>zablokowany</b> + + + + A fatal error occurred. Dash can no longer continue safely and will quit. + Wystąpił poważny błąd. Dash zostanie zamknięty. + + + + ClientModel + + + Network Alert + Sieć Alert + + + + CoinControlDialog + + + Coin Control Address Selection + Sterowanie Monetą Wybór Adresu + + + + Quantity: + Ilość: + + + + Bytes: + Bajtów: + + + + Amount: + Kwota: + + + + Priority: + Priorytet: + + + + Fee: + Opłata: + + + + Low Output: + Niska wartość wyjściowa + + + + After Fee: + Po opłacie: + + + + Change: + Reszta: + + + + (un)select all + Zaznacz/Odznacz wszystko + + + + Tree mode + Widok drzewa + + + + List mode + Widok listy + + + + (1 locked) + (1 zablokowana) + + + + Amount + Kwota + + + + Label + Etykieta + + + + Address + Adres + + + + Darksend Rounds + Ilość rund mieszania + + + + Date + Data + + + + Confirmations + Potwierdzenia + + + + Confirmed + Potwierdzony + + + + Priority + Priorytet + + + + Copy address + Kopiuj adres + + + + Copy label + Kopiuj etykietę + + + + + Copy amount + Kopiuj kwotę + + + + Copy transaction ID + Skopiuj ID transakcji + + + + Lock unspent + Zablokuj + + + + Unlock unspent + Odblokuj + + + + Copy quantity + Skopiuj ilość + + + + Copy fee + Skopiuj opłatę + + + + Copy after fee + Skopiuj ilość po opłacie + + + + Copy bytes + Skopiuj ilość bajtów + + + + Copy priority + Skopiuj priorytet + + + + Copy low output + Skopiuj niską wartość + + + + Copy change + Skopiuj resztę + + + + highest + najwyższa + + + + higher + wyższa + + + + high + wysoka + + + + medium-high + średnio wysoki + + + + n/a + nie dotyczy + + + + + medium + średnia + + + + low-medium + średnio niski + + + + low + niski + + + + lower + niższy + + + + lowest + najniższy + + + + (%1 locked) + (%1 zablokowane) + + + + none + żaden + + + + Dust + Pył + + + + yes + tak + + + + + no + nie + + + + This label turns red, if the transaction size is greater than 1000 bytes. + Etykieta staje się czerwona kiedy transakcja jest większa niż 1000 bajtów. + + + + + This means a fee of at least %1 per kB is required. + Oznacza to wymaganą opłatę minimum %1 na kB. + + + + Can vary +/- 1 byte per input. + Waha się +/- 1 bajt na wejście. + + + + Transactions with higher priority are more likely to get included into a block. + Transakcje o wyższym priorytecie zostają szybciej dołączone do bloku. + + + + This label turns red, if the priority is smaller than "medium". + Ta etykieta jest czerwona, jeżeli priorytet jest mniejszy niż "średni" + + + + This label turns red, if any recipient receives an amount smaller than %1. + Etykieta staje się czerwona kiedy którykolwiek odbiorca otrzymuje kwotę mniejszą niż %1. + + + + + This means a fee of at least %1 is required. + Oznacza to, że wymagana jest opłata przynajmniej %1. + + + + Amounts below 0.546 times the minimum relay fee are shown as dust. + Kwoty poniżej 0.546 razy mniejsze od minimalnej ustawionej opłaty pokazane są jako pył. + + + + This label turns red, if the change is smaller than %1. + Etykieta staje się czerwona kiedy reszta jest mniejsza niż %1. + + + + + (no label) + (bez etykiety) + + + + change from %1 (%2) + reszta z %1 (%2) + + + + (change) + (reszta) + + + + DarksendConfig + + + Configure Darksend + Skonfiguruj Darksend + + + + Basic Privacy + Podstawowa prywatność + + + + High Privacy + Wysoka prywatność + + + + Maximum Privacy + Maksymalna prywatność + + + + Please select a privacy level. + Proszę wybrać poziom bezpieczeństwa. + + + + Use 2 separate masternodes to mix funds up to 1000 DASH + Użyj 2 oddzielnych masternodów aby wymieszać środki max. do 1000 DASH + + + + Use 8 separate masternodes to mix funds up to 1000 DASH + Użyj 8 oddzielnych masternodów aby wymieszać środki max. do 1000 DASH + + + + Use 16 separate masternodes + Użyj 16 oddzielnych masternodów + + + + This option is the quickest and will cost about ~0.025 DASH to anonymize 1000 DASH + Ta opcja jest najszybsza i kosztuje około 0.025 DASH za zanonimizowanie 1000 DASH + + + + This option is moderately fast and will cost about 0.05 DASH to anonymize 1000 DASH + Ta opcja jest w miarę szybka i kosztuje około 0.05 DASH za zanonimizowanie 1000 DASH + + + + 0.1 DASH per 1000 DASH you anonymize. + 0.1 DASH za każde 1000 DASH które zanonimizujesz. + + + + This is the slowest and most secure option. Using maximum anonymity will cost + Jest to najwolniejsza lecz najbardziej bezpieczna opcja. Maksymalny poziom zanonimizowania będzie kosztować + + + + + + Darksend Configuration + Konfiguracja Darksend + + + + Darksend was successfully set to basic (%1 and 2 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend został pomyślnie ustawiony na poziom podstawowy (%1 oraz 2 rundy). Możesz to zmienić kiedy chcesz, otwierając ekran z konfiguracją Dash. + + + + Darksend was successfully set to high (%1 and 8 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend został pomyślnie ustawiony na poziom wysoki (%1 oraz 8 rund). Możesz to zmienić kiedy chcesz, otwierając ekran z konfiguracją Dash. + + + + Darksend was successfully set to maximum (%1 and 16 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend został pomyślnie ustawiony na poziom maksymalny (%1 oraz 16 rund). Możesz to zmienić kiedy chcesz, otwierając ekran z konfiguracją Dash. + + + + EditAddressDialog + + + Edit Address + Edytuj adres + + + + &Label + &Etykieta + + + + The label associated with this address list entry + Etykieta skojarzona z tym wpisem na liście adresów + + + + &Address + &Adres + + + + The address associated with this address list entry. This can only be modified for sending addresses. + Ten adres jest skojarzony z wpisem na liście adresów. Może być zmodyfikowany jedynie dla adresów wysyłających. + + + + New receiving address + Nowy adres odbiorczy + + + + New sending address + Nowy adres wysyłania + + + + Edit receiving address + Zmień adres odbioru + + + + Edit sending address + Zmień adres wysyłania + + + + The entered address "%1" is not a valid Dash address. + Wprowadzony adres "%1" nie jest właściwym adresem Dash. + + + + The entered address "%1" is already in the address book. + Wprowadzony adres "%1" już istnieje w książce adresowej. + + + + Could not unlock wallet. + Nie można było odblokować portfela. + + + + New key generation failed. + Tworzenie nowego klucza nie powiodło się. + + + + FreespaceChecker + + + A new data directory will be created. + Utworzono nowy folder danych. + + + + name + nazwa + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Katalog już istnieje. Dodaj %1 jeśli masz zamiar utworzyć tutaj nowy katalog. + + + + Path already exists, and is not a directory. + Ścieżka już istnieje i nie wskazuje na folder. + + + + Cannot create data directory here. + Nie można było tutaj utworzyć folderu. + + + + HelpMessageDialog + + + Dash Core - Command-line options + Dash Core - Opcje wiersza poleceń + + + + Dash Core + Dash Core + + + + version + wersja + + + + Usage: + Użycie: + + + + command-line options + opcje konsoli + + + + UI options + UI opcje + + + + Choose data directory on startup (default: 0) + Wybierz folder danych przy starcie (domyślnie: 0) + + + + Set language, for example "de_DE" (default: system locale) + Ustaw Język, na przykład "pl_PL" (domyślnie: systemowy) + + + + Start minimized + Uruchom zminimalizowany + + + + Set SSL root certificates for payment request (default: -system-) + Ustaw główne cerytfikaty SSL dla żądań płatności (domyślnie: -system-) + + + + Show splash screen on startup (default: 1) + Pokazuj okno powitalne przy starcie (domyślnie: 1) + + + + Intro + + + Welcome + Witaj + + + + Welcome to Dash Core. + Witaj w Dash Core + + + + As this is the first time the program is launched, you can choose where Dash Core will store its data. + Ponieważ uruchomiłeś ten program po raz pierwszy, możesz wybrać gdzie Dash Core będzie przechowywał dane. + + + + Dash Core will download and store a copy of the Dash block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Dash Core ściągnie i przechowa kopię blockchain na twoim dysku. Co najmniej 1GB danych zostanie zapisanych w tym katalogu, a wraz z upływem czasu blockchain będzie stopniowo wymagał coraz więcej miejsca. Twój portfel również zostanie zapisany w tym katalogu. + + + + Use the default data directory + Użyj domyślnego folderu danych + + + + Use a custom data directory: + Użyj wybranego folderu dla danych + + + + Dash + Dash + + + + Error: Specified data directory "%1" can not be created. + Błąd: Określony folder danych "%1" nie mógł zostać utworzony. + + + + Error + Błąd + + + + GB of free space available + GB dostępnego wolnego miejsca + + + + (of %1GB needed) + (z %1GB potrzebnego) + + + + OpenURIDialog + + + Open URI + Otwórz URI: + + + + Open payment request from URI or file + Otwórz żądanie zapłaty z URI lub pliku + + + + URI: + URI: + + + + Select payment request file + Otwórz żądanie zapłaty z pliku + + + + Select payment request file to open + Wybierz plik żądania zapłaty do otwarcia + + + + OptionsDialog + + + Options + Opcje + + + + &Main + Główne + + + + Automatically start Dash after logging in to the system. + Automatycznie uruchom Dash po zalogowaniu się do systemu. + + + + &Start Dash on system login + &Uruchom Dash po zalogowaniu się do systemu + + + + Size of &database cache + Rozmiar &pamięci podręcznej bazy danych. + + + + MB + MB + + + + Number of script &verification threads + Liczba wątków &weryfikacji skryptu + + + + (0 = auto, <0 = leave that many cores free) + (0=auto, <0 = zostaw tyle wolnych rdzeni) + + + + <html><head/><body><p>This setting determines the amount of individual masternodes that an input will be anonymized through. More rounds of anonymization gives a higher degree of privacy, but also costs more in fees.</p></body></html> + <html><head/><body><p>Tutaj możesz ustawić liczbę masternodów, przez które transakcja zostanie przepuszczona. Im większa liczba masternodów tym większy poziom anonimowości, ale opłata jest również wyższa.</p></body></html> + + + + Darksend rounds to use + Ilość rund Darksend. + + + + This amount acts as a threshold to turn off Darksend once it's reached. + Ta kwota działa jako próg po którego przekroczeniu Darksend zostaje wyłączony. + + + + Amount of Dash to keep anonymized + Ilość Dashów, które mają pozostać anonimowe. + + + + W&allet + Portfel + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. + Opcjonalna prowizja za transakcje za kB, wspomaga ona szybkość przebiegu transakcji. Większość transakcji jest 1 kB. + + + + Pay transaction &fee + Płać prowizję za transakcje + + + + Expert + Ekspert + + + + Whether to show coin control features or not. + Czy pokazać funkcje kontroli monet czy nie. + + + + Enable coin &control features + Włącz funkcje &kontroli monet + + + + 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. + Jeśli wyłączysz możliwość wydawania niepotwierdzonej reszty, to reszta z transakcji nie może zostać użyta dopóki nie ma przynajmniej jednego potwierdzona. To również wpływa na to jak wyliczane jest twoje saldo. + + + + &Spend unconfirmed change + &Wydaj niepotwierdzoną resztę + + + + &Network + &Sieć + + + + Automatically open the Dash client port on the router. This only works when your router supports UPnP and it is enabled. + Automatycznie uruchamiaj port klienta Darkcoina na ruterze. To działa tylko jeśli twój ruter wspiera i ma włączone UPnP. + + + + Map port using &UPnP + Mapuj port używając &UPnP + + + + Connect to the Dash network through a SOCKS proxy. + Połącz się z siecią Darkcoina przez proxy SOCKS + + + + &Connect through SOCKS proxy (default proxy): + &Połącz się przez SOCKS proxy (opcja domyślna): + + + + Proxy &IP: + Proxy &IP: + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Adres IP serwera proxy (np. IPv4: 127.0.0.1 / IPv6: ::1) + + + + &Port: + &Port: + + + + Port of the proxy (e.g. 9050) + Port proxy (np. 9050) + + + + SOCKS &Version: + Wersja &SOCKS + + + + SOCKS version of the proxy (e.g. 5) + SOCKS wersja serwera proxy (np. 5) + + + + &Window + &Okno + + + + Show only a tray icon after minimizing the window. + Pokazuj tylko ikonę przy zegarku po zminimalizowaniu okna. + + + + &Minimize to the tray instead of the taskbar + &Minimalizuj do paska przy zegarku zamiast do paska zadań + + + + 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. + Minimalizuje zamiast zakończyć działanie programu przy zamykaniu okna. Kiedy ta opcja jest włączona, program zakończy działanie po wybieraniu Zamknij w menu. + + + + M&inimize on close + M&inimalizuj przy zamknięciu + + + + &Display + &Wyświetlanie + + + + User Interface &language: + Język &Użytkownika: + + + + The user interface language can be set here. This setting will take effect after restarting Dash. + Tutaj można ustawić język interfejsu użytkownika. To ustawienie zostanie zapisane po ponownym uruchomieniu Dash. + + + + Language missing or translation incomplete? Help contributing translations here: +https://www.transifex.com/projects/p/dash/ + Dash Core nie został przetłumaczony na twój język? Tłumaczenie jest niepełne lub niepoprawne? Możesz pomóc nam tłumaczyć tutaj: +https://www.transifex.com/projects/p/dash/ + + + + &Unit to show amounts in: + &Jednostka pokazywana przy kwocie: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Wybierz podział jednostki pokazywany w interfejsie oraz podczas wysyłania monet + + + + Whether to show Dash addresses in the transaction list or not. + Czy wyświetlić adres Dash w liście transakcji czy nie + + + + &Display addresses in transaction list + &Wyświetlaj adresy w liście transakcji + + + + + 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 |. + URL osób trzecich (np. eksplorator bloków), które pojawiają się w zakładce transakcji jako pozycje w menu kontekstowym. %s w URL jest zastąpione przez hash transakcji. Wielokrotne URL są oddzielane przez pionową poprzeczkę |. + + + + Third party transaction URLs + URL transakcji osób trzecich + + + + Active command-line options that override above options: + Aktywne opcje linii komend, które nadpisują powyższe opcje: + + + + Reset all client options to default. + Przywróć domyślne wszystkie ustawienia klienta. + + + + &Reset Options + Z&resetuj Ustawienia + + + + &OK + &OK + + + + &Cancel + &Anuluj + + + + default + domyślny + + + + none + żaden + + + + Confirm options reset + Potwierdź reset ustawień + + + + + Client restart required to activate changes. + Wymagany restart programu, aby uaktywnić zmiany. + + + + Client will be shutdown, do you want to proceed? + Program zostanie wyłączony. Czy chcesz kontynuować? + + + + This change would require a client restart. + Ta zmiana może wymagać ponownego uruchomienia klienta. + + + + The supplied proxy address is invalid. + Adres podanego proxy jest nieprawidłowy + + + + OverviewPage + + + Form + Formularz + + + + Wallet + Portfel + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Dash network after a connection is established, but this process has not completed yet. + Wyświetlona informacja może być przedawniona. Twój portfel automatycznie zsynchronizuje sie z siecią Dash jak tylko zostanie ustanowione połączenie, jednakże proces ten jeszcze się nie zakończył. + + + + Available: + Dostępne: + + + + Your current spendable balance + Twoje obecne saldo + + + + Pending: + W toku: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Suma transakcji, które nie zostały jeszcze potwierdzone, a które nie zostały wliczone do twojego obecnego salda + + + + Immature: + Niedojrzały: + + + + Mined balance that has not yet matured + Balans wydobycia, który jeszcze nie dojrzał + + + + Total: + Wynosi ogółem: + + + + Your current total balance + Twoje obecne saldo + + + + Status: + Status: + + + + Enabled/Disabled + Włączony/Wyłączony + + + + Completion: + Ukończone: + + + + Darksend Balance: + Bilans Darksend: + + + + 0 DASH + 0 DASH + + + + Amount and Rounds: + Ilość oraz Rundy: + + + + 0 DASH / 0 Rounds + 0 DASH / 0 Rund + + + + Submitted Denom: + Zgłoszone denominacje: + + + + The denominations you submitted to the Masternode. To mix, other users must submit the exact same denominations. + Denominacje zgłoszone do Masternodów. Aby je wymieszać, pozostali uzytkownicy muszą zgłosić dokładnie te same denominacje. + + + + n/a + nie dotyczy + + + + + + + Darksend + Darksend + + + + Start/Stop Mixing + Start/Stop Mieszanie + + + + (Last Message) + (Ostatnia Wiadomość) + + + + Try to manually submit a Darksend request. + Prubój ręcznie zgłosić żądanie Darksend. + + + + Try Mix + Mieszaj + + + + Reset the current status of Darksend (can interrupt Darksend if it's in the process of Mixing, which can cost you money!) + Zresetuj obecny stan darksend (może przerwać Darksend, jeżeli jest w trakcie mieszania. Może Cię to kosztować! ) + + + + Reset + Reset + + + + <b>Recent transactions</b> + <b>Ostatnie transakcje</b> + + + + + + out of sync + desynchronizacja + + + + + Disabled + Wyłączony + + + + + + Start Darksend Mixing + Uruchom miksowanie Darksend + + + + + Stop Darksend Mixing + Zatrzymaj miksowanie Darksend + + + + No inputs detected + Nie wykryto wejść + + + + Found unconfirmed denominated outputs, will wait till they confirm to recalculate. + Znaleziono niepotwierdzone zdenominowane wyjścia, wstrzymam się z rekalkulacją do czasu ich potwierdzenia. + + + + Rounds + Rundy + + + + Enabled + Włączony + + + + Last Darksend message: + + Ostatnia wiadomość Darksend: + + + + + + Darksend is idle. + Darksend jest w stanie spoczynku. + + + + Mixing in progress... + + + + + Darksend request complete: Your transaction was accepted into the pool! + Żądanie Daeksend zostało zakończone: Twoja transakcja została zaakceptowana do wspólnego funduszu kopaczy. + + + + Submitted following entries to masternode: + Następujące wpisy zostały przesłane do masternoda: + + + + + + Submitted to masternode, Waiting for more entries + Przesłano do masternoda. Czekam na więcej wpisów. + + + + Found enough users, signing ... + Znaleziono wystarczającą ilość użytkowników, trwa podpisywanie ... + + + + Found enough users, signing ( waiting. ) + Znaleziono wystarczającą ilość użytkowników, trwa podopisywanie ( poczekaj chwilę. ) + + + + Found enough users, signing ( waiting.. ) + Znaleziono wystarczająco użytkowników, trwa podpisywanie ( poczekaj chwilę.. ) + + + + Found enough users, signing ( waiting... ) + Znaleziono wystarczająco użytkowników, trwa podpisywanie ( poczekaj chwilę... ) + + + + Transmitting final transaction. + Trwa wysyłanie pierwszej transakcji. + + + + Finalizing transaction. + Finalizowanie transakcji. + + + + Darksend request incomplete: + Żądanie Darksend zakończyło się niepowodzeniem: + + + + Will retry... + spóbuję ponownie + + + + Darksend request complete: + Żądanie Darksend zakończyło się powodzeniem: + + + + Submitted to masternode, waiting in queue . + Przesłano do masterdnoda, czekaj na swoją kolej. + + + + Submitted to masternode, waiting in queue .. + Przesłano do masterdnoda, czekaj na swoją kolej.. + + + + Submitted to masternode, waiting in queue ... + Przesłano do masterdnoda, czekaj na swoją kolej... + + + + Unknown state: + Status nieznany: + + + + N/A + NIEDOSTĘPNE + + + + Darksend was successfully reset. + Darksend został pomyślnie zresetowany + + + + Darksend requires at least %1 to use. + Darksend wymaga użycia conajmniej %1 + + + + Wallet is locked and user declined to unlock. Disabling Darksend. + Portfel jest zablokowany a użytkownik odmówił odblokowania. Darksend zostaje wyłączony. + + + + PaymentServer + + + + + + + + Payment request error + Błąd żądania płatności + + + + Cannot start dash: click-to-pay handler + Nie można włączyć dash: kliknij-aby-zapłacić ubsługującemu. + + + + Net manager warning + Ostrzeżenie menedżera sieci + + + + Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. + Twoje aktywne proxy nie obsługuje SOCKS5, co jest wymagane dla żądania płatności przez proxy. + + + + + URI handling + Obsługa URI + + + + Payment request fetch URL is invalid: %1 + Żądanie płatności podowduje że URL jest niewłaściwy: %1 + + + + URI can not be parsed! This can be caused by an invalid Dash address or malformed URI parameters. + URI nie może zostać przeanalizowany! Mogło to być spowodowane przez niewłaściwy adres Dash lub niewłaściwe parametry URI + + + + Payment request file handling + Obsługa pliku z żądaniem płatności + + + + Payment request file can not be read or processed! This can be caused by an invalid payment request file. + Plik z żądaniem płatności nie może zostać odczytany lub przetworzony! Może to być spowodowane przez niewłaściwy plik z żądaniem płatności. + + + + Unverified payment requests to custom payment scripts are unsupported. + Niezweryfikowane żądania płatności dla specjalnych skryptów z płatnościami nie są obsługiwane. + + + + Requested payment amount of %1 is too small (considered dust). + Żądana kwota %1 jest za niska (uznana za pył). + + + + Refund from %1 + Zwrot z %1 + + + + Error communicating with %1: %2 + Błąd komunikacji z %1 : %2 + + + + Payment request can not be parsed or processed! + Żądanie płatności nie może zostać przeanalizowne lub przetworzone! + + + + Bad response from server %1 + Błędna odpowiedź z serwera %1 + + + + Network request error + Błąd żądania sieci + + + + Payment acknowledged + Płatność potwierdzona + + + + QObject + + + + + + Dash + Dash + + + + Error: Specified data directory "%1" does not exist. + Błąd: Określony folder danych "%1" nie istnieje. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Błąd: Nie można przetworzyć pliku konfiguracyjnego: %1. Używaj tylko składni klucz=wartość. + + + + Error reading masternode configuration file: %1 + Błąd podczas wczytywania pliku z konfiguracją masternoda: %1 + + + + Error: Invalid combination of -regtest and -testnet. + Błąd: Niepoprawna kombinacja -regtest i -testnet. + + + + Dash Core didn't yet exit safely... + Dash Core jeszcze się nie wyłaczył... + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Wpisz adres Dash (np. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + QRImageWidget + + + &Save Image... + &Zapisz obraz... + + + + &Copy Image + &Kopiuj obraz + + + + Save QR Code + Zapisz Kod QR + + + + PNG Image (*.png) + Obraz PNG (*.png) + + + + RPCConsole + + + Tools window + Okno narzędzi + + + + &Information + &Informacje + + + + Masternode Count + Ilość masternodów + + + + General + Ogólne + + + + Name + Nazwa + + + + Client name + Nazwa klienta + + + + + + + + + + + + + N/A + NIEDOSTĘPNE + + + + Number of connections + Liczba połączeń + + + + Open the Dash debug log file from the current data directory. This can take a few seconds for large log files. + Otwiera plik z zapisami debugowania Darkcoina z obecnego katalogu. Może to potrfać kilka sekund w zależności od rozmiaru pliku. + + + + &Open + &Otwórz + + + + Startup time + Czas uruchomienia + + + + Network + Sieć + + + + Last block time + Czas ostatniego bloku + + + + Debug log file + Plik logowania debugowania + + + + Using OpenSSL version + Używana wersja OpenSSL + + + + Build date + Data kompilacji + + + + Current number of blocks + Aktualna liczba bloków + + + + Client version + Wersja klienta + + + + Block chain + Ciąg bloków + + + + &Console + &Konsola + + + + Clear console + Wyczyść konsolę + + + + &Network Traffic + $Ruch sieci + + + + &Clear + &Wyczyść + + + + Totals + Kwota ogólna + + + + + In: + Wejście: + + + + + Out: + Wyjście: + + + + Welcome to the Dash RPC console. + Witaj w konsoli RPC Darkcoina + + + + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + Użyj strzałek do przewijania historii i <b>Ctrl-L</b> aby wyczyścić ekran + + + + Type <b>help</b> for an overview of available commands. + Wpisz <b>help</b> aby uzyskać listę dostępnych komend + + + + %1 B + %1 B + + + + %1 KB + %1 KB + + + + %1 MB + %1 MB + + + + %1 GB + %1 GB + + + + %1 m + %1 m + + + + %1 h + %1 h + + + + %1 h %2 m + %1 h %2 m + + + + ReceiveCoinsDialog + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Użyj jeden z poprzednio użytych adresów odbiorczych. Podczas ponownego używania adresów występują problemy z bezpieczeństwem i prywatnością. Nie korzystaj z tej opcji, chyba że odtwarzasz żądanie płatności wykonane już wcześniej. + + + + R&euse an existing receiving address (not recommended) + O&drzuć istniejący adres odbiorczy (nie zalecane) + + + + + 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 Dash network. + Opcjonalna wiadomość do żądania płatności. Wiadomość wyświetli się po otwarciu żądania. Pamiętaj: Wiadomość nie zostanie wysłana razem z płatnością poprzez sieć Dash. + + + + &Message: + &Wiadomość: + + + + + An optional label to associate with the new receiving address. + Opcjonalna etykieta do skojarzenia z nowym adresem odbiorczym. + + + + Use this form to request payments. All fields are <b>optional</b>. + Użyj tego formularza do zażądania płatności. Wszystkie pola są <b>opcjonalne</b>. + + + + &Label: + &Etykieta: + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Opcjonalna kwota żądania. Pozostaw puste pole lub zero aby nie podawać konkretnej kwoty. + + + + &Amount: + &Ilość: + + + + &Request payment + &Żądaj płatności + + + + Clear all fields of the form. + Wyczyść pola formularza + + + + Clear + Wyczyść + + + + Requested payments history + Żądanie historii płatności + + + + Show the selected request (does the same as double clicking an entry) + Pokaż zaznaczone żądanie (działa jak podwójne kliknięcie) + + + + Show + Pokaż + + + + Remove the selected entries from the list + Usuń zaznaczone z listy + + + + Remove + Usuń + + + + Copy label + Kopiuj etykietę + + + + Copy message + Kopiuj wiadomość + + + + Copy amount + Kopiuj kwotę + + + + ReceiveRequestDialog + + + QR Code + Kod QR + + + + Copy &URI + Kopiuj &URI + + + + Copy &Address + Kopiuj &adres + + + + &Save Image... + &Zapisz obraz... + + + + Request payment to %1 + Żądaj płatności do %1 + + + + Payment information + Informacje o płatności + + + + URI + URI + + + + Address + Adres + + + + Amount + Kwota + + + + Label + Etykieta + + + + Message + Wiadomość + + + + Resulting URI too long, try to reduce the text for label / message. + Wynikowy URI jest zbyt długi, spróbuj zmniejszyć tekst etykiety / wiadomości + + + + Error encoding URI into QR Code. + Błąd kodowania URI w Kodzie QR. + + + + RecentRequestsTableModel + + + Date + Data + + + + Label + Etykieta + + + + Message + Wiadomość + + + + Amount + Kwota + + + + (no label) + (bez etykiety) + + + + (no message) + (brak wiadomości) + + + + (no amount) + (brak kwoty) + + + + SendCoinsDialog + + + + + + Send Coins + Wyślij Monety + + + + Coin Control Features + Funkcje sterowania monetami + + + + Inputs... + Wejścia... + + + + automatically selected + zaznaczone automatycznie + + + + Insufficient funds! + Niewystarczające środki + + + + Quantity: + Ilość: + + + + Bytes: + Bajtów: + + + + Amount: + Kwota: + + + + Priority: + Priorytet: + + + + medium + średnia + + + + Fee: + Opłata: + + + + Low Output: + Niska wartość wyjściowa: + + + + no + nie + + + + After Fee: + Po opłacie: + + + + Change: + Reszta: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Kiedy ta opcja jest wybrana, ale adres reszty jest pusty lub nieprawidłowy to reszta będzie wysyłana na adres nowo-wygenerowany. + + + + Custom change address + Niestandardowe zmiany adresu + + + + Confirm the send action + Potwierdź akcję wysyłania + + + + S&end + Wy&syłka + + + + Clear all fields of the form. + Wyczyść wszystkie pola formularza + + + + Clear &All + Wyczyść &wszystko + + + + Send to multiple recipients at once + Wyślij do wielu odbiorców na raz + + + + Add &Recipient + Dodaj Odbio&rce + + + + Darksend + Darksend + + + + InstantX + InstantX + + + + Balance: + Saldo: + + + + Copy quantity + Skopiuj ilość + + + + Copy amount + Kopiuj kwotę + + + + Copy fee + Skopiuj opłatę + + + + Copy after fee + Skopiuj ilość po opłacie + + + + Copy bytes + Skopiuj ilość bajtów + + + + Copy priority + Skopiuj priorytet + + + + Copy low output + Skopiuj niską wartość + + + + Copy change + Skopiuj resztę + + + + + + using + używając + + + + + anonymous funds + anonimowe środki + + + + (darksend requires this amount to be rounded up to the nearest %1). + (darksend wymaga aby kwota ta została zaokrąglona do najbliższego 1%). + + + + any available funds (not recommended) + jakiekolwiek dostępne środki (niezalecane) + + + + and InstantX + i InstantX + + + + + + + %1 to %2 + %1 do %2 + + + + Are you sure you want to send? + Czy na pewno chcesz wysłać? + + + + are added as transaction fee + dodane są jako opłata za transakcje + + + + Total Amount %1 (= %2) + Łączna kwota %1 (= %2) + + + + or + lub + + + + Confirm send coins + Potwierdź wysyłanie monet + + + + Payment request expired + Zażądanie płatności upłynęło + + + + Invalid payment address %1 + błędny adres płatności %1 + + + + The recipient address is not valid, please recheck. + Adres odbiorcy jest nieprawidłowy, proszę poprawić + + + + The amount to pay must be larger than 0. + Kwota do zapłacenia musi być większa od 0. + + + + The amount exceeds your balance. + Kwota przekracza twoje saldo. + + + + The total exceeds your balance when the %1 transaction fee is included. + Suma przekracza twoje saldo, gdy doliczymy %1 prowizji transakcyjnej. + + + + Duplicate address found, can only send to each address once per send operation. + Znaleziono powtórzony adres, można wysłać tylko raz na każdy adres podczas operacji wysyłania. + + + + Transaction creation failed! + Utworzenie transakcji nie powiodło się! + + + + 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 and coins were spent in the copy but not marked as spent here. + Transakcja została odrzucona! Może się to zdarzyć jeśli część monet z portfela została już wydana używając kopii pliku wallet.dat i nie zostało to tutaj uwzględnione. + + + + Error: The wallet was unlocked only to anonymize coins. + Błąd: Portfel został odblokowany tylko dla anonimizacji monet. + + + + Warning: Invalid Dash address + Ostrzeżenie: adres Dash jest nieprawidlowy + + + + Warning: Unknown change address + Ostrzeżenie: Nieznany adres + + + + (no label) + (bez etykiety) + + + + SendCoinsEntry + + + This is a normal payment. + To jest standardowa płatność + + + + Pay &To: + Zapłać &dla: + + + + The address to send the payment to (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Adres na który wysłać płatność (np. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + Choose previously used address + Wybierz wcześniej użyty adres + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Wklej adres ze schowka + + + + Alt+P + Alt+P + + + + + + Remove this entry + Usuń ten wpis + + + + &Label: + &Etykieta: + + + + Enter a label for this address to add it to the list of used addresses + Wprowadź etykietę dla tego adresu by dodać go do listy użytych adresów + + + + + + A&mount: + Su&ma: + + + + Message: + Wiadomość: + + + + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + Wiadomość, która została dołączona do dash: Link, który zostanie zapisany wraz z transakcją do wglądu w przyszłości. Zauważ. że sama wiadomość nie zostanie wysłana przez sieć Darkcoina. + + + + This is an unverified payment request. + To żądanie zapłaty nie zostało zweryfikowane. + + + + + Pay To: + Wpłać do: + + + + + Memo: + Notatka: + + + + This is a verified payment request. + Zweryfikowano żądanie zapłaty. + + + + Enter a label for this address to add it to your address book + Wprowadź etykietę dla tego adresu by dodać go do książki adresowej + + + + ShutdownWindow + + + Dash Core is shutting down... + Trwa zamykanie Dash Core + + + + Do not shut down the computer until this window disappears. + Nie wyłączaj komputera dopóki to okno nie zniknie. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Podpisy - Podpisz / zweryfikuj wiadomość + + + + &Sign Message + Podpi&sz Wiadomość + + + + 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. + Możesz podpisywać wiadomości swoimi adresami aby udowodnić, że jesteś ich właścicielem. Uważaj, aby nie podpisywać niczego co wzbudza Twoje podejrzenia, ponieważ ktoś może stosować phishing próbując nakłonić Cię do ich podpisania. Akceptuj i podpisuj tylko w pełni zrozumiałe komunikaty i wiadomości. + + + + The address to sign the message with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Adres, którym ma być podpisana wiadomość (np.: XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + Choose previously used address + Wybierz wcześniej użyty adres + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Wklej adres ze schowka + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Wprowadź wiadomość, którą chcesz podpisać, tutaj + + + + Signature + Podpis + + + + Copy the current signature to the system clipboard + Kopiuje aktualny podpis do schowka systemowego + + + + Sign the message to prove you own this Dash address + Podpisz wiadomość aby udowodnić, że jesteś właścicielem adresu Dash. + + + + Sign &Message + Podpisz Wiado&mość + + + + Reset all sign message fields + Zresetuj wszystkie pola podpisanej wiadomości + + + + + Clear &All + Wyczyść &wszystko + + + + &Verify Message + &Zweryfikuj wiadomość + + + + 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. + Wpisz adres podpisujący, podaj wiadomość (upewnij się, że dokładnie skopiujesz wszystkie zakończenia linii, spacje, tabulacje itp.) oraz podpis poniżej by sprawdzić wiadomość. Uważaj by nie dodać więcej do podpisu niż do samej podpisywanej wiadomości by uniknąć ataku man-in-the-middle (człowiek pośrodku) + + + + The address the message was signed with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Adres, którym została podpisana wiadomość (np.: XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + Verify the message to ensure it was signed with the specified Dash address + Zweryfikuj wiadomość aby upewnić się, że została zapisana przez konkretny adres Dash + + + + Verify &Message + Zweryfikuj Wiado&mość + + + + Reset all verify message fields + Resetuje wszystkie pola weryfikacji wiadomości + + + + Click "Sign Message" to generate signature + Kliknij "Podpisz Wiadomość" żeby uzyskać podpis + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Wpisz adres Dash (np. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + The entered address is invalid. + Podany adres jest nieprawidłowy. + + + + + + + Please check the address and try again. + Proszę sprawdzić adres i spróbować ponownie. + + + + + The entered address does not refer to a key. + Wprowadzony adres nie odnosi się do klucza. + + + + Wallet unlock was cancelled. + Odblokowanie portfela zostało anulowane. + + + + Private key for the entered address is not available. + Klucz prywatny dla podanego adresu nie jest dostępny + + + + Message signing failed. + Podpisanie wiadomości nie powiodło się + + + + Message signed. + Wiadomość podpisana. + + + + The signature could not be decoded. + Podpis nie może zostać zdekodowany. + + + + + Please check the signature and try again. + Sprawdź podpis i spróbuj ponownie. + + + + The signature did not match the message digest. + Podpis nie odpowiadał streszczeniu wiadomości + + + + Message verification failed. + Weryfikacja wiadomości nie powiodła się. + + + + Message verified. + Wiadomość zweryfikowana. + + + + SplashScreen + + + Dash Core + Dash Core + + + + Version %1 + Wersja %1 + + + + The Bitcoin Core developers + Deweloperzy Bitcoin Core + + + + The Dash Core developers + Deweloperzy Dash Core + + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + Otwórz na %n kolejny blokOtwórz na %n kolejnych blokówOtwórz na %n kolejnych blok(ów) + + + + Open until %1 + Otwórz do %1 + + + + + + + conflicted + konflikt + + + + %1/offline (verified via instantx) + %1/offline (zweryfikowane przez instantx) + + + + %1/confirmed (verified via instantx) + 1%/potwierdzony (zweryfikowane przez instantx) + + + + %1 confirmations (verified via instantx) + 1% potwierdzeń (zweryfikowane przez instantx) + + + + %1/offline + %1/offline + + + + %1/unconfirmed + %1/niezatwierdzone + + + + + %1 confirmations + %1 potwierdzeń + + + + %1/offline (InstantX verification in progress - %2 of %3 signatures) + %1/nieaktywny (w trakcie weryfikacji InstantX - %2 z %3 oznaczeń) + + + + %1/confirmed (InstantX verification in progress - %2 of %3 signatures ) + %1/potwierdzony (w trakcie weryfikacji InstantX - %2 z %3 oznaczeń) + + + + %1 confirmations (InstantX verification in progress - %2 of %3 signatures) + %1/potwierdzeń (w trakcie weryfikacji InstantX - %2 z %3 oznaczeń) + + + + %1/offline (InstantX verification failed) + %1/nieaktywny (weryfikacja InstantX niepowiodła się) + + + + %1/confirmed (InstantX verification failed) + %1/potwierdzony (weryfikacja InstantX nie powiodła się) + + + + Status + Status + + + + , has not been successfully broadcast yet + , nie został jeszcze pomyślnie wyemitowany + + + + , broadcast through %n node(s) + , transmituj przez %n węzeł, transmituj przez %n węzłów, transmituj przez %n węzeł(ów) + + + + Date + Data + + + + Source + Źródło + + + + Generated + Wygenerowano + + + + + From + Od + + + + unknown + nieznany + + + + + + To + Do + + + + + own address + własny adres + + + + label + etykieta + + + + + + + + Credit + Przypisy + + + + matures in %n more block(s) + dojrzałe w %n kolejnym blokudojrzałe w %n kolejnych blokówdojrzałe w %n kolejnych blok(ów) + + + + not accepted + niezaakceptowane + + + + + + + Debit + Debet + + + + Transaction fee + Prowizja transakcji + + + + Net amount + Kwota netto + + + + + Message + Wiadomość + + + + Comment + Komentarz + + + + Transaction ID + ID transakcji + + + + Merchant + Kupiec + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Wygenerowane monety muszą dojrzeć przez %1 bloków zanim będzie można je wysłać. Gdy wygenerowałeś ten blok, został on ogłoszony w sieci i dodany do łańcucha bloków. Jeżeli nie uda mu się wejść do łańcucha, jego status zostanie zmieniony na "nie zaakceptowano" i nie będzie można go wydać. To czasem zdarza się gdy inny węzeł wygeneruje blok kilka sekund przed tobą. + + + + Debug information + Informacje debugowania + + + + Transaction + Transakcja + + + + Inputs + Wejścia + + + + Amount + Kwota + + + + true + prawda + + + + false + fałsz + + + + TransactionDescDialog + + + Transaction details + Szczegóły transakcji + + + + This pane shows a detailed description of the transaction + Ten panel pokazuje szczegółowy opis transakcji + + + + TransactionTableModel + + + Date + Data + + + + Type + Typ + + + + Address + Adres + + + + Amount + Kwota + + + + Open for %n more block(s) + Otwórz na %n kolejny blokOtwórz na %n kolejnych blokówOtwórz na %n kolejny(ch) blok(ów) + + + + Open until %1 + Otwórz do %1 + + + + Offline + Offline + + + + Unconfirmed + Niepotwierdzone: + + + + Confirming (%1 of %2 recommended confirmations) + Potwierdzanie (%1 z %2 rekomendowanych potwierdzeń) + + + + Confirmed (%1 confirmations) + Zatwierdzony (%1 potwierdzeń) + + + + Conflicted + Konflikt + + + + Immature (%1 confirmations, will be available after %2) + Niedojrzały (%1 potwierdzenia, będzie dostępny po %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Ten blok nie został odebrany przez jakikolwiek inny węzeł i prawdopodobnie nie zostanie zaakceptowany! + + + + Generated but not accepted + Wygenerowano ale nie zaakceptowano + + + + Received with + Otrzymane przez + + + + Received from + Odebrano od + + + + Received via Darksend + Otrzymane przez Darksend + + + + Sent to + Wysłano do + + + + Payment to yourself + Płatność do siebie + + + + Mined + Wydobyto + + + + Darksend Denominate + Denominacja Darksend + + + + Darksend Collateral Payment + Płatność zabezpieczająca Darksend + + + + Darksend Make Collateral Inputs + Darksend tworzy poboczne wejscia + + + + Darksend Create Denominations + Darksend tworzy denominacje + + + + Darksent + Darksent + + + + (n/a) + (brak) + + + + Transaction status. Hover over this field to show number of confirmations. + Status transakcji. Najedź na pole, aby zobaczyć liczbę potwierdzeń. + + + + Date and time that the transaction was received. + Data i czas odebrania transakcji. + + + + Type of transaction. + Rodzaj transakcji. + + + + Destination address of transaction. + Adres docelowy transakcji. + + + + Amount removed from or added to balance. + Kwota usunięta z lub dodana do konta. + + + + TransactionView + + + + All + Wszystko + + + + Today + Dzisiaj + + + + This week + W tym tygodniu + + + + This month + W tym miesiącu + + + + Last month + W zeszłym miesiącu + + + + This year + W tym roku + + + + Range... + Zakres... + + + + Received with + Otrzymane przez + + + + Sent to + Wysłano do + + + + Darksent + Darksent + + + + Darksend Make Collateral Inputs + Darksend tworzy poboczne wejscia + + + + Darksend Create Denominations + Darksend tworzy denominacje + + + + Darksend Denominate + Denominacja Darksend + + + + Darksend Collateral Payment + Płatność zabezpieczająca Darksend + + + + To yourself + Do siebie + + + + Mined + Wydobyto + + + + Other + Inne + + + + Enter address or label to search + Wprowadź adres albo etykietę żeby wyszukać + + + + Min amount + Min suma + + + + Copy address + Kopiuj adres + + + + Copy label + Kopiuj etykietę + + + + Copy amount + Kopiuj kwotę + + + + Copy transaction ID + Skopiuj ID transakcji + + + + Edit label + Zmień etykietę + + + + Show transaction details + Pokaż szczegóły transakcji + + + + Export Transaction History + Eksport historii transakcji + + + + Comma separated file (*.csv) + CSV (rozdzielany przecinkami) + + + + Confirmed + Potwierdzony + + + + Date + Data + + + + Type + Typ + + + + Label + Etykieta + + + + Address + Adres + + + + Amount + Kwota + + + + ID + ID + + + + Exporting Failed + Błąd przy próbie eksportu + + + + There was an error trying to save the transaction history to %1. + Wystąpił błąd przy próbie zapisu historii transakcji do %1. + + + + Exporting Successful + Eksport powiódł się + + + + The transaction history was successfully saved to %1. + Historia transakcji została zapisana do %1. + + + + Range: + Zakres: + + + + to + do + + + + WalletFrame + + + No wallet has been loaded. + Nie załadowano żadnego portfela. + + + + WalletModel + + + + Send Coins + Wyślij płatność + + + + InstantX doesn't support sending values that high yet. Transactions are currently limited to %n DASH. + InstantX nie obsługuje jeszcze tak wysokiej ilości. Transakcja jest obecnie ograniczona do %n DASHInstantX nie obsługuje jeszcze tak wysokich ilości. Transakcje są obecnie ograniczone do %n DASHInstantX nie obsługuje jeszcze tak wysokich ilości. Transakcje są obecnie ograniczone do %n DASH + + + + WalletView + + + &Export + &Eksportuj + + + + Export the data in the current tab to a file + Eksportuj dane z aktywnej karty do pliku + + + + Backup Wallet + Kopia Zapasowa Portfela + + + + Wallet Data (*.dat) + Dane Portfela (*.dat) + + + + Backup Failed + Nie udało się wykonać kopii zapasowej + + + + There was an error trying to save the wallet data to %1. + Wystąpił błąd przy próbie zapisu pliku portfela do %1. + + + + Backup Successful + Wykonano Kopię Zapasową + + + + The wallet data was successfully saved to %1. + Plik portfela został zapisany do %1. + + + + dash-core + + + %s, you must set a rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=dashrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com + + %s, musisz ustawić hasło rpc w pliku konfiguracji: +%s +Zalecane jest abyś użył te o to losowo stworzone hasło +rpcuser=dashrpc +rpcpassword=%s +(Nie musisz pamiętać tego hasła) +Twoje hasło NIE MOŻE być takie samo jak twój login. +Jeśli plik ten nie istnieje, stwórz go z uprawnieniami do odczytu tylko przez właściciela. +Zaleca się również aby ustawić alarm powiadomień tzw. alertnotify, aby dać ci znać w razie wystąpienia jekiegoś problemu, na przykład: alertnotify=echo %%s I -s "Dash Alert" admin@foo.com + + + + + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + Akceptowane szyfry (domyślny: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH)) + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + Wystąpił błąd podczas zakładania portu %u RPC służącego do nasłuchu na IPv4: %s + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + Wystąpił błąd podczas ustawiania portu %u służącego do nasłuchu na IPv6 przez co nastąpił powrót do do IPv4: s% + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Związany z danym adresem oraz zawsze prowadzący na nim nasłuch. Użyj [host]:oznaczenie dla IPv6 + + + + Cannot obtain a lock on data directory %s. Dash Core is probably already running. + Nie można zablokować katalogu danych %s. Prawdopodobnie Dash jest już uruchomiony. + + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + Utrzymuj limit tempa darmowych transakcji do <n>*1000 bitów na minutę (domyślnie: 15) + + + + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. + Darksend używa dokładnych denominowanych kwot do przesyłania środków, możliwe że musisz zanonimizować trochę więcej monet. + + + + Disable all Masternode and Darksend related functionality (0-1, default: 0) + Wyłącz wszystkie funkcje związane z Masternode i Darksend + + + + Enable instantx, show confirmations for locked transactions (bool, default: true) + Włącz instantx, pokaż potwierdzenia dla zamkniętych transakcji (bool, domyślnie: true) + + + + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) + Włącz możliwość automatyzacji Darksend dla środków zgromadzonych w tym portfelu (0-1, domyślnie: 0) + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. + Wejdź w regresyjny tryb testowy, który używa specjalnego łańcucha, w którym bloki mogą być rozwiązywane natychmiastowo. Tryb ten został stworzony dla narzędzi do testowania regresyjnego oraz dla tworzenia aplikacji. + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Wejdź w regresyjny tryb testowy, który używa specjalnego łańcucha, w którym bloki mogą być rozwiązywane natychmiastowo. + + + + Error: Listening for incoming connections failed (listen returned error %s) + Błąd: Nie powiodło się nasłuchiwanie połączeń przychodzących (nasłuch zwrócił błąd %s) + + + + 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 and coins were spent in the copy but not marked as spent here. + Transakcja została odrzucona! Może się to zdarzyć jeśli część monet z portfela została już wydana używając kopii pliku wallet.dat i nie zostało to tutaj uwzględnione. + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! + Błąd: Z powodu wielkości kwoty, swojego skomplikowania, lub użycia niedawno otrzymanych monet, transakcja ta wymaga uiszczenia opłaty o wysokości co najmniej %s + + + + Error: Wallet unlocked for anonymization only, unable to create transaction. + Błąd: Portfel jest odblokowany tylko dla celu anonimizacji, nie możliwe jest przeprowadzenie transakcji. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Wykonaj komendę po otrzymaniu odpowiedniego zawiadomienia lub po obserwacji bardzo długiego rozszczepienia (%s w konsoli jest zastąpiony przez wiadomość) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Wykonaj komendę kiedy zmienia się transakcja portfela (%s w konsoli jest zastąpione przez TxID) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Wykonaj komendę przy zmianie najlepszego bloku (%s w konsoli jest zastąpione przez hasz bloku) + + + + Fees smaller than this are considered zero fee (for transaction creation) (default: + Opłaty mniejsze niż ta, są uważane są za równoznaczne z brakiem opłat (dla przeprowadzenia transakcji) (domyślnie: + + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + Zrzuć zapisy aktywności bazy danych z pamięci na dysk co <n> megabajtów (domyślnie: 100) + + + + Found unconfirmed denominated outputs, will wait till they confirm to continue. + Znaleziono niepotwierdzone denominowane transakcje wyjściowe, poczekam aż zostaną one potwierdzone aby móc kontynuować dalej. + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + Jak szczegółowa jest weryfikacja bloków (0-4, domyślnie: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + W tym trybie -genproclimit kontroluje ile bloków jest generowanych natychmiastowo. + + + + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. + InstantX potrzebuje aby transakcja wejściowa miała co najmniej 6 potwierdzeń. Poczekaj kilka minut i spróbuj ponownie. + + + + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) + Prowadź nasłuch połączeń JSON-RPC na <port> (domyślnie: 9998 lub testnet: 19998) + + + + Name to construct url for KeePass entry that stores the wallet passphrase + Nazwa służąca do stworzenia linka do KeePass w którym trzymane jest hasło portfela + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Ilość czasu liczonego w sekundach jaki musi upłynąć zanim wadliwy peer znowu może spróbować nawiązać połączenie (domyślnie 86400) + + + + Output debugging information (default: 0, supplying <category> is optional) + . + + + + 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) + Dostarcz Darksend płynności przez rzadkie ale ciągłe mieszanie monet (0-100, domyślnie: 0, 1=bardzo często, wysokie opłaty, 100=bardzo rzadko, małe opłaty) + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + Jeśli pula adresów jest niska, pytaj o adresy peer przez podgląd DNS (domyślnie: 1 chyba że -connect) + + + + Set external address:port to get to this masternode (example: address:port) + Ustaw zewnętrzny adres:port aby połączyć się z tym masternodem (na przykład: adres:port) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + Ustaw maksymalny rozmiar transakcji o wysokim/niskim priorytecie w bajtach (domyślny: %d) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Ustaw liczbę wątków weryfikacji skryptu (%u do %d, 0 = auto, <0 = zostaw tyle rdzeni wolnych, domyślnie: %d) + + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + Ustaw limit na pracę procesora kiedy generowanie jest włączone (-1 = brak limitu, domyślnie: -1) + + + + Show N confirmations for a successfully locked transaction (0-9999, default: 1) + Pokaż N potwierdzeń dla skutecznie zamkniętej transakcji (0-9999, domyślnie: 1) + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + Ta wersja nie jest jeszcze gotowa na oficjalne wydanie - używaj jej na własne ryzyko - nie używaj tej wersji do kopania monet lub do świadczenia usług komercyjnych. + + + + Unable to bind to %s on this computer. Dash Core is probably already running. + Niezdolny do związania z %s na tym komputerze. Prawdopodobnie Dash jest już uruchomiony. + + + + Unable to locate enough Darksend denominated funds for this transaction. + Nie znaleziono wystarczających denominowanych środków Darksend do wykonania tej transakcji. + + + + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. + Nie znaleziono wystarczającej ilości nie zdenominowanych środków Darksend dla tej transakcji, które nie równają się 1000 DASH + + + + Unable to locate enough Darksend non-denominated funds for this transaction. + Nie znaleziono wystarczającej ilości zdenominowanych środków Darksend dla tej transakcji. + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) + Użyj osobnego proxy SOCK5 aby połączyć się z peerami przez sieć Tor (domyślnie: -proxy) + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Uwaga: -paytxfee jest bardzo wysoka! To jest opłata którą będziesz musiał uiścić jeśli dokonasz transakcji. + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. + Uwaga: Proszę sprawdzić czy data i czas na twoim komputerze są poprawne! Jeśli twój zegar nie pokazuje prawidłowej godziny to Dash może nie działać poprawnie. + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + Uwaga: Wygląda na to, że istnieją pewne rozbieżności w sieci! Możliwe, że niektórzy kopacze doświadczają problemów technicznych. + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + dadf + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + Uwaga: wystąpił błąd podczas odczytu pliku wallet.dat! Wszystkie klucze są odczytywane poprawnie ale dane transakcji lub wpis w bazie adresów jest niepoprawny lub nie istnieje. + + + + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + Uwaga: plik wallet.dat jest uszkodzony, ale dane zostały odzyskane! Oryginalny plik wallet.dat został zapisany jako wallet.{timestamp}.bak w %s; jeżeli twoje saldo lub transakcje są nieprawidłowe powinieneś przwyrócić ten plik z kopi zapasowej. + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Musisz ustawić rpcpassword=<password> w pliku konfiguracji: +%s +Jeżeli plik ten nie istnieje, stwórz go z uprawnieniami tylko do odczytu przez właściciela. + + + + You must specify a masternodeprivkey in the configuration. Please see documentation for help. + Musisz sprecyzować masternodeprivkey w konfiguracji. Proszę przeglądnij dokumentacje w celu pomocy. + + + + (default: 1) + (standardowo: 1) + + + + (default: wallet.dat) + (standardowo: wallet.dat) + + + + <category> can be: + <category> może być: + + + + Accept command line and JSON-RPC commands + Zaakceptuj linie poleceń oraz polecenia JSON-RPC + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Pozwól na połączenia z zewnątrz (domyślnie: 1 jeśli nie -proxy lub -connect) + + + + Add a node to connect to and attempt to keep the connection open + Dodaj węzeł do połączenia się oraz spróbuj utrzymać połączenie otwarte + + + + Allow DNS lookups for -addnode, -seednode and -connect + Pozwól na wyszukiwanie DNS dla -addnode, -seednode oraz -connect + + + + Allow JSON-RPC connections from specified IP address + Pozwól na połączenia JSON-RPC z określonego adresu IP + + + + Already have that input. + Ta wartość wejściowa już istnieje + + + + Always query for peer addresses via DNS lookup (default: 0) + Zawsze wysyłaj zapytanie o adres peera przez podgląd DNS (domyślnie: 0) + + + + Attempt to recover private keys from a corrupt wallet.dat + Spróbuj odzyskać prywatne klucze z uszkodzonego wallet.dat + + + + Block creation options: + Opcje tworzenia bloku + + + + Can't denominate: no compatible inputs left. + Niemożna denominować: Nie ma kompatybilnych transakcji wejściowych. + + + + Cannot downgrade wallet + Nie można obniżyć wersji portfela + + + + Cannot resolve -bind address: '%s' + Nie można rozwiązać -bind dla adresu adresu: '%s' + + + + Cannot resolve -externalip address: '%s' + Nie można rozwiązać -externalip dla adresu: '%s' + + + + Cannot write default address + Nie można zapisać domyślnych adresów + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Wyczyść listę transakcji w portfelu (opcja diagnostyczna; oznacza -rescan) + + + + Collateral is not valid. + Transakcja pod zastaw jest nie niewłaściwa. + + + + Collateral not valid. + Transakcja pod zastaw jest nie niewłaściwa. + + + + Connect only to the specified node(s) + Podłącz tylko do wyszczególnionych węzła(ów) + + + + Connect through SOCKS proxy + Połączenie poprzez SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) + Podłącz do JSON-RPC na porcie <port> (domyślny: 9998 lub sieć testowa: 19998) + + + + Connect to KeePassHttp on port <port> (default: 19455) + Podłącz do KeePassHttp na porcie <port> (domyślny: 19455) + + + + Connect to a node to retrieve peer addresses, and disconnect + Podłącz do węzła aby odzyskać adresy peerów, a potem odłącz + + + + Connection options: + Opcje połączenia: + + + + Corrupted block database detected + Wykryto uszkodzoną bazę danych bloków + + + + Dash Core Daemon + Dash Core Daemon + + + + Dash Core RPC client version + Wersja klienta Dash Core RPC + + + + Darksend is disabled. + Darksend jest wyłączony. + + + + Darksend options: + Opcje Darksend: + + + + Debugging/Testing options: + Opcje debugowania/testowania: + + + + Disable safemode, override a real safe mode event (default: 0) + Wyłącz tryb awaryjny, nadpisz przawdziwy tryb awaryjny (domyślny:0) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Wykryj własny adres IP (domyślny:1 kiedy nasłuchuje oraz nie ma -externalip) + + + + Do not load the wallet and disable wallet RPC calls + Nie wczytuj portfela oraz wyłącz połączenia RPC + + + + Do you want to rebuild the block database now? + Czy chcesz teraz przebudować bazę danych bloków? + + + + Done loading + Wczytywanie zakończone + + + + Downgrading and trying again. + + + + + Enable the client to act as a masternode (0-1, default: 0) + Upoważnia klienta aby działał jako masternode (0-1, domyślny: 0) + + + + Entries are full. + Wpisy są pełne. + + + + Error connecting to masternode. + Błąd podłączania do masternoda. + + + + Error initializing block database + Błąd podczas inicjowania bazy dancyh bloku + + + + Error initializing wallet database environment %s! + Błąd podczas inicjowania środowiska bazy danych portfela + + + + Error loading block database + Błąd wczytywania bloku bazy danych + + + + Error loading wallet.dat + Błąd wczytywania wallet.dat + + + + Error loading wallet.dat: Wallet corrupted + Błąd wczytywania wallet.dat: Portfel uszkodzony + + + + Error loading wallet.dat: Wallet requires newer version of Dash + Błą wczytywania wallet.dat: Portfel wymaga nowszej wersji Dash + + + + Error opening block database + Błąd otwarcia bloku bazy danych + + + + Error reading from database, shutting down. + Błąd odczytu bazy danych, następuje zamknięcie. + + + + Error recovering public key. + Błąd odzyskiwania klucza publicznego. + + + + Error + Błąd + + + + Error: Disk space is low! + Błąd: Przestrzeń dyskowa jest niska! + + + + Error: Wallet locked, unable to create transaction! + Błąd: Portfel zamknięty, stworzenie transakcji jest niemożliwe! + + + + Error: You already have pending entries in the Darksend pool + Błąd: Już masz oczekujące wejścia do puli Darksend + + + + Error: system error: + Błąd systemu + + + + Failed to listen on any port. Use -listen=0 if you want this. + Nie powiódł się nasłuch żadnego z portów. Użyj -listen=0 jeśli chcesz. + + + + Failed to read block info + Niepowodzenie przy odczycie informacji o bloku + + + + Failed to read block + Niepowodzenie przy odczycie bloku + + + + Failed to sync block index + Niepowodzenie przy synchronizacji indeksu bloku + + + + Failed to write block index + Niepowodzenie przy próbie zapisu indeksu bloku + + + + Failed to write block info + Niepowodzenie przy zapisie informacji o bloku + + + + Failed to write block + Niepowodzenie przy próbie zapisu bloku + + + + Failed to write file info + Niepowodzenie przy zapisie informacji o pliku + + + + Failed to write to coin database + Niepowodzenie przy zapisie do bazy danych monet + + + + Failed to write transaction index + NIepowodzenie przy zapisie indeksu transakcji + + + + Failed to write undo data + NIepowodzenie przy zapisie cofniętych danych + + + + Fee per kB to add to transactions you send + Opłata za kB do dodania do transakcji, którą wysyłasz + + + + Fees smaller than this are considered zero fee (for relaying) (default: + Opłaty mniejsze niż te, są uważane za zerowe opłaty (dla przekazywania) (domyślny: + + + + Force safe mode (default: 0) + Wymuś tryb bezpieczny (domyślny: 0) + + + + Generate coins (default: 0) + Generuj monety (domyślny: 0) + + + + Get help for a command + Poproś o pomoc dla polecenia + + + + How many blocks to check at startup (default: 288, 0 = all) + Ile bloków do sprawdzenia podczas uruchomienia (domyślny: 280, 0 = wszystkie) + + + + If <category> is not supplied, output all debugging information. + Jeśli <kategoria> nie jest dostarczona, utwórz informacje o debugowaniu. + + + + Ignore masternodes less than version (example: 70050; default : 0) + Ignoruj masternody niższe wersją od (przykład: 70050; domyślny: 0) + + + + Importing... + Importuje... + + + + Imports blocks from external blk000??.dat file + Importuje bloki z zewnętrznego pliku blk000??.dat + + + + Incompatible mode. + Niekompatybilny tryb. + + + + Incompatible version. + Niekompatybilna wersja. + + + + Incorrect or no genesis block found. Wrong datadir for network? + Znaleziono nieprawidłowy blok lub brak bloku początkowego. Nieprawidłowy katalog danych dla sieci + + + + Information + Informacja + + + + Initialization sanity check failed. Dash Core is shutting down. + Inicjalizacja kontroli poprawności nie powiodła się. Trwa zamykanie Dash Core + + + + Input is not valid. + Transakcja wejściowa jest niewłaściwa. + + + + InstantX options: + Opcje InstantX: + + + + Insufficient funds + Niewystarczające środki + + + + Insufficient funds. + Niewystarczające środki + + + + Invalid -onion address: '%s' + Nieprawidłowy adres -onion: '%s' + + + + Invalid -proxy address: '%s' + Nieprawidłowy adres -proxy: '%s' + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + Nieprawidłowa kwota dla -minrelaytxfee=<kwota>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + Nieprawidłowa kwota dla -mintxfee=<kwota>: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + Nieprawidłowa kwota dla -paytxfee=<kwota>: '%s' + + + + Invalid amount + Niewłaściwa ilość + + + + Invalid masternodeprivkey. Please see documenation. + Nieprawidłowy klucz prywatny masternoda. Przeczytaj dokumentację. + + + + Invalid private key. + Nieprawidłowy klucz prywatny. + + + + Invalid script detected. + Wykryto nieprawidłowy skrypt. + + + + KeePassHttp id for the established association + ID KeePassHttp dla ustanowionego skojażenia + + + + KeePassHttp key for AES encrypted communication with KeePass + Klucz KeePassHttp dla zaszyfrowanego metodą AES połączenia z KeePass + + + + Keep N dash anonymized (default: 0) + Utrzymuj N zanonimizowanych dash (domyślny: 0) + + + + Keep at most <n> unconnectable blocks in memory (default: %u) + Utrzymuj najwyżej <n> niepodłączalnych bloków w pamięci (domyślny: %u) + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + Utrzymuj najwyżej <n> niepodłączalnych transakcji w pamięci (domyślny: %u) + + + + Last Darksend was too recent. + Za mało czasu upłynęło od ostatniej transakcji Darksend. + + + + Last successful darksend action was too recent. + Za mało czasu upłynęło od ostatniej udanej transakcji Darksend. + + + + Limit size of signature cache to <n> entries (default: 50000) + Ogranicz rozmiar pamięci podrecznej podpisu do <n> wejść (domyślny: 50000) + + + + List commands + Lista poleceń + + + + Listen for connections on <port> (default: 9999 or testnet: 19999) + Nasłuchuj połączeń na <port> (domyślny: 9999 lub sieć testowa: 19999) + + + + Loading addresses... + Ładuje adresy... + + + + Loading block index... + Ładuje indeks bloków + + + + Loading masternode list... + Ładuję listę masternodów... + + + + Loading wallet... (%3.2f %%) + Ładuje portfel... (%3.2f %%) + + + + Loading wallet... + Ładuje portfel... + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + Rejestruj priorytet transakcji oraz opłatę za kB podczas wykopywania bloków (domyślny: 0) + + + + Maintain a full transaction index (default: 0) + Utrzymuj indeks pełnych transakcji (domyślny: 0) + + + + Maintain at most <n> connections to peers (default: 125) + Utrzymuj najwyżej <n> połączeń do peerów (domyślny: 125) + + + + Masternode options: + Opcje masternodów: + + + + Masternode queue is full. + Kolejka masternodów jest pełna. + + + + Masternode: + Masternod: + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Maksymalny bufor odbierający na każde połączenie, <n>*1000 bajtów (domyślny: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Maksymalny bufor wysyłania na każde połączenie, <n>*1000 bajtów (domyślny: 1000) + + + + Missing input transaction information. + Brak informacji o transakcji wejściowej. + + + + No compatible masternode found. + Nie znaleziono kompatybilnego masternoda. + + + + No funds detected in need of denominating. + Nie odnaleziono środków w celu denominacji. + + + + No masternodes detected. + Nie wykryto żadnych masternodów. + + + + No matching denominations found for mixing. + Nie znaleziono pasujących denominacji w celu miksowania. + + + + Non-standard public key detected. + Wykryto niestandardowy klucz publiczny. + + + + Not compatible with existing transactions. + Nie kompatybilny z istniejącymi transakcjami. + + + + Not enough file descriptors available. + Dostępny niewystarczający opis pliku. + + + + Not in the masternode list. + Nieobecny na liście masternodów. + + + + Only accept block chain matching built-in checkpoints (default: 1) + Akceptuj tylko łańcuch bloków pasujący do wbudowanych punktów kontrolnych (domyślny: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Połącz tylko do węzłów (node) w sieci <net> (IPv4, IPv6 lub Tor) + + + + Options: + Opcje: + + + + Password for JSON-RPC connections + Hasło dla połączeń JSON-RPC + + + + Prepend debug output with timestamp (default: 1) + Wyjście debugowania poprzedzone znacznikiem czasu (domyślny: 1) + + + + Print block on startup, if found in block index + Pokaż blok podczas startu, jeśli istnieje w indeksie bloków + + + + Print block tree on startup (default: 0) + Pokaż drzewo bloków podczas startu (domyślny: 0) + + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opcje RPC SSL: (przeglądnij Bitcoin Wiki po instrukcje ustawień SSL) + + + + RPC client options: + Opcje klienta RPC: + + + + RPC server options: + Opcje serwera RPC: + + + + Randomly drop 1 of every <n> network messages + Losowo odrzuć 1 co każde <n> komunikatów sieciowych + + + + Randomly fuzz 1 of every <n> network messages + Rozmyj losowo 1 co każde <n> komunikatów sieciowych + + + + Rebuild block chain index from current blk000??.dat files + Odbuduj łańcuch bloków (block chain) od bieżącego pliku blk000??.dat + + + + Rescan the block chain for missing wallet transactions + Skanuj ponownie łańcuch bloków (block chain) dla brakujących transakcji w portfelu + + + + Rescanning... + Ponowne skanowanie... + + + + Run a thread to flush wallet periodically (default: 1) + Włącz wątek aby od czasu do czasu wyrównać portfel (domyślny: 1) + + + + Run in the background as a daemon and accept commands + Działaj w tle jako daemon i akceptuj polecenia + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opcje SSL: (przeglądnij Bitcoin Wiki po instrukcje ustawień SSL) + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + Wybierz wersję SOCKS dla -proxy (4 lub 5, domyślny: 5) + + + + Send command to Dash Core + Wyślij polecenie do Dash Core + + + + Send commands to node running on <ip> (default: 127.0.0.1) + Wyślij polecenie do węzła (node) działającego na <ip> (domyślny: 127.0.0.1) + + + + Send trace/debug info to console instead of debug.log file + Wyślij informacje o debugowaniu/śladach do konsoli zamiast do pliku debug.log + + + + Server certificate file (default: server.cert) + Serwer pliku certyfikatu (domyślny: server.cert) + + + + Server private key (default: server.pem) + Serwer klucza prywatnego (domyślny: server.pem) + + + + Session not complete! + Sesja nie została ukończona! + + + + Session timed out (30 seconds), please resubmit. + Sesja wygasła (30 sekund), proszę spróbuj ponownie. + + + + Set database cache size in megabytes (%d to %d, default: %d) + Ustaw pamięć podręczną bazy danych w megabajtach (%d to %d, domyślny: %d) + + + + Set key pool size to <n> (default: 100) + Ustaw ilość kluczy w key pool do <n> (domyślny: 100) + + + + Set maximum block size in bytes (default: %d) + Ustaw maksymalny rozmiar bloku w bajtach (domyślny: %d) + + + + Set minimum block size in bytes (default: 0) + Ustaw minimalny rozmiar bloku w bajtach (domyślny: 0) + + + + Set the masternode private key + Ustaw klucz prywatny masternoda + + + + Set the number of threads to service RPC calls (default: 4) + Ustaw liczbę wątków dla usługi połączen RPC (domyślny: 4) + + + + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + Ustaw flagę DB_PRIVATE w środowisku db portfela (domyślny: 1) + + + + Show all debugging options (usage: --help -help-debug) + Pokaż wszystkie opcje debugowania (użyj: --help -help-debug) + + + + Show benchmark information (default: 0) + Pokaż nformacje o benchmarku (domyślny: 0) + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Zmniejsz plik debug.log podczas włączania klienta (domyślny: 1 kiedy nie ma -debug) + + + + Signing failed. + Przypisywanie nie powiodło się. + + + + Signing timed out, please resubmit. + Sesja logowania wygasła, proszę spróbować ponownie. + + + + Signing transaction failed + Podpisywanie transakcji nie powiodło się + + + + Specify configuration file (default: dash.conf) + Sprecyzuj plik konfiguracyjny (domyślny: dash.conf) + + + + Specify connection timeout in milliseconds (default: 5000) + Sprecyzuj limit czasu połączenia w milisekundach (domyślny: 5000) + + + + Specify data directory + Sprecyzuj katalog danych + + + + Specify masternode configuration file (default: masternode.conf) + Sprecyzuj plik konfiguracji masternoda (domyślny: masternode.conf) + + + + Specify pid file (default: dashd.pid) + Sprecyjzuj plik pid (domyślny: dashd.pid) + + + + Specify wallet file (within data directory) + Sprecyzuj plik wallet (w katalogu danych) + + + + Specify your own public address + Sprecyzuj swój adres publiczny + + + + Spend unconfirmed change when sending transactions (default: 1) + Zużyj niepotwierdzoną resztę podczas wysyłania transakcji (domuślny: 1) + + + + Start Dash Core Daemon + Włącz Dash Core Daemon + + + + System error: + Błąd systemu: + + + + This help message + Ten komunikat pomocny + + + + This is intended for regression testing tools and app development. + Używa się tego dla regresywnego testowania narzędzi (opcji) oraz rozwoju aplikacji. + + + + This is not a masternode. + To nie jest masternod. + + + + Threshold for disconnecting misbehaving peers (default: 100) + Próg dla niewłaściwie działających, odłączających sie peerów (domyślny: 100) + + + + To use the %s option + Aby użyć opcję %s + + + + Transaction amount too small + Zbyt mała kwota + + + + Transaction amounts must be positive + Kwota musi być dodatnia + + + + Transaction created successfully. + Skutecznie utworzono transakcję. + + + + Transaction fees are too high. + Opłaty za transakcję są zbyt wysokie. + + + + Transaction not valid. + Transakcja niewłaściwa. + + + + Transaction too large + Za duża transakcja + + + + Unable to bind to %s on this computer (bind returned error %s) + Nie udało się powiązać do %s na tym komputerze (powiązanie zwróciło błąd %s) + + + + Unable to sign masternode payment winner, wrong key? + Nie można podpisać zwyciezcy płatności masternoda, nieprawidłowy klucz? + + + + Unable to sign spork message, wrong key? + Niemożliwe podpisanie wiadomości spork, nieprawidłowy klucz? + + + + Unknown -socks proxy version requested: %i + Nieznana wersja -socks proxy zażądana: %i + + + + Unknown network specified in -onlynet: '%s' + Nieznana sieć określona w -onlynet: '%s' + + + + Upgrade wallet to latest format + Ulepsz plik wallet.dat do nowego formatu + + + + Usage (deprecated, use dash-cli): + Użycie (niewłaściwy, użyj dash-cli): + + + + Usage: + Użycie: + + + + Use KeePass 2 integration using KeePassHttp plugin (default: 0) + Użyj zintegrowany KeePass 2 używając wtyczkę KeePass Http (domyślny: 0) + + + + Use N separate masternodes to anonymize funds (2-8, default: 2) + Użyj N oddzielnych masternodów aby zanonimizować pieniądze (2-8, domyślny: 2) + + + + Use OpenSSL (https) for JSON-RPC connections + Użyj OpenSSL (https) dal połączeń JSON-RPC + + + + Use UPnP to map the listening port (default: 0) + Użyj UPnP aby zmapować używany port (domyślny: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + Użyj UPnP aby zmapować używany port (domyślny: 1 kiedy nasłuchuje) + + + + Use the test network + Użyj sieci testowej + + + + Username for JSON-RPC connections + Nazwa użytkownika dla połączeń JSON-RPC + + + + Value more than Darksend pool maximum allows. + Wartość jest większa niż ta maksymalnie dopuszczalna przez Darksend pool + + + + Verifying blocks... + Weryfikacja bloków... + + + + Verifying wallet... + Weryfikacja portfela... + + + + Wait for RPC server to start + Zaczekaj na start serwera RPC + + + + Wallet %s resides outside data directory %s + Plik wallet %s znajduje się poza katalogiem danych %s + + + + Wallet is locked. + Portfel jest zamknięty. + + + + Wallet needed to be rewritten: restart Dash to complete + Portfel musi zostać ponownie zapisany: uruchom Dash ponownie aby dokończyć operacje + + + + Wallet options: + Opcje portfela: + + + + Warning + Ostrzeżenie + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + Ostrzeżenie: Niewłaściwy argument -debugnet zignorowany, użyj -debug=net + + + + Warning: This version is obsolete, upgrade required! + Ostrzeżenie: Wersja nieaktualna, zalecana aktualizacja! + + + Wrong state. + + + + + You need to rebuild the database using -reindex to change -txindex + Musisz odnowić bazę danych używając -reindex aby zmienić -txindex + + + + Zapping all transactions from wallet... + Zappowanie wszystkich transakcji z portfela + + + + on startup + podczas uruchomienia + + + + version + wersja + + + + wallet.dat corrupt, salvage failed + Plik wallet.dat zepsuty, odzyskiwanie nie powiodło się + + + \ No newline at end of file diff --git a/src/qt/locale/dash_pt.ts b/src/qt/locale/dash_pt.ts new file mode 100644 index 0000000000..9fe67a7d58 --- /dev/null +++ b/src/qt/locale/dash_pt.ts @@ -0,0 +1,5291 @@ + + + AboutDialog + + + About Dash Core + Acerca do Dash Core + + + + <b>Dash Core</b> version + Versão do <b>Dash Core</b> + + + + Copyright &copy; 2009-2014 The Bitcoin Core developers. +Copyright &copy; 2014-YYYY The Dash Core developers. + Copyright &copy; 2009-2014 Os programadores Bitcoin Core. +Copyright &copy; 2014-YYYY Os programadores Dash Core. + + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +Este é um programa experimental. + +Distribuído sob uma licença de software MIT/X11, por favor verifique o ficheiro anexo license.txt ou http://www.opensource.org/licenses/mit-license.php. + +Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no OpenSSL Toolkit (http://www.openssl.org/), software criptográfico escrito por Eric Young (eay@cryptsoft.com) e software UPnP escrito por Thomas Bernard. + + + + + Copyright + Copyright + + + + The Bitcoin Core developers + Os programadores Bitcoin Core + + + + The Dash Core developers + Os programadores Dash Core + + + + + (%1-bit) + (%1-bit) + + + + AddressBookPage + + + Double-click to edit address or label + Clique duas vezes para editar o endereço ou o rótulo + + + + Create a new address + Criar novo endereço + + + + &New + &Novo + + + + Copy the currently selected address to the system clipboard + Copiar o endereço seleccionado para a área de transferência + + + + &Copy + &Copiar + + + + Delete the currently selected address from the list + Apagar o endereço seleccionado + + + + &Delete + &Apagar + + + + Export the data in the current tab to a file + Exportar os dados do separador actual para um ficheiro + + + + &Export + &Exportar + + + + C&lose + &Fechar + + + + Choose the address to send coins to + Escolha o endereço para onde enviar as moedas + + + + Choose the address to receive coins with + Escolha o endereço onde deseja receber as moedas + + + + C&hoose + E&scolha + + + + Sending addresses + Endereços para envio + + + + Receiving addresses + Endereços para recepção + + + + These are your Dash addresses for sending payments. Always check the amount and the receiving address before sending coins. + Estes são os endereços Dash para envio de pagamentos. Confirme sempre a quantia e o endereço antes de enviar as moedas. + + + + These are your Dash addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Estes são os seus endereços Dash para receber pagamentos. É recomendado que seja usado um novo endereço para cada transacção. + + + + &Copy Address + &Copiar Endereço + + + + Copy &Label + Copiar &Rótulo + + + + &Edit + &Editar + + + + Export Address List + Exportar lista de endereços + + + + Comma separated file (*.csv) + Ficheiro separado por vírgulas (*.csv) + + + + Exporting Failed + A exportação falhou + + + + There was an error trying to save the address list to %1. + Ocorreu um erro ao tentar gravar a lista de endereços para %1. + + + + AddressTableModel + + + Label + Rótulo + + + + Address + Endereço + + + + (no label) + (sem rótulo) + + + + AskPassphraseDialog + + + Passphrase Dialog + Diálogo de Palavra Passe + + + + Enter passphrase + Palavra Passe Actual + + + + New passphrase + Nova Palavra Passe + + + + Repeat new passphrase + Repita a Nova Palavra Passe + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Serve para desactivar o envio de dinheiro quando a conta do SO for comprometida. Não oferece segurança real. + + + + For anonymization only + Apenas para anonimização + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Insira a nova palavra-passe para a carteira.<br/>Por favor use uma palavra-chave com <b>10 ou mais caracteres aleatórios</b>, ou <b>8 ou mais palavras</b>. + + + + Encrypt wallet + Cifrar carteira + + + + This operation needs your wallet passphrase to unlock the wallet. + Esta operação necessita da sua palavra-passe para desbloquear a carteira. + + + + Unlock wallet + Desbloquear carteira + + + + This operation needs your wallet passphrase to decrypt the wallet. + Esta operação necessita da sua palavra-passe para decifrar a carteira. + + + + Decrypt wallet + Decifrar carteira + + + + Change passphrase + Mudar palavra-passe + + + + Enter the old and new passphrase to the wallet. + Insira a antiga e a nova palavra-passe para a carteira. + + + + Confirm wallet encryption + Confirme cifra da carteira + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Atenção: Se cifrar a carteira e perder a palavra-passe, irá <b>PERDER TODAS AS SUAS MOEDAS DASH</b>! + + + + Are you sure you wish to encrypt your wallet? + Tem a certeza que quer cifrar a carteira? + + + + + Wallet encrypted + Carteira cifrada + + + + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + O cliente Dash irá fechar para finalizar o processo de cifra. Lembre-se que cifrar a sua carteira não consegue proteger totalmente as suas dashs contra roubos feitos por malware presente no seu computador. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + IMPORTANTE: Quaisquer copias de segurança feitas anteriormente à sua carteira, devem ser substituídas pelo novo ficheiro cifrado. Por razões de segurança, as copias de segurança anteriores não cifradas ficarão obsoletas assim que comece a usar a nova carteira cifrada, + + + + + + + Wallet encryption failed + Cifra da carteira falhou + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + A cifra da carteira falhou devido a um erro interno. A sua carteira não foi cifrada. + + + + + The supplied passphrases do not match. + As palavras-passe fornecidas não coincidem. + + + + Wallet unlock failed + O desbloqueio da carteira falhou + + + + + + The passphrase entered for the wallet decryption was incorrect. + A palavra-passe fornecida para decifrar a carteira está incorrecta. + + + + Wallet decryption failed + Decifra da carteira falhou + + + + Wallet passphrase was successfully changed. + A palavra-passe foi alterada com sucesso. + + + + + Warning: The Caps Lock key is on! + Atenção: O Caps Lock está activo! + + + + BitcoinGUI + + + Dash Core + Dash Core + + + + Wallet + Carteira + + + + Node + + + + + + [testnet] + [testnet] + + + + &Overview + &Global + + + + Show general overview of wallet + Mostrar visão global da carteira + + + + &Send + &Enviar + + + + Send coins to a Dash address + Enviar moedas para um endereço Dash + + + + &Receive + &Receber + + + + Request payments (generates QR codes and dash: URIs) + Solicitar pagamentos (gera códigos QR e dash: URIs) + + + + &Transactions + &Transacções + + + + Browse transaction history + Visualiza histórico de transacções + + + + E&xit + &Sair + + + + Quit application + Sair da aplicação + + + + + &About Dash Core + &Acerca do Dash Core + + + + Show information about Dash + Mostra informação acerca do Dash + + + + + About &Qt + Acerca do &Qt + + + + Show information about Qt + Mostra informação acerca do Qt + + + + &Options... + &Opções... + + + + Modify configuration options for Dash + Modificar opções de configuração do Dash + + + + + &Show / Hide + &Mostar / Esconder + + + + Show or hide the main Window + Mostrar ou esconder a Janela principal + + + + &Encrypt Wallet... + &Cifrar Carteira + + + + Encrypt the private keys that belong to your wallet + Cifra as chaves privadas que pertencem à sua carteira + + + + &Backup Wallet... + Copia de &Segurança + + + + Backup wallet to another location + Criar copia de segurança da carteira noutra localização + + + + &Change Passphrase... + &Mudar Palavra-passe + + + + Change the passphrase used for wallet encryption + Mudar a palavra-passe usada na cifra da carteira + + + + &Unlock Wallet... + &Desbloquear Carteira + + + + Unlock wallet + Desbloquear carteira + + + + &Lock Wallet + &Bloquear Carteira + + + + Sign &message... + &Assinar Mensagem + + + + Sign messages with your Dash addresses to prove you own them + Assine mensagens com os seus endereços Dash para provar que são seus + + + + &Verify message... + &Verificar Mensagem + + + + Verify messages to ensure they were signed with specified Dash addresses + Verifica mensagens para garantir que foram assinadas com um endereço Dash específico + + + + &Information + &Informação + + + + Show diagnostic information + Mostra informação de diagnóstico + + + + &Debug console + Consola de &Depuração + + + + Open debugging console + Abrir consola de depuração + + + + &Network Monitor + Monitor de &Rede + + + + Show network monitor + Mostrar monitor de rede + + + + Open &Configuration File + Abrir Ficheiro de &Configuração + + + + Open configuration file + Abrir ficheiro de configuração + + + + &Sending addresses... + &Endereços de envio... + + + + Show the list of used sending addresses and labels + Mostra a lista de endereços de envio e respectivos rótulos + + + + &Receiving addresses... + Endereços de &Recepção... + + + + Show the list of used receiving addresses and labels + Mostra a lista de endereços de recepção e respectivos rótulos + + + + Open &URI... + Abrir &URI... + + + + Open a dash: URI or payment request + Abre um dash: URI ou solicitação de pagamento + + + + &Command-line options + Opções de linha de &comandos + + + + Show the Dash Core help message to get a list with possible Dash command-line options + Mostra a mensagem de ajuda do Dash Core para obter a lista com as possíveis opções de linha de comandos + + + + &File + &Ficheiro + + + + &Settings + &Definições + + + + &Tools + &Ferramentas + + + + &Help + &Ajuda + + + + Tabs toolbar + Barra de ferramentas + + + + + Dash client + Cliente Dash + + + + %n active connection(s) to Dash network + %n ligação activa à rede Dash%n ligações activas à rede Dash + + + + Synchronizing with network... + A sincronizar com a rede... + + + + Importing blocks from disk... + A carregar blocos do disco... + + + + Reindexing blocks on disk... + A indexar blocos no disco... + + + + No block source available... + Nenhuma fonte de blocos disponível... + + + + Processed %1 blocks of transaction history. + %1 blocos do histórico de transacções processados. + + + + Up to date + Actualizado + + + + %n hour(s) + %n hora%n horas + + + + %n day(s) + %n dia%n dias + + + + + %n week(s) + %n semana%n semanas + + + + %1 and %2 + %1 e %2 + + + + %n year(s) + %n ano%n anos + + + + %1 behind + %1 de atraso + + + + Catching up... + A alcançar + + + + Last received block was generated %1 ago. + O último bloco recebido foi gerado à %1. + + + + Transactions after this will not yet be visible. + Transacções posteriores ainda não serão visíveis. + + + + Dash + Dash + + + + Error + Erro + + + + Warning + Aviso + + + + Information + Informação + + + + Sent transaction + Transacção enviada + + + + Incoming transaction + Transacção recebida + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Data: %1 +Quantia: %2 +Tipo: %3 +Endereço: %4 + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + A carteira encontra-se <b>cifrada</b> e actualmente <b>desbloqueada</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only + A carteira encontra-se <b>cifrada</b> e actualmente <b>desbloqueada</b> somente para anonimização + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + A carteira encontra-se <b>cifrada</b> e actualmente <b>bloqueada</b> + + + + A fatal error occurred. Dash can no longer continue safely and will quit. + Ocorreu um erro fatal. O cliente Dash não pode continuar de forma segura e irá fechar. + + + + ClientModel + + + Network Alert + Alerta de Rede + + + + CoinControlDialog + + + Coin Control Address Selection + Selecção de Endereços do Coin Control + + + + Quantity: + Quantidade: + + + + Bytes: + Bytes: + + + + Amount: + Quantia: + + + + Priority: + Prioridade: + + + + Fee: + Taxa: + + + + Low Output: + Baixo débito: + + + + After Fee: + Com taxa: + + + + Change: + Troco: + + + + (un)select all + (des)seleccionar todos + + + + Tree mode + Vista em árvore + + + + List mode + Vista em lista + + + + (1 locked) + (1 bloqueada) + + + + Amount + Quantia + + + + Label + Rótulo + + + + Address + Endereço + + + + Darksend Rounds + Voltas Darksend + + + + Date + Data + + + + Confirmations + Confirmações + + + + Confirmed + Confirmada + + + + Priority + Prioridade + + + + Copy address + Copiar endereço + + + + Copy label + Copiar rótulo + + + + + Copy amount + Copiar quantia + + + + Copy transaction ID + Copiar ID de transacção + + + + Lock unspent + Bloquear não gasto + + + + Unlock unspent + Desbloquear não gasto + + + + Copy quantity + Copiar quantidade + + + + Copy fee + Copiar taxa + + + + Copy after fee + Copiar depois da taxa + + + + Copy bytes + Copiar bytes + + + + Copy priority + Copiar prioridade + + + + Copy low output + Copiar baixo débito + + + + Copy change + Copiar troco + + + + highest + a-mais-alta + + + + higher + mais-alta + + + + high + alta + + + + medium-high + média-alta + + + + n/a + n/d + + + + + medium + média + + + + low-medium + média-baixa + + + + low + baixa + + + + lower + mais-baixa + + + + lowest + a-mais-baixa + + + + (%1 locked) + (%1 bloqueado) + + + + none + nenhuma + + + + Dust + Poeira + + + + yes + sim + + + + + no + não + + + + This label turns red, if the transaction size is greater than 1000 bytes. + Este rótulo fica vermelho se o tamanho da transacção exceder 1000 bytes. + + + + + This means a fee of at least %1 per kB is required. + Isto significa que é necessária uma taxa de pelo menos %1 por kB. + + + + Can vary +/- 1 byte per input. + Pode variar +/- 1 byte por entrada. + + + + Transactions with higher priority are more likely to get included into a block. + Transacções com prioridade mais alta tem uma maior probabilidade de ser incluídas num bloco. + + + + This label turns red, if the priority is smaller than "medium". + Este rótulo fica vermelho se a prioridade for inferior a "média". + + + + This label turns red, if any recipient receives an amount smaller than %1. + Este rótulo fica vermelho se algum destinatário receber uma quantia inferior a %1. + + + + + This means a fee of at least %1 is required. + Isto significa que é necessária uma taxa de pelo menos %1. + + + + Amounts below 0.546 times the minimum relay fee are shown as dust. + Quantia inferiores a 0.546 vezes a taxa mínima de retransmissão são mostradas como poeira. + + + + This label turns red, if the change is smaller than %1. + Este rótulo fica vermelho se o troco for inferior a %1. + + + + + (no label) + (sem rótulo) + + + + change from %1 (%2) + troco de %1 (%2) + + + + (change) + (troco) + + + + DarksendConfig + + + Configure Darksend + Configurar Darksend + + + + Basic Privacy + Privacidade Básica + + + + High Privacy + Privacidade Alta + + + + Maximum Privacy + Privacidade Máxima + + + + Please select a privacy level. + Por favor seleccione um nível de privacidade. + + + + Use 2 separate masternodes to mix funds up to 1000 DASH + Usar 2 masternodes distintos para misturar os fundos até 1000DRK + + + + Use 8 separate masternodes to mix funds up to 1000 DASH + Usar 8 masternodes distintos para misturar os fundos até 1000DRK + + + + Use 16 separate masternodes + Usar 16 masternodes + + + + This option is the quickest and will cost about ~0.025 DASH to anonymize 1000 DASH + Esta opção é a mais rápida e irá custar cerca de ~0.025 DASH para anonimizar 1000 DASH + + + + This option is moderately fast and will cost about 0.05 DASH to anonymize 1000 DASH + Esta opção é relativamente rápida e irá custar cerca de ~0.05 DASH para anonimizar 1000 DASH + + + + 0.1 DASH per 1000 DASH you anonymize. + 0.1 DASH por cada 1000 DASH a anonimizar. + + + + This is the slowest and most secure option. Using maximum anonymity will cost + Esta é a opção mais lenta e mais segura. Usando anonimização máxima irá custar + + + + + + Darksend Configuration + Configuração Darksend + + + + Darksend was successfully set to basic (%1 and 2 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend foi colocado com sucesso no modo básico (%1 e 2 voltas). Pode mudar esta definição em qualquer altura abrindo o ecrã de configuração Dash. + + + + Darksend was successfully set to high (%1 and 8 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend foi colocado com sucesso no modo alto (%1 e 8 voltas). Pode mudar esta definição em qualquer altura abrindo o ecrã de configuração Dash. + + + + Darksend was successfully set to maximum (%1 and 16 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend foi colocado com sucesso no modo máximo (%1 e 16 voltas). Pode mudar esta definição em qualquer altura abrindo o ecrã de configuração Dash. + + + + EditAddressDialog + + + Edit Address + Editar Endereço + + + + &Label + &Rótulo + + + + The label associated with this address list entry + Rótulo associado com este item da lista de endereços + + + + &Address + &Endereço + + + + The address associated with this address list entry. This can only be modified for sending addresses. + O endereço associado com este item da lista. Isto só pode ser modificado para endereços de envio. + + + + New receiving address + Novo endereço de recepção + + + + New sending address + Novo endereço de envio + + + + Edit receiving address + Editar endereço de recepção + + + + Edit sending address + Editar endereço de envio + + + + The entered address "%1" is not a valid Dash address. + O endereço introduzido "%1" não é um endereço Dash válido. + + + + The entered address "%1" is already in the address book. + O endereço introduzido "%1" já se encontra no livro de endereços. + + + + Could not unlock wallet. + Não foi possível desbloquear carteira. + + + + New key generation failed. + Falhou a geração de nova chave. + + + + FreespaceChecker + + + A new data directory will be created. + Será criada uma nova pasta de dados. + + + + name + nome + + + + Directory already exists. Add %1 if you intend to create a new directory here. + A pasta já existe. Adicione %1 se desejar criar uma nova pasta aqui. + + + + Path already exists, and is not a directory. + O caminho já existe e não é uma pasta. + + + + Cannot create data directory here. + Não é possível criar a pasta de dados aqui. + + + + HelpMessageDialog + + + Dash Core - Command-line options + Dash Core - Opções de linha de comandos + + + + Dash Core + Dash Core + + + + version + versão + + + + Usage: + Utilização: + + + + command-line options + opções de linha de comandos + + + + UI options + Opções do interface + + + + Choose data directory on startup (default: 0) + Escolher pasta de dados no arranque (omissão: 0) + + + + Set language, for example "de_DE" (default: system locale) + Defina a linguagem, por exemplo "pt-PT" (omissão: linguagem do sistema) + + + + Start minimized + Arrancar minimizado + + + + Set SSL root certificates for payment request (default: -system-) + Definir certificados de raiz SSL para solicitações de pagamento (omissão: -sistema-) + + + + Show splash screen on startup (default: 1) + Mostrar ecrã de boas vindas no arranque (omissão: 1) + + + + Intro + + + Welcome + Bem-vindo + + + + Welcome to Dash Core. + Bem-vindo ao Dash Core. + + + + As this is the first time the program is launched, you can choose where Dash Core will store its data. + Como esta é a primeira vez que o programa é executado, pode escolher onde o cliente Dash Core irá guardar os seus dados. + + + + Dash Core will download and store a copy of the Dash block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + O cliente Dash Core irá descarregar e guardar uma copia da cadeia de blocos Dash. Pelo menos %1GB de dados serão guardados nesta pasta e irá aumentar com o tempo. A carteira também ficará guardada nesta pasta. + + + + Use the default data directory + Usar a pasta de dados por omissão + + + + Use a custom data directory: + Usar uma pasta de dados personalizada + + + + Dash + Dash + + + + Error: Specified data directory "%1" can not be created. + Erro: A pasta especificada "%1" não pode ser criada. + + + + Error + Erro + + + + GB of free space available + GB de espaço livre disponível + + + + (of %1GB needed) + (de %1GB necessários) + + + + OpenURIDialog + + + Open URI + Abrir URI + + + + Open payment request from URI or file + Abrir solicitação de pagamento a partir de um URI ou ficheiro + + + + URI: + URI: + + + + Select payment request file + Seleccionar ficheiro de solicitação de pagamento + + + + Select payment request file to open + Seleccionar ficheiro de solicitação de pagamento para abrir + + + + OptionsDialog + + + Options + Opções + + + + &Main + &Geral + + + + Automatically start Dash after logging in to the system. + Executar automaticamente o cliente Dash quando entrar no sistema. + + + + &Start Dash on system login + &Iniciar o cliente Dash ao entrar no sistema + + + + Size of &database cache + Tamanho da &cache de dados + + + + MB + MB + + + + Number of script &verification threads + Número de processos de &verificação de scripts + + + + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = deixar este número de cores livres) + + + + <html><head/><body><p>This setting determines the amount of individual masternodes that an input will be anonymized through. More rounds of anonymization gives a higher degree of privacy, but also costs more in fees.</p></body></html> + <html><head/><body><p>Esta opção determina o número de masternodes pelos quais uma entrada será anonimizada. Mais voltas de anonimização fornecem um maior grau de privacidade, mas também tem um custo mais elevado em taxas.</p></body></html> + + + + Darksend rounds to use + Número de voltas Darksend a usar + + + + This amount acts as a threshold to turn off Darksend once it's reached. + Esta quantia actua como um limite, a partir do qual o Darksend é desligado. + + + + Amount of Dash to keep anonymized + Quantia de Dash a manter anonimizada + + + + W&allet + C&arteira + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. + Taxa de transacção opcional por kB que ajuda a garantir que as suas transacções são processadas rapidamente. A maioria das transacções são de 1 kB. + + + + Pay transaction &fee + Pagar &taxa da transacção + + + + Expert + Avançado + + + + Whether to show coin control features or not. + Se deve mostrar as opções de coin control. + + + + Enable coin &control features + Activar opções coin &control + + + + 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. + Se desabilitar a funcionalidade de gastar o troco não confirmado, este troco não poderá ser usado até que a transacção tenha pelo menos uma confirmação. Isto também afecta a maneira como o seu saldo é calculado. + + + + &Spend unconfirmed change + &Gastar troco não confirmado + + + + &Network + &Rede + + + + Automatically open the Dash client port on the router. This only works when your router supports UPnP and it is enabled. + Abrir automaticamente a porta do cliente Dash no router. Isto só funciona quando o seu router suporta UPnP e este está activo. + + + + Map port using &UPnP + Mapear porta usando &UPnP + + + + Connect to the Dash network through a SOCKS proxy. + Efectuar a ligação à rede Dash através de um proxy SOCKS. + + + + &Connect through SOCKS proxy (default proxy): + &Ligar através de um proxy SOCKS (proxy por omissão) + + + + Proxy &IP: + IP do proxy + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Endereço IP do proxy (ex. IPv4: 127.0.0.1 / IPv6: ::1) + + + + &Port: + &Porta: + + + + Port of the proxy (e.g. 9050) + Porta do servidor proxy (ex. 9050) + + + + SOCKS &Version: + &Versão SOCKS: + + + + SOCKS version of the proxy (e.g. 5) + Versão do proxy SOCKS (ex. 5) + + + + &Window + &Janela + + + + Show only a tray icon after minimizing the window. + Somente mostrar o ícone no tabuleiro após minimizar aplicação + + + + &Minimize to the tray instead of the taskbar + &Minimizar para o tabuleiro, em vez da barra de tarefas + + + + 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. + Minimizar em vez de fechar ao sair da aplicação. Quando esta opção está activada, a aplicação só será fechada quando seleccionar Sair no menu. + + + + M&inimize on close + M&inimizar ao fechar + + + + &Display + &Interface + + + + User Interface &language: + &Linguagem do interface: + + + + The user interface language can be set here. This setting will take effect after restarting Dash. + A linguagem do interface pode ser definida aqui. Esta definição terá efeito depois de reiniciar a aplicação. + + + + Language missing or translation incomplete? Help contributing translations here: +https://www.transifex.com/projects/p/dash/ + Linguagem não encontrada ou tradução incompleta? Ajude a traduzir aqui: +https://www.transifex.com/projects/p/dash/ + + + + &Unit to show amounts in: + &Unidade por omissão usada para mostrar as quantias: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Escolha a unidade subdivisão por omissão para mostrar na interface e no envio de moedas. + + + + Whether to show Dash addresses in the transaction list or not. + Se deseja mostrar os endereços Dash na lista de transacções ou não. + + + + &Display addresses in transaction list + &Mostrar endereços na lista de transacções + + + + + 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 |. + URLs de terceiros (ex. explorador de blocos) que aparecem no separador de transacções como itens do menu de contexto. %s no URL é substituído pelo hash da transacção. URLs múltiplos são separados pela barra vertical |. + + + + Third party transaction URLs + URLs de transacções de terceiros + + + + Active command-line options that override above options: + Opções activas de linha de comandos que sobrescrevem as opções acima: + + + + Reset all client options to default. + Reiniciar todas as opções do cliente para os valores por omissão. + + + + &Reset Options + &Reiniciar Opções + + + + &OK + &OK + + + + &Cancel + &Cancelar + + + + default + omissão + + + + none + nenhum + + + + Confirm options reset + Confirme reinicialização das opções + + + + + Client restart required to activate changes. + Para activar as alterações é necessário reiniciar o cliente. + + + + Client will be shutdown, do you want to proceed? + O cliente será fechado, deseja continuar? + + + + This change would require a client restart. + Esta alteração necessita que o cliente seja reiniciado. + + + + The supplied proxy address is invalid. + O endereço proxy fornecido é inválido. + + + + OverviewPage + + + Form + De + + + + Wallet + Carteira + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Dash network after a connection is established, but this process has not completed yet. + A informação mostrada pode estar desactualizada. A sua carteira sincroniza automaticamente com a rede Dash assim que for estabelecida uma ligação, mas este processo ainda não terminou. + + + + Available: + Disponível: + + + + Your current spendable balance + O seu saldo disponível + + + + Pending: + Pendente: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Total de transacções que ainda não foram confirmadas e não contam para o saldo disponível + + + + Immature: + Imaturo: + + + + Mined balance that has not yet matured + Saldo minado que ainda não atingiu a maturidade + + + + Total: + Total: + + + + Your current total balance + O seu saldo total + + + + Status: + Estado: + + + + Enabled/Disabled + Activado/Desactivado + + + + Completion: + Progresso: + + + + Darksend Balance: + Saldo Darksend: + + + + 0 DASH + 0 DASH + + + + Amount and Rounds: + Quantia e Voltas: + + + + 0 DASH / 0 Rounds + 0 DASH / 0 Voltas + + + + Submitted Denom: + Denominação submetida: + + + + The denominations you submitted to the Masternode. To mix, other users must submit the exact same denominations. + As denominações que foram submetidas para o Masternode. Para misturar, outros utilizadores terão que submeter denominações iguais. + + + + n/a + n/d + + + + + + + Darksend + Darksend + + + + Start/Stop Mixing + Iniciar/Parar Mistura + + + + (Last Message) + (Última Mensagem) + + + + Try to manually submit a Darksend request. + Tentar submeter um pedido Darksend manualmente. + + + + Try Mix + Tentar Mistura + + + + Reset the current status of Darksend (can interrupt Darksend if it's in the process of Mixing, which can cost you money!) + Reinicia o estado actual Darksend (pode interromper o Darksend mesmo quando em processo de Mistura, o que pode ter custos!) + + + + Reset + Reiniciar + + + + <b>Recent transactions</b> + <b>Transacções recentes</b> + + + + + + out of sync + fora de sincronia + + + + + Disabled + Desactivado + + + + + + Start Darksend Mixing + Iniciar Mistura Darksend + + + + + Stop Darksend Mixing + Parar Mistura Darksend + + + + No inputs detected + Nenhuma entrada detectada + + + + Found unconfirmed denominated outputs, will wait till they confirm to recalculate. + Foram encontradas saídas denominadas não confirmadas, a aguardar pela confirmação para recalcular + + + + Rounds + Voltas + + + + Enabled + Activado + + + + Last Darksend message: + + Última mensagem Darksend: + + + + + + Darksend is idle. + Darksend inactivo. + + + + Mixing in progress... + + + + + Darksend request complete: Your transaction was accepted into the pool! + Pedido Darksend concluído: A sua transacção foi aceite! + + + + Submitted following entries to masternode: + As seguintes entradas foram submetidas para o masternode: + + + + + + Submitted to masternode, Waiting for more entries + Enviado para o masternode. A aguardar por mais entradas + + + + Found enough users, signing ... + Número necessário de utilizadores encontrado, a assinar ... + + + + Found enough users, signing ( waiting. ) + Número necessário de utilizadores encontrado, a assinar (em espera.) + + + + Found enough users, signing ( waiting.. ) + Número necessário de utilizadores encontrado, a assinar (em espera..) + + + + Found enough users, signing ( waiting... ) + Número necessário de utilizadores encontrado, a assinar (em espera...) + + + + Transmitting final transaction. + A transmitir transacção final. + + + + Finalizing transaction. + A finalizar transacção. + + + + Darksend request incomplete: + Pedido Darksend incompleto: + + + + Will retry... + Irá tentar de novo... + + + + Darksend request complete: + Pedido Darksend completo: + + + + Submitted to masternode, waiting in queue . + Enviado para o masternode, a aguardar na fila . + + + + Submitted to masternode, waiting in queue .. + Enviado para o masternode, a aguardar na fila .. + + + + Submitted to masternode, waiting in queue ... + Enviado para o masternode, a aguardar na fila ... + + + + Unknown state: + Estado desconhecido: + + + + N/A + N/D + + + + Darksend was successfully reset. + Darksend foi reposto com sucesso. + + + + Darksend requires at least %1 to use. + Darksend necessita de pelo menos %1 para ser usado. + + + + Wallet is locked and user declined to unlock. Disabling Darksend. + A carteira está bloqueada e o utilizador recusou o desbloqueamento. A desactivar Darksend. + + + + PaymentServer + + + + + + + + Payment request error + Erro na solicitação de pagamento + + + + Cannot start dash: click-to-pay handler + Não é possível iniciar o dash: click-to-pay handler + + + + Net manager warning + Aviso do gestor de rede + + + + Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. + O seu proxy activo não suporta SOCKS5, o que é necessário para solicitar pagamentos através de proxy. + + + + + URI handling + Manipulação de URI + + + + Payment request fetch URL is invalid: %1 + URL de solicitação de pagamento é inválido: %1 + + + + URI can not be parsed! This can be caused by an invalid Dash address or malformed URI parameters. + O URI não pode ser carregado! Isto pode ser causado por um endereço Dash inválido ou parâmetros do URI incorrectos. + + + + Payment request file handling + Manipulação de ficheiros de solicitação de pagamento + + + + Payment request file can not be read or processed! This can be caused by an invalid payment request file. + O ficheiro de solicitação de pagamento não pode ser aberto ou processado! Isto pode ser causado por um ficheiro de solicitação de pagamento inválido. + + + + Unverified payment requests to custom payment scripts are unsupported. + Solicitações de pagamento não verificadas para scripts de pagamento personalizados não são suportadas. + + + + Requested payment amount of %1 is too small (considered dust). + A quantia %1 para solicitação de pagamento é demasiado pequena (considerada poeira) + + + + Refund from %1 + Devolução de %1 + + + + Error communicating with %1: %2 + Erro de comunicação com %1: %2 + + + + Payment request can not be parsed or processed! + A solicitação de pagamento não pode ser carregada ou processada! + + + + Bad response from server %1 + Resposta inválida do servidor %1 + + + + Network request error + Erro no pedido à rede + + + + Payment acknowledged + Pagamento confirmado + + + + QObject + + + + + + Dash + Dash + + + + Error: Specified data directory "%1" does not exist. + Erro: A pasta de dados especificada "%1" não existe. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Erro: Não foi possível carregar o ficheiro de configuração: %1. Use somente a sintaxe chave=valor. + + + + Error reading masternode configuration file: %1 + Erro ao ler o ficheiro de configuração de masternodes: %1. + + + + Error: Invalid combination of -regtest and -testnet. + Erro: Combinação inválida de -regtest e -testnet. + + + + Dash Core didn't yet exit safely... + Dash Core ainda não terminou de forma segura... + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Insira um endereço Dash (ex. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + QRImageWidget + + + &Save Image... + &Salvar Imagem... + + + + &Copy Image + &Copiar Imagem + + + + Save QR Code + Guardar código QR + + + + PNG Image (*.png) + Imagem PNG (*.png) + + + + RPCConsole + + + Tools window + Janela de ferramentas + + + + &Information + &Information + + + + Masternode Count + Número de Masternodes + + + + General + Geral + + + + Name + Nome + + + + Client name + Nome do Cliente + + + + + + + + + + + + + N/A + N/D + + + + Number of connections + Número de ligações + + + + Open the Dash debug log file from the current data directory. This can take a few seconds for large log files. + Abrir o ficheiro de registo de depuração Dash a partir da pasta de dados actual. Para grandes ficheiros de registo pode demorar alguns segundos. + + + + &Open + &Abrir + + + + Startup time + Hora de inicialização + + + + Network + Rede + + + + Last block time + Data do último bloco + + + + Debug log file + Ficheiro de registo de depuração + + + + Using OpenSSL version + A usar versão do OpenSSL + + + + Build date + Data de compilação + + + + Current number of blocks + Número actual de blocos + + + + Client version + Versão do Cliente + + + + Block chain + Cadeia de blocos + + + + &Console + &Consola + + + + Clear console + Limpar consola + + + + &Network Traffic + &Tráfego de Rede + + + + &Clear + &Limpar + + + + Totals + Totais + + + + + In: + Entrada: + + + + + Out: + Saída: + + + + Welcome to the Dash RPC console. + Bem-vindo à consola RPC Dash + + + + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + Use as setas para cima / baixo para navegar no histórico, e <b>Ctrl-L</b> para limpar o ecran. + + + + Type <b>help</b> for an overview of available commands. + Digite <b>help</b> para ter uma visão global dos comandos disponíveis. + + + + %1 B + %1 B + + + + %1 KB + %1 KB + + + + %1 MB + %1 MB + + + + %1 GB + %1 GB + + + + %1 m + %1 m + + + + %1 h + %1 h + + + + %1 h %2 m + %1 h %2 m + + + + ReceiveCoinsDialog + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Reutilizar um dos endereços de recebimento usados anteriormente. Reutilizar endereços tem problemas de segurança e privacidade. Não use isto a menos que se trate de uma reutilização de um pedido de pagamento feito anteriormente. + + + + R&euse an existing receiving address (not recommended) + R&eutilizar um endereço de recebimento existente (não recomendado) + + + + + 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 Dash network. + Mensagem opcional para anexar à solicitação de pagamento, que será mostrada quando a solicitação for aberta. Nota: A mensagem não será enviada com o pagamento através da rede Dash. + + + + &Message: + &Mensagem: + + + + + An optional label to associate with the new receiving address. + Rótulo opcional para associar com o novo endereço de recebimento. + + + + Use this form to request payments. All fields are <b>optional</b>. + Utilize este formulário para solicitar pagamentos. Todos os campos são <b>opcionais</b>. + + + + &Label: + &Rótulo: + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Quantia opcional a solicitar. Deixar vazio ou zero para não solicitar uma quantia específica. + + + + &Amount: + &Quantia + + + + &Request payment + &Pedir pagamento + + + + Clear all fields of the form. + Limpar todos os campos do formulário. + + + + Clear + Limpar + + + + Requested payments history + Histórico de solicitações de pagamento + + + + Show the selected request (does the same as double clicking an entry) + Mostrar a solicitação seleccionada (igual a clicar duas vezes) + + + + Show + Mostrar + + + + Remove the selected entries from the list + Remover as entradas seleccionadas da lista + + + + Remove + Remover + + + + Copy label + Copiar rótulo + + + + Copy message + Copiar mensagem + + + + Copy amount + Copiar quantia + + + + ReceiveRequestDialog + + + QR Code + QR Code + + + + Copy &URI + Copiar &URI + + + + Copy &Address + Copiar &Endereço + + + + &Save Image... + &Salvar Imagem... + + + + Request payment to %1 + Solicitar pagamento a %1 + + + + Payment information + Informação de pagamento + + + + URI + URI + + + + Address + Endereço + + + + Amount + Quantia + + + + Label + Rótulo + + + + Message + Mensagem + + + + Resulting URI too long, try to reduce the text for label / message. + O URI resultante é demasiado longo, tente reduzir o texto do rótulo ou da mensagem. + + + + Error encoding URI into QR Code. + Erro ao codificar o URI para código QR. + + + + RecentRequestsTableModel + + + Date + Data + + + + Label + Rótulo + + + + Message + Mensagem + + + + Amount + Quantia + + + + (no label) + (sem rótulo) + + + + (no message) + (sem mensagem) + + + + (no amount) + (sem quantia) + + + + SendCoinsDialog + + + + + + Send Coins + Enviar Moedas + + + + Coin Control Features + Funcionalidades de Coin Control + + + + Inputs... + Entradas... + + + + automatically selected + seleccionadas automáticamente + + + + Insufficient funds! + Fundos insuficientes! + + + + Quantity: + Quantidade: + + + + Bytes: + Bytes: + + + + Amount: + Quantia: + + + + Priority: + Prioridade: + + + + medium + média + + + + Fee: + Taxa: + + + + Low Output: + Baixo débito: + + + + no + não + + + + After Fee: + Com taxa: + + + + Change: + Troco: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Se isto for activado e o endereço de troco se encontrar vazio, o troco será enviado para um novo endereço gerado. + + + + Custom change address + Endereço de troco personalizado + + + + Confirm the send action + Confirmar envio + + + + S&end + &Enviar + + + + Clear all fields of the form. + Limpar todos os campos do formulário. + + + + Clear &All + Limpar &Tudo + + + + Send to multiple recipients at once + Enviar para múltiplos destinatários de uma vez + + + + Add &Recipient + Adicionar &Destinatário + + + + Darksend + Darksend + + + + InstantX + InstantX + + + + Balance: + Saldo: + + + + Copy quantity + Copiar quantidade + + + + Copy amount + Copiar quantia + + + + Copy fee + Copiar taxa + + + + Copy after fee + Copiar depois da taxa + + + + Copy bytes + Copiar bytes + + + + Copy priority + Copiar prioridade + + + + Copy low output + Copiar baixo débito + + + + Copy change + Copiar troco + + + + + + using + a usar + + + + + anonymous funds + fundos anónimos + + + + (darksend requires this amount to be rounded up to the nearest %1). + (o darksend requer que esta quantia seja arredondada até ao %1 mais próximo). + + + + any available funds (not recommended) + quaisquer fundos disponíveis (não recomendado) + + + + and InstantX + e InstantX + + + + + + + %1 to %2 + %1 a %2 + + + + Are you sure you want to send? + Tem a certeza que quer enviar? + + + + are added as transaction fee + são adicionadas como taxa de transacção + + + + Total Amount %1 (= %2) + Quantia Total %1 (= %2) + + + + or + ou + + + + Confirm send coins + Confirmar envio de moedas + + + + Payment request expired + Solicitação de pagamento expirada + + + + Invalid payment address %1 + Endereço de pagamento inválido %1 + + + + The recipient address is not valid, please recheck. + O endereço do destinatário é inválido, por favor verifique. + + + + The amount to pay must be larger than 0. + A quantia a pagar tem que ser maior que 0. + + + + The amount exceeds your balance. + A quantia excede o seu saldo. + + + + The total exceeds your balance when the %1 transaction fee is included. + O total excede o seu saldo quando é incluído o valor %1 relativo a taxas de transacção. + + + + Duplicate address found, can only send to each address once per send operation. + Endereço duplicado encontrado, só pode enviar para um endereço uma vez por cada operação de envio. + + + + Transaction creation failed! + Falha ao criar transacção! + + + + 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 and coins were spent in the copy but not marked as spent here. + A transacção foi rejeitada! Isto pode acontecer se algumas das moedas da sua carteira tiverem sido gastas, tal como se usou uma copia do ficheiro wallet.dat e moedas tiverem sido gastas nessa cópia mas não aqui. + + + + Error: The wallet was unlocked only to anonymize coins. + Erro: A carteira foi somente desbloqueada para anonimização de moedas. + + + + Warning: Invalid Dash address + Aviso: Endereço Dash inválido + + + + Warning: Unknown change address + Aviso: Endereço de troco desconhecido + + + + (no label) + (sem rótulo) + + + + SendCoinsEntry + + + This is a normal payment. + Este é um pagamento normal. + + + + Pay &To: + &Pagar a: + + + + The address to send the payment to (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Endereço para envio do pagamento (ex. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + Choose previously used address + Escolher endereço usado previamente + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Colar endereço da área de transferência + + + + Alt+P + Alt+P + + + + + + Remove this entry + Remover esta entrada + + + + &Label: + &Rótulo: + + + + Enter a label for this address to add it to the list of used addresses + Digite um rótulo para este endereço para adicioná-lo à lista de endereços usados + + + + + + A&mount: + &Quantidade + + + + Message: + Mensagem: + + + + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + Mensagem que foi anexada ao dash: URI e que será guardada com a transacção para sua referência. Nota: Esta mensagem não será enviada para a rede Dash. + + + + This is an unverified payment request. + Este é um pedido de pagamento não verificado. + + + + + Pay To: + Pagar a: + + + + + Memo: + Rótulo: + + + + This is a verified payment request. + Este é um pedido de pagamento verificado. + + + + Enter a label for this address to add it to your address book + Introduza um rótulo para este endereço para adicionar ao livro de endereços + + + + ShutdownWindow + + + Dash Core is shutting down... + O Dash Core está a desligar... + + + + Do not shut down the computer until this window disappears. + Não desligue o computador enquanto está janela estiver visível. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Assinaturas - Assinar / Verificar uma Mensagem + + + + &Sign Message + &Assinar Mensagem + + + + 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. + Pode assinar mensagens com os seus endereços para provar que são seus. Tenha atenção para não assinar mensagens vagas, já que, ataques de phishing podem levá-lo a assinar a sua própria identidade para os atacantes. Apenas assine declarações detalhadas com as quais concorde. + + + + The address to sign the message with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Endereço com o qual deseja assinar a mensagem (ex. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + Choose previously used address + Escolher endereço usado previamente + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Colar endereço da área de transferência + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Escreva aqui a mensagem que deseja assinar + + + + Signature + Assinatura + + + + Copy the current signature to the system clipboard + Copiar a assinatura actual para a área de transferência + + + + Sign the message to prove you own this Dash address + Assinar a mensagem para provar que é o proprietário deste endereço Dash + + + + Sign &Message + Assinar &Mensagem + + + + Reset all sign message fields + Repor todos os campos de assinatura de mensagem + + + + + Clear &All + Limpar &Tudo + + + + &Verify Message + &Verificar Mensagem + + + + 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. + Introduza o endereço de assinatura, mensagem (assegure-se que copia exactamente as quebras de linha, espaços, tabulações, etc) e assinatura abaixo para verificar a mensagem. Tenha atenção para não ler mais na assinatura do que o que estiver na mensagem assinada, para evitar ser enganado por um atacante que se encontre entre si e quem assinou a mensagem. + + + + The address the message was signed with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Endereço com o qual a mensagem foi assinada (ex. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + Verify the message to ensure it was signed with the specified Dash address + Verificar a mensagem de forma a garantir que foi assinada com o endereço Dash especificado + + + + Verify &Message + Verificar &Mensagem + + + + Reset all verify message fields + Repor todos os campos de verificação de mensagem + + + + Click "Sign Message" to generate signature + Prima "Assinar Mensagem" para gerar a assinatura + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Insira um endereço Dash (ex. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + The entered address is invalid. + O endereço inserido é inválido. + + + + + + + Please check the address and try again. + Por favor verifique o endereço e tente de novo. + + + + + The entered address does not refer to a key. + O endereço introduzido não corresponde a uma chave. + + + + Wallet unlock was cancelled. + O desbloqueamento da carteira foi cancelado. + + + + Private key for the entered address is not available. + A chave privada correspondente ao endereço introduzido não está disponível. + + + + Message signing failed. + A assinatura da mensagem falhou. + + + + Message signed. + Mensagem assinada. + + + + The signature could not be decoded. + A assinatura não pode ser descodificada. + + + + + Please check the signature and try again. + Por favor verifique a assinatura e tente de novo. + + + + The signature did not match the message digest. + A assinatura não corresponde à compilação da mensagem. + + + + Message verification failed. + A verificação da mensagem falhou. + + + + Message verified. + Mensagem verificada. + + + + SplashScreen + + + Dash Core + Dash Core + + + + Version %1 + Versão %1 + + + + The Bitcoin Core developers + Os programadores Bitcoin Core + + + + The Dash Core developers + Os programadores Dash Core + + + + [testnet] + [rede de testes] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + Aberta durante mais %n blocoAberta durante mais %n blocos + + + + Open until %1 + Aberta até %1 + + + + + + + conflicted + conflituosa + + + + %1/offline (verified via instantx) + %1/desligado (verificado através de instantx) + + + + %1/confirmed (verified via instantx) + %1/confirmado (verificado através de instantx) + + + + %1 confirmations (verified via instantx) + %1 confirmações (verificado através de instantx) + + + + %1/offline + %1/desligada + + + + %1/unconfirmed + %1/não confirmada + + + + + %1 confirmations + %1 confirmações + + + + %1/offline (InstantX verification in progress - %2 of %3 signatures) + %1/desligado (verificação InstantX em progresso - %2 de %3 assinaturas) + + + + %1/confirmed (InstantX verification in progress - %2 of %3 signatures ) + %1/confirmada (verificação InstantX em progresso - %2 de %3 assinaturas) + + + + %1 confirmations (InstantX verification in progress - %2 of %3 signatures) + %1 confirmações (verificação InstantX em progresso - %2 de %3 assinaturas) + + + + %1/offline (InstantX verification failed) + %1/desligado (a verificação InstantX falhou) + + + + %1/confirmed (InstantX verification failed) + %1/confirmada (a verificação InstantX falhou) + + + + Status + Estado + + + + , has not been successfully broadcast yet + , ainda não foi transmitida com sucesso + + + + , broadcast through %n node(s) + , transmitida através de %n nó, transmitida através de %n nós + + + + Date + Data + + + + Source + Origem + + + + Generated + Gerada + + + + + From + De + + + + unknown + desconhecido + + + + + + To + Para + + + + + own address + endereço próprio + + + + label + rótulo + + + + + + + + Credit + Credito + + + + matures in %n more block(s) + maturidade em %n blocomaturidade em %n blocos + + + + not accepted + rejeitada + + + + + + + Debit + Débito + + + + Transaction fee + Taxa de transacção + + + + Net amount + Valor líquido + + + + + Message + Mensagem + + + + Comment + Comentário + + + + Transaction ID + ID de transacção + + + + Merchant + Comerciante + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + As moedas geradas tem que amadurecer %1 blocos antes de poderem ser gastas. Quando gerou este bloco, este foi propagado para a rede de modo a ser incluído na cadeia de blocos. Se não foi incluído na cadeia, o seu estado será alterado para "rejeitado" e não será possível gastar as moedas. Isto pode acontecer ocasionalmente quando outro nó gera um bloco a poucos segundos do seu. + + + + Debug information + Informação de depuração + + + + Transaction + Transacção + + + + Inputs + Entradas + + + + Amount + Quantia + + + + true + verdadeiro + + + + false + falso + + + + TransactionDescDialog + + + Transaction details + Detalhes da transação + + + + This pane shows a detailed description of the transaction + Esta janela mostra uma descrição detalhada da transação + + + + TransactionTableModel + + + Date + Data + + + + Type + Tipo + + + + Address + Endereço + + + + Amount + Quantia + + + + Open for %n more block(s) + Aberta durante mais %n blocoAberta durante mais %n blocos + + + + Open until %1 + Aberta até %1 + + + + Offline + Desligado + + + + Unconfirmed + Não confirmado + + + + Confirming (%1 of %2 recommended confirmations) + A confirmar (%1 de %2 confirmações recomendadas) + + + + Confirmed (%1 confirmations) + Confirmada (%1 confirmações) + + + + Conflicted + Conflituosa + + + + Immature (%1 confirmations, will be available after %2) + Imatura (%1 confirmações, estará disponível após %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Este bloco não foi recebido por nenhum outro nó e provavelmente será rejeitado! + + + + Generated but not accepted + Gerado mas rejeitado + + + + Received with + Recebido com + + + + Received from + Recebido de + + + + Received via Darksend + Recebido via Darksend + + + + Sent to + Enviado para + + + + Payment to yourself + Pagamento ao próprio + + + + Mined + Minado + + + + Darksend Denominate + Denominação Darksend + + + + Darksend Collateral Payment + Pagamento Colateral Darksend + + + + Darksend Make Collateral Inputs + Darksend Fazer Entradas Colaterais + + + + Darksend Create Denominations + Darksend Criar Denominações + + + + Darksent + Darksent + + + + (n/a) + (n/d) + + + + Transaction status. Hover over this field to show number of confirmations. + Estado da transacção. Passe o ponteiro do rato sobre este campo para mostrar o número de confirmações. + + + + Date and time that the transaction was received. + Data e hora à qual a transacção foi recebida. + + + + Type of transaction. + Tipo de transacção. + + + + Destination address of transaction. + Endereço de destino da transacção. + + + + Amount removed from or added to balance. + Quantia removida ou adicionada ao saldo. + + + + TransactionView + + + + All + Todas + + + + Today + Hoje + + + + This week + Esta semana + + + + This month + Este mês + + + + Last month + Mês anterior + + + + This year + Este ano + + + + Range... + Intervalo... + + + + Received with + Recebido com + + + + Sent to + Enviado para + + + + Darksent + Darksent + + + + Darksend Make Collateral Inputs + Darksend Fazer Entradas Colaterais + + + + Darksend Create Denominations + Darksend Criar Denominações + + + + Darksend Denominate + Denominação Darksend + + + + Darksend Collateral Payment + Pagamento Colateral Darksend + + + + To yourself + Ao próprio + + + + Mined + Minado + + + + Other + Outra + + + + Enter address or label to search + Introduza endereço ou rótulo a pesquisar + + + + Min amount + Quantia mínima + + + + Copy address + Copiar endereço + + + + Copy label + Copiar rótulo + + + + Copy amount + Copiar quantia + + + + Copy transaction ID + Copiar ID de transacção + + + + Edit label + Editar rótulo + + + + Show transaction details + Mostrar detalhes da transacção + + + + Export Transaction History + Exportar histórico de transacções + + + + Comma separated file (*.csv) + Ficheiro separado por vírgulas (*.csv) + + + + Confirmed + Confirmada + + + + Date + Data + + + + Type + Tipo + + + + Label + Rótulo + + + + Address + Endereço + + + + Amount + Quantia + + + + ID + ID + + + + Exporting Failed + A exportação falhou + + + + There was an error trying to save the transaction history to %1. + Ocorreu um erro ao tentar gravar o histórico de transacções para %1. + + + + Exporting Successful + Exportação Concluída com Sucesso + + + + The transaction history was successfully saved to %1. + O histórico de transacções foi gravado com sucesso para %1. + + + + Range: + Intervalo: + + + + to + para + + + + WalletFrame + + + No wallet has been loaded. + Nenhuma carteira carregada + + + + WalletModel + + + + Send Coins + Enviar Moedas + + + + InstantX doesn't support sending values that high yet. Transactions are currently limited to %n DASH. + O InstantX não suporta valores tão elevados neste momento. As transacções estão limitadas a %n DASH.O InstantX não suporta valores tão elevados neste momento. As transacções estão limitadas a %n DASH. + + + + WalletView + + + &Export + &Exportar + + + + Export the data in the current tab to a file + Exportar os dados do separador actual para um ficheiro + + + + Backup Wallet + Criar Cópia de Segurança da Carteira + + + + Wallet Data (*.dat) + Dados da Carteira (*.dat) + + + + Backup Failed + A Cópia de Segurança Falhou + + + + There was an error trying to save the wallet data to %1. + Ocorreu um erro ao tentar criar cópia de segurança da carteira para %1. + + + + Backup Successful + Cópia de Segurança Criada com Sucesso + + + + The wallet data was successfully saved to %1. + Os dados da carteira foram gravados com sucesso em %1. + + + + dash-core + + + %s, you must set a rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=dashrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com + + %s, necessita colocar uma entrada rpcpassword no ficheiro de configuração: +%s +É recomendados que utilize a seguinte palavra-passe aleatória: +rpcuser=dashrpc +rpcpassword=%s +(não necessita decorar esta palavra-passe) +O nome de utilizador e a palavra-passe não podem ser iguais. +Se o ficheiro não existe, crie-o só com permissões de leitura para o dono. +Também é recomendado que configure o sistema de alertas para poder ser avisado de problemas; +exemplo: alertnotify=echo %%s | mail -s "Alerta Dash" admin@foo.com + + + + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + Cifras suportadas (omissão: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + Ocorreu um erro ao configurar a porta RPC %u para aceitar ligações em IPv4: %s + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + Ocorreu um erro ao configurar a porta RPC %u para aceitar ligações em IPv6, a reverter para IPv4: %s + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Vincular a um determinado endereço e ouvir sempre aí. Use a notação [endereço]:porta para IPv6 + + + + Cannot obtain a lock on data directory %s. Dash Core is probably already running. + Não foi possível obter acesso exclusivo à pasta de dados %s. Possivelmente o Dash Core já se encontra em execução. + + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + Continuamente limitar o número de transacções gratuitas por minuto a <n>*1000 bytes (omissão: 15) + + + + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. + O Darksend usa denominações exactas para enviar fundos, pode necessitar simplesmente de anonimizar mais algumas moedas. + + + + Disable all Masternode and Darksend related functionality (0-1, default: 0) + Desactivar todas as funcionalidades relacionadas com Masternodes e Darksend (0-1, omissão:0) + + + + Enable instantx, show confirmations for locked transactions (bool, default: true) + Activar instantx, mostrar confirmações para transacções bloqueadas (bool, omissão: true) + + + + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) + Activar o uso de darksend automatizado para os fundos guardados nesta carteira (0-1, omissão: 0) + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. + Entrar no modo de testes de regressão, que usa uma cadeia de blocos especial onde cada bloco é resolvido instantaneamente. O objectivo ser usado com ferramentas de testes de regressão e no desenvolvimento da aplicação. + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Entrar no modo de testes de regressão, que usa uma cadeia de blocos especial onde cada bloco é resolvido instantaneamente. + + + + Error: Listening for incoming connections failed (listen returned error %s) + Erro: A escuta por ligações de entrada falhou (a escuta devolveu o erro %s) + + + + 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 and coins were spent in the copy but not marked as spent here. + Erro: A transacção foi rejeitada! Isto pode acontecer se algumas das moedas da sua carteira tiverem sido gastas, tal como se usou uma copia do ficheiro wallet.dat e moedas tiverem sido gastas nessa cópia mas não aqui. + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! + Erro: Esta transacção necessita de uma taxa de pelo menos %s devido à quantia, complexidade ou uso de fundos recebidos recentemente! + + + + Error: Wallet unlocked for anonymization only, unable to create transaction. + Erro: Carteira desbloqueada somente para anonimização, não foi possível criar a transacção. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Executar comando quando é recebido um alerta ou vemos uma longa bifurcação na cadeia de blocos (%s no comando é substituído pela mensagem) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Executar comando quando muda uma transacção na carteira (%s no comando é substituído pelo TxID) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Executar comando quando o melhor bloco muda (%s no comando é substituído pela hash do bloco) + + + + Fees smaller than this are considered zero fee (for transaction creation) (default: + Taxas inferiores a esta serão consideradas zero (para a criação da transacção) (omissão: + + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + Consolidar a actividade de dados de memoria para disco a cada <n> megabytes (omissão: 100) + + + + Found unconfirmed denominated outputs, will wait till they confirm to continue. + Foram encontradas saídas denominadas não confirmadas, a aguardar pela confirmação para prosseguir. + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + Quão minuciosa é a verificação dos blocos do -checkblocks (0-4, omissão: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + Neste modo o -genproclimit controla quantos blocos são gerados imediatamente. + + + + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. + O InstantX necessita de entradas com pelo menos 6 confirmações, pode ser necessário aguardar mais uns minutos e tentar de novo. + + + + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) + Escutar por ligações JSON-RPC na porta <port> (omissão: 9998 ou rede de testes: 19998) + + + + Name to construct url for KeePass entry that stores the wallet passphrase + Nome para construir o url para a entrada KeePass que guarda a palavra-passe da carteira + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Número de segundos a não permitir ligações de nós com comportamento inadequado (omissão: 86400) + + + + Output debugging information (default: 0, supplying <category> is optional) + Informação de depuração de saída (omissão: 0, fornecer <category> é opcional) + + + + 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) + Providenciar liquidez para o Darksend misturando moedas continuamente com baixa frequência (0-100, omissão: 0, 1=muito frequente taxas elevadas, 100=pouco frequente, taxas reduzidas) + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + Questionar por endereços dos nós através de pesquisas DNS caso tenha poucos endereços (omissão: 1 excepto -connect) + + + + Set external address:port to get to this masternode (example: address:port) + Definir endereço:porta externo para ligação a este masternode (ex: endereço:porta) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + Definir tamanho máximo de transacções com alta-prioridade/taxa-reduzida em bytes (omissão: %d) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Definir número de processos de verificação de scripts (%u a %d, 0 = auto, <0 = deixar este número de cores livres, omissão: %d) + + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + Definir o limite de processador quando a geração está activa (-1 = ilimitado, omissão: -1) + + + + Show N confirmations for a successfully locked transaction (0-9999, default: 1) + Mostrar N confirmações para uma transacção bloqueada com sucesso (0-9999, omissão:1) + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + Esta é uma compilação prévia de teste - use por sua conta e risco - não use para minar nem em aplicações comerciais + + + + Unable to bind to %s on this computer. Dash Core is probably already running. + Não foi possível vincular a %s neste computador. Provavelmente o Dash Core já está a ser executado. + + + + Unable to locate enough Darksend denominated funds for this transaction. + Não foi possível localizar fundos Darksend denominados suficientes para esta transacção. + + + + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. + Não foi possível localizar fundos Darksend não denominados suficientes para esta transacção que não sejam igual a 1000DRK. + + + + Unable to locate enough Darksend non-denominated funds for this transaction. + Não foi possível localizar fundos Darksend não denominados suficientes para esta transacção. + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) + Usar um proxy SOCKS5 diferente para ligar aos nós através dos serviços escondidos Tor (omissão: -proxy) + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Aviso: -paytxfee tem um valor muito elevado! Esta é a taxa de transacção que será paga se enviar uma transacção. + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. + Aviso: Por favor verifique que a data e a hora do computador está correcta! Se o relógio estiver errado o Dash não vai funcionar correctamente. + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + Aviso: A rede não parece estar concordar! Parece haver alguns mineiros com problemas. + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + Aviso: Parece que não estamos de acordo com outros nós! Talvez necessite actualizar a aplicação ou os outros nós necessitem actualizar. + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + Aviso: erro ao carregar wallet.dat! Todas as chaves estão correctas mas os dados das transacções ou as entradas do livro de endereços podem estar ausentes ou incorrectas. + + + + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + Aviso: wallet.dar corrompido mas os dados foram recuperados! A carteira original foi gravada como wallet{data/hora}.bak in %s; se o seu saldo ou transacções forem incorrectos deverá recuperar a partir de uma cópia de segurança. + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Deve definir rpcpassword=<password> no ficheiro de configuração: +%s +Se o ficheiro não existir, deve criá-lo só com permissões de leitura para o dono. + + + + You must specify a masternodeprivkey in the configuration. Please see documentation for help. + Tem que especificar uma masternodeprivkey na configuração. Por favor verifique a documentação para ajuda. + + + + (default: 1) + (omissão: 1) + + + + (default: wallet.dat) + (omissão: wallet.dat) + + + + <category> can be: + <category> pode ser: + + + + Accept command line and JSON-RPC commands + Aceitar comandos da linha de comandos e JSON-RPC + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Aceitar ligações do exterior (omissão: 1 se não tiver usado -proxy ou -connect) + + + + Add a node to connect to and attempt to keep the connection open + Adicionar um nó ao qual efectuar ligação e tentar manter a ligação aberta + + + + Allow DNS lookups for -addnode, -seednode and -connect + Permitir pesquisas de DNS para -addnode, -deednode e -connect + + + + Allow JSON-RPC connections from specified IP address + Permitir ligações JSON-RPC a partir do endereço IP especificado + + + + Already have that input. + Entrada existente. + + + + Always query for peer addresses via DNS lookup (default: 0) + Questionar sempre por endereços de nós através de pesquisas DNS (omissão: 0) + + + + Attempt to recover private keys from a corrupt wallet.dat + Tentar recuperar as chaves privadas a partir de um ficheiro wallet.dat corrompido + + + + Block creation options: + Opções de criação de blocos: + + + + Can't denominate: no compatible inputs left. + Não é possível denominar: não existem mais entradas compatíveis. + + + + Cannot downgrade wallet + Não é possível reverter para uma versão anterior da carteira + + + + Cannot resolve -bind address: '%s' + Não foi possível resolver endereço de vínculo: '%s' + + + + Cannot resolve -externalip address: '%s' + Não foi possível resolver endereço -externalip: '%s' + + + + Cannot write default address + Não foi possível escrever endereço por omissão + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Limpar lista de transacções da carteira (ferramenta de diagnóstico; implica -rescan) + + + + Collateral is not valid. + O colateral não é válido. + + + + Collateral not valid. + Colateral inválido. + + + + Connect only to the specified node(s) + Ligar apenas ao(s) nó(s) especificados + + + + Connect through SOCKS proxy + Ligar através de proxy SOCKS + + + + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) + Ligar ao JSON-RPC na porta <port> (omissão: 9998 ou rede de testes: 19998) + + + + Connect to KeePassHttp on port <port> (default: 19455) + Ligar ao KeePassHttp na porta <port> (omissão: 19455) + + + + Connect to a node to retrieve peer addresses, and disconnect + Efectuar ligação a um nó para obter os endereços de outros clientes e desligar + + + + Connection options: + Opções de ligação: + + + + Corrupted block database detected + Detectada corrupção na base de dados dos blocos + + + + Dash Core Daemon + Serviço Dash Core + + + + Dash Core RPC client version + Versão do cliente RPC Dash Core + + + + Darksend is disabled. + O Darksend encontra-se desactivado. + + + + Darksend options: + Opções Darksend: + + + + Debugging/Testing options: + Opções de Depuração/Teste + + + + Disable safemode, override a real safe mode event (default: 0) + Desabilitar modo de segurança, sobrepõe-se a um evento real de modo de segurança (omissão: 0) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Descobrir endereço de IP próprio (omissão: 1 quando em escuta e -externalip não definido) + + + + Do not load the wallet and disable wallet RPC calls + Não carregar a carteira e desabilitar as chamadas RPC + + + + Do you want to rebuild the block database now? + Quer reconstruir agora a base de dados dos blocos? + + + + Done loading + Carregamento completo + + + + Downgrading and trying again. + + + + + Enable the client to act as a masternode (0-1, default: 0) + Permitir ao cliente actuar como um masternode (0-1, omissão: 0) + + + + Entries are full. + Entradas completas. + + + + Error connecting to masternode. + Erro ao ligar ao masternode. + + + + Error initializing block database + Erro ao inicializar a base de dados dos blocos + + + + Error initializing wallet database environment %s! + Erro ao inicializar o ambiente de base de dados da carteira %s! + + + + Error loading block database + Erro ao carregar base de dados de blocos + + + + Error loading wallet.dat + Erro ao carregar wallet.dat + + + + Error loading wallet.dat: Wallet corrupted + Erro ao carregar wallet.dat: A carteira está corrompida + + + + Error loading wallet.dat: Wallet requires newer version of Dash + Erro ao carregar wallet.dat: A carteira necessita de uma versão Dash mais recente + + + + Error opening block database + Erro ao abrir base de dados de blocos + + + + Error reading from database, shutting down. + Erro ao ler da base de dados, a encerrar. + + + + Error recovering public key. + Erro ao recuperar chave pública. + + + + Error + Erro + + + + Error: Disk space is low! + Erro: Pouco espaço em disco! + + + + Error: Wallet locked, unable to create transaction! + Erro: Carteira bloqueada, não foi possível criar a transacção! + + + + Error: You already have pending entries in the Darksend pool + Erro: Já tem entradas pendentes no conjunto Darksend + + + + Error: system error: + Erro: erro de sistema: + + + + Failed to listen on any port. Use -listen=0 if you want this. + Falhou a escuta em qualquer porta. Use -listen=0 se é isto que deseja. + + + + Failed to read block info + Falha ao ler informação de bloco + + + + Failed to read block + Falha ao ler bloco + + + + Failed to sync block index + Falha ao sincronizar o índice de blocos + + + + Failed to write block index + Falha ao escrever índice de blocos + + + + Failed to write block info + Falha ao escrever informação de bloco + + + + Failed to write block + Falha ao escrever bloco + + + + Failed to write file info + Falha ao escrever informação de ficheiro + + + + Failed to write to coin database + Falha ao escrever na base de dados de moedas + + + + Failed to write transaction index + Falha ao escrever o índice de transacções + + + + Failed to write undo data + Falha ao escrever dados de recuperação + + + + Fee per kB to add to transactions you send + Taxa por kB a adicionar à transacção que vai enviar + + + + Fees smaller than this are considered zero fee (for relaying) (default: + Taxas inferiores a esta serão consideradas zero (para retransmissão) (omissão: + + + + Force safe mode (default: 0) + Forçar modo de segurança (omissão: 0) + + + + Generate coins (default: 0) + Gerar moedas (omissão: 0) + + + + Get help for a command + Obter ajuda para um comando + + + + How many blocks to check at startup (default: 288, 0 = all) + Quanto blocos deve verificar no arranque (omissão: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + Se a <category> não for fornecida, mostrar toda a informação de depuração. + + + + Ignore masternodes less than version (example: 70050; default : 0) + Ignorar masternodes com versão inferior a (ex: 70050; omissão: 0) + + + + Importing... + A importar... + + + + Imports blocks from external blk000??.dat file + Importa blocos a partir de ficheiros blk000??.dat externos + + + + Incompatible mode. + Modo incompatível. + + + + Incompatible version. + Versão incompatível. + + + + Incorrect or no genesis block found. Wrong datadir for network? + Bloco original não encontrado ou incorrecto. Pasta de dados errada para esta rede? + + + + Information + Informação + + + + Initialization sanity check failed. Dash Core is shutting down. + A verificação de consistência no arranque falhou. O Dash Core está a encerrar. + + + + Input is not valid. + A entrada não é válida. + + + + InstantX options: + Opções InstantX + + + + Insufficient funds + Fundos insuficientes + + + + Insufficient funds. + Fundos insuficientes. + + + + Invalid -onion address: '%s' + Endereço -onion inválido: '%s' + + + + Invalid -proxy address: '%s' + Endereço -proxy inválido: '%s' + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + Quantia inválida para -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + Quantia inválida para -mintxfee=<amount>: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + Quantia inválida para -paytxfee=<amount>: '%s' + + + + Invalid amount + Quantia inválida + + + + Invalid masternodeprivkey. Please see documenation. + masternodeprivkey inválida. Por favor reveja a documentação. + + + + Invalid private key. + Chave privada inválida. + + + + Invalid script detected. + Script inválido detectado. + + + + KeePassHttp id for the established association + Identificador KeePassHttp para a associação estabelecida + + + + KeePassHttp key for AES encrypted communication with KeePass + Chave KeePassHttp para usar na comunicação cifrada AES com o KeePass + + + + Keep N dash anonymized (default: 0) + Manter N dash anonimizadas (omissão: 0) + + + + Keep at most <n> unconnectable blocks in memory (default: %u) + Manter no máximo <n> blocos não conectáveis em memória (omissão: %u) + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + Manter no máximo <n> transacções não conectáveis em memória (omissão: %u) + + + + Last Darksend was too recent. + O último Darksend é muito recente. + + + + Last successful darksend action was too recent. + A última acção de Darksend é muito recente. + + + + Limit size of signature cache to <n> entries (default: 50000) + Limitar o tamanho da cache de assinaturas a <n> elementos (omissão: 50000) + + + + List commands + Listar comandos + + + + Listen for connections on <port> (default: 9999 or testnet: 19999) + Escutar ligações na <port> (omissão: 9999 ou rede de testes: 19999) + + + + Loading addresses... + A carregar endereços... + + + + Loading block index... + A carregar índice de blocos... + + + + Loading masternode list... + A carregar lista de masternodes... + + + + Loading wallet... (%3.2f %%) + A carregar carteira... (%3.2f %%) + + + + Loading wallet... + A carregar carteira... + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + Salvar prioridade e taxa da transacção por kB quando minar blocos (omissão: 0) + + + + Maintain a full transaction index (default: 0) + Manter um índice completo de transacções (omissão: 0) + + + + Maintain at most <n> connections to peers (default: 125) + Manter no máximo <n> ligações a outros nós (omissão: 125) + + + + Masternode options: + Opções de masternode: + + + + Masternode queue is full. + A fila do masternode está cheia. + + + + Masternode: + Masternode: + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Tamanho máximo da memória intermédia de recepção por ligação, <n>*1000 bytes (omissão: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Tamanho máximo da memória intermédia de envio por ligação, <n>*1000 bytes (omissão: 1000) + + + + Missing input transaction information. + A informação da transacção de entrada não foi encontrada. + + + + No compatible masternode found. + Nenhum masternode compatível encontrado. + + + + No funds detected in need of denominating. + Não foram detectados fundos a necessitar de denominação. + + + + No masternodes detected. + Nenhum masternode detectado. + + + + No matching denominations found for mixing. + Não foram encontradas denominações correspondentes para misturar. + + + + Non-standard public key detected. + Detectada chave pública fora do padrão. + + + + Not compatible with existing transactions. + Não é compatível com as transacções existentes. + + + + Not enough file descriptors available. + Número insuficiente de descritores de ficheiros disponíveis. + + + + Not in the masternode list. + Não se encontra na lista de masternodes. + + + + Only accept block chain matching built-in checkpoints (default: 1) + Somente aceitar pontos de inspecção apropriados presentes na cadeia de blocos (omissão: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Somente ligar a nós na rede <net> (IPv4, IPv6 ou Tor) + + + + Options: + Opções: + + + + Password for JSON-RPC connections + Palavra-passe para as ligações JSON-RPC + + + + Prepend debug output with timestamp (default: 1) + Adicionar data/hora à informação de depuração (omissão: 1) + + + + Print block on startup, if found in block index + Imprimir bloco ao iniciar se existir no índice de blocos + + + + Print block tree on startup (default: 0) + Imprimir árvore de blocos ao iniciar (omissão: 0) + + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opções RPC SSL: (para instruções de configuração SSL dirija-se à Dash Wiki) + + + + RPC client options: + Opções do cliente RPC: + + + + RPC server options: + Opções do servidor RPC: + + + + Randomly drop 1 of every <n> network messages + Ignorar aleatoriamente 1 de cada <n> mensagens da rede + + + + Randomly fuzz 1 of every <n> network messages + Esfiapar aleatoriamente 1 de cada <n> mensagens da rede + + + + Rebuild block chain index from current blk000??.dat files + Reconstruir o índice da cadeia de blocos a partir dos ficheiros actuais blk000??.dat + + + + Rescan the block chain for missing wallet transactions + Examinar novamente a cadeia de blocos para encontrar transacções inexistentes na carteira + + + + Rescanning... + A examinar novamente... + + + + Run a thread to flush wallet periodically (default: 1) + Executar periodicamente um processo para consolidar a carteira (omissão: 1) + + + + Run in the background as a daemon and accept commands + Executar em segundo plano como um serviço e aceitar comandos + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opções SSL: (ver o Wiki Dash para obter instruções de configuração SSL) + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + Seleccionar a versão para o -proxy (4 ou 5, omissão: 5) + + + + Send command to Dash Core + Enviar comando para o Dash Core + + + + Send commands to node running on <ip> (default: 127.0.0.1) + Enviar comandos para o nó que corre em <ip> (omissão: 127.0.0.1) + + + + Send trace/debug info to console instead of debug.log file + Enviar informação de execução/depuração para a consola em vez de enviar para o ficheiro debug.log + + + + Server certificate file (default: server.cert) + Ficheiro de certificado do servidor (omissão: server.cert) + + + + Server private key (default: server.pem) + Chave privada do servidor (omissão: server.pem) + + + + Session not complete! + Sessão incompleta! + + + + Session timed out (30 seconds), please resubmit. + A sessão excedeu o tempo limite (30 segundos), por favor volte a enviar. + + + + Set database cache size in megabytes (%d to %d, default: %d) + Define o tamanho máximo da cache de dados em megabytes (%d até %d, omissão %d) + + + + Set key pool size to <n> (default: 100) + Define o tamanho do conjunto de chaves para <n> (omissão: 100) + + + + Set maximum block size in bytes (default: %d) + Define o tamanho máximo do bloco em bytes (omissão %d) + + + + Set minimum block size in bytes (default: 0) + Define o tamanho mínimo do bloco em bytes (omissão: 0) + + + + Set the masternode private key + Define a chave privada do masternode + + + + Set the number of threads to service RPC calls (default: 4) + Define o número de threads que processam os pedidos RPC (omissão: 4) + + + + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + Activa a opção DB_PRIVATE no ambiente de dados da carteira (omissão: 1) + + + + Show all debugging options (usage: --help -help-debug) + Mostrar todas as opções de depuração (uso: --help -help-debug) + + + + Show benchmark information (default: 0) + Mostrar informação de referência (omissão: 0) + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Diminuir o ficheiro debug.log ao iniciar o cliente (omissão: 1 quando não usa opção -debug) + + + + Signing failed. + A assinatura falhou. + + + + Signing timed out, please resubmit. + A assinatura excedeu o tempo limite, por favor volte a enviar. + + + + Signing transaction failed + A assinatura da transacção falhou + + + + Specify configuration file (default: dash.conf) + Especificar ficheiro de configuração (omissão: dash.conf) + + + + Specify connection timeout in milliseconds (default: 5000) + Especificar o limite de tempo de ligação em milissegundos (omissão: 5000) + + + + Specify data directory + Especificar a pasta de dados + + + + Specify masternode configuration file (default: masternode.conf) + Especificar o ficheiro de configuração de masternodes (omissão: masternode.conf) + + + + Specify pid file (default: dashd.pid) + Especificar o ficheiro pid (omissão: dashd.pid) + + + + Specify wallet file (within data directory) + Especificar o ficheiro da carteira (dentro da pasta de dados) + + + + Specify your own public address + Especificar o seu endereço público + + + + Spend unconfirmed change when sending transactions (default: 1) + Gastar o troco não confirmado ao enviar transacções (omissão: 1) + + + + Start Dash Core Daemon + Iniciar o Serviço Dash Core + + + + System error: + Erro de sistema: + + + + This help message + Esta mensagem de ajuda + + + + This is intended for regression testing tools and app development. + Esta opção destina-se a ferramentas de testes de regressão e desenvolvimento de aplicativos. + + + + This is not a masternode. + Este não é um masternode. + + + + Threshold for disconnecting misbehaving peers (default: 100) + Limiar para desligar nós com comportamento inadequado (omissão: 100) + + + + To use the %s option + Para usar a opção %s + + + + Transaction amount too small + Quantia da transacção demasiado pequena + + + + Transaction amounts must be positive + As quantias da transacção tem que ser positivas + + + + Transaction created successfully. + Transacção criada com sucesso. + + + + Transaction fees are too high. + As taxas da transacção são demasiado elevadas. + + + + Transaction not valid. + A transacção não é válida. + + + + Transaction too large + Transacção demasiado grande + + + + Unable to bind to %s on this computer (bind returned error %s) + Não foi possível vincular a %s neste computador (o vínculo retornou o erro %s) + + + + Unable to sign masternode payment winner, wrong key? + Não foi possível assinar o masternode vencedor para pagamento, chave incorrecta? + + + + Unable to sign spork message, wrong key? + Não foi possível assinar a mensagem spork, chave incorrecta? + + + + Unknown -socks proxy version requested: %i + Versão solicitada de proxy -socks desconhecida: %i + + + + Unknown network specified in -onlynet: '%s' + Rede especificada desconhecida em -onlynet: '%s' + + + + Upgrade wallet to latest format + Actualizar carteira para o formato mais recente + + + + Usage (deprecated, use dash-cli): + Utilização (obsoleta, use dash-cli): + + + + Usage: + Utilização: + + + + Use KeePass 2 integration using KeePassHttp plugin (default: 0) + Usar integração KeePass 2 usando o KeePassHttp plugin (omissão: 0) + + + + Use N separate masternodes to anonymize funds (2-8, default: 2) + Usar N masternodes distintos para anonimizar fundos (2-8, omissão: 2) + + + + Use OpenSSL (https) for JSON-RPC connections + Usar OpenSSl (https) para as ligações JSON-RPC + + + + Use UPnP to map the listening port (default: 0) + Usar UPnP para mapear a porta de entrada (omissão: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + Usar UPnP para mapear a porta de entrada (omissão: 1 quando em escuta) + + + + Use the test network + Usar a rede de testes + + + + Username for JSON-RPC connections + Utilizador para as ligações JSON-RPC + + + + Value more than Darksend pool maximum allows. + Valor mais elevado do que o máximo permitido pelo Darksend. + + + + Verifying blocks... + A verificar blocos... + + + + Verifying wallet... + A verificar carteira... + + + + Wait for RPC server to start + Aguarde o inicio do servidor RPC + + + + Wallet %s resides outside data directory %s + A carteira %s encontra-se fora da pasta de dados %s + + + + Wallet is locked. + A carteira encontra-se bloqueada. + + + + Wallet needed to be rewritten: restart Dash to complete + A carteira necessita ser rescrita: reinicie o Dash para concluir + + + + Wallet options: + Opções da carteira: + + + + Warning + Aviso + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + Aviso: Argumento -debugnet obsoleto e ignorado, utilize -debug=net + + + + Warning: This version is obsolete, upgrade required! + Aviso: Esta versão é obsoleta, actualização necessária! + + + Wrong state. + + + + + You need to rebuild the database using -reindex to change -txindex + Necessita reconstruir a base de dados usando -reindex para alterar -txindex + + + + Zapping all transactions from wallet... + A apagar todas as transacções da carteira... + + + + on startup + no arranque + + + + version + versão + + + + wallet.dat corrupt, salvage failed + wallet.dat corrompido, recuperação falhou + + + \ No newline at end of file diff --git a/src/qt/locale/dash_pt_BR.ts b/src/qt/locale/dash_pt_BR.ts new file mode 100644 index 0000000000..cbd83dcc7f --- /dev/null +++ b/src/qt/locale/dash_pt_BR.ts @@ -0,0 +1,5276 @@ + + + AboutDialog + + + About Dash Core + Sobre a Dash Core + + + + <b>Dash Core</b> version + Versão <b>Dash Core</b> + + + + Copyright &copy; 2009-2014 The Bitcoin Core developers. +Copyright &copy; 2014-YYYY The Dash Core developers. + + + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + ⏎ +Este é um software experimental.⏎ +⏎ +Distribuido sob a licença de software MIT/X11, veja o arquivo anexo COPYING ou http://www.opensource.org/licenses/mit-license.php.⏎ +⏎ +Este produto inclui software desenvolvido pelo Projeto OpenSSL para uso no OpenSSL Toolkit (http://www.openssl.org/), software de criptografia escrito por Eric Young (eay@cryptsoft.com) e sofware UPnP escrito por Thomas Bernard. + + + + + Copyright + Copyright + + + + The Bitcoin Core developers + Programadores da Bitcoin Core + + + + The Dash Core developers + Programadores da Dash Core + + + + + (%1-bit) + (%1-bit) + + + + AddressBookPage + + + Double-click to edit address or label + Duplo-clique para editar o endereço ou o rótulo + + + + Create a new address + Criar um novo endereço + + + + &New + &Novo + + + + Copy the currently selected address to the system clipboard + Copie o endereço selecionado para a área de transferência do sistema + + + + &Copy + &Copiar + + + + Delete the currently selected address from the list + Excluir os endereços selecionados da lista + + + + &Delete + &Excluir + + + + Export the data in the current tab to a file + Exportar os dados na aba atual para um arquivo + + + + &Export + &Exportar + + + + C&lose + &Fechar + + + + Choose the address to send coins to + Escolha o endereço para enviar moedas + + + + Choose the address to receive coins with + Escolha o endereço para receber moedas + + + + C&hoose + Escol&ha + + + + Sending addresses + Enviando endereços + + + + Receiving addresses + Recebendo endereços + + + + These are your Dash addresses for sending payments. Always check the amount and the receiving address before sending coins. + Estes são seus endereços Dash para envio de pagamentos. Sempre confira o total, e o endereço de recebimento, dos pagamentos antes de enviar moedas. + + + + These are your Dash addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Estes são seus endereços Dash para recebimento de pagamentos. Recomenda-se o uso de um novo endereço de recebimento para cada transação. + + + + &Copy Address + &Copiar Endereço + + + + Copy &Label + Copiar &Rótulo + + + + &Edit + &Editar + + + + Export Address List + Exportar lista de endereços + + + + Comma separated file (*.csv) + Arquivo separado por vírgulas (*. csv) + + + + Exporting Failed + Exportação Falhou + + + + There was an error trying to save the address list to %1. + Ocorreu um erro ao tentar salvar a lista de endereço em %1. + + + + AddressTableModel + + + Label + Rótulo + + + + Address + Endereço + + + + (no label) + (Sem rótulo) + + + + AskPassphraseDialog + + + Passphrase Dialog + Janela da Frase de Segurança + + + + Enter passphrase + Digite a frase de segurança + + + + New passphrase + Nova frase de segurança + + + + Repeat new passphrase + Repita a nova frase de segurança + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Serve para desabilitar o envio de dinheiro, para o caso de o sistema operacional estar comprometido. Não provê segurança real. + + + + For anonymization only + Apenas para anonimização + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Digite a nova frase de seguraça da sua carteira. <br/> Por favor, use uma frase de <b>10 ou mais caracteres aleatórios,</b> ou <b>oito ou mais palavras.</b> + + + + Encrypt wallet + Criptografar carteira + + + + This operation needs your wallet passphrase to unlock the wallet. + Esta operação precisa de sua frase de segurança para desbloquear a carteira. + + + + Unlock wallet + Desbloquear carteira + + + + This operation needs your wallet passphrase to decrypt the wallet. + Esta operação precisa de sua frase de segurança para descriptografar a carteira. + + + + Decrypt wallet + Descriptografar carteira + + + + Change passphrase + Alterar frase de segurança + + + + Enter the old and new passphrase to the wallet. + Digite a frase de segurança antiga e nova para a carteira. + + + + Confirm wallet encryption + Confirmar criptografia da carteira + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Aviso: Se você encriptar sua wallet e perder sua senha, você vai <b>PERDER TODAS AS SUAS DASHS</b>! + + + + Are you sure you wish to encrypt your wallet? + Tem certeza de que deseja criptografar sua carteira? + + + + + Wallet encrypted + Carteira criptografada + + + + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + A Dash vai fechar agora para finalizar o procedimento de encriptação. Lembre-se que mesmo encriptando sua wallet, suas Darkcoins não estão totalmente protegidas de serem roubadas por algum malware que venha a infectar seu computador. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + IMPORTANTE: Qualquer backup prévio que você tenha feito do seu arquivo wallet deve ser substituído pelo novo e encriptado arquivo wallet gerado. Por razões de segurança, qualquer backup do arquivo wallet não criptografado se tornará inútil assim que você começar a usar uma nova carteira criptografada. + + + + + + + Wallet encryption failed + A criptografia da carteira falhou + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + A criptografia da carteira falhou devido a um erro interno. Sua carteira não estava criptografada. + + + + + The supplied passphrases do not match. + A frase de segurança fornecida não confere. + + + + Wallet unlock failed + O desbloqueio da carteira falhou + + + + + + The passphrase entered for the wallet decryption was incorrect. + A frase de segurança digitada para a descriptografia da carteira estava incorreta. + + + + Wallet decryption failed + A descriptografia da carteira falhou + + + + Wallet passphrase was successfully changed. + A frase de segurança da carteira foi alterada com êxito. + + + + + Warning: The Caps Lock key is on! + Atenção: A tecla Caps Lock está ligada! + + + + BitcoinGUI + + + Dash Core + Dash Core + + + + Wallet + Carteira + + + + Node + + + + + + [testnet] + [testnet] + + + + &Overview + &Visão geral + + + + Show general overview of wallet + Mostrar visão geral da carteira + + + + &Send + &Enviar + + + + Send coins to a Dash address + Envie moedas para um endereço Dash + + + + &Receive + &Receber + + + + Request payments (generates QR codes and dash: URIs) + Solicite pagamentos (gera códigos QR e dash:URIs) + + + + &Transactions + &Transações + + + + Browse transaction history + Navegar pelo histórico de transações + + + + E&xit + S&air + + + + Quit application + Sair da aplicação + + + + + &About Dash Core + &Sobre a Dash Core + + + + Show information about Dash + Exibe informações sobre a Dash + + + + + About &Qt + Sobre &Qt + + + + Show information about Qt + Mostrar informações sobre o Qt + + + + &Options... + &Opções... + + + + Modify configuration options for Dash + Modifica as opções de configuração para a Dash + + + + + &Show / Hide + &Exibir/Ocultar + + + + Show or hide the main Window + Mostrar ou esconder a Janela Principal. + + + + &Encrypt Wallet... + &Criptografar Carteira... + + + + Encrypt the private keys that belong to your wallet + Criptografar as chaves privadas que pertencem à sua carteira + + + + &Backup Wallet... + &Backup Carteira... + + + + Backup wallet to another location + Fazer cópia de segurança da carteira para uma outra localização + + + + &Change Passphrase... + &Mudar frase de segurança... + + + + Change the passphrase used for wallet encryption + Mudar a frase de segurança utilizada na criptografia da carteira + + + + &Unlock Wallet... + &Destranca a Wallet... + + + + Unlock wallet + Desbloquear carteira + + + + &Lock Wallet + &Tranca a Wallet + + + + Sign &message... + &Assinar Mensagem... + + + + Sign messages with your Dash addresses to prove you own them + Assine mensagens com seus endereços Dash para provar que são de sua propriedade + + + + &Verify message... + &Verificar mensagem... + + + + Verify messages to ensure they were signed with specified Dash addresses + Verifique mensagens para se assegurar de que foram assinadas por endereços Dash específicos + + + + &Information + &Informação + + + + Show diagnostic information + Exibe informações de diagnóstico + + + + &Debug console + + + + + Open debugging console + Abrir o console de depuração + + + + &Network Monitor + &Monitor de Rede + + + + Show network monitor + Exibe o monitor de rede + + + + Open &Configuration File + + + + + Open configuration file + Abrir arquivo de configuração + + + + &Sending addresses... + Enviando endereço&s... + + + + Show the list of used sending addresses and labels + Mostrar a lista de endereços de envio e rótulos usados + + + + &Receiving addresses... + &Receber endereços... + + + + Show the list of used receiving addresses and labels + Mostrar a lista de endereços de recebimento usados ​​e rótulos + + + + Open &URI... + Abrir &URI... + + + + Open a dash: URI or payment request + Abre um dash:URI ou solicitação de pagamento + + + + &Command-line options + Opções de linha de &comando + + + + Show the Dash Core help message to get a list with possible Dash command-line options + Exibe a mensagem de ajuda da Dash core, para se obter uma lista com as opções de linha de comando Dash possíveis + + + + &File + &Arquivo + + + + &Settings + &Configurações + + + + &Tools + &Ferramentas + + + + &Help + &Ajuda + + + + Tabs toolbar + Barra de ferramentas + + + + + Dash client + Cliente Dash + + + + %n active connection(s) to Dash network + + + + + Synchronizing with network... + Sincronizando com a rede... + + + + Importing blocks from disk... + Importando blocos do disco... + + + + Reindexing blocks on disk... + Reindexando blocos no disco... + + + + No block source available... + Nenhum servidor disponível... + + + + Processed %1 blocks of transaction history. + Processado %1 blocos do histórico de transações. + + + + Up to date + Atualizado + + + + %n hour(s) + %n hora%n horas + + + + %n day(s) + %n dia%n dias + + + + + %n week(s) + %n semana%n semanas + + + + %1 and %2 + %1 e %2 + + + + %n year(s) + + + + + %1 behind + %1 atrás + + + + Catching up... + Recuperando o atraso ... + + + + Last received block was generated %1 ago. + Último bloco recebido foi gerado %1 atrás. + + + + Transactions after this will not yet be visible. + Transações após isso ainda não estão visíveis. + + + + Dash + Dash + + + + Error + Erro + + + + Warning + Atenção + + + + Information + Informação + + + + Sent transaction + Transação enviada + + + + Incoming transaction + Transação recebida + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Data: %1 +Quantidade: %2 +Tipo: %3 +Endereço: %4 + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Carteira está <b>criptografada</b> e atualmente <b>desbloqueada</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only + A Wallet está <b> encriptada</b> e atualmente <b>destravada</b> apenas para anonimização + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Carteira está <b>criptografada</b> e atualmente <b>bloqueada</b> + + + + A fatal error occurred. Dash can no longer continue safely and will quit. + Ocorreu um erro fatal. A Dash não pode mais continuar de forma segura, e irá fechar + + + + ClientModel + + + Network Alert + Alerta da Rede + + + + CoinControlDialog + + + Coin Control Address Selection + Coin Control Address Selection + + + + Quantity: + Quantidade: + + + + Bytes: + Bytes: + + + + Amount: + Quantia: + + + + Priority: + Prioridade: + + + + Fee: + Taxa: + + + + Low Output: + Rendimento baixo: + + + + After Fee: + Depois da taxa: + + + + Change: + trocar + + + + (un)select all + (de)selecionar tudo + + + + Tree mode + Modo árvore + + + + List mode + Modo lista + + + + (1 locked) + (1 travado) + + + + Amount + Quantidade + + + + Label + Rótulo + + + + Address + Endereço + + + + Darksend Rounds + Rodadas Darksend + + + + Date + Data + + + + Confirmations + Confirmações + + + + Confirmed + Confirmado + + + + Priority + Prioridade + + + + Copy address + Copiar endereço + + + + Copy label + Copiar rótulo + + + + + Copy amount + Copiar quantia + + + + Copy transaction ID + Copiar ID da transação + + + + Lock unspent + Travar não gasto + + + + Unlock unspent + Destravar não gasto + + + + Copy quantity + Copiar quantidade + + + + Copy fee + Copiar taxa + + + + Copy after fee + Copia pós-taxa + + + + Copy bytes + Copiar bytes + + + + Copy priority + Copia prioridade + + + + Copy low output + Copia saída de pouco valor + + + + Copy change + Copia alteração + + + + highest + mais alta possível + + + + higher + muito alta + + + + high + alta + + + + medium-high + média-alta + + + + n/a + + + + + + medium + média + + + + low-medium + média-baixa + + + + low + baixa + + + + lower + muito baixa + + + + lowest + a mais baixa possível + + + + (%1 locked) + (%1 travado) + + + + none + nenhum + + + + Dust + Sujeira + + + + yes + sim + + + + + no + não + + + + This label turns red, if the transaction size is greater than 1000 bytes. + Esse marcador fica vermelho se a transação ultrapassar 1000 bytes. + + + + + This means a fee of at least %1 per kB is required. + Isso significa que uma taxa de pelo menos %1 por kB é necessária. + + + + Can vary +/- 1 byte per input. + Pode variar +/- 1 byte por entrada. + + + + Transactions with higher priority are more likely to get included into a block. + Transações de alta prioridade são mais propensas a serem incluídas em um bloco. + + + + This label turns red, if the priority is smaller than "medium". + Esse marcador fica vermelho se a prioridade for menor que "média". + + + + This label turns red, if any recipient receives an amount smaller than %1. + Esse marcador fica vermelho se qualquer destinatário receber uma quantia menor que %1 + + + + + This means a fee of at least %1 is required. + Isso significa que uma taxa de pelo menos %1 é necessária. + + + + Amounts below 0.546 times the minimum relay fee are shown as dust. + Quantias abaixo de 0,546 multiplicado pela taxa mínima é mostrada como sujeira. + + + + This label turns red, if the change is smaller than %1. + Esse marcador fica vermelho se o troco for menor que %1. + + + + + (no label) + (Sem rótulo) + + + + change from %1 (%2) + troco de %1 (%2) + + + + (change) + (troco) + + + + DarksendConfig + + + Configure Darksend + Configurar o Darksend + + + + Basic Privacy + Privacidade Básica + + + + High Privacy + Alta Privacidade + + + + Maximum Privacy + Privacidade Máxima + + + + Please select a privacy level. + Por favor, escolha um nível de privacidade. + + + + Use 2 separate masternodes to mix funds up to 1000 DASH + Usar 2 Masternodes separados para fazer a mixagem de fundos até 1000 DASH + + + + Use 8 separate masternodes to mix funds up to 1000 DASH + Usar 8 Masternodes separados para fazer a mixagem de fundos até 1000 DASH + + + + Use 16 separate masternodes + Usar 16 Masternodes separados + + + + This option is the quickest and will cost about ~0.025 DASH to anonymize 1000 DASH + Esta é a opção mais rápida e custará em torno de ~0,025 DASH para anonimizar 1000 DASH + + + + This option is moderately fast and will cost about 0.05 DASH to anonymize 1000 DASH + Esta opção é moderadamente rápida e custará em torno de ~0,05 DASH para anonimizar 1000 DASH + + + + 0.1 DASH per 1000 DASH you anonymize. + 0,1 DASH por cada 1000 DASH que você anonimizar. + + + + This is the slowest and most secure option. Using maximum anonymity will cost + Esta é a opção mais lenta e mais segura. Usar o máximo de anonimidade custará + + + + + + Darksend Configuration + Configuração do Darksend + + + + Darksend was successfully set to basic (%1 and 2 rounds). You can change this at any time by opening Dash's configuration screen. + O Darksend foi ajustado com sucesso para básico (%1 e 2 rodadas). Você pode alterar esse ajuste a qualquer momento, abrindo a tela de configuração da Dash. + + + + Darksend was successfully set to high (%1 and 8 rounds). You can change this at any time by opening Dash's configuration screen. + O Darksend foi ajustado com sucesso para alto (%1 e 8 rodadas). Você pode alterar esse ajuste a qualquer momento, abrindo a tela de configuração da Dash. + + + + Darksend was successfully set to maximum (%1 and 16 rounds). You can change this at any time by opening Dash's configuration screen. + O Darksend foi ajustado com sucesso para máximo (%1 e 16 rodadas). Você pode alterar esse ajuste a qualquer momento, abrindo a tela de configuração da Dash. + + + + EditAddressDialog + + + Edit Address + Editar Endereço + + + + &Label + &Rótulo + + + + The label associated with this address list entry + O rótulo associado a esta entrada na lista de endereços + + + + &Address + &Endereço + + + + The address associated with this address list entry. This can only be modified for sending addresses. + O endereço associado a esta lista de endereços de entrada. Isso só pode ser modificado para o envio de endereços. + + + + New receiving address + Novo endereço de recebimento + + + + New sending address + Novo endereço de envio + + + + Edit receiving address + Editar endereço de recebimento + + + + Edit sending address + Editar endereço de envio + + + + The entered address "%1" is not a valid Dash address. + O endereço informado "%1" não é um endereço Dash válido. + + + + The entered address "%1" is already in the address book. + O endereço digitado "%1" já se encontra no catálogo de endereços. + + + + Could not unlock wallet. + Não foi possível desbloquear a carteira. + + + + New key generation failed. + A geração de nova chave falhou. + + + + FreespaceChecker + + + A new data directory will be created. + Um novo diretório de dados será criado. + + + + name + nome + + + + Directory already exists. Add %1 if you intend to create a new directory here. + O diretório já existe. Adicione %1 se você pretende criar um novo diretório aqui. + + + + Path already exists, and is not a directory. + Esta pasta já existe, e não é um diretório. + + + + Cannot create data directory here. + Não é possível criar um diretório de dados aqui. + + + + HelpMessageDialog + + + Dash Core - Command-line options + Dash Core - Opções de linhas de comando + + + + Dash Core + Dash Core + + + + version + versão + + + + Usage: + Uso: + + + + command-line options + opções da linha de comando + + + + UI options + opções da UI + + + + Choose data directory on startup (default: 0) + Escolha o diretório de dados na inicialização (padrão: 0) + + + + Set language, for example "de_DE" (default: system locale) + Escolher língua, por exemplo "de_DE" (padrão: localização do sistema) + + + + Start minimized + Inicializar minimizado + + + + Set SSL root certificates for payment request (default: -system-) + Define certificados SSL root para requisição de pagamento (padrão: -system-) + + + + Show splash screen on startup (default: 1) + Mostrar tela inicial ao ligar (padrão: 1) + + + + Intro + + + Welcome + Bem-vindo + + + + Welcome to Dash Core. + Bem-vindo à Dash Core + + + + As this is the first time the program is launched, you can choose where Dash Core will store its data. + Como esta é a primeira vez que o programa é iniciado, você pode escolher onde a Dash Core irá armazenar seus dados. + + + + Dash Core will download and store a copy of the Dash block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + A Dash Core irá fazer o download e armazenamento de uma cópia do block chain Dash. Pelo menos %1GB de dados serão armazenados neste diretório, e irá aumentar com o tempo. A wallet também será armazenada neste diretório. + + + + Use the default data directory + Use o diretório de dados padrão + + + + Use a custom data directory: + Use um diretório de dados personalizado: + + + + Dash + Dash + + + + Error: Specified data directory "%1" can not be created. + Erro: O diretório de dados especificado "%1" não pode ser criado. + + + + Error + Erro + + + + GB of free space available + GB de espaço disponível + + + + (of %1GB needed) + (Mais de %1GB necessário) + + + + OpenURIDialog + + + Open URI + Abrir URI + + + + Open payment request from URI or file + Cobrança aberta de URI ou arquivo + + + + URI: + URI: + + + + Select payment request file + Selecione o arquivo de cobrança + + + + Select payment request file to open + Selecione o arquivo de cobrança para ser aberto + + + + OptionsDialog + + + Options + Opções + + + + &Main + Principal + + + + Automatically start Dash after logging in to the system. + Iniciar a Dash automaticamente após o login no sistema. + + + + &Start Dash on system login + $Iniciar a Dash ao logar no sistema + + + + Size of &database cache + Tamanho do banco de &dados do cache + + + + MB + MB + + + + Number of script &verification threads + Número de threads do script de &verificação + + + + (0 = auto, <0 = leave that many cores free) + (0 = automático, <0 = número de cores deixados livres) + + + + <html><head/><body><p>This setting determines the amount of individual masternodes that an input will be anonymized through. More rounds of anonymization gives a higher degree of privacy, but also costs more in fees.</p></body></html> + <html><head/><body><p>Esta configuração determina a quantidade de Masternodes individuais através dos quais um input será anonimizado. Mais rodadas de anonimização garantem um maior grau de privacidade, mas também custarão mais em fees.</p></body></html> + + + + Darksend rounds to use + Rodadas Darksend a utilizar + + + + This amount acts as a threshold to turn off Darksend once it's reached. + + + + + Amount of Dash to keep anonymized + Quantidade de dashs para manter anonimizado + + + + W&allet + C&arteira + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. + Taxa de transação opcional por kB que ajuda a garantir que suas transações sejam processadas rapidamente. A maioria das transações são de 1 kB. + + + + Pay transaction &fee + Pagar taxa de &transação + + + + Expert + Avançado + + + + Whether to show coin control features or not. + Mostrar ou não opções de controle da moeda. + + + + Enable coin &control features + Habilitar opções de &controle de moedas + + + + 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. + Se você desabilitar o gasto de um troco não confirmado, o troco da transação não poderá ser utilizado até a transação ter pelo menos uma confirmação. Isso também afeta seu saldo computado. + + + + &Spend unconfirmed change + Ga&star mudança não confirmada + + + + &Network + Rede + + + + Automatically open the Dash client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + Mapear porta usando &UPnP + + + + Connect to the Dash network through a SOCKS proxy. + + + + + &Connect through SOCKS proxy (default proxy): + &Conectado via proxy SOCKS (padrão proxy): + + + + Proxy &IP: + &IP do proxy: + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Endereço de IP do proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + &Port: + &Porta: + + + + Port of the proxy (e.g. 9050) + Porta do serviço de proxy (ex. 9050) + + + + SOCKS &Version: + &Versão do SOCKS: + + + + SOCKS version of the proxy (e.g. 5) + Versão do proxy SOCKS (ex. 5) + + + + &Window + &Janela + + + + Show only a tray icon after minimizing the window. + Mostrar apenas um ícone na bandeja ao minimizar a janela. + + + + &Minimize to the tray instead of the taskbar + &Minimizar para a bandeja em vez da barra de tarefas. + + + + 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. + Minimizar em vez de sair do aplicativo quando a janela for fechada. Quando esta opção é escolhida, o aplicativo só será fechado selecionando Sair no menu Arquivo. + + + + M&inimize on close + M&inimizar ao sair + + + + &Display + &Mostrar + + + + User Interface &language: + &Língua da interface com usuário: + + + + The user interface language can be set here. This setting will take effect after restarting Dash. + + + + + Language missing or translation incomplete? Help contributing translations here: +https://www.transifex.com/projects/p/dash/ + + + + + &Unit to show amounts in: + &Unidade usada para mostrar quantidades: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Escolha a unidade padrão de subdivisão para interface mostrar quando enviar bitcoins. + + + + Whether to show Dash addresses in the transaction list or not. + + + + + &Display addresses in transaction list + Mostrar en&dereços na lista de transações + + + + + 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 |. + URLs de terceiros (exemplo: explorador de blocos) que aparecem na aba de transações como itens do menu de contexto. %s na URL é substituido pela hash da transação. Múltiplas URLs são separadas pela barra vertical |. + + + + Third party transaction URLs + URLs da transação de terceiros + + + + Active command-line options that override above options: + Ativa as opções de linha de comando que sobrescreve as opções acima: + + + + Reset all client options to default. + Redefinir todas as opções do cliente para opções padrão. + + + + &Reset Options + &Redefinir opções + + + + &OK + &OK + + + + &Cancel + &Cancelar + + + + default + padrão + + + + none + nenhum + + + + Confirm options reset + Confirmar redefinição de opções + + + + + Client restart required to activate changes. + Reinicialização do aplicativo necessária para efetivar alterações. + + + + Client will be shutdown, do you want to proceed? + O aplicativo vai desligar, deseja continuar? + + + + This change would require a client restart. + Essa mudança requer uma reinicialização do aplicativo. + + + + The supplied proxy address is invalid. + O endereço proxy fornecido é inválido. + + + + OverviewPage + + + Form + Formulário + + + + Wallet + Carteira + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Dash network after a connection is established, but this process has not completed yet. + + + + + Available: + Disponível: + + + + Your current spendable balance + Seu saldo atual spendable + + + + Pending: + Pendente: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Total de transações que ainda têm de ser confirmados, e ainda não contam para o equilíbrio spendable + + + + Immature: + Imaturo: + + + + Mined balance that has not yet matured + Saldo minerado que ainda não maturou + + + + Total: + Total: + + + + Your current total balance + Seu saldo total atual + + + + Status: + Status: + + + + Enabled/Disabled + Ativado/Desativado + + + + Completion: + + + + + Darksend Balance: + Balança Darksend: + + + + 0 DASH + 0 DASH + + + + Amount and Rounds: + + + + + 0 DASH / 0 Rounds + + + + + Submitted Denom: + + + + + The denominations you submitted to the Masternode. To mix, other users must submit the exact same denominations. + + + + + n/a + + + + + + + + Darksend + + + + + Start/Stop Mixing + + + + + (Last Message) + (Última Mensagem) + + + + Try to manually submit a Darksend request. + + + + + Try Mix + + + + + Reset the current status of Darksend (can interrupt Darksend if it's in the process of Mixing, which can cost you money!) + + + + + Reset + Resetar + + + + <b>Recent transactions</b> + <b>Transações recentes</b> + + + + + + out of sync + fora de sincronia + + + + + Disabled + Desativado + + + + + + Start Darksend Mixing + + + + + + Stop Darksend Mixing + + + + + No inputs detected + + + + + Found unconfirmed denominated outputs, will wait till they confirm to recalculate. + + + + + Rounds + + + + + Enabled + Ativado + + + + Last Darksend message: + + + + + + + Darksend is idle. + + + + + Mixing in progress... + + + + + Darksend request complete: Your transaction was accepted into the pool! + + + + + Submitted following entries to masternode: + + + + + + + Submitted to masternode, Waiting for more entries + + + + + Found enough users, signing ... + + + + + Found enough users, signing ( waiting. ) + + + + + Found enough users, signing ( waiting.. ) + + + + + Found enough users, signing ( waiting... ) + + + + + Transmitting final transaction. + Transmitindo transação final. + + + + Finalizing transaction. + Finalizando transação. + + + + Darksend request incomplete: + + + + + Will retry... + + + + + Darksend request complete: + + + + + Submitted to masternode, waiting in queue . + + + + + Submitted to masternode, waiting in queue .. + + + + + Submitted to masternode, waiting in queue ... + + + + + Unknown state: + + + + + N/A + N/A + + + + Darksend was successfully reset. + Darksend foi resetado com sucesso. + + + + Darksend requires at least %1 to use. + + + + + Wallet is locked and user declined to unlock. Disabling Darksend. + + + + + PaymentServer + + + + + + + + Payment request error + Erro no pedido de pagamento + + + + Cannot start dash: click-to-pay handler + + + + + Net manager warning + Gerenciador de rede problemático + + + + Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. + Seu proxy ativo não suporta SOCKS5, que é obrigatório para cobranças via proxy. + + + + + URI handling + Manipulação de URI + + + + Payment request fetch URL is invalid: %1 + URL de cobrança é inválida: %1 + + + + URI can not be parsed! This can be caused by an invalid Dash address or malformed URI parameters. + + + + + Payment request file handling + Manipulação de arquivo de cobrança + + + + Payment request file can not be read or processed! This can be caused by an invalid payment request file. + Arquivo de cobrança não pôde ser lido ou processado! Isso pode ter sido causado por um arquivo de cobrança inválido. + + + + Unverified payment requests to custom payment scripts are unsupported. + Cobrança não verificada para scripts de pagamento personalizados não é suportado. + + + + Requested payment amount of %1 is too small (considered dust). + Valor do pagamento solicitado de %1 é muito pequeno (Considerado poeira). + + + + Refund from %1 + Reembolso de %1 + + + + Error communicating with %1: %2 + Erro na comunicação com %1: %2 + + + + Payment request can not be parsed or processed! + Cobrança não pôde ser processada! + + + + Bad response from server %1 + Resposta incorreta do servidor %1 + + + + Network request error + Erro de solicitação de rede + + + + Payment acknowledged + Pagamento reconhecido + + + + QObject + + + + + + Dash + Dash + + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Erro: Não foi possível interpretar arquivo de configuração: %1. Utilize apenas a sintaxe chave=valor. + + + + Error reading masternode configuration file: %1 + + + + + Error: Invalid combination of -regtest and -testnet. + Erro: Combinação inválida de-regtest e testnet. + + + + Dash Core didn't yet exit safely... + + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + QRImageWidget + + + &Save Image... + &Salvar imagem + + + + &Copy Image + &Copiar Imagem + + + + Save QR Code + Salvar código QR + + + + PNG Image (*.png) + PNG Imagem (*.png) + + + + RPCConsole + + + Tools window + + + + + &Information + &Informação + + + + Masternode Count + + + + + General + Geral + + + + Name + Nome + + + + Client name + Nome do cliente + + + + + + + + + + + + + N/A + N/A + + + + Number of connections + Número de conexões + + + + Open the Dash debug log file from the current data directory. This can take a few seconds for large log files. + + + + + &Open + &Abrir + + + + Startup time + Horário de inicialização + + + + Network + Rede + + + + Last block time + Horário do último bloco + + + + Debug log file + Arquivo de log de Depuração + + + + Using OpenSSL version + Usando OpenSSL versão + + + + Build date + Data do 'build' + + + + Current number of blocks + Quantidade atual de blocos + + + + Client version + Versão do cliente + + + + Block chain + Corrente de blocos + + + + &Console + &Console + + + + Clear console + Limpar console + + + + &Network Traffic + Tráfico de Rede + + + + &Clear + &Limpar + + + + Totals + Totais + + + + + In: + Entrada: + + + + + Out: + Saída: + + + + Welcome to the Dash RPC console. + + + + + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + Use as setas para cima e para baixo para navegar pelo histórico, e <b>Ctrl-L</b> para limpar a tela. + + + + Type <b>help</b> for an overview of available commands. + Digite <b>help</b> para uma visão geral dos comandos disponíveis. + + + + %1 B + %1 B + + + + %1 KB + %1 KB + + + + %1 MB + %1 MB + + + + %1 GB + %1 GB + + + + %1 m + %1 m + + + + %1 h + %1 h + + + + %1 h %2 m + %1 h %2 m + + + + ReceiveCoinsDialog + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Reutilize um dos endereços de recebimento anteriormente utilizados. Reutilizar um endereço implica em problemas com segurança e privacidade. Não reutilize a menos que esteja refazendo uma cobrança já feita anteriormente. + + + + R&euse an existing receiving address (not recommended) + R&eutilize um endereço de recebimento (não recomendado) + + + + + 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 Dash network. + + + + + &Message: + &Mensagem + + + + + An optional label to associate with the new receiving address. + Um marcador opcional para associar ao novo endereço de recebimento. + + + + Use this form to request payments. All fields are <b>optional</b>. + Use esse formulário para fazer cobranças. Todos os campos são <b>opcionais</b>. + + + + &Label: + &Rótulo: + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Uma quantia opcional para cobrar. Deixe vazio ou em branco se o pagador puder especificar a quantia. + + + + &Amount: + Qu&antia: + + + + &Request payment + &Requisitar Pagamento + + + + Clear all fields of the form. + Limpa todos os campos do formulário. + + + + Clear + Limpar + + + + Requested payments history + Histórico de cobranças + + + + Show the selected request (does the same as double clicking an entry) + Mostra a cobrança selecionada (o mesmo que clicar duas vezes em um registro) + + + + Show + Mostrar + + + + Remove the selected entries from the list + Remove o registro selecionado da lista + + + + Remove + Remover + + + + Copy label + Copiar rótulo + + + + Copy message + Copiar mensagem + + + + Copy amount + Copiar quantia + + + + ReceiveRequestDialog + + + QR Code + Código QR + + + + Copy &URI + Copiar &URI + + + + Copy &Address + &Copiar Endereço + + + + &Save Image... + &Salvar Imagem... + + + + Request payment to %1 + Requisitar pagamento para %1 + + + + Payment information + Informação de pagamento + + + + URI + URI + + + + Address + Endereço + + + + Amount + Quantidade + + + + Label + Rótulo + + + + Message + Mensagem + + + + Resulting URI too long, try to reduce the text for label / message. + URI resultante muito longa. Tente reduzir o texto do rótulo ou da mensagem. + + + + Error encoding URI into QR Code. + Erro ao codigicar o URI em código QR + + + + RecentRequestsTableModel + + + Date + Data + + + + Label + Rótulo + + + + Message + Mensagem + + + + Amount + Quantidade + + + + (no label) + (Sem rótulo) + + + + (no message) + (sem mensagem) + + + + (no amount) + (sem quantia especificada) + + + + SendCoinsDialog + + + + + + Send Coins + Enviar dinheiro + + + + Coin Control Features + Opções de Controle da Moeda + + + + Inputs... + Entradas... + + + + automatically selected + automaticamente selecionado + + + + Insufficient funds! + Saldo insuficiente! + + + + Quantity: + Quantidade: + + + + Bytes: + Bytes: + + + + Amount: + Quantia: + + + + Priority: + Prioridade: + + + + medium + média + + + + Fee: + Taxa: + + + + Low Output: + Rendimento baixo: + + + + no + não + + + + After Fee: + Depois da taxa: + + + + Change: + trocar + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Se isso estiver ativo e o endereço de troco estiver vazio ou inválido, o troco será enviado a um novo endereço gerado na hora. + + + + Custom change address + Endereço específico de troco + + + + Confirm the send action + Confirmar o envio + + + + S&end + Enviar + + + + Clear all fields of the form. + Limpar todos os campos do formulário. + + + + Clear &All + Limpar Tudo + + + + Send to multiple recipients at once + Enviar para vários destinatários de uma só vez + + + + Add &Recipient + Adicionar destinatário + + + + Darksend + + + + + InstantX + + + + + Balance: + Saldo: + + + + Copy quantity + Copiar quantidade + + + + Copy amount + Copiar quantia + + + + Copy fee + Copiar taxa + + + + Copy after fee + Copia pós-taxa + + + + Copy bytes + Copiar bytes + + + + Copy priority + Copia prioridade + + + + Copy low output + Copia saída de pouco valor + + + + Copy change + Copia alteração + + + + + + using + + + + + + anonymous funds + fundos anônimos + + + + (darksend requires this amount to be rounded up to the nearest %1). + + + + + any available funds (not recommended) + qualquer fundo disponível (não recomendado) + + + + and InstantX + + + + + + + + %1 to %2 + %1 para %2 + + + + Are you sure you want to send? + Tem certeza que quer enviar? + + + + are added as transaction fee + são adicionados como taxa de transação + + + + Total Amount %1 (= %2) + Quantidade Total %1 (= %2) + + + + or + ou + + + + Confirm send coins + Confirmar envio de dinheiro + + + + Payment request expired + Pedido de pagamento expirado + + + + Invalid payment address %1 + Endereço de pagamento inválido %1 + + + + The recipient address is not valid, please recheck. + O endereço do destinatário não é válido, favor verificar. + + + + The amount to pay must be larger than 0. + A quantidade a ser paga precisa ser maior que 0. + + + + The amount exceeds your balance. + A quantidade excede seu saldo. + + + + The total exceeds your balance when the %1 transaction fee is included. + O total excede seu saldo quando uma taxa de transação de %1 é incluída. + + + + Duplicate address found, can only send to each address once per send operation. + Endereço duplicado: pode-se enviar para cada endereço apenas uma vez por transação. + + + + Transaction creation failed! + A criação de transação falhou! + + + + 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 and coins were spent in the copy but not marked as spent here. + A transação foi rejeitada! Isso pode acontecer se alguns bitcoins na sua carteira já foram gastos em outro local, por exemplo se você tiver uma cópia do wallet.dat e os bitcoins tiverem sido gastos na cópia mas não marcados como gastos aqui ainda. + + + + Error: The wallet was unlocked only to anonymize coins. + + + + + Warning: Invalid Dash address + + + + + Warning: Unknown change address + Atenção: endereço de troco desconhecido + + + + (no label) + (Sem rótulo) + + + + SendCoinsEntry + + + This is a normal payment. + Este é um pagamento normal. + + + + Pay &To: + Pagar &Para: + + + + The address to send the payment to (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + O endereço para enviar pagamento para (ex: XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + Choose previously used address + Escolher endereço usado anteriormente + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Colar o endereço da área de transferência + + + + Alt+P + Alt+P + + + + + + Remove this entry + Remover esta entrada + + + + &Label: + &Rótulo: + + + + Enter a label for this address to add it to the list of used addresses + Digite um rótulo para este endereço para adicioná-lo no catálogo + + + + + + A&mount: + Q&uantidade: + + + + Message: + Mensagem: + + + + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + + + + + This is an unverified payment request. + Essa é uma cobrança não verificada. + + + + + Pay To: + Pague Para: + + + + + Memo: + Memorizar: + + + + This is a verified payment request. + Essa é cobrança verificada. + + + + Enter a label for this address to add it to your address book + Digite um rótulo para este endereço para adicioná-lo ao catálogo de endereços + + + + ShutdownWindow + + + Dash Core is shutting down... + + + + + Do not shut down the computer until this window disappears. + Não desligue o computador até esta janela desaparece. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Assinaturas - Assinar / Verificar uma mensagem + + + + &Sign Message + &Assinar Mensagem + + + + 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. + Você pode assinar mensagens com seus endereços para provar que você é o dono deles. Seja cuidadoso para não assinar algo vago, pois ataques de pishing podem tentar te enganar para dar sua assinatura de identidade para eles. Apenas assine afirmações completamente detalhadas com as quais você concorda. + + + + The address to sign the message with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + + Choose previously used address + Escolha um endereço usado anteriormente + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Colar o endereço da área de transferência + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Entre a mensagem que você quer assinar aqui + + + + Signature + Assinatura + + + + Copy the current signature to the system clipboard + Copiar a assinatura para a área de transferência do sistema + + + + Sign the message to prove you own this Dash address + + + + + Sign &Message + Assinar &Mensagem + + + + Reset all sign message fields + Limpar todos os campos de assinatura da mensagem + + + + + Clear &All + Limpar Tudo + + + + &Verify Message + &Verificar Mensagem + + + + 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. + Forneça o endereço da assinatura, a mensagem (se assegure que você copiou quebras de linha, espaços, tabs, etc. exatamente) e a assinatura abaixo para verificar a mensagem. Cuidado para não ler mais na assinatura do que está escrito na mensagem propriamente, para evitar ser vítima de uma ataque do tipo "man-in-the-middle". + + + + The address the message was signed with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + Verify the message to ensure it was signed with the specified Dash address + + + + + Verify &Message + Verificar &Mensagem + + + + Reset all verify message fields + Limpar todos os campos de assinatura da mensagem + + + + Click "Sign Message" to generate signature + Clique em "Assinar Mensagem" para gerar a assinatura + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + + The entered address is invalid. + O endereço fornecido é inválido. + + + + + + + Please check the address and try again. + Por favor, verifique o endereço e tente novamente. + + + + + The entered address does not refer to a key. + O endereço fornecido não se refere a uma chave. + + + + Wallet unlock was cancelled. + Desbloqueamento da Carteira foi cancelado. + + + + Private key for the entered address is not available. + A chave privada para o endereço fornecido não está disponível. + + + + Message signing failed. + Assinatura da mensagem falhou. + + + + Message signed. + Mensagem assinada. + + + + The signature could not be decoded. + A assinatura não pode ser decodificada. + + + + + Please check the signature and try again. + Por favor, verifique a assinatura e tente novamente. + + + + The signature did not match the message digest. + A assinatura não corresponde ao "resumo da mensagem". + + + + Message verification failed. + Verificação da mensagem falhou. + + + + Message verified. + Mensagem verificada. + + + + SplashScreen + + + Dash Core + Dash Core + + + + Version %1 + + + + + The Bitcoin Core developers + Programadores do Bitcoin Core + + + + The Dash Core developers + Programadores da Dash Core + + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + Aberto até %1 + + + + + + + conflicted + em conflito + + + + %1/offline (verified via instantx) + + + + + %1/confirmed (verified via instantx) + + + + + %1 confirmations (verified via instantx) + %1 confirmações (verificado via instantx) + + + + %1/offline + %1/offline + + + + %1/unconfirmed + %1/não confirmadas + + + + + %1 confirmations + %1 confirmações + + + + %1/offline (InstantX verification in progress - %2 of %3 signatures) + + + + + %1/confirmed (InstantX verification in progress - %2 of %3 signatures ) + + + + + %1 confirmations (InstantX verification in progress - %2 of %3 signatures) + + + + + %1/offline (InstantX verification failed) + + + + + %1/confirmed (InstantX verification failed) + + + + + Status + Status + + + + , has not been successfully broadcast yet + , ainda não foi propagada na rede com sucesso. + + + + , broadcast through %n node(s) + + + + + Date + Data + + + + Source + Fonte + + + + Generated + Gerados + + + + + From + De + + + + unknown + desconhecido + + + + + + To + Para + + + + + own address + seu próprio endereço + + + + label + rótulo + + + + + + + + Credit + Crédito + + + + matures in %n more block(s) + + + + + not accepted + não aceito + + + + + + + Debit + Débito + + + + Transaction fee + Taxa de transação + + + + Net amount + Valor líquido + + + + + Message + Mensagem + + + + Comment + Comentário + + + + Transaction ID + ID da transação + + + + Merchant + Mercador + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Bitcoins recém minerados precisam aguardar %1 blocos antes de serem gastos. Quando o bloco foi gerado, ele foi disseminado pela rede para ser adicionado à cadeia de blocos: blockchain. Se ele falhar em ser inserido na cadeia, seu estado será modificado para "não aceito" e ele não poderá ser gasto. Isso pode acontecer eventualmente quando blocos são gerados quase que simultaneamente. + + + + Debug information + Informação de depuração + + + + Transaction + Transação + + + + Inputs + Entradas + + + + Amount + Quantidade + + + + true + verdadeiro + + + + false + falso + + + + TransactionDescDialog + + + Transaction details + Detalhes da transação + + + + This pane shows a detailed description of the transaction + Este painel mostra uma descrição detalhada da transação + + + + TransactionTableModel + + + Date + Data + + + + Type + Tipo + + + + Address + Endereço + + + + Amount + Quantidade + + + + Open for %n more block(s) + + + + + Open until %1 + Aberto até %1 + + + + Offline + Offline + + + + Unconfirmed + Não confirmado + + + + Confirming (%1 of %2 recommended confirmations) + Confirmando (%1 de %2 confirmações recomendadas) + + + + Confirmed (%1 confirmations) + Confirmado (%1 confirmações) + + + + Conflicted + Conflitou + + + + Immature (%1 confirmations, will be available after %2) + Recém-criado (%1 confirmações, disponível somente após %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Este bloco não foi recebido por nenhum outro participante da rede e provavelmente não será aceito! + + + + Generated but not accepted + Gerado mas não aceito + + + + Received with + Recebido por + + + + Received from + Recebido de + + + + Received via Darksend + + + + + Sent to + Enviado para + + + + Payment to yourself + Pagamento para você mesmo + + + + Mined + Minerado + + + + Darksend Denominate + + + + + Darksend Collateral Payment + + + + + Darksend Make Collateral Inputs + + + + + Darksend Create Denominations + + + + + Darksent + + + + + (n/a) + (n/a) + + + + Transaction status. Hover over this field to show number of confirmations. + Status da transação. Passe o mouse sobre este campo para mostrar o número de confirmações. + + + + Date and time that the transaction was received. + Data e hora em que a transação foi recebida. + + + + Type of transaction. + Tipo de transação. + + + + Destination address of transaction. + Endereço de destino da transação. + + + + Amount removed from or added to balance. + Quantidade debitada ou creditada ao saldo. + + + + TransactionView + + + + All + Todos + + + + Today + Hoje + + + + This week + Esta semana + + + + This month + Este mês + + + + Last month + Mês passado + + + + This year + Este ano + + + + Range... + Intervalo... + + + + Received with + Recebido por + + + + Sent to + Enviado para + + + + Darksent + + + + + Darksend Make Collateral Inputs + + + + + Darksend Create Denominations + + + + + Darksend Denominate + + + + + Darksend Collateral Payment + + + + + To yourself + Para você mesmo + + + + Mined + Minerado + + + + Other + Outro + + + + Enter address or label to search + Procure um endereço ou rótulo + + + + Min amount + Quantidade mínima + + + + Copy address + Copiar endereço + + + + Copy label + Copiar rótulo + + + + Copy amount + Copiar quantia + + + + Copy transaction ID + Copiar ID da transação + + + + Edit label + Editar rótulo + + + + Show transaction details + Mostrar detalhes da transação + + + + Export Transaction History + Exportar Histórico de Transação + + + + Comma separated file (*.csv) + Arquivo separado por vírgulas (*. csv) + + + + Confirmed + Confirmado + + + + Date + Data + + + + Type + Tipo + + + + Label + Rótulo + + + + Address + Endereço + + + + Amount + Quantidade + + + + ID + ID + + + + Exporting Failed + Exportação Falhou + + + + There was an error trying to save the transaction history to %1. + Ocorreu um erro ao tentar salvar o histórico de transação em %1. + + + + Exporting Successful + Exportação feita com sucesso + + + + The transaction history was successfully saved to %1. + O histórico de transação foi gravado com sucesso em %1. + + + + Range: + Intervalo: + + + + to + para + + + + WalletFrame + + + No wallet has been loaded. + Nenhuma carteira foi carregada. + + + + WalletModel + + + + Send Coins + Send Coins + + + + InstantX doesn't support sending values that high yet. Transactions are currently limited to %n DASH. + + + + + WalletView + + + &Export + &Exportar + + + + Export the data in the current tab to a file + Exportar os dados na aba atual para um arquivo + + + + Backup Wallet + Fazer cópia de segurança da Carteira + + + + Wallet Data (*.dat) + Dados da Carteira (*.dat) + + + + Backup Failed + Cópia de segurança Falhou + + + + There was an error trying to save the wallet data to %1. + Ocorreu um erro ao tentar salvar os dados da carteira em %1. + + + + Backup Successful + Backup feito com sucesso + + + + The wallet data was successfully saved to %1. + Os dados da carteira foram salvos com sucesso em %1. + + + + dash-core + + + %s, you must set a rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=dashrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com + + + + + + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. Dash Core is probably already running. + + + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + + + + + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. + + + + + Disable all Masternode and Darksend related functionality (0-1, default: 0) + + + + + Enable instantx, show confirmations for locked transactions (bool, default: true) + + + + + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) + + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. + + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + 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 and coins were spent in the copy but not marked as spent here. + + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! + + + + + Error: Wallet unlocked for anonymization only, unable to create transaction. + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Fees smaller than this are considered zero fee (for transaction creation) (default: + + + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + + + + + Found unconfirmed denominated outputs, will wait till they confirm to continue. + + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. + + + + + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) + + + + + Name to construct url for KeePass entry that stores the wallet passphrase + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + + 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) + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + + + + + Set external address:port to get to this masternode (example: address:port) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + + + + + Show N confirmations for a successfully locked transaction (0-9999, default: 1) + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + Unable to bind to %s on this computer. Dash Core is probably already running. + + + + + Unable to locate enough Darksend denominated funds for this transaction. + + + + + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. + + + + + Unable to locate enough Darksend non-denominated funds for this transaction. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) + + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. + Aviso: Por favor. verifique se a data e hora do seu computador estão corretas! Se estiverem erradas, Dash não funcionará corretamente. + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + + + + + You must specify a masternodeprivkey in the configuration. Please see documentation for help. + + + + + (default: 1) + + + + + (default: wallet.dat) + + + + + <category> can be: + + + + + Accept command line and JSON-RPC commands + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Add a node to connect to and attempt to keep the connection open + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + Allow JSON-RPC connections from specified IP address + + + + + Already have that input. + + + + + Always query for peer addresses via DNS lookup (default: 0) + + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + + Block creation options: + + + + + Can't denominate: no compatible inputs left. + + + + + Cannot downgrade wallet + + + + + Cannot resolve -bind address: '%s' + + + + + Cannot resolve -externalip address: '%s' + + + + + Cannot write default address + + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + + Collateral is not valid. + + + + + Collateral not valid. + + + + + Connect only to the specified node(s) + + + + + Connect through SOCKS proxy + + + + + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) + + + + + Connect to KeePassHttp on port <port> (default: 19455) + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Connection options: + Opções de conexão: + + + + Corrupted block database detected + + + + + Dash Core Daemon + + + + + Dash Core RPC client version + + + + + Darksend is disabled. + + + + + Darksend options: + + + + + Debugging/Testing options: + + + + + Disable safemode, override a real safe mode event (default: 0) + + + + + Discover own IP address (default: 1 when listening and no -externalip) + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Done loading + + + + + Downgrading and trying again. + + + + + Enable the client to act as a masternode (0-1, default: 0) + + + + + Entries are full. + Entradas estão cheias. + + + + Error connecting to masternode. + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading block database + + + + + Error loading wallet.dat + Erro ao carregar carteira.dat + + + + Error loading wallet.dat: Wallet corrupted + Erro ao carregar carteira.dat: Carteira corrompida + + + + Error loading wallet.dat: Wallet requires newer version of Dash + + + + + Error opening block database + + + + + Error reading from database, shutting down. + + + + + Error recovering public key. + Erro ao recuperar chave pública. + + + + Error + Erro + + + + Error: Disk space is low! + Erro: Pouco espaço em disco! + + + + Error: Wallet locked, unable to create transaction! + Erro: Carteira bloqueada, incapaz de criar transação! + + + + Error: You already have pending entries in the Darksend pool + + + + + Error: system error: + Erro: erro de sistema: + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Failed to read block info + Falha ao ler informação do bloco + + + + Failed to read block + Falha ao ler bloco + + + + Failed to sync block index + + + + + Failed to write block index + + + + + Failed to write block info + + + + + Failed to write block + Falha ao escrever bloco + + + + Failed to write file info + + + + + Failed to write to coin database + + + + + Failed to write transaction index + + + + + Failed to write undo data + + + + + Fee per kB to add to transactions you send + + + + + Fees smaller than this are considered zero fee (for relaying) (default: + + + + + Force safe mode (default: 0) + Forçar modo seguro (default: 0) + + + + Generate coins (default: 0) + + + + + Get help for a command + + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + + If <category> is not supplied, output all debugging information. + + + + + Ignore masternodes less than version (example: 70050; default : 0) + + + + + Importing... + Importando... + + + + Imports blocks from external blk000??.dat file + + + + + Incompatible mode. + + + + + Incompatible version. + Versão incompatível. + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Information + Informação + + + + Initialization sanity check failed. Dash Core is shutting down. + + + + + Input is not valid. + + + + + InstantX options: + Opções do InstantX: + + + + Insufficient funds + Saldo insuficiente + + + + Insufficient funds. + Saldo insuficiente. + + + + Invalid -onion address: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + + Invalid amount + Quantia inválida + + + + Invalid masternodeprivkey. Please see documenation. + + + + + Invalid private key. + Chave privada inválida. + + + + Invalid script detected. + + + + + KeePassHttp id for the established association + + + + + KeePassHttp key for AES encrypted communication with KeePass + + + + + Keep N dash anonymized (default: 0) + + + + + Keep at most <n> unconnectable blocks in memory (default: %u) + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Last Darksend was too recent. + + + + + Last successful darksend action was too recent. + + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + + List commands + Lista de comandos + + + + Listen for connections on <port> (default: 9999 or testnet: 19999) + + + + + Loading addresses... + Carregando endereços... + + + + Loading block index... + + + + + Loading masternode list... + + + + + Loading wallet... (%3.2f %%) + + + + + Loading wallet... + Carregando carteira... + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + + Maintain a full transaction index (default: 0) + + + + + Maintain at most <n> connections to peers (default: 125) + + + + + Masternode options: + + + + + Masternode queue is full. + + + + + Masternode: + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + + Missing input transaction information. + + + + + No compatible masternode found. + + + + + No funds detected in need of denominating. + + + + + No masternodes detected. + + + + + No matching denominations found for mixing. + + + + + Non-standard public key detected. + + + + + Not compatible with existing transactions. + + + + + Not enough file descriptors available. + + + + + Not in the masternode list. + + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + + Options: + Opções: + + + + Password for JSON-RPC connections + + + + + Prepend debug output with timestamp (default: 1) + + + + + Print block on startup, if found in block index + + + + + Print block tree on startup (default: 0) + + + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + + RPC client options: + + + + + RPC server options: + + + + + Randomly drop 1 of every <n> network messages + + + + + Randomly fuzz 1 of every <n> network messages + + + + + Rebuild block chain index from current blk000??.dat files + + + + + Rescan the block chain for missing wallet transactions + + + + + Rescanning... + Escaneando... + + + + Run a thread to flush wallet periodically (default: 1) + + + + + Run in the background as a daemon and accept commands + + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + + Send command to Dash Core + Enviar comando para Dash Core + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + + Send trace/debug info to console instead of debug.log file + + + + + Server certificate file (default: server.cert) + + + + + Server private key (default: server.pem) + + + + + Session not complete! + Sessão não completa! + + + + Session timed out (30 seconds), please resubmit. + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Set key pool size to <n> (default: 100) + + + + + Set maximum block size in bytes (default: %d) + + + + + Set minimum block size in bytes (default: 0) + + + + + Set the masternode private key + + + + + Set the number of threads to service RPC calls (default: 4) + + + + + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Show benchmark information (default: 0) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing failed. + + + + + Signing timed out, please resubmit. + + + + + Signing transaction failed + + + + + Specify configuration file (default: dash.conf) + + + + + Specify connection timeout in milliseconds (default: 5000) + + + + + Specify data directory + Especificar diretório de dados + + + + Specify masternode configuration file (default: masternode.conf) + + + + + Specify pid file (default: dashd.pid) + + + + + Specify wallet file (within data directory) + + + + + Specify your own public address + Especificar seu próprio endereço público + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + + Start Dash Core Daemon + + + + + System error: + Erro do sistema: + + + + This help message + Essa mensagem de ajuda + + + + This is intended for regression testing tools and app development. + + + + + This is not a masternode. + + + + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + To use the %s option + + + + + Transaction amount too small + Quantia da transação muito pequena + + + + Transaction amounts must be positive + + + + + Transaction created successfully. + Transação criada com sucesso. + + + + Transaction fees are too high. + Taxa de transação muito alta. + + + + Transaction not valid. + Transação inválida. + + + + Transaction too large + Transação muito grande + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Unable to sign masternode payment winner, wrong key? + + + + + Unable to sign spork message, wrong key? + + + + + Unknown -socks proxy version requested: %i + + + + + Unknown network specified in -onlynet: '%s' + + + + + Upgrade wallet to latest format + + + + + Usage (deprecated, use dash-cli): + + + + + Usage: + Uso: + + + + Use KeePass 2 integration using KeePassHttp plugin (default: 0) + + + + + Use N separate masternodes to anonymize funds (2-8, default: 2) + + + + + Use OpenSSL (https) for JSON-RPC connections + + + + + Use UPnP to map the listening port (default: 0) + + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + + Use the test network + Usar a rede de teste + + + + Username for JSON-RPC connections + + + + + Value more than Darksend pool maximum allows. + + + + + Verifying blocks... + Verificando blocos... + + + + Verifying wallet... + Verificando carteira... + + + + Wait for RPC server to start + + + + + Wallet %s resides outside data directory %s + + + + + Wallet is locked. + Carteira está bloqueada. + + + + Wallet needed to be rewritten: restart Dash to complete + + + + + Wallet options: + Opções da carteira: + + + + Warning + Atenção + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + + Warning: This version is obsolete, upgrade required! + Aviso: Esta versão está obsoleta. Atualização obrigatória! + + + Wrong state. + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + Fazendo o Zapping de todas as transações da wallet... + + + + on startup + + + + + version + versão + + + + wallet.dat corrupt, salvage failed + O arquivo "wallet.dat" está corrompido, a recuperação falhou + + + \ No newline at end of file diff --git a/src/qt/locale/dash_ru.ts b/src/qt/locale/dash_ru.ts new file mode 100644 index 0000000000..4a24811e51 --- /dev/null +++ b/src/qt/locale/dash_ru.ts @@ -0,0 +1,5292 @@ + + + AboutDialog + + + About Dash Core + О Dash Core + + + + <b>Dash Core</b> version + Версия <b>Dash Core</b> + + + + Copyright &copy; 2009-2014 The Bitcoin Core developers. +Copyright &copy; 2014-YYYY The Dash Core developers. + Copyright &copy; 2009-2014 Разработчики Bitcoin Core. +Copyright &copy; 2014-YYYY Разработчики Dash Core. + + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +Это экспериментальное ПО. + +Распространяется под лицензией MIT/X11, см. приложенный файл COPYING или http://www.opensource.org/licenses/mit-license.php. + +Этот продукт включает ПО, разработанное проектом OpenSSL Project для использования в OpenSSL Toolkit (http://www.openssl.org/), криптографическое ПО, написанное Eric Young (eay@cryptsoft.com) и ПО для работы с UPnP, написанное Thomas Bernard. + + + + + Copyright + Copyright + + + + The Bitcoin Core developers + Разработчики Bitcoin Core + + + + The Dash Core developers + Разработчики Dash Core + + + + + (%1-bit) + (%1-бит) + + + + AddressBookPage + + + Double-click to edit address or label + Для того, чтобы изменить адрес или метку, дважды кликните по изменяемому объекту + + + + Create a new address + Создать новый адрес + + + + &New + &Новый + + + + Copy the currently selected address to the system clipboard + Копировать текущий выделенный адрес в буфер обмена + + + + &Copy + &Копировать + + + + Delete the currently selected address from the list + Удалить выбранный адрес из списка + + + + &Delete + &Удалить + + + + Export the data in the current tab to a file + Экспортировать данные из вкладки в файл + + + + &Export + &Экспорт + + + + C&lose + &Закрыть + + + + Choose the address to send coins to + Выберите адрес для отправки на него монет + + + + Choose the address to receive coins with + Выберите адрес для получения монет + + + + C&hoose + &Выбрать + + + + Sending addresses + Адреса отправки + + + + Receiving addresses + Адреса получения + + + + These are your Dash addresses for sending payments. Always check the amount and the receiving address before sending coins. + Это ваши адреса Dash для отправки платежей. Всегда проверяйте количество и адрес получателя перед отправкой перевода. + + + + These are your Dash addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Это ваши адреса Dash для приёма платежей. Рекомендуется использовать новый адрес получения для каждой транзакции. + + + + &Copy Address + &Копировать адрес + + + + Copy &Label + Копировать &метку + + + + &Edit + &Правка + + + + Export Address List + Экспортировать список адресов + + + + Comma separated file (*.csv) + Текст, разделённый запятыми (*.csv) + + + + Exporting Failed + Экспорт не удался + + + + There was an error trying to save the address list to %1. + Произошла ошибка при сохранении адресной книги в %1. + + + + AddressTableModel + + + Label + Метка + + + + Address + Адрес + + + + (no label) + (нет метки) + + + + AskPassphraseDialog + + + Passphrase Dialog + Диалог ввода пароля + + + + Enter passphrase + Введите пароль + + + + New passphrase + Новый пароль + + + + Repeat new passphrase + Повторите новый пароль + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Служит для простейшего отключения функции sendmoney в случае компрометации аккаунта ОС. Не обеспечивает существенной безопасности. + + + + For anonymization only + Только для анонимизации + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Введите новый пароль бумажника.<br/>Используйте пароль, состоящий из <b>10 или более случайных символов</b> или <b>восьми или более слов</b>. + + + + Encrypt wallet + Зашифровать бумажник + + + + This operation needs your wallet passphrase to unlock the wallet. + Для выполнения операции разблокирования требуется пароль вашего бумажника. + + + + Unlock wallet + Разблокировать бумажник + + + + This operation needs your wallet passphrase to decrypt the wallet. + Для выполнения операции расшифрования требуется пароль вашего бумажника. + + + + Decrypt wallet + Расшифровать бумажник + + + + Change passphrase + Сменить пароль + + + + Enter the old and new passphrase to the wallet. + Введите старый и новый пароль для бумажника. + + + + Confirm wallet encryption + Подтвердите шифрование бумажника + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Внимание: если Вы зашифруете бумажник и потеряете пароль, вы <b>ПОТЕРЯЕТЕ ВСЕ ВАШИ ДАРККОЙНЫ</b>! + + + + Are you sure you wish to encrypt your wallet? + Вы уверены, что хотите зашифровать ваш бумажник? + + + + + Wallet encrypted + Бумажник зашифрован + + + + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + Сейчас программа закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши дарккойны от кражи с помощью инфицирования вашего компьютера вредоносным ПО. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + ВАЖНО: все предыдущие резервные копии вашего бумажника должны быть заменены новым зашифрованным файлом. В целях безопасности предыдущие резервные копии незашифрованного бумажника станут бесполезны, как только вы начнёте использовать новый зашифрованный бумажник. + + + + + + + Wallet encryption failed + Не удалось зашифровать бумажник + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Шифрование бумажника не удалось из-за внутренней ошибки. Ваш бумажник не был зашифрован. + + + + + The supplied passphrases do not match. + Введённые пароли не совпадают. + + + + Wallet unlock failed + Разблокировка бумажника не удалась + + + + + + The passphrase entered for the wallet decryption was incorrect. + Указанный пароль не подходит. + + + + Wallet decryption failed + Расшифрование бумажника не удалось + + + + Wallet passphrase was successfully changed. + Пароль бумажника успешно изменён. + + + + + Warning: The Caps Lock key is on! + Внимание: включен Caps Lock! + + + + BitcoinGUI + + + Dash Core + Dash Core + + + + Wallet + Бумажник + + + + Node + Узел + + + + + [testnet] + [тестовая сеть] + + + + &Overview + &Обзор + + + + Show general overview of wallet + Показать общий обзор действий с бумажником + + + + &Send + &Отправить + + + + Send coins to a Dash address + Отправить монеты на указанный адрес Dash + + + + &Receive + &Получить + + + + Request payments (generates QR codes and dash: URIs) + Запросить платежи (создать QR-коды и dash: URI) + + + + &Transactions + &Транзакции + + + + Browse transaction history + Показать историю транзакций + + + + E&xit + В&ыход + + + + Quit application + Закрыть приложение + + + + + &About Dash Core + О &Dash Core + + + + Show information about Dash + Показать информацию о Dash + + + + + About &Qt + О &Qt + + + + Show information about Qt + Показать информацию о Qt + + + + &Options... + &Настройки... + + + + Modify configuration options for Dash + Изменить параметры конфигурации Dash + + + + + &Show / Hide + &Показать / Скрыть + + + + Show or hide the main Window + Показать или скрыть главное окно + + + + &Encrypt Wallet... + За&шифровать бумажник... + + + + Encrypt the private keys that belong to your wallet + Зашифровать закрытые ключи, содержащиеся в вашем бумажнике + + + + &Backup Wallet... + &Сделать резервную копию бумажника... + + + + Backup wallet to another location + Сделать резервную копию бумажника в другом месте + + + + &Change Passphrase... + &Изменить пароль... + + + + Change the passphrase used for wallet encryption + Изменить пароль шифрования бумажника + + + + &Unlock Wallet... + &Разблокировать бумажник... + + + + Unlock wallet + Разблокировать бумажник + + + + &Lock Wallet + За&блокировать бумажник + + + + Sign &message... + П&одписать сообщение... + + + + Sign messages with your Dash addresses to prove you own them + Подписать сообщения вашими адресами Dash, чтобы доказать, что вы ими владеете + + + + &Verify message... + П&роверить сообщение... + + + + Verify messages to ensure they were signed with specified Dash addresses + Проверить сообщения, чтобы удостовериться, что они были подписаны определёнными адресами Dash + + + + &Information + &Информация + + + + Show diagnostic information + Показать диагностическую информацию + + + + &Debug console + &Консоль отладки + + + + Open debugging console + Открыть консоль отладки + + + + &Network Monitor + &Монитор сети + + + + Show network monitor + Показать монитор сети + + + + Open &Configuration File + Открыть файл &настроек + + + + Open configuration file + Открыть файл настроек + + + + &Sending addresses... + Адреса &отправки... + + + + Show the list of used sending addresses and labels + Показать список использованных адресов отправки и их меток + + + + &Receiving addresses... + Адреса &получения... + + + + Show the list of used receiving addresses and labels + Показать список использованных адресов получения и их меток + + + + Open &URI... + Открыть &URI... + + + + Open a dash: URI or payment request + Открыть dash: URI или запрос платежа + + + + &Command-line options + &Параметры командной строки + + + + Show the Dash Core help message to get a list with possible Dash command-line options + Показать помощь о Dash Core со списком возможных параметров командной строки + + + + &File + &Файл + + + + &Settings + &Настройки + + + + &Tools + &Инструменты + + + + &Help + &Помощь + + + + Tabs toolbar + Панель вкладок + + + + + Dash client + Клиент Dash + + + + %n active connection(s) to Dash network + %n активное соединение с сетью Dash%n активных соединений с сетью Dash%n активных соединений с сетью Dash + + + + Synchronizing with network... + Синхронизация с сетью... + + + + Importing blocks from disk... + Выполняется импорт блоков с диска... + + + + Reindexing blocks on disk... + Идёт переиндексация блоков на диске... + + + + No block source available... + Источник блоков недоступен... + + + + Processed %1 blocks of transaction history. + Обработано %1 блоков из истории транзакций. + + + + Up to date + Синхронизировано + + + + %n hour(s) + %n час%n часа%n часов + + + + %n day(s) + %n день%n дня%n дней + + + + + %n week(s) + %n неделя%n недели%n недель + + + + %1 and %2 + %1 и %2 + + + + %n year(s) + %n год%n лет%n года + + + + %1 behind + %1 позади + + + + Catching up... + Синхронизируется... + + + + Last received block was generated %1 ago. + Последний полученный блок был сгенерирован %1 назад. + + + + Transactions after this will not yet be visible. + Транзакции после этого времени пока видны не будут. + + + + Dash + Dash + + + + Error + Ошибка + + + + Warning + Внимание + + + + Information + Информация + + + + Sent transaction + Исходящая транзакция + + + + Incoming transaction + Входящая транзакция + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Дата: %1 +Сумма: %2 +Тип: %3 +Адрес: %4 + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Бумажник <b>зашифрован</b> и в настоящее время <b>разблокирован</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only + Бумажник <b>зашифрован</b> и в данный момент <b>разблокирован</b> только для целей анонимизации + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Бумажник <b>зашифрован</b> и в настоящее время <b>заблокирован</b> + + + + A fatal error occurred. Dash can no longer continue safely and will quit. + Произошла критическая ошибка. Дальнейшая безопасная работа Dash невозможна, приложение будет закрыто. + + + + ClientModel + + + Network Alert + Сетевая тревога + + + + CoinControlDialog + + + Coin Control Address Selection + Выбор адресов с помощью функции контроля монет + + + + Quantity: + Количество: + + + + Bytes: + Байт: + + + + Amount: + Сумма: + + + + Priority: + Приоритет: + + + + Fee: + Комиссия: + + + + Low Output: + Малый выход: + + + + After Fee: + После комиссии: + + + + Change: + Сдача: + + + + (un)select all + Выбрать все/ничего + + + + Tree mode + Режим дерева + + + + List mode + Режим списка + + + + (1 locked) + (1 заблокировано) + + + + Amount + Сумма + + + + Label + Метка + + + + Address + Адрес + + + + Darksend Rounds + Раундов Darksend + + + + Date + Дата + + + + Confirmations + Подтверждений + + + + Confirmed + Подтверждено + + + + Priority + Приоритет + + + + Copy address + Копировать адрес + + + + Copy label + Копировать метку + + + + + Copy amount + Скопировать сумму + + + + Copy transaction ID + Скопировать ID транзакции + + + + Lock unspent + Заблокировать непотраченное + + + + Unlock unspent + Разблокировать непотраченное + + + + Copy quantity + Копировать количество + + + + Copy fee + Копировать комиссию + + + + Copy after fee + Копировать после комиссии + + + + Copy bytes + Копировать байты + + + + Copy priority + Копировать приоритет + + + + Copy low output + Скопировать малый выход + + + + Copy change + Копировать сдачу + + + + highest + самый высокий + + + + higher + выше высокого + + + + high + высокий + + + + medium-high + выше среднего + + + + n/a + н/д + + + + + medium + средний + + + + low-medium + ниже среднего + + + + low + низкий + + + + lower + ниже низкого + + + + lowest + самый низкий + + + + (%1 locked) + (%1 заблокировано) + + + + none + нет + + + + Dust + Пыль + + + + yes + да + + + + + no + нет + + + + This label turns red, if the transaction size is greater than 1000 bytes. + Эта метка становится красной, если размер транзакции больше 1000 байт. + + + + + This means a fee of at least %1 per kB is required. + Это значит, что требуется комиссия как минимум %1 на КБ. + + + + Can vary +/- 1 byte per input. + Может отличаться на +/- 1 байт на каждый вход. + + + + Transactions with higher priority are more likely to get included into a block. + Транзакции с более высоким приоритетом имеют больше шансов на включение в блок. + + + + This label turns red, if the priority is smaller than "medium". + Эта метка становится красной, если приоритет ниже, чем "средний". + + + + This label turns red, if any recipient receives an amount smaller than %1. + Эта метка становится красной, если какой-либо из адресатов получает сумму менее %1. + + + + + This means a fee of at least %1 is required. + Это означает, что требуется комиссия как минимум %1. + + + + Amounts below 0.546 times the minimum relay fee are shown as dust. + Суммы меньшие, чем 0.546 умноженное на минимальную комиссию, показываются как "Пыль". + + + + This label turns red, if the change is smaller than %1. + Эта метка становиться красной в случае, если сдача меньше %1. + + + + + (no label) + (нет метки) + + + + change from %1 (%2) + сдача с %1 (%2) + + + + (change) + (сдача) + + + + DarksendConfig + + + Configure Darksend + Настройте Darksend + + + + Basic Privacy + Обычная приватность + + + + High Privacy + Высокая приватность + + + + Maximum Privacy + Максимальная приватность + + + + Please select a privacy level. + Пожалуйста, выберите уровень приватности. + + + + Use 2 separate masternodes to mix funds up to 1000 DASH + Использовать 2 отдельные мастерноды для перемешивания до 1000 DASH + + + + Use 8 separate masternodes to mix funds up to 1000 DASH + Использовать 8 отдельных мастернод для перемешивания до 1000 DASH + + + + Use 16 separate masternodes + Использовать 16 отдельных мастернод + + + + This option is the quickest and will cost about ~0.025 DASH to anonymize 1000 DASH + Это самый быстрый вариант, анонимизация 1000 DASH будет стоить вам примерно 0.025 DASH + + + + This option is moderately fast and will cost about 0.05 DASH to anonymize 1000 DASH + Это относительно быстрый вариант, анонимизация 1000 DASH будет стоить вам примерно 0.05 DASH + + + + 0.1 DASH per 1000 DASH you anonymize. + 0.1 DASH за каждые анонимизированные 1000 DASH. + + + + This is the slowest and most secure option. Using maximum anonymity will cost + Этот самый медленный и безопасный вариант. Анонимизация будет стоить + + + + + + Darksend Configuration + Настройки Darksend + + + + Darksend was successfully set to basic (%1 and 2 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend успешно установлен в режим обычной приватности (%1 и 2 раунда). Вы можете изменить это в любое время, используя окно настроек. + + + + Darksend was successfully set to high (%1 and 8 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend успешно установлен в режим высокой приватности (%1 и 8 раундов). Вы можете изменить это в любое время, используя окно настроек. + + + + Darksend was successfully set to maximum (%1 and 16 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend успешно установлен в режим максимально приватности (%1 и 16 раундов). Вы можете изменить это в любое время, используя окно настроек. + + + + EditAddressDialog + + + Edit Address + Изменить адрес + + + + &Label + &Метка + + + + The label associated with this address list entry + Метка, связанная с этой записью списка адресов + + + + &Address + &Адрес + + + + The address associated with this address list entry. This can only be modified for sending addresses. + Адрес, связанный с этой записью списка адресов. Он может быть изменён только для адресов отправки. + + + + New receiving address + Новый адрес для получения + + + + New sending address + Новый адрес для отправки + + + + Edit receiving address + Изменение адреса для получения + + + + Edit sending address + Изменение адреса для отправки + + + + The entered address "%1" is not a valid Dash address. + Введённый адрес "%1" не является правильным адресом Dash. + + + + The entered address "%1" is already in the address book. + Введённый адрес "%1" уже находится в адресной книге. + + + + Could not unlock wallet. + Не удается разблокировать бумажник. + + + + New key generation failed. + Генерация нового ключа не удалась. + + + + FreespaceChecker + + + A new data directory will be created. + Будет создан новый каталог данных. + + + + name + имя + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Каталог уже существует. Добавьте %1, если вы хотите создать здесь новый каталог. + + + + Path already exists, and is not a directory. + Путь уже существует и не является каталогом. + + + + Cannot create data directory here. + Не удаётся создать здесь каталог данных. + + + + HelpMessageDialog + + + Dash Core - Command-line options + Dash Core - параметры командной строки + + + + Dash Core + Dash Core + + + + version + версия + + + + Usage: + Использование: + + + + command-line options + параметры командной строки + + + + UI options + Настройки интерфейса + + + + Choose data directory on startup (default: 0) + Выбрать каталог данных при запуске (по умолчанию: 0) + + + + Set language, for example "de_DE" (default: system locale) + Выберите язык, например "de_DE" (по умолчанию: как в системе) + + + + Start minimized + Запускать свёрнутым + + + + Set SSL root certificates for payment request (default: -system-) + Указать корневые SSL-сертификаты для запроса платежа (по умолчанию: -system-) + + + + Show splash screen on startup (default: 1) + Показывать заставку при запуске (по умолчанию: 1) + + + + Intro + + + Welcome + Добро пожаловать + + + + Welcome to Dash Core. + Добро пожаловать в Dash Core. + + + + As this is the first time the program is launched, you can choose where Dash Core will store its data. + Так как вы впервые запустили программу, вы можете выбрать, где Dash Core будет хранить данные. + + + + Dash Core will download and store a copy of the Dash block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Dash Core скачает и сохранит копию цепочки блоков. Как минимум %1ГБ данных будет храниться в этом каталоге и размер данных будет со временем расти. В этом же каталоге будет сохранён бумажник. + + + + Use the default data directory + Использовать каталог данных по умолчанию + + + + Use a custom data directory: + Использовать другой каталог данных: + + + + Dash + Dash + + + + Error: Specified data directory "%1" can not be created. + Ошибка: не удалось создать указанный каталог данных "%1". + + + + Error + Ошибка + + + + GB of free space available + ГБ свободного места + + + + (of %1GB needed) + (из требующихся %1ГБ) + + + + OpenURIDialog + + + Open URI + Открыть URI + + + + Open payment request from URI or file + Открыть запрос платежа из URI или файла + + + + URI: + URI: + + + + Select payment request file + Выбрать файл запроса платежа + + + + Select payment request file to open + Выберите файл запроса платежа + + + + OptionsDialog + + + Options + Настройки + + + + &Main + &Главная + + + + Automatically start Dash after logging in to the system. + Автоматически запускать Dash после входа в систему. + + + + &Start Dash on system login + &Запускать Dash при входе в систему + + + + Size of &database cache + Размер кэша &БД + + + + MB + МБ + + + + Number of script &verification threads + Число потоков проверки &сценария + + + + (0 = auto, <0 = leave that many cores free) + (0 = автоматически, <0 = оставить столько незагруженных ядер) + + + + <html><head/><body><p>This setting determines the amount of individual masternodes that an input will be anonymized through. More rounds of anonymization gives a higher degree of privacy, but also costs more in fees.</p></body></html> + <html><head/><body><p>Эта настройка определяет количество отдельных мастернод, через которые пройдет анонимизация. Чем больше роундов, тем выше степень конфиденциальности, но также выше и суммарная стоимость комиссий</p></body></html> + + + + Darksend rounds to use + Количество раундов Darksend + + + + This amount acts as a threshold to turn off Darksend once it's reached. + Это пороговое значение, при достижении которого автоматическое перемешивание отключается. + + + + Amount of Dash to keep anonymized + Сумма постоянно анонимизированных Dash + + + + W&allet + Б&умажник + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. + Необязательная комиссия за каждый КБ транзакции, которая ускоряет обработку Ваших транзакций. Большинство транзакций занимают 1КБ. + + + + Pay transaction &fee + Заплатить ко&миссию + + + + Expert + Настройки для опытных пользователей + + + + Whether to show coin control features or not. + Показывать ли функции контроля монет или нет. + + + + Enable coin &control features + Включить функции &контроля монет + + + + 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. + При отключении траты неподтверждённой сдачи, сдача от транзакции не может быть использована до тех пор, пока у этой транзакции не будет хотя бы одно подтверждение. Это также влияет на то, как рассчитывается ваш баланс. + + + + &Spend unconfirmed change + &Тратить неподтверждённую сдачу + + + + &Network + &Сеть + + + + Automatically open the Dash client port on the router. This only works when your router supports UPnP and it is enabled. + Автоматически открыть порт для клиента Dash на роутере. Работает только в том случае, если Ваш роутер поддерживает UPnP и данная функция включена. + + + + Map port using &UPnP + Пробросить порт через &UPnP + + + + Connect to the Dash network through a SOCKS proxy. + Подключаться к сети Dash через прокси SOCKS5. + + + + &Connect through SOCKS proxy (default proxy): + &Подключаться через прокси SOCKS5 (прокси по умолчанию): + + + + Proxy &IP: + &IP Прокси: + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP-адрес прокси (например, IPv4: 127.0.0.1 / IPv6: ::1) + + + + &Port: + По&рт: + + + + Port of the proxy (e.g. 9050) + Порт прокси-сервера (например, 9050) + + + + SOCKS &Version: + &Версия SOCKS: + + + + SOCKS version of the proxy (e.g. 5) + Версия SOCKS-прокси (например, 5) + + + + &Window + &Окно + + + + Show only a tray icon after minimizing the window. + После сворачивания окна показывать только иконку в системном лотке. + + + + &Minimize to the tray instead of the taskbar + &Cворачивать в системный лоток вместо панели задач + + + + 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. + Сворачивать вместо закрытия. Если данная настройка будет выбрана, то приложение закроется только после выбора пункта меню Завершить. + + + + M&inimize on close + С&ворачивать при закрытии + + + + &Display + О&тображение + + + + User Interface &language: + &Язык интерфейса: + + + + The user interface language can be set here. This setting will take effect after restarting Dash. + Здесь можно выбрать язык интерфейса. Настройки вступят в силу после перезапуска Dash. + + + + Language missing or translation incomplete? Help contributing translations here: +https://www.transifex.com/projects/p/dash/ + Нет Вашего языка или перевод неполон? Помогите нам сделать перевод лучше: +https://www.transifex.com/projects/p/dash/ + + + + &Unit to show amounts in: + &Отображать суммы в единицах: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Выберите единицу измерения монет при отображении и отправке. + + + + Whether to show Dash addresses in the transaction list or not. + Показывать ли адреса Dash в списке транзакций или нет. + + + + &Display addresses in transaction list + &Показывать адреса в списке транзакций + + + + + 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 |. + Сторонние URL (например, block explorer), которые отображаются на вкладке транзакций как пункты контекстного меню. %s в URL заменяется хэшем транзакции. URL отделяются друг от друга вертикальной чертой |. + + + + Third party transaction URLs + Сторонние URL для транзакций + + + + Active command-line options that override above options: + Активные параметры командной строки, которые перекрывают вышеуказанные настройки: + + + + Reset all client options to default. + Сбросить все настройки клиента на значения по умолчанию. + + + + &Reset Options + &Сбросить настройки + + + + &OK + &OK + + + + &Cancel + О&тмена + + + + default + по умолчанию + + + + none + нет + + + + Confirm options reset + Подтвердите сброс настроек + + + + + Client restart required to activate changes. + Для применения изменений требуется перезапуск клиента. + + + + Client will be shutdown, do you want to proceed? + Клиент будет выключен, хотите продолжить? + + + + This change would require a client restart. + Это изменение потребует перезапуска клиента. + + + + The supplied proxy address is invalid. + Адрес прокси неверен. + + + + OverviewPage + + + Form + Форма + + + + Wallet + Бумажник + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Dash network after a connection is established, but this process has not completed yet. + Отображаемая информация может быть устаревшей. Ваш бумажник автоматически синхронизируется с сетью Dash после подключения, но этот процесс пока не завершён. + + + + Available: + Доступно: + + + + Your current spendable balance + Ваш текущий баланс, доступный для расходования + + + + Pending: + В ожидании: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Общая сумма всех транзакций, которые до сих пор не подтверждены и еще не учитываются в балансе, доступном для расходования + + + + Immature: + Незрелые: + + + + Mined balance that has not yet matured + Баланс добытых монет, который ещё не созрел + + + + Total: + Итого: + + + + Your current total balance + Ваш текущий общий баланс + + + + Status: + Статус: + + + + Enabled/Disabled + Включен/Выключен + + + + Completion: + Завершение: + + + + Darksend Balance: + Баланс Darksend: + + + + 0 DASH + 0 DASH + + + + Amount and Rounds: + Сумма и раунды: + + + + 0 DASH / 0 Rounds + 0 DASH / 0 раундов + + + + Submitted Denom: + Отправленные номиналы: + + + + The denominations you submitted to the Masternode. To mix, other users must submit the exact same denominations. + Номиналы, предоставленные Вами мастерноде. Для перемешивания другие пользователи должны предоставить точно такой же набор номиналов. + + + + n/a + н/д + + + + + + + Darksend + Darksend + + + + Start/Stop Mixing + Начать/остановить автоматическое перемешивание + + + + (Last Message) + (Последнее сообщение) + + + + Try to manually submit a Darksend request. + Попробовать отправить Darksend-запрос вручную. + + + + Try Mix + Попробовать вручную + + + + Reset the current status of Darksend (can interrupt Darksend if it's in the process of Mixing, which can cost you money!) + Сбросить текущий статус Darksend (можно прервать процесс перемешивания Darksend, но это может стоить Вам немного денег!) + + + + Reset + Сбросить + + + + <b>Recent transactions</b> + <b>Недавние транзакции</b> + + + + + + out of sync + несинхронизировано + + + + + Disabled + Выключен + + + + + + Start Darksend Mixing + Начать автоперемешивание + + + + + Stop Darksend Mixing + Остановить перемешивание + + + + No inputs detected + Монеты не найдены + + + + Found unconfirmed denominated outputs, will wait till they confirm to recalculate. + Найдены неподтвержденные номиналы, пересчет будет выполнен после их подтверждения. + + + + Rounds + Раундов + + + + Enabled + Включен + + + + Last Darksend message: + + Последнее сообщение Darksend: + + + + + + Darksend is idle. + Darksend в режиме ожидания. + + + + Mixing in progress... + + + + + Darksend request complete: Your transaction was accepted into the pool! + Запрос Darksend завершен: Ваша транзакция принята в пул! + + + + Submitted following entries to masternode: + Мастерноде отправлены следующие записи: + + + + + + Submitted to masternode, Waiting for more entries + Отправлено мастерноде, ожидаем больше записей + + + + Found enough users, signing ... + Найдено достаточное количество участников, подписываем ... + + + + Found enough users, signing ( waiting. ) + Найдено достаточное количество участников, подписываем ( ожидание. ) + + + + Found enough users, signing ( waiting.. ) + Найдено достаточное количество участников, подписываем ( ожидание.. ) + + + + Found enough users, signing ( waiting... ) + Найдено достаточное количество участников, подписываем ( ожидание.. ) + + + + Transmitting final transaction. + Передаем итоговую транзакцию. + + + + Finalizing transaction. + Завершаем транзакцию. + + + + Darksend request incomplete: + Запрос Darksend не завершен: + + + + Will retry... + Попробуем еще раз... + + + + Darksend request complete: + Запрос Darksend завершен: + + + + Submitted to masternode, waiting in queue . + Отправлено на мастерноду, ожидаем в очереди . + + + + Submitted to masternode, waiting in queue .. + Отправлено на мастерноду, ожидаем в очереди .. + + + + Submitted to masternode, waiting in queue ... + Отправлено на мастерноду, ожидаем в очереди ... + + + + Unknown state: + Неизвестное состояние: + + + + N/A + Н/Д + + + + Darksend was successfully reset. + Статус Darksend был успешно сброшен. + + + + Darksend requires at least %1 to use. + Для работы Darksend требуется минимум %1. + + + + Wallet is locked and user declined to unlock. Disabling Darksend. + Бумажник заблокирован и пользователь отказался его разблокировать. Darksend будет выключен. + + + + PaymentServer + + + + + + + + Payment request error + Ошибка запроса платежа + + + + Cannot start dash: click-to-pay handler + Не удаётся запустить обработчик dash: click-to-pay + + + + Net manager warning + Предупреждение менеджера сети + + + + Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. + Ваш активный прокси не поддерживает SOCKS5, требуемый для запросов платежа через прокси. + + + + + URI handling + Обработка URI + + + + Payment request fetch URL is invalid: %1 + Неверный URL запроса платежа: %1 + + + + URI can not be parsed! This can be caused by an invalid Dash address or malformed URI parameters. + Не удалось разобрать URI! Возможно указан некорректный адрес Dash либо параметры URI сформированы неверно. + + + + Payment request file handling + Обработка файла запроса платежа + + + + Payment request file can not be read or processed! This can be caused by an invalid payment request file. + Не удается прочесть файл запроса платежа! Возможно это некоректный файл. + + + + Unverified payment requests to custom payment scripts are unsupported. + Непроверенные запросы платежей с нестандартными платёжными сценариями не поддерживаются. + + + + Requested payment amount of %1 is too small (considered dust). + Запрошенная сумма платежа %1 слишком мала (считается "пылью"). + + + + Refund from %1 + Возврат от %1 + + + + Error communicating with %1: %2 + Ошибка связи с %1: %2 + + + + Payment request can not be parsed or processed! + Не могу разобрать или обработать запрос платежа! + + + + Bad response from server %1 + Плохой ответ от сервера %1 + + + + Network request error + Ошибка сетевого запроса + + + + Payment acknowledged + Платёж принят + + + + QObject + + + + + + Dash + Dash + + + + Error: Specified data directory "%1" does not exist. + Ошибка: Указанная папка данных "%1" не существует. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Ошибка: не могу прочитать файл настроек: %1. Используйте для настроек только строки ключ=значение. + + + + Error reading masternode configuration file: %1 + Ошибка чтения файла конфигурации мастернод: %1 + + + + Error: Invalid combination of -regtest and -testnet. + Ошибка: недопустимая комбинация опций -regtest и -testnet. + + + + Dash Core didn't yet exit safely... + Dash Core еще не завершил работу... + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Введите адрес Dash (например, XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + QRImageWidget + + + &Save Image... + &Сохранить изображение... + + + + &Copy Image + &Копировать изображение + + + + Save QR Code + Сохранить QR-код + + + + PNG Image (*.png) + Изображение PNG (*.png) + + + + RPCConsole + + + Tools window + Окно инструментов + + + + &Information + &Информация + + + + Masternode Count + Количество мастернод + + + + General + Общие + + + + Name + Имя + + + + Client name + Имя клиента + + + + + + + + + + + + + N/A + Н/Д + + + + Number of connections + Число подключений + + + + Open the Dash debug log file from the current data directory. This can take a few seconds for large log files. + Открыть отладочный лог-файл Dash из текущего каталога данных. Для больших лог-файлов эта операция может занять несколько секунд. + + + + &Open + &Открыть + + + + Startup time + Время запуска + + + + Network + Сеть + + + + Last block time + Время последнего блока + + + + Debug log file + Отладочный лог-файл + + + + Using OpenSSL version + Используется версия OpenSSL + + + + Build date + Дата сборки + + + + Current number of blocks + Текущее количество блоков + + + + Client version + Версия клиента + + + + Block chain + Цепочка блоков + + + + &Console + &Консоль + + + + Clear console + Очистить консоль + + + + &Network Traffic + Сетевой &трафик + + + + &Clear + &Очистить + + + + Totals + Всего + + + + + In: + Вход: + + + + + Out: + Выход: + + + + Welcome to the Dash RPC console. + Добро пожаловать в RPC-консоль Dash. + + + + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + Используйте стрелки вверх и вниз для просмотра истории и <b>Ctrl-L</b> для очистки экрана. + + + + Type <b>help</b> for an overview of available commands. + Напишите <b>help</b> для просмотра доступных команд. + + + + %1 B + %1 Б + + + + %1 KB + %1 КБ + + + + %1 MB + %1 МБ + + + + %1 GB + %1 ГБ + + + + %1 m + %1 мин + + + + %1 h + %1 ч + + + + %1 h %2 m + %1 ч %2 мин + + + + ReceiveCoinsDialog + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Повторно использовать один из ранее использованных адресов. Повторное использование адресов несёт риски безопасности и приватности. Не используйте эту опцию, если вы не создаёте повторно ранее сделанный запрос платежа. + + + + R&euse an existing receiving address (not recommended) + &Повторно использовать существующий адрес получения (не рекомендуется) + + + + + 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 Dash network. + Необязательное сообщение для запроса платежа, которое будет показано при открытии запроса. Обратите внимание: сообщение не будет отправлено вместе с платежом через сеть Dash. + + + + &Message: + &Сообщение: + + + + + An optional label to associate with the new receiving address. + Необязательная метка для нового адреса получения. + + + + Use this form to request payments. All fields are <b>optional</b>. + Заполните форму для запроса платежей. Все поля <b>необязательны</b>. + + + + &Label: + &Метка: + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Необязательная сумма для запроса. Оставьте пустым или укажите ноль, чтобы запросить неопределённую сумму. + + + + &Amount: + &Сумма: + + + + &Request payment + &Запросить платёж + + + + Clear all fields of the form. + Очистить все поля формы. + + + + Clear + Очистить + + + + Requested payments history + История запрошенных платежей + + + + Show the selected request (does the same as double clicking an entry) + Показать выбранный запрос (то же самое, что и двойной клик по записи) + + + + Show + Показать + + + + Remove the selected entries from the list + Удалить выбранные записи из списка + + + + Remove + Удалить + + + + Copy label + Копировать метку + + + + Copy message + Копировать сообщение + + + + Copy amount + Скопировать сумму + + + + ReceiveRequestDialog + + + QR Code + QR-код + + + + Copy &URI + Копировать &URI + + + + Copy &Address + Копировать &адрес + + + + &Save Image... + &Сохранить изображение... + + + + Request payment to %1 + Запросить платёж на %1 + + + + Payment information + Информация платежа + + + + URI + URI + + + + Address + Адрес + + + + Amount + Сумма + + + + Label + Метка + + + + Message + Сообщение + + + + Resulting URI too long, try to reduce the text for label / message. + Получившийся URI слишком длинный, попробуйте сократить текст метки / сообщения. + + + + Error encoding URI into QR Code. + Ошибка кодирования URI в QR-код. + + + + RecentRequestsTableModel + + + Date + Дата + + + + Label + Метка + + + + Message + Сообщение + + + + Amount + Сумма + + + + (no label) + (нет метки) + + + + (no message) + (нет сообщения) + + + + (no amount) + (нет суммы) + + + + SendCoinsDialog + + + + + + Send Coins + Отправка + + + + Coin Control Features + Функции контроля монет + + + + Inputs... + Входы... + + + + automatically selected + выбраны автоматически + + + + Insufficient funds! + Недостаточно средств! + + + + Quantity: + Количество: + + + + Bytes: + Байт: + + + + Amount: + Сумма: + + + + Priority: + Приоритет: + + + + medium + средний + + + + Fee: + Комиссия: + + + + Low Output: + Малый выход: + + + + no + нет + + + + After Fee: + После комиссии: + + + + Change: + Сдача: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Если это выбрано, но адрес сдачи пустой или неверный, сдача будет отправлена на новый сгенерированный адрес. + + + + Custom change address + Свой адрес для сдачи + + + + Confirm the send action + Подтвердить отправку + + + + S&end + &Отправить + + + + Clear all fields of the form. + Очистить все поля формы. + + + + Clear &All + Очистить &всё + + + + Send to multiple recipients at once + Отправить нескольким получателям одновременно + + + + Add &Recipient + &Добавить получателя + + + + Darksend + Darksend + + + + InstantX + InstantX + + + + Balance: + Баланс: + + + + Copy quantity + Копировать количество + + + + Copy amount + Скопировать сумму + + + + Copy fee + Копировать комиссию + + + + Copy after fee + Копировать после комиссии + + + + Copy bytes + Копировать байты + + + + Copy priority + Копировать приоритет + + + + Copy low output + Скопировать малый выход + + + + Copy change + Копировать сдачу + + + + + + using + , используя + + + + + anonymous funds + анонимные средства + + + + (darksend requires this amount to be rounded up to the nearest %1). + (для работы darksend требуется принудительно округлить до ближайшего %1). + + + + any available funds (not recommended) + любые доступные средства (не рекомендуется) + + + + and InstantX + и InstantX + + + + + + + %1 to %2 + С %1 на %2 + + + + Are you sure you want to send? + Вы уверены, что хотите отправить? + + + + are added as transaction fee + добавлено в качестве комиссии + + + + Total Amount %1 (= %2) + Общая сумма %1 (= %2) + + + + or + или + + + + Confirm send coins + Подтвердите отправку монет + + + + Payment request expired + Время этого запроса платежа истекло + + + + Invalid payment address %1 + Неверный адрес платежа %1 + + + + The recipient address is not valid, please recheck. + Адрес получателя неверный, пожалуйста, перепроверьте. + + + + The amount to pay must be larger than 0. + Сумма для отправки должна быть больше 0. + + + + The amount exceeds your balance. + Сумма превышает Ваш баланс. + + + + The total exceeds your balance when the %1 transaction fee is included. + Сумма превысит Ваш баланс, если комиссия в размере %1 будет добавлена к транзакции. + + + + Duplicate address found, can only send to each address once per send operation. + Обнаружен дублирующийся адрес. Отправка на один и тот же адрес возможна только один раз за одну операцию отправки. + + + + Transaction creation failed! + Не удалось создать транзакцию! + + + + 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 and coins were spent in the copy but not marked as spent here. + Транзакция была отклонена! Такое может произойти, если некоторые монеты уже были потрачены, например, если Вы используете одну копию бумажника (wallet.dat), а монеты были потрачены из другой копии, но не были отмечены как потраченные в этой. + + + + Error: The wallet was unlocked only to anonymize coins. + Ошибка: этот бумажник был разблокирован только для анонимизации монет. + + + + Warning: Invalid Dash address + Внимание: неверный адрес Dash + + + + Warning: Unknown change address + Внимание: неизвестный адрес для сдачи + + + + (no label) + (нет метки) + + + + SendCoinsEntry + + + This is a normal payment. + Это нормальный платёж. + + + + Pay &To: + Полу&чатель: + + + + The address to send the payment to (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Адрес, на который будет выслан платёж (например, XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + Choose previously used address + Выбрать ранее использованный адрес + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Вставить адрес из буфера обмена + + + + Alt+P + Alt+P + + + + + + Remove this entry + Удалить эту запись + + + + &Label: + &Метка: + + + + Enter a label for this address to add it to the list of used addresses + Введите метку для этого адреса, чтобы добавить его в список использованных + + + + + + A&mount: + Ко&личество: + + + + Message: + Сообщение: + + + + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + К bitcoin: URI было прикреплено сообщение, которое будет сохранено вместе с транзакцией для вашего сведения. Обратите внимание: сообщение не будет отправлено через сеть Dash. + + + + This is an unverified payment request. + Это непроверенный запрос платежа. + + + + + Pay To: + Получатель: + + + + + Memo: + Примечание: + + + + This is a verified payment request. + Это проверенный запрос платежа. + + + + Enter a label for this address to add it to your address book + Введите метку для данного адреса для добавления его в адресную книгу + + + + ShutdownWindow + + + Dash Core is shutting down... + Dash Core выключается... + + + + Do not shut down the computer until this window disappears. + Не выключайте компьютер, пока это окно не исчезнет. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Подписи - подписать/проверить сообщение + + + + &Sign Message + &Подписать сообщение + + + + 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. + Вы можете подписывать сообщения своими адресами, чтобы доказать владение ими. Будьте осторожны, не подписывайте что-то неопределённое, так как фишинговые атаки могут обманным путём заставить вас подписать нежелательные сообщения. Подписывайте только те сообщения, с которыми вы согласны вплоть до мелочей. + + + + The address to sign the message with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Адрес, которым Вы хотите подписать сообщение (например, XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + Choose previously used address + Выбрать ранее использованный адрес + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Вставить адрес из буфера обмена + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Введите сообщение для подписи + + + + Signature + Подпись + + + + Copy the current signature to the system clipboard + Скопировать текущую подпись в системный буфер обмена + + + + Sign the message to prove you own this Dash address + Подписать сообщение, чтобы доказать владение этим адресом Dash + + + + Sign &Message + Подписать &сообщение + + + + Reset all sign message fields + Сбросить значения всех полей формы подписывания сообщений + + + + + Clear &All + Очистить &всё + + + + &Verify Message + &Проверить сообщение + + + + 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. + Введите ниже адрес для подписи, сообщение (убедитесь, что переводы строк, пробелы, табы и т.п. в точности скопированы) и подпись, чтобы проверить сообщение. Убедитесь, что не скопировали лишнего в подпись, по сравнению с самим подписываемым сообщением, чтобы не стать жертвой атаки "man-in-the-middle". + + + + The address the message was signed with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Адрес, которым было подписано сообщение (например, XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + Verify the message to ensure it was signed with the specified Dash address + Проверить сообщение, чтобы убедиться, что оно было подписано указанным адресом Dash + + + + Verify &Message + Проверить &сообщение + + + + Reset all verify message fields + Сбросить все поля формы проверки сообщения + + + + Click "Sign Message" to generate signature + Нажмите "Подписать сообщение" для создания подписи + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Введите адрес Dash (например, XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + The entered address is invalid. + Введённый адрес неверен. + + + + + + + Please check the address and try again. + Пожалуйста, проверьте адрес и попробуйте ещё раз. + + + + + The entered address does not refer to a key. + Введённый адрес не связан с ключом. + + + + Wallet unlock was cancelled. + Разблокировка бумажника была отменена. + + + + Private key for the entered address is not available. + Закрытый ключ для введённого адреса недоступен. + + + + Message signing failed. + Не удалось подписать сообщение. + + + + Message signed. + Сообщение подписано. + + + + The signature could not be decoded. + Подпись не может быть раскодирована. + + + + + Please check the signature and try again. + Пожалуйста, проверьте подпись и попробуйте ещё раз. + + + + The signature did not match the message digest. + Подпись не соответствует отпечатку сообщения. + + + + Message verification failed. + Проверка сообщения не удалась. + + + + Message verified. + Сообщение проверено. + + + + SplashScreen + + + Dash Core + Dash Core + + + + Version %1 + Версия %1 + + + + The Bitcoin Core developers + Разработчики Bitcoin Core + + + + The Dash Core developers + Разработчики Dash Core + + + + [testnet] + [тестовая сеть] + + + + TrafficGraphWidget + + + KB/s + КБ/сек + + + + TransactionDesc + + + Open for %n more block(s) + Будет открыто ещё %n блокБудет открыто ещё %n блокаБудет открыто ещё %n блоков + + + + Open until %1 + Открыто до %1 + + + + + + + conflicted + в противоречии + + + + %1/offline (verified via instantx) + %1/отключен (проверено через instantx) + + + + %1/confirmed (verified via instantx) + %1/подтвержден (проверено через instantx) + + + + %1 confirmations (verified via instantx) + %1 подтверждений (проверено через instantx) + + + + %1/offline + %1/отключен + + + + %1/unconfirmed + %1/не подтверждено + + + + + %1 confirmations + %1 подтверждений + + + + %1/offline (InstantX verification in progress - %2 of %3 signatures) + %1/отключен (верификация InstantX в процессе - %2 из %3 подписей) + + + + %1/confirmed (InstantX verification in progress - %2 of %3 signatures ) + %1/подтвержден (верификация InstantX в процессе - %2 из %3 подписей) + + + + %1 confirmations (InstantX verification in progress - %2 of %3 signatures) + %1 подтверждений (верификация InstantX в процессе - %2 из %3 подписей) + + + + %1/offline (InstantX verification failed) + %1/отключен (верификация InstantX завершилась неудачно) + + + + %1/confirmed (InstantX verification failed) + %1/подтвержден (верификация InstantX завершилась неудачно) + + + + Status + Статус + + + + , has not been successfully broadcast yet + , ещё не было успешно разослано + + + + , broadcast through %n node(s) + , разослано через %n узел, разослано через %n узла, разослано через %n узлов + + + + Date + Дата + + + + Source + Источник + + + + Generated + Сгенерированно + + + + + From + От + + + + unknown + неизвестно + + + + + + To + Для + + + + + own address + свой адрес + + + + label + метка + + + + + + + + Credit + Кредит + + + + matures in %n more block(s) + будет доступно через %n блокбудет доступно через %n блокабудет доступно через %n блоков + + + + not accepted + не принято + + + + + + + Debit + Дебет + + + + Transaction fee + Комиссия + + + + Net amount + Чистая сумма + + + + + Message + Сообщение + + + + Comment + Комментарий + + + + Transaction ID + ID транзакции + + + + Merchant + Продавец + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Сгенерированные монеты должны подождать %1 блоков, прежде чем они могут быть потрачены. Когда Вы сгенерировали этот блок, он был отправлен в сеть для добавления в цепочку блоков. Если он не попадёт в цепочку, его статус изменится на "не принят", и монеты будут недействительны. Это иногда происходит в случае, если другой узел сгенерирует блок на несколько секунд раньше вас. + + + + Debug information + Отладочная информация + + + + Transaction + Транзакция + + + + Inputs + Входы + + + + Amount + Сумма + + + + true + истина + + + + false + ложь + + + + TransactionDescDialog + + + Transaction details + Детали транзакции + + + + This pane shows a detailed description of the transaction + Эта панель отображает детальное описание транзакции + + + + TransactionTableModel + + + Date + Дата + + + + Type + Тип + + + + Address + Адрес + + + + Amount + Сумма + + + + Open for %n more block(s) + Будет открыто ещё %n блокБудет открыто ещё %n блокаБудет открыто ещё %n блоков + + + + Open until %1 + Открыто до %1 + + + + Offline + Нет активных соединений с сетью + + + + Unconfirmed + Неподтверждено + + + + Confirming (%1 of %2 recommended confirmations) + Подтверждается (%1 из %2 рекомендованных подтверждений) + + + + Confirmed (%1 confirmations) + Подтверждено (%1 подтверждений) + + + + Conflicted + В противоречии + + + + Immature (%1 confirmations, will be available after %2) + Незрелый (%1 подтверждений, будет доступен после %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Этот блок не был получен другими узлами и, возможно, не будет принят! + + + + Generated but not accepted + Сгенерированно, но не подтверждено + + + + Received with + Получено + + + + Received from + Получено от + + + + Received via Darksend + Получено через Darksend + + + + Sent to + Отправлено + + + + Payment to yourself + Отправлено себе + + + + Mined + Добыто + + + + Darksend Denominate + Перемешивание Darksend + + + + Darksend Collateral Payment + Обеспечительный платеж Darksend + + + + Darksend Make Collateral Inputs + Создание обеспечительных монет для Darksend + + + + Darksend Create Denominations + Создание номиналов для Darksend + + + + Darksent + Отправлено через Darksend + + + + (n/a) + (н/д) + + + + Transaction status. Hover over this field to show number of confirmations. + Статус транзакции. Подведите курсор к нужному полю для того, чтобы увидеть количество подтверждений. + + + + Date and time that the transaction was received. + Дата и время, когда транзакция была получена. + + + + Type of transaction. + Тип транзакции. + + + + Destination address of transaction. + Адрес назначения транзакции. + + + + Amount removed from or added to balance. + Сумма, снятая с баланса или добавленная на него. + + + + TransactionView + + + + All + Все + + + + Today + Сегодня + + + + This week + На этой неделе + + + + This month + В этом месяце + + + + Last month + В прошлом месяце + + + + This year + В этом году + + + + Range... + Промежуток... + + + + Received with + Получено на + + + + Sent to + Отправлено на + + + + Darksent + Отправлено через Darksend + + + + Darksend Make Collateral Inputs + Создание обеспечительных монет для Darksend + + + + Darksend Create Denominations + Создание номиналов для Darksend + + + + Darksend Denominate + Перемешивание Darksend + + + + Darksend Collateral Payment + Обеспечительный платеж Darksend + + + + To yourself + Отправленные себе + + + + Mined + Добытые + + + + Other + Другое + + + + Enter address or label to search + Введите адрес или метку для поиска + + + + Min amount + Мин. сумма + + + + Copy address + Копировать адрес + + + + Copy label + Копировать метку + + + + Copy amount + Скопировать сумму + + + + Copy transaction ID + Скопировать ID транзакции + + + + Edit label + Изменить метку + + + + Show transaction details + Показать подробности транзакции + + + + Export Transaction History + Экспортировать историю транзакций + + + + Comma separated file (*.csv) + Текст, разделённый запятыми (*.csv) + + + + Confirmed + Подтверждено + + + + Date + Дата + + + + Type + Тип + + + + Label + Метка + + + + Address + Адрес + + + + Amount + Сумма + + + + ID + ID + + + + Exporting Failed + Экспорт не удался + + + + There was an error trying to save the transaction history to %1. + Произошла ошибка при сохранении истории транзакций в %1. + + + + Exporting Successful + Экспорт успешно завершён + + + + The transaction history was successfully saved to %1. + История транзакций была успешно сохранена в %1. + + + + Range: + Промежуток от: + + + + to + до + + + + WalletFrame + + + No wallet has been loaded. + Не был загружен ни один бумажник. + + + + WalletModel + + + + Send Coins + Отправка + + + + InstantX doesn't support sending values that high yet. Transactions are currently limited to %n DASH. + InstantX пока что не поддерживает такие большие суммы. На данный момент транзакции ограничены суммами до %n DASH.InstantX пока что не поддерживает такие большие суммы. На данный момент транзакции ограничены суммами до %n DASH.InstantX пока что не поддерживает такие большие суммы. На данный момент транзакции ограничены суммами до %n DASH. + + + + WalletView + + + &Export + &Экспорт + + + + Export the data in the current tab to a file + Экспортировать данные из вкладки в файл + + + + Backup Wallet + Сделать резервную копию бумажника + + + + Wallet Data (*.dat) + Данные бумажника (*.dat) + + + + Backup Failed + Резервное копирование не удалось + + + + There was an error trying to save the wallet data to %1. + Произошла ошибка при сохранении данных бумажника в %1. + + + + Backup Successful + Резервное копирование успешно завершено + + + + The wallet data was successfully saved to %1. + Данные бумажника были успешно сохранены в %1. + + + + dash-core + + + %s, you must set a rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=dashrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com + + %s, вы должны установить опцию rpcpassword в конфигурационном файле: +%s +Рекомендуется использовать следующий случайный пароль: +rpcuser=dashrpc +rpcpassword=%s +(вам не нужно запоминать этот пароль) +Имя и пароль ДОЛЖНЫ различаться. +Если файл не существует, то создайте его и оставьте права на чтение только для владельца. +Также рекомендуется включить alertnotify для оповещения о проблемах; +Например: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com + + + + + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + Допустимое шифрование (по умолчанию: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + Произошла ошибка при настройке прослушивания RPC порта %u на IPv4: %s + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + Произошла ошибка при настройке прослушивания RPC порта %u на IP6, откатываемся обратно на IPv4: %s + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Привязаться к указанному адресу и всегда прослушивать только его. Используйте [хост]:порт для IPv6 + + + + Cannot obtain a lock on data directory %s. Dash Core is probably already running. + Не удалось установить блокировку на каталог данных %s. Возможно, Dash Core уже запущен. + + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + Постоянно ограничивать бесплатные транзакции до <n>*1000 байт в минуту (по умолчанию:15) + + + + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. + При отправке Darksend использует только деноминированные средства, возможно, Вам просто нужно анонимизировать немного больше монет. + + + + Disable all Masternode and Darksend related functionality (0-1, default: 0) + Отключить всю функциональность, связанную с мастернодами и Darksend (0-1, по умолчанию: 0) + + + + Enable instantx, show confirmations for locked transactions (bool, default: true) + Включить instantx, показывать подтверждения для заблокированных транзакций (булевое, по умолчанию: true) + + + + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) + Включить автоматическое перемешивание Darksend для средств, хранящихся в этом бумажнике (0-1, по умолчанию: 0) + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. + Перейти в регрессионный тестовый режим, в котором используется специальная цепочка с мгновенным нахождением блоков. Этот режим предназначен для инструментов регрессионного тестирования и разработки приложения. + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Войти в режим регрессионного тестирования, в котором используется специальная цепочка, где блоки находятся мгновенно. + + + + Error: Listening for incoming connections failed (listen returned error %s) + Ошибка: не удалось начать прослушивание входящих подключений (прослушивание вернуло ошибку %s) + + + + 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 and coins were spent in the copy but not marked as spent here. + Ошибка: транзакция была отклонена! Это могло произойти в случае, если некоторые монеты в вашем бумажнике уже были потрачены, например, если вы используете копию wallet.dat, и монеты были использованы в копии, но не отмечены как потраченные здесь. + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! + Ошибка: эта транзакция требует комиссию как минимум %s из-за суммы, сложности или использования недавно полученных средств! + + + + Error: Wallet unlocked for anonymization only, unable to create transaction. + Ошибка: Бумажник разблокирован только для анонимизации, создание транзакции невозможно. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Выполнить команду, когда приходит соответствующее сообщение о тревоге или наблюдается очень длинная альтернативная цепочка блоков (%s в команде заменяется на сообщение) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Выполнить команду, когда меняется транзакция в бумажнике (%s в команде заменяется на TxID) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Выполнить команду при появлении нового блока (%s в команде заменяется на хэш блока) + + + + Fees smaller than this are considered zero fee (for transaction creation) (default: + Комиссия меньше этого значения считается нулевой (для создания транзакции) (по умолчанию: + + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + Сохранять активность базы данных из пула памяти в лог на диске каждые <n> мегабайт (по умолчанию: 100) + + + + Found unconfirmed denominated outputs, will wait till they confirm to continue. + Найдены неподтверждённые номиналы, процесс продолжится после их подтверждения. + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + Насколько тщательна проверка контрольных блоков -checkblocks (0-4, по умолчанию: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + В этом режиме -genproclimit определяет, сколько блоков генерируется немедленно. + + + + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. + InstantX требует наличия средств с хотя бы 6 подтверждениями, возможно Вам нужно подождать пару минут и попробовать снова. + + + + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) + Слушать JSON-RPC соединения на порту <port> (по умолчанию: 9998 или testnet: 19998) + + + + Name to construct url for KeePass entry that stores the wallet passphrase + Имя для создания ссылки на запись KeePass, хранящую пароль к бумажнику + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Количество секунд, в течение которых запрещать переподключаться неправильно ведущим себя участникам (по умолчанию: 86400) + + + + Output debugging information (default: 0, supplying <category> is optional) + Вывод отладочной информации (по умолчанию: 0, указание <category> необязательно) + + + + 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) + Предоставлять ликвидность для Darksend путем редкого участия в перемешивании монет на постоянной основе (0-100, по умолчанию: 0, 1=очень часто, высокая комиссия, 100=очень редко, низкая комиссия) + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + Запрашивать адреса участников с помощью DNS, если адресов мало (по умолчанию: 1, если не указан -connect) + + + + Set external address:port to get to this masternode (example: address:port) + Указать внешний адрес:порт для доступа к этой мастерноде (например: адрес:порт) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + Задать максимальный размер высокоприоритетных/низкокомиссионных транзакций в байтах (по умолчанию: %d) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Задать число потоков проверки скрипта (от %u до %d, 0=авто, <0 = оставить столько ядер свободными, по умолчанию: %d) + + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + Установить лимит процессоров для генерации монет (-1 = неограничено, по умолчанию: -1) + + + + Show N confirmations for a successfully locked transaction (0-9999, default: 1) + Показывать N подтверждений для успешно заблокированной транзакции (0-9999, по умолчанию: 1) + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + Это пре-релизная тестовая сборка - используйте на свой страх и риск - не используйте для добычи или торговых приложений + + + + Unable to bind to %s on this computer. Dash Core is probably already running. + Не удалось привязаться к %s на этом компьютере. Возможно, Dash Core уже запущен. + + + + Unable to locate enough Darksend denominated funds for this transaction. + Не удалось обнаружить достаточных для выполнения этой транзакции номиналов Darksend. + + + + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. + Не удалось обнаружить достаточных для выполнения этой транзакции неденоминированных средств, отличающихся от 1000DRK. + + + + Unable to locate enough Darksend non-denominated funds for this transaction. + Не удалось обнаружить достаточных для выполнения этой транзакции неденоминированных средств. + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) + Использовать отдельный SOCKS5 прокси для подключения к участникам через скрытые сервисы Tor (по умолчанию: -proxy) + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Внимание: установлено очень большое значение -paytxfee. Это комиссия, которую Вы заплатите при проведении транзакции. + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. + Внимание: пожалуйста, убедитесь что дата и время на Вашем компьютере выставлены правильно! Dash не сможет работать корректно, если часы настроены неверно. + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + Внимание: похоже, что в сети нет полного согласия! Некоторый майнеры, возможно, испытывают проблемы. + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + Внимание: обнаружено несогласие с подключенными участниками! Вам или другим участникам, возможно, следует обновиться. + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + Внимание: ошибка чтения wallet.dat! Все ключи прочитаны верно, но данные транзакций или записи адресной книги могут отсутствовать или быть неправильными. + + + + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + Внимание: wallet.dat повреждён, данные спасены! Оригинальный wallet.dat сохранён как wallet.{timestamp}.bak в %s. Если Ваш баланс или транзакции некорректны, Вы должны восстановить файл из резервной копии. + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Вы должны установить rpcpassword=<password> в конфигурационном файле: +%s +Если файл не существует, то создайте его с разрешением на чтение только для владельца файла. + + + + You must specify a masternodeprivkey in the configuration. Please see documentation for help. + Необходимо указать masternodeprivkey в файле конфигурации. Пожалуйста, ознакомьтесь с документацией. + + + + (default: 1) + (по умолчанию: 1) + + + + (default: wallet.dat) + (по умолчанию: wallet.dat) + + + + <category> can be: + <category> может быть: + + + + Accept command line and JSON-RPC commands + Принимать командную строку и команды JSON-RPC + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Принимать подключения извне (по умолчанию: 1, если не используется -proxy или -connect) + + + + Add a node to connect to and attempt to keep the connection open + Добавить узел для подключения и пытаться поддерживать соединение открытым + + + + Allow DNS lookups for -addnode, -seednode and -connect + Разрешить поиск в DNS для -addnode, -seednode и -connect + + + + Allow JSON-RPC connections from specified IP address + Разрешить JSON-RPC соединения с указанного IP-адреса + + + + Already have that input. + Уже есть этот вход. + + + + Always query for peer addresses via DNS lookup (default: 0) + Всегда запрашивать адреса участников через DNS (по умолчанию: 0) + + + + Attempt to recover private keys from a corrupt wallet.dat + Попытаться восстановить закрытые ключи из повреждённого wallet.dat + + + + Block creation options: + Параметры создания блоков: + + + + Can't denominate: no compatible inputs left. + Разбиение на номиналы невозможно: не осталось совместимых монет. + + + + Cannot downgrade wallet + Не удаётся понизить версию бумажника + + + + Cannot resolve -bind address: '%s' + Не удаётся разрешить адрес в параметре -bind: '%s' + + + + Cannot resolve -externalip address: '%s' + Не удаётся разрешить адрес в параметре -externalip: '%s' + + + + Cannot write default address + Не удаётся записать адрес по умолчанию + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Очистить список транзакций в бумажнике (диагностический инструмент; выполняет -rescan) + + + + Collateral is not valid. + Обеспечительная транзакция некорректна. + + + + Collateral not valid. + Обеспечительная транзакция некорректна. + + + + Connect only to the specified node(s) + Подключаться только к указанному узлу(ам) + + + + Connect through SOCKS proxy + Соединяться через SOCKS прокси + + + + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) + Соединяться к JSON-RPC по порту <port> (по умолчанию: 9998 или testnet: 19998) + + + + Connect to KeePassHttp on port <port> (default: 19455) + Соединяться c KeePassHttp по порту <port> (по умолчанию: 19455) + + + + Connect to a node to retrieve peer addresses, and disconnect + Подключиться к участнику, чтобы получить список адресов других участников, и отключиться + + + + Connection options: + Параметры подключения: + + + + Corrupted block database detected + База данных блоков повреждена + + + + Dash Core Daemon + Демон Dash Core + + + + Dash Core RPC client version + Версия RPC-клиента Dash Core + + + + Darksend is disabled. + Darksend выключен. + + + + Darksend options: + Параметры Darksend: + + + + Debugging/Testing options: + Параметры отладки/тестирования: + + + + Disable safemode, override a real safe mode event (default: 0) + Отменить безопасный режим, перекрывает реальные события о переходе в безопасный режим (по умолчанию: 0) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Определить свой IP (по умолчанию: 1 при прослушивании и если не используется -externalip) + + + + Do not load the wallet and disable wallet RPC calls + Не загружать бумажник и запретить обращения к нему через RPC + + + + Do you want to rebuild the block database now? + Перестроить базу данных блоков прямо сейчас? + + + + Done loading + Загрузка завершена + + + + Downgrading and trying again. + + + + + Enable the client to act as a masternode (0-1, default: 0) + Разрешить этому клиенту работать в качестве мастерноды (0-1, по умолчанию: 0) + + + + Entries are full. + Очередь переполнена. + + + + Error connecting to masternode. + Ошибка соединения с мастернодой. + + + + Error initializing block database + Ошибка инициализации базы данных блоков + + + + Error initializing wallet database environment %s! + Ошибка инициализации окружения БД бумажника %s! + + + + Error loading block database + Ошибка загрузки базы данных блоков + + + + Error loading wallet.dat + Ошибка при загрузке wallet.dat + + + + Error loading wallet.dat: Wallet corrupted + Ошибка загрузки wallet.dat: бумажник поврежден + + + + Error loading wallet.dat: Wallet requires newer version of Dash + Ошибка загрузки wallet.dat: бумажник требует более новой версии Dash + + + + Error opening block database + Не удалось открыть базу данных блоков + + + + Error reading from database, shutting down. + Ошибка чтения базы данных, завершение работы. + + + + Error recovering public key. + Ошибка восстановления открытого ключа. + + + + Error + Ошибка + + + + Error: Disk space is low! + Ошибка: мало места на диске! + + + + Error: Wallet locked, unable to create transaction! + Ошибка: бумажник заблокирован, создание транзакции невозможно! + + + + Error: You already have pending entries in the Darksend pool + Ошибка: у Вас уже есть ожидающие записи в пуле Darksend + + + + Error: system error: + Ошибка: системная ошибка: + + + + Failed to listen on any port. Use -listen=0 if you want this. + Не удалось начать прослушивание на порту. Используйте -listen=0, если вас это устраивает. + + + + Failed to read block info + Ошибка чтения информации о блоке + + + + Failed to read block + Ошибка чтения блока + + + + Failed to sync block index + Ошибка синхронизации индекса блока + + + + Failed to write block index + Ошибка записи индекса блока + + + + Failed to write block info + Ошибка записи информации о блоке + + + + Failed to write block + Ошибка записи блока + + + + Failed to write file info + Ошибка записи информации о файле + + + + Failed to write to coin database + Ошибка записи в базу данных монет + + + + Failed to write transaction index + Ошибка записи индекса транзакции + + + + Failed to write undo data + Ошибка записи данных для отмены + + + + Fee per kB to add to transactions you send + Комиссия за кБ, добавляемая к отправляемым Вами транзакциями + + + + Fees smaller than this are considered zero fee (for relaying) (default: + Комиссия меньше этого значения считается нулевой (для создания транзакции) (по умолчанию: + + + + Force safe mode (default: 0) + Принудительный безопасный режим (по умолчанию: 0) + + + + Generate coins (default: 0) + Генерировать монеты (по умолчанию: 0) + + + + Get help for a command + Получить помощь по команде + + + + How many blocks to check at startup (default: 288, 0 = all) + Сколько блоков проверять на старте (по умолчанию: 288, 0 = все) + + + + If <category> is not supplied, output all debugging information. + Если <category> не предоставлена, выводить всю отладочную информацию. + + + + Ignore masternodes less than version (example: 70050; default : 0) + Игнорировать мастерноды, имеющие версию ниже указанной (например: 70050; по умолчанию: 0) + + + + Importing... + Импорт ... + + + + Imports blocks from external blk000??.dat file + Импортировать блоки из внешнего файла blk000??.dat + + + + Incompatible mode. + Несовместимый режим. + + + + Incompatible version. + Несовместимая версия. + + + + Incorrect or no genesis block found. Wrong datadir for network? + Неверный или отсутствующий начальный блок. Неправильный каталог данных для сети? + + + + Information + Информация + + + + Initialization sanity check failed. Dash Core is shutting down. + Проверка на непротиворечивость закончилась неудачно. Dash Core выключается. + + + + Input is not valid. + Вход некорректен. + + + + InstantX options: + Параметры InstantX: + + + + Insufficient funds + Недостаточно средств + + + + Insufficient funds. + Недостаточно средств. + + + + Invalid -onion address: '%s' + Неверный -onion адрес: '%s' + + + + Invalid -proxy address: '%s' + Неверный адрес -proxy: '%s' + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + Неверная сумма в параметре -minrelaytxfee=<кол-во>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + Неверная сумма в параметре -mintxfee=<кол-во>: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + Неверная сумма в параметре -paytxfee=<кол-во>: '%s' + + + + Invalid amount + Неверная сумма + + + + Invalid masternodeprivkey. Please see documenation. + Неправильное значение masternodeprivkey. Пожалуйста, ознакомьтесь с документацией. + + + + Invalid private key. + Некорректный закрытый ключ. + + + + Invalid script detected. + Обнаружен некорректный скрипт. + + + + KeePassHttp id for the established association + Идентификатор KeePassHttp для установленной ассоциации + + + + KeePassHttp key for AES encrypted communication with KeePass + Ключ KeePassHttp для зашифрованной коммуникации с KeePass + + + + Keep N dash anonymized (default: 0) + Держать N дарккойнов анонимизированными (по умолчанию: 0) + + + + Keep at most <n> unconnectable blocks in memory (default: %u) + Хранить максимум <n> несоединённых блоков в памяти (по умолчанию: %u) + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + Держать в памяти до <n> несвязных транзакций (по умолчанию: %u) + + + + Last Darksend was too recent. + Последнее действие Darksend было слишком недавно. + + + + Last successful darksend action was too recent. + Последнее успешное действие Darksend было слишком недавно. + + + + Limit size of signature cache to <n> entries (default: 50000) + Ограничить размер кэша подписей до <n> записей (по умолчанию: 50000) + + + + List commands + Вывести команды + + + + Listen for connections on <port> (default: 9999 or testnet: 19999) + Принимать входящие подключения на порт <port> (по умолчанию: 9999 или testnet:19999) + + + + Loading addresses... + Загрузка адресов... + + + + Loading block index... + Загрузка индекса блоков... + + + + Loading masternode list... + Загрузка списка мастернод... + + + + Loading wallet... (%3.2f %%) + Загрузка бумажника... (%3.2f %%) + + + + Loading wallet... + Загрузка бумажника... + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + Записывать в лог приоритет транзакции и комиссию за килобайт во время добычи блоков (по умолчанию: 0) + + + + Maintain a full transaction index (default: 0) + Держать полный индекс транзакций (по умолчанию: 0) + + + + Maintain at most <n> connections to peers (default: 125) + Поддерживать не более <n> подключений к узлам (по умолчанию: 125) + + + + Masternode options: + Параметры мастерноды: + + + + Masternode queue is full. + Очередь на мастерноде переполнена. + + + + Masternode: + Мастернода: + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Максимальный размер буфера приёма на одно соединение, <n>*1000 байт (по умолчанию: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Максимальный размер буфера отправки на соединение, <n>*1000 байт (по умолчанию: 1000) + + + + Missing input transaction information. + Отсутствует информация о входной транзакции. + + + + No compatible masternode found. + Отсутствуют совместимые мастерноды. + + + + No funds detected in need of denominating. + Не обнаружено средств для дальнейшего разбиения на номиналы. + + + + No masternodes detected. + Ни одной мастерноды не найдено. + + + + No matching denominations found for mixing. + Отсутствуют совпадающие для перемешивания номиналы. + + + + Non-standard public key detected. + Обнаружен нестандартный открытый ключ. + + + + Not compatible with existing transactions. + Не совместимо с существующими транзакциями. + + + + Not enough file descriptors available. + Недостаточно файловых дескрипторов. + + + + Not in the masternode list. + Отсутствует в списке мастернод. + + + + Only accept block chain matching built-in checkpoints (default: 1) + Принимать цепочку блоков только в том случае, если она соответствует встроенным контрольным точкам (по умолчанию: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Соединяться только по сети <net> (ipv4, ipv6 или Tor) + + + + Options: + Параметры: + + + + Password for JSON-RPC connections + Пароль для подключений JSON-RPC + + + + Prepend debug output with timestamp (default: 1) + Дописывать в начало отладочного вывода отметки времени (по умолчанию: 1) + + + + Print block on startup, if found in block index + Печатать блок при запуске, если он найден в индексе блоков + + + + Print block tree on startup (default: 0) + Печатать дерево блоков при запуске (по умолчанию: 0) + + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Параметры RPC SSL: (см. Bitcoin вики для инструкций по настройке SSL) + + + + RPC client options: + Параметры RPC-клиента: + + + + RPC server options: + Параметры сервера RPC: + + + + Randomly drop 1 of every <n> network messages + Случайно отбрасывать 1 из каждых <n> сетевых сообщений + + + + Randomly fuzz 1 of every <n> network messages + Случайно разбрасывать 1 из каждых <n> сетевых сообщений + + + + Rebuild block chain index from current blk000??.dat files + Перестроить индекс цепочки блоков из текущих файлов blk000??.dat + + + + Rescan the block chain for missing wallet transactions + Перепроверить цепочку блоков на предмет отсутствующих в бумажнике транзакций + + + + Rescanning... + Сканирование... + + + + Run a thread to flush wallet periodically (default: 1) + Запустить поток для периодического сохранения бумажника (по умолчанию: 1) + + + + Run in the background as a daemon and accept commands + Запускаться в фоне как демон и принимать команды + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Параметры SSL: (см. Bitcoin вики для инструкций по настройке SSL) + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + Выбор версии SOCKS для прокси (4 или 5, по умолчанию: 5) + + + + Send command to Dash Core + Отправить команду Dash Core + + + + Send commands to node running on <ip> (default: 127.0.0.1) + Отправляет команду ноде, работающей на IP-адресе <ip> (по умолчанию: 127.0.0.1) + + + + Send trace/debug info to console instead of debug.log file + Выводить информацию трассировки/отладки на консоль вместо файла debug.log + + + + Server certificate file (default: server.cert) + Файл сертификата сервера (по умолчанию: server.cert) + + + + Server private key (default: server.pem) + Закрытый ключ сервера (по умолчанию: server.pem) + + + + Session not complete! + Сессия не закончена! + + + + Session timed out (30 seconds), please resubmit. + Сессия прекращена по тайм-ауту (30 секунд), пожалуйста, отправьте заново. + + + + Set database cache size in megabytes (%d to %d, default: %d) + Установить размер кэша БД в мегабайтах(от %d до %d, по умолчанию: %d) + + + + Set key pool size to <n> (default: 100) + Установить размер пула ключей в <n> (по умолчанию: 100) + + + + Set maximum block size in bytes (default: %d) + Установить максимальный размер блока в байтах (по умолчанию: %d) + + + + Set minimum block size in bytes (default: 0) + Установить минимальный размер блока в байтах (по умолчанию: 0) + + + + Set the masternode private key + Установить закрытый ключ мастерноды + + + + Set the number of threads to service RPC calls (default: 4) + Задать число потоков выполнения запросов RPC (по умолчанию: 4) + + + + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + Установить флаг DB_PRIVATE в окружении базы данных бумажника (по умолчанию: 1) + + + + Show all debugging options (usage: --help -help-debug) + Показать все отладочные параметры (использование: --help -help-debug) + + + + Show benchmark information (default: 0) + Показывать информацию бенчмарка (по умолчанию: 0) + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Сжимать файл debug.log при запуске клиента (по умолчанию: 1, если нет -debug) + + + + Signing failed. + Подписание завершилось неудачно. + + + + Signing timed out, please resubmit. + Подписание прекращено по тайм-ауту, пожалуйста, отправьте заново. + + + + Signing transaction failed + Подписание транзакции завершилось неудачно. + + + + Specify configuration file (default: dash.conf) + Указать конфигурационный файл (по умолчанию: dash.conf) + + + + Specify connection timeout in milliseconds (default: 5000) + Указать тайм-аут соединения в миллисекундах (по умолчанию: 5000) + + + + Specify data directory + Задать каталог данных + + + + Specify masternode configuration file (default: masternode.conf) + Указать конфигурационный файл для мастернод (по умолчанию: masternode.conf) + + + + Specify pid file (default: dashd.pid) + Указать pid-файл (по умолчанию: dashd.pid) + + + + Specify wallet file (within data directory) + Укажите файл бумажника (внутри каталога данных) + + + + Specify your own public address + Укажите Ваш собственный публичный адрес + + + + Spend unconfirmed change when sending transactions (default: 1) + Тратить неподтвержденную сдачу при отправке транзакций (по умолчанию: 1) + + + + Start Dash Core Daemon + Запустить демона Dash Core + + + + System error: + Системная ошибка: + + + + This help message + Эта справка + + + + This is intended for regression testing tools and app development. + Это рассчитано на инструменты регрессионного тестирования и разработку приложений. + + + + This is not a masternode. + Это не мастернода. + + + + Threshold for disconnecting misbehaving peers (default: 100) + Порог для отключения неправильно ведущих себя участников (по умолчанию: 100) + + + + To use the %s option + Чтобы использовать параметр %s + + + + Transaction amount too small + Сумма транзакции слишком мала + + + + Transaction amounts must be positive + Сумма транзакции должна быть положительна + + + + Transaction created successfully. + Создание транзакции прошло успешно. + + + + Transaction fees are too high. + Комиссия по транзакции слишком большая. + + + + Transaction not valid. + Транзакция некорректна. + + + + Transaction too large + Транзакция слишком большая + + + + Unable to bind to %s on this computer (bind returned error %s) + Невозможно привязаться к %s на этом компьютере (привязка вернула ошибку %s) + + + + Unable to sign masternode payment winner, wrong key? + Невозможно подписать сообщение о мастерноде-победителе. Неправильный ключ? + + + + Unable to sign spork message, wrong key? + Не удалось подписать spork-сообщение. Неправильный ключ? + + + + Unknown -socks proxy version requested: %i + Запрошена неизвестная версия -socks прокси: %i + + + + Unknown network specified in -onlynet: '%s' + В параметре -onlynet указана неизвестная сеть: '%s' + + + + Upgrade wallet to latest format + Обновить бумажник до последнего формата + + + + Usage (deprecated, use dash-cli): + Использование (устарело, используйте dash-cli): + + + + Usage: + Использование: + + + + Use KeePass 2 integration using KeePassHttp plugin (default: 0) + Использовать интеграцию с KeePass 2 через плагин KeePassHttp (по умолчанию: 0) + + + + Use N separate masternodes to anonymize funds (2-8, default: 2) + Использовать N отдельных мастернод для анонимизации средств (2-8, по умолчанию: 2) + + + + Use OpenSSL (https) for JSON-RPC connections + Использовать OpenSSL (https) для подключений JSON-RPC + + + + Use UPnP to map the listening port (default: 0) + Использовать UPnP для проброса порта (по умолчанию: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + Использовать UPnP для проброса порта (по умолчанию: 1, если используется прослушивание) + + + + Use the test network + Использовать тестовую сеть + + + + Username for JSON-RPC connections + Имя для подключений JSON-RPC + + + + Value more than Darksend pool maximum allows. + Превышено значение допустимой для пула Darksend суммы. + + + + Verifying blocks... + Проверка блоков... + + + + Verifying wallet... + Проверка бумажника... + + + + Wait for RPC server to start + Дождаться старта RPC сервера + + + + Wallet %s resides outside data directory %s + Бумажник %s располагается вне каталога данных %s + + + + Wallet is locked. + Бумажник заблокирован. + + + + Wallet needed to be rewritten: restart Dash to complete + Необходимо перезаписать бумажник: перезапустите Dash для завершения операции + + + + Wallet options: + Параметры бумажника: + + + + Warning + Внимание + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + Внимание: опция -debugnet устарела и проигнорирована, используйте -debug=net + + + + Warning: This version is obsolete, upgrade required! + Внимание: эта версия устарела, требуется обновление! + + + Wrong state. + + + + + You need to rebuild the database using -reindex to change -txindex + Вам необходимо пересобрать базы данных с помощью -reindex, чтобы изменить -txindex + + + + Zapping all transactions from wallet... + Удаление всех транзакций из кошелька... + + + + on startup + при запуске + + + + version + версия + + + + wallet.dat corrupt, salvage failed + wallet.dat повреждён, спасение данных не удалось + + + \ No newline at end of file diff --git a/src/qt/locale/dash_sk.ts b/src/qt/locale/dash_sk.ts new file mode 100644 index 0000000000..c73fd523f0 --- /dev/null +++ b/src/qt/locale/dash_sk.ts @@ -0,0 +1,5276 @@ + + + AboutDialog + + + About Dash Core + O Dash Core + + + + <b>Dash Core</b> version + Verzia <b>Dash Core</b> + + + + Copyright &copy; 2009-2014 The Bitcoin Core developers. +Copyright &copy; 2014-YYYY The Dash Core developers. + + + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +Toto je experimentálny softvér. + +Distribuovaný pod MIT/X11 softvérovou licenciou, viď sprevádzajúci súbor COPYING alebo http://www.opensource.org/licenses/mit-license.php. + +Tento výrobok obsahuje sofvér, ktorý vyvynul OpenSSL Project pre použitie v OpenSSL Toolkit (http://www.openssl.org/) a kryptografický softvér napísaný Ericom Youngom (eay@cryptsoft.com) a UPnP softvér napísaný Thomasom Bernardom. + + + + + Copyright + Autorské práva + + + + The Bitcoin Core developers + Vývojári jadra Bitcoin + + + + The Dash Core developers + Vývojári Dash Core + + + + + (%1-bit) + (%1-bit) + + + + AddressBookPage + + + Double-click to edit address or label + Dvojklikom editovať adresu alebo popis + + + + Create a new address + Vytvoriť novú adresu + + + + &New + &Nové + + + + Copy the currently selected address to the system clipboard + Kopírovať práve zvolenú adresu do systémového klipbordu + + + + &Copy + &Kopírovať + + + + Delete the currently selected address from the list + Vymaž vybranú adresu zo zoznamu + + + + &Delete + &Zmazať + + + + Export the data in the current tab to a file + Exportovať tento náhľad do súboru + + + + &Export + &Exportovať... + + + + C&lose + Zatvoriť + + + + Choose the address to send coins to + Zvoľte adresu kam poslať coins + + + + Choose the address to receive coins with + Zvoľte adresu na ktorú prijať coins + + + + C&hoose + Vybrať + + + + Sending addresses + Adresa odoslania + + + + Receiving addresses + Adresa prijatia + + + + These are your Dash addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Dash addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + &Kopírovať adresu + + + + Copy &Label + Kopírovať &popis + + + + &Edit + &Upraviť + + + + Export Address List + Exportovať zoznam adries + + + + Comma separated file (*.csv) + Čiarkou oddelený súbor (*.csv) + + + + Exporting Failed + Export zlyhal + + + + There was an error trying to save the address list to %1. + Nastala chyba pri pokuse uložiť zoznam adries do %1. + + + + AddressTableModel + + + Label + Popis + + + + Address + Adresa + + + + (no label) + (bez popisu) + + + + AskPassphraseDialog + + + Passphrase Dialog + Dialóg hesla + + + + Enter passphrase + Zadajte heslo + + + + New passphrase + Nové heslo + + + + Repeat new passphrase + Zopakujte nové heslo + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + + + + + For anonymization only + + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Zadajte nové heslo k peňaženke.<br/>Prosím použite heslo s dĺžkou aspon <b>10 alebo viac náhodných znakov</b>, alebo <b>8 alebo viac slov</b>. + + + + Encrypt wallet + Zašifrovať peňaženku + + + + This operation needs your wallet passphrase to unlock the wallet. + Táto operácia potrebuje heslo k vašej peňaženke aby ju mohla dešifrovať. + + + + Unlock wallet + Odomknúť peňaženku + + + + This operation needs your wallet passphrase to decrypt the wallet. + Táto operácia potrebuje heslo k vašej peňaženke na dešifrovanie peňaženky. + + + + Decrypt wallet + Dešifrovať peňaženku + + + + Change passphrase + Zmena hesla + + + + Enter the old and new passphrase to the wallet. + Zadajte staré a nové heslo k peňaženke. + + + + Confirm wallet encryption + Potvrďte šifrovanie peňaženky + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Upozornenie: Ak zašifrujete vašu peňaženku a stratíte prístupové heslo, potom <b>prídete o všetky svoje DASH-y</b>! + + + + Are you sure you wish to encrypt your wallet? + Ste si istí, že si želáte zašifrovať peňaženku? + + + + + Wallet encrypted + Peňaženka zašifrovaná + + + + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + DÔLEŽITÉ: Všetky doterajšie záložné kópie peňaženky ktoré ste zhotovili by mali byť nahradené novým zašifrovaným súborom s peňaženkou. Z bezpečnostných dôvodov sa predchádzajúce kópie nezašifrovanej peňaženky stanú neužitočné keď začnete používať novú zašifrovanú peňaženku. + + + + + + + Wallet encryption failed + Šifrovanie peňaženky zlyhalo + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Šifrovanie peňaženky zlyhalo kôli internej chybe. Vaša peňaženka nebola zašifrovaná. + + + + + The supplied passphrases do not match. + Zadané heslá nesúhlasia. + + + + Wallet unlock failed + Odomykanie peňaženky zlyhalo + + + + + + The passphrase entered for the wallet decryption was incorrect. + Zadané heslo pre dešifrovanie peňaženky bolo nesprávne. + + + + Wallet decryption failed + Zlyhalo šifrovanie peňaženky. + + + + Wallet passphrase was successfully changed. + Heslo k peňaženke bolo úspešne zmenené. + + + + + Warning: The Caps Lock key is on! + Varovanie: Caps Lock je zapnutý + + + + BitcoinGUI + + + Dash Core + Dash Core + + + + Wallet + Peňaženka + + + + Node + Uzol + + + + + [testnet] + [testovacia sieť] + + + + &Overview + &Prehľad + + + + Show general overview of wallet + Zobraziť celkový prehľad o peňaženke + + + + &Send + &Odoslať + + + + Send coins to a Dash address + Poslať mince na Dash adresu + + + + &Receive + &Prijať + + + + Request payments (generates QR codes and dash: URIs) + + + + + &Transactions + &Transakcie + + + + Browse transaction history + Prechádzať históriu transakcií + + + + E&xit + U&končiť + + + + Quit application + Ukončiť program + + + + + &About Dash Core + &O Dash Core + + + + Show information about Dash + Zobraziť informácie o Dash + + + + + About &Qt + O &Qt + + + + Show information about Qt + Zobrazit informácie o Qt + + + + &Options... + &Možnosti... + + + + Modify configuration options for Dash + + + + + + &Show / Hide + Zobraziť / skryť + + + + Show or hide the main Window + Zobraziť alebo skryť hlavné okno + + + + &Encrypt Wallet... + &Zašifrovať Peňaženku... + + + + Encrypt the private keys that belong to your wallet + Zašifruj súkromné kľúče ktoré patria do vašej peňaženky + + + + &Backup Wallet... + &Backup peňaženku... + + + + Backup wallet to another location + Zálohovať peňaženku na iné miesto + + + + &Change Passphrase... + &Zmena Hesla... + + + + Change the passphrase used for wallet encryption + Zmeniť heslo použité na šifrovanie peňaženky + + + + &Unlock Wallet... + &Odomknúť peňaženku + + + + Unlock wallet + Odomknúť peňaženku + + + + &Lock Wallet + &Zamknúť peňaženku + + + + Sign &message... + Podpísať &správu... + + + + Sign messages with your Dash addresses to prove you own them + + + + + &Verify message... + Overiť správu + + + + Verify messages to ensure they were signed with specified Dash addresses + + + + + &Information + &Informácia + + + + Show diagnostic information + + + + + &Debug console + &Konzola pre ladenie + + + + Open debugging console + Otvor konzolu pre ladenie + + + + &Network Monitor + + + + + Show network monitor + + + + + Open &Configuration File + + + + + Open configuration file + + + + + &Sending addresses... + Posielajúca adresa ... + + + + Show the list of used sending addresses and labels + Zobraziť zoznam použitých adries odosielateľa a ich popisy + + + + &Receiving addresses... + Prijímajúca adresa... + + + + Show the list of used receiving addresses and labels + Zobraziť zoznam použitých prijímacích adries a ich popisov + + + + Open &URI... + Otvoriť &URI... + + + + Open a dash: URI or payment request + + + + + &Command-line options + Možnosti príkazového riadku + + + + Show the Dash Core help message to get a list with possible Dash command-line options + + + + + &File + &Súbor + + + + &Settings + &Nastavenia + + + + &Tools + &Nástroje + + + + &Help + &Pomoc + + + + Tabs toolbar + Lišta záložiek + + + + + Dash client + + + + + %n active connection(s) to Dash network + + + + + Synchronizing with network... + Synchronizácia so sieťou... + + + + Importing blocks from disk... + Importujem bloky z disku... + + + + Reindexing blocks on disk... + Preindexúvam bloky na disku... + + + + No block source available... + Nedostupný zdroj blokov... + + + + Processed %1 blocks of transaction history. + Spracovaných %1 blokov transakčnej histórie. + + + + Up to date + Aktualizovaný + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 a %2 + + + + %n year(s) + + + + + %1 behind + %1 pozadu + + + + Catching up... + Sťahujem... + + + + Last received block was generated %1 ago. + Posledný prijatý blok bol vygenerovaný pred %1. + + + + Transactions after this will not yet be visible. + Transakcie potom nebudú ešte viditeľné. + + + + Dash + Dash + + + + Error + Chyba + + + + Warning + Upozornenie + + + + Information + Informácia + + + + Sent transaction + Odoslané transakcie + + + + Incoming transaction + Prijaté transakcie + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Dátum: %1 +Suma: %2 +Typ: %3 +Adresa: %4 + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Peňaženka je <b>zašifrovaná</b> a momentálne <b>odomknutá</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Peňaženka je <b>zašifrovaná</b> a momentálne <b>zamknutá</b> + + + + A fatal error occurred. Dash can no longer continue safely and will quit. + Došlo k závažnej chybe. Dash už nemôže pokračovať bezpečne a bude ukončený. + + + + ClientModel + + + Network Alert + Výstraha siete + + + + CoinControlDialog + + + Coin Control Address Selection + Coin Control výber adresy + + + + Quantity: + Množstvo: + + + + Bytes: + Bajtov: + + + + Amount: + Suma: + + + + Priority: + Priorita: + + + + Fee: + Poplatok: + + + + Low Output: + Malá hodnota na výstupe: + + + + After Fee: + Po poplatku: + + + + Change: + Zmena: + + + + (un)select all + (ne)vybrať všetko + + + + Tree mode + Stromový režim + + + + List mode + Zoznamový režim + + + + (1 locked) + + + + + Amount + Suma + + + + Label + Popis + + + + Address + Adresa + + + + Darksend Rounds + + + + + Date + Dátum + + + + Confirmations + Potvrdenia + + + + Confirmed + Potvrdené + + + + Priority + Priorita + + + + Copy address + Kopírovať adresu + + + + Copy label + Kopírovať popis + + + + + Copy amount + Kopírovať sumu + + + + Copy transaction ID + Kopírovať ID transakcie + + + + Lock unspent + Uzamknúť neminuté + + + + Unlock unspent + Odomknúť neminuté + + + + Copy quantity + Kopírovať množstvo + + + + Copy fee + Kopírovať poplatok + + + + Copy after fee + Kopírovať za poplatok + + + + Copy bytes + Kopírovať bajty + + + + Copy priority + Kopírovať prioritu + + + + Copy low output + Kopírovať malý výstup. + + + + Copy change + Kopírovať zmenu + + + + highest + najvyššie + + + + higher + vyššie + + + + high + vysoké + + + + medium-high + stredne vysoké + + + + n/a + + + + + + medium + stredné + + + + low-medium + stredne nízke + + + + low + nízke + + + + lower + nižšie + + + + lowest + najnižšie + + + + (%1 locked) + (%1 zamknutých) + + + + none + žiadne + + + + Dust + Prach + + + + yes + áno + + + + + no + nie + + + + This label turns red, if the transaction size is greater than 1000 bytes. + Tento popis zčervená ak veľkosť transakcie presiahne 1000 bytov. + + + + + This means a fee of at least %1 per kB is required. + To znamená že požadovaný poplatok je aspoň %1 za kB. + + + + Can vary +/- 1 byte per input. + Môže sa pohybovať +/- 1 bajt pre vstup. + + + + Transactions with higher priority are more likely to get included into a block. + Transakcie s vysokou prioritou sa pravdepodobnejsie dostanú do bloku. + + + + This label turns red, if the priority is smaller than "medium". + Tento popis zčervenie ak je priorita nižčia ako "medium". + + + + This label turns red, if any recipient receives an amount smaller than %1. + Tento popis zčervenie ak ktorýkoľvek príjemca dostane sumu menšiu ako %1. + + + + + This means a fee of at least %1 is required. + To znamená že je požadovaný poplatok aspoň %1. + + + + Amounts below 0.546 times the minimum relay fee are shown as dust. + Sumy pod 0.546 násobkom minimálneho poplatku pre prenos sú považované za prach. + + + + This label turns red, if the change is smaller than %1. + Tento popis zžervenie ak výdavok je menší než %1. + + + + + (no label) + (bez popisu) + + + + change from %1 (%2) + zmena od %1 (%2) + + + + (change) + (zmena) + + + + DarksendConfig + + + Configure Darksend + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select a privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000 DASH + + + + + Use 8 separate masternodes to mix funds up to 1000 DASH + + + + + Use 16 separate masternodes + + + + + This option is the quickest and will cost about ~0.025 DASH to anonymize 1000 DASH + + + + + This option is moderately fast and will cost about 0.05 DASH to anonymize 1000 DASH + + + + + 0.1 DASH per 1000 DASH you anonymize. + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + + + Darksend Configuration + + + + + Darksend was successfully set to basic (%1 and 2 rounds). You can change this at any time by opening Dash's configuration screen. + + + + + Darksend was successfully set to high (%1 and 8 rounds). You can change this at any time by opening Dash's configuration screen. + + + + + Darksend was successfully set to maximum (%1 and 16 rounds). You can change this at any time by opening Dash's configuration screen. + + + + + EditAddressDialog + + + Edit Address + Upraviť adresu + + + + &Label + &Popis + + + + The label associated with this address list entry + Popis tejto položký v zozname adries je prázdny + + + + &Address + &Adresa + + + + The address associated with this address list entry. This can only be modified for sending addresses. + Adresa spojená s týmto záznamom v adresári. Možno upravovať len pre odosielajúce adresy. + + + + New receiving address + Nová adresa pre prijímanie + + + + New sending address + Nová adresa pre odoslanie + + + + Edit receiving address + Upraviť prijímacie adresy + + + + Edit sending address + Upraviť odosielaciu adresu + + + + The entered address "%1" is not a valid Dash address. + + + + + The entered address "%1" is already in the address book. + Vložená adresa "%1" sa už nachádza v adresári. + + + + Could not unlock wallet. + Nepodarilo sa odomknúť peňaženku. + + + + New key generation failed. + Generovanie nového kľúča zlyhalo. + + + + FreespaceChecker + + + A new data directory will be created. + Bude vytvorený nový dátový adresár. + + + + name + názov + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Priečinok už existuje. Pridajte "%1" ak chcete vytvoriť nový priečinok tu. + + + + Path already exists, and is not a directory. + Cesta už existuje a nie je to adresár. + + + + Cannot create data directory here. + Tu nemôžem vytvoriť dátový adresár. + + + + HelpMessageDialog + + + Dash Core - Command-line options + + + + + Dash Core + Dash Core + + + + version + verzia + + + + Usage: + Použitie: + + + + command-line options + voľby príkazového riadku + + + + UI options + UI možnosti + + + + Choose data directory on startup (default: 0) + Zvoľte dátový priečinok pri štarte (prednastavené: 0) + + + + Set language, for example "de_DE" (default: system locale) + Nastaviť jazyk, napríklad "sk_SK" (predvolené: systémový) + + + + Start minimized + Spustiť minimalizované + + + + Set SSL root certificates for payment request (default: -system-) + Nastaviť koreňový certifikát pre výzvy na platbu (prednastavené: -system-) + + + + Show splash screen on startup (default: 1) + Zobraziť splash screen pri spustení (predvolené: 1) + + + + Intro + + + Welcome + Vitajte + + + + Welcome to Dash Core. + + + + + As this is the first time the program is launched, you can choose where Dash Core will store its data. + + + + + Dash Core will download and store a copy of the Dash block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + + + + + Use the default data directory + Použiť predvolený dátový adresár + + + + Use a custom data directory: + Použiť vlastný dátový adresár: + + + + Dash + Dash + + + + Error: Specified data directory "%1" can not be created. + Chyba: Predpísaný priečinok pre dáta "%1" nemôže byt vytvorený. + + + + Error + Chyba + + + + GB of free space available + GB dostupného voľného miesta + + + + (of %1GB needed) + (z %1GB potrebných) + + + + OpenURIDialog + + + Open URI + Otvoriť URI + + + + Open payment request from URI or file + Otvoriť požiadavku na zaplatenie z URI alebo súboru + + + + URI: + URI: + + + + Select payment request file + Vyberte súbor s výzvou k platbe + + + + Select payment request file to open + Vyberte ktorý súbor s výzvou k platbe otvoriť + + + + OptionsDialog + + + Options + Možnosti + + + + &Main + &Hlavné + + + + Automatically start Dash after logging in to the system. + + + + + &Start Dash on system login + + + + + Size of &database cache + Veľkosť vyrovnávacej pamäti databázy + + + + MB + MB + + + + Number of script &verification threads + Počet skript overujucich vlákien + + + + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = nechať toľko jadier voľných) + + + + <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> + + + + + Darksend rounds to use + + + + + This amount acts as a threshold to turn off Darksend once it's reached. + + + + + Amount of Dash to keep anonymized + + + + + W&allet + Peňaženka + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. + Voliteľný transakčný poplatok za kB ktorý pomôže rýchlemu spracovaniu transakcie. Väčšina transakcií má 1 kB. Poplatok 0.01 je odporúčaný. + + + + Pay transaction &fee + Zaplatiť transakčné &poplatky + + + + Expert + Expert + + + + Whether to show coin control features or not. + Či zobrazovať možnosti "Coin control" alebo nie. + + + + Enable coin &control features + Povoliť možnosti coin control + + + + 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. + Ak vypnete míňanie nepotvrdeného výdavku tak výdavok z transakcie bude možné použiť až keď daná transakcia bude mať aspoň jedno potvrdenie. Toto má vplyv aj na výpočet vášho zostatku. + + + + &Spend unconfirmed change + Minúť nepotvrdený výdavok + + + + &Network + Sieť + + + + Automatically open the Dash client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + Mapovať port pomocou &UPnP + + + + Connect to the Dash network through a SOCKS proxy. + + + + + &Connect through SOCKS proxy (default proxy): + Pripojiť sa cez SOCKS proxy (predvolené proxy) + + + + Proxy &IP: + Proxy &IP: + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP adresy proxy (napr. IPv4: 127.0.0.1 / IPv6: ::1) + + + + &Port: + &Port: + + + + Port of the proxy (e.g. 9050) + Port proxy (napr. 9050) + + + + SOCKS &Version: + Verzia SOCKS: + + + + SOCKS version of the proxy (e.g. 5) + SOCKS verzia proxy (napr. 5) + + + + &Window + Okno + + + + Show only a tray icon after minimizing the window. + Zobraziť len ikonu na lište po minimalizovaní okna. + + + + &Minimize to the tray instead of the taskbar + Zobraziť len ikonu na lište po minimalizovaní okna. + + + + 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. + Minimalizovat namiesto ukončenia aplikácie keď sa okno zavrie. Keď je zvolená táto možnosť, aplikácia sa zavrie len po zvolení Ukončiť v menu. + + + + M&inimize on close + M&inimalizovať pri zavretí + + + + &Display + &Displej + + + + User Interface &language: + Jazyk užívateľského rozhrania: + + + + The user interface language can be set here. This setting will take effect after restarting Dash. + + + + + Language missing or translation incomplete? Help contributing translations here: +https://www.transifex.com/projects/p/dash/ + + + + + &Unit to show amounts in: + &Zobrazovať hodnoty v jednotkách: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Zvoľte ako deliť bitcoin pri zobrazovaní pri platbách a užívateľskom rozhraní. + + + + Whether to show Dash addresses in the transaction list or not. + + + + + &Display addresses in transaction list + &Zobraziť adresy zo zoznamu transakcií + + + + + 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 |. + URL tretích strán (napr. prehliadač blockchain) ktoré sa zobrazujú v záložke transakcií ako položky kontextového menu. %s v URL je nahradené hash-om transakcie. Viaceré URL sú oddelené zvislou čiarou |. + + + + Third party transaction URLs + URL transakcií s tretími stranami + + + + Active command-line options that override above options: + Aktévne možnosti príkazového riadku ktoré prepíšu možnosti vyššie: + + + + Reset all client options to default. + Vynulovať všetky voľby klienta na predvolené. + + + + &Reset Options + Vynulovať voľby + + + + &OK + &OK + + + + &Cancel + Zrušiť + + + + default + predvolené + + + + none + žiadne + + + + Confirm options reset + Potvrdiť obnovenie možností + + + + + Client restart required to activate changes. + Reštart klienta potrebný pre aktivovanie zmien. + + + + Client will be shutdown, do you want to proceed? + Klient bude vypnutý, chcete pokračovať? + + + + This change would require a client restart. + Táto zmena by vyžadovala reštart klienta. + + + + The supplied proxy address is invalid. + Zadaná proxy adresa je neplatná. + + + + OverviewPage + + + Form + Forma + + + + Wallet + Peňaženka + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Dash network after a connection is established, but this process has not completed yet. + + + + + Available: + Disponibilné: + + + + Your current spendable balance + Váš aktuálny disponibilný zostatok + + + + Pending: + Čakajúce potvrdenie + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Suma transakcií ktoré ešte neboli potvrdené a ešte sa nepočítajú do disponibilného zostatku + + + + Immature: + Nezrelé: + + + + Mined balance that has not yet matured + Vytvorený zostatok ktorý ešte nedosiahol zrelosť + + + + Total: + Celkovo: + + + + Your current total balance + Váš súčasný celkový zostatok + + + + Status: + Stav: + + + + Enabled/Disabled + + + + + Completion: + + + + + Darksend Balance: + + + + + 0 DASH + 0 DASH + + + + Amount and Rounds: + + + + + 0 DASH / 0 Rounds + + + + + Submitted Denom: + + + + + The denominations you submitted to the Masternode. To mix, other users must submit the exact same denominations. + + + + + n/a + + + + + + + + Darksend + Darksend + + + + Start/Stop Mixing + + + + + (Last Message) + (Posledná správa) + + + + Try to manually submit a Darksend request. + + + + + Try Mix + Výskúšať mix + + + + Reset the current status of Darksend (can interrupt Darksend if it's in the process of Mixing, which can cost you money!) + + + + + Reset + Resetovať + + + + <b>Recent transactions</b> + <b>Nedávne transakcie</b> + + + + + + out of sync + nesynchronizované + + + + + Disabled + + + + + + + Start Darksend Mixing + + + + + + Stop Darksend Mixing + + + + + No inputs detected + + + + + Found unconfirmed denominated outputs, will wait till they confirm to recalculate. + + + + + Rounds + + + + + Enabled + + + + + Last Darksend message: + + + + + + + Darksend is idle. + + + + + Mixing in progress... + + + + + Darksend request complete: Your transaction was accepted into the pool! + + + + + Submitted following entries to masternode: + + + + + + + Submitted to masternode, Waiting for more entries + + + + + Found enough users, signing ... + + + + + Found enough users, signing ( waiting. ) + + + + + Found enough users, signing ( waiting.. ) + + + + + Found enough users, signing ( waiting... ) + + + + + Transmitting final transaction. + + + + + Finalizing transaction. + + + + + Darksend request incomplete: + + + + + Will retry... + + + + + Darksend request complete: + + + + + Submitted to masternode, waiting in queue . + + + + + Submitted to masternode, waiting in queue .. + + + + + Submitted to masternode, waiting in queue ... + + + + + Unknown state: + + + + + N/A + nie je k dispozícii + + + + Darksend was successfully reset. + + + + + Darksend requires at least %1 to use. + + + + + Wallet is locked and user declined to unlock. Disabling Darksend. + + + + + PaymentServer + + + + + + + + Payment request error + Chyba pri vyžiadaní platby + + + + Cannot start dash: click-to-pay handler + + + + + Net manager warning + Varovanie správcu siete + + + + Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. + Vaše aktívne proxy nepodporuje SOCKS5, ktoré je potrebné pre vyzvu na zaplatenie cez proxy. + + + + + URI handling + Spracovanie URI + + + + Payment request fetch URL is invalid: %1 + URL pre stiahnutie výzvy na zaplatenie je neplatné: %1 + + + + URI can not be parsed! This can be caused by an invalid Dash address or malformed URI parameters. + + + + + Payment request file handling + Obsluha súboru s požiadavkou na platbu + + + + Payment request file can not be read or processed! This can be caused by an invalid payment request file. + Súbor s výzvou na zaplatenie sa nedá čítať alebo spracovať! To môže byť spôsobené aj neplatným súborom s výzvou. + + + + Unverified payment requests to custom payment scripts are unsupported. + Program nepodporuje neoverené platobné výzvy na vlastná skripty. + + + + Requested payment amount of %1 is too small (considered dust). + Požadovaná platba sumy %1 je príliš malá (považovaná za prach). + + + + Refund from %1 + Vrátenie z %1 + + + + Error communicating with %1: %2 + Chyba komunikácie s %1: %2 + + + + Payment request can not be parsed or processed! + Požiadavka na platbu nemôže byť analyzovaná alebo spracovaná! + + + + Bad response from server %1 + Zlá odpoveď zo servera %1 + + + + Network request error + Chyba požiadavky siete + + + + Payment acknowledged + Platba potvrdená + + + + QObject + + + + + + Dash + Dash + + + + Error: Specified data directory "%1" does not exist. + Chyba: Uvedený priečinok s dátami "%1" neexistuje. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Chyba: Nedá sa rozlúštit súbor s nastaveniami: %1. Používajte výlučne kľúč=hodnota syntax. + + + + Error reading masternode configuration file: %1 + + + + + Error: Invalid combination of -regtest and -testnet. + Chyba: Nesprávna kombinácia -regtest a -testnet. + + + + Dash Core didn't yet exit safely... + + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + QRImageWidget + + + &Save Image... + Uložiť obrázok... + + + + &Copy Image + Kopírovať obrázok + + + + Save QR Code + Ukladanie QR kódu + + + + PNG Image (*.png) + PNG obrázok (*.png) + + + + RPCConsole + + + Tools window + + + + + &Information + &Informácia + + + + Masternode Count + + + + + General + Všeobecné + + + + Name + Názov + + + + Client name + Meno klienta + + + + + + + + + + + + + N/A + nie je k dispozícii + + + + Number of connections + Počet pripojení + + + + Open the Dash debug log file from the current data directory. This can take a few seconds for large log files. + + + + + &Open + &Otvoriť + + + + Startup time + Čas spustenia + + + + Network + Sieť + + + + Last block time + Čas posledného bloku + + + + Debug log file + Súbor záznamu ladenia + + + + Using OpenSSL version + Používa OpenSSL verziu + + + + Build date + Dátum zostavenia + + + + Current number of blocks + Aktuálny počet blokov + + + + Client version + Verzia klienta + + + + Block chain + Reťazec blokov + + + + &Console + &Konzola + + + + Clear console + Vymazať konzolu + + + + &Network Traffic + Sieťová prevádzka + + + + &Clear + &Vyčistiť + + + + Totals + Celkovo + + + + + In: + Dnu: + + + + + Out: + Von: + + + + Welcome to the Dash RPC console. + + + + + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + Použi šipky hore a dolu pre navigáciu históriou a <b>Ctrl-L</b> pre vyčistenie obrazovky. + + + + Type <b>help</b> for an overview of available commands. + Napíš <b>help</b> pre prehľad dostupných príkazov. + + + + %1 B + %1 B + + + + %1 KB + %1 KB + + + + %1 MB + %1 MB + + + + %1 GB + %1 GB + + + + %1 m + %1 m + + + + %1 h + %1 h + + + + %1 h %2 m + %1 h %2 m + + + + ReceiveCoinsDialog + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Znovu použiť jednu z už použitých adries pre prijímanie. Znovu používanie adries je sporná otázka bezpečnosti aj súkromia. Používajte to len v prípade ak znovu generujete výzvu na zaplatenie ktorú ste už vyrobili v minulosti. + + + + R&euse an existing receiving address (not recommended) + Znovu použiť jestvujúcu prijímaciu adresu (neodporúča sa) + + + + + 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 Dash network. + + + + + &Message: + &Správa: + + + + + An optional label to associate with the new receiving address. + Voliteľný popis ktorý sa pridá k tejto novej prijímajúcej adrese. + + + + Use this form to request payments. All fields are <b>optional</b>. + Použite tento formulár pre vyžiadanie platby. Všetky polia sú <b>voliteľné</b>. + + + + &Label: + &Popis: + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Voliteľná požadovaná suma. Nechajte prázdne alebo nulu ak nepožadujete určitú sumu. + + + + &Amount: + &Suma: + + + + &Request payment + Vyžiadať platbu + + + + Clear all fields of the form. + Vyčistiť všetky polia formulára. + + + + Clear + Vyčistiť + + + + Requested payments history + História vyžiadaných platieb + + + + Show the selected request (does the same as double clicking an entry) + Zobraz zvolenú požiadavku (urobí to isté ako dvoj-klik na záznam) + + + + Show + Zobraziť + + + + Remove the selected entries from the list + Odstrániť zvolené záznamy zo zoznamu + + + + Remove + Odstrániť + + + + Copy label + Kopírovať popis + + + + Copy message + Kopírovať správu + + + + Copy amount + Kopírovať sumu + + + + ReceiveRequestDialog + + + QR Code + QR kód + + + + Copy &URI + Kopírovať &URI + + + + Copy &Address + Kopírovať adresu + + + + &Save Image... + Uložiť obrázok... + + + + Request payment to %1 + Vyžiadať platbu pre %1 + + + + Payment information + Informácia o platbe + + + + URI + URI + + + + Address + Adresa + + + + Amount + Suma + + + + Label + Popis + + + + Message + Správa + + + + Resulting URI too long, try to reduce the text for label / message. + Výsledné URI príliš dlhé, skráť text pre názov / správu. + + + + Error encoding URI into QR Code. + Chyba v zakódovaní URI do QR kódu + + + + RecentRequestsTableModel + + + Date + Dátum + + + + Label + Popis + + + + Message + Správa + + + + Amount + Suma + + + + (no label) + (bez popisu) + + + + (no message) + (žiadna správa) + + + + (no amount) + (žiadna suma) + + + + SendCoinsDialog + + + + + + Send Coins + Poslať Bitcoins + + + + Coin Control Features + Možnosti "Coin Control" + + + + Inputs... + Vstupy... + + + + automatically selected + automaticky vybrané + + + + Insufficient funds! + Nedostatok prostriedkov! + + + + Quantity: + Množstvo: + + + + Bytes: + Bajtov: + + + + Amount: + Suma: + + + + Priority: + Priorita: + + + + medium + stredné + + + + Fee: + Poplatok: + + + + Low Output: + Malá hodnota na výstupe: + + + + no + nie + + + + After Fee: + Po poplatku: + + + + Change: + Zmena: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Ak aktivované ale adresa pre výdavok je prázdna alebo neplatná, výdavok bude poslaný na novovytvorenú adresu. + + + + Custom change address + Vlastná adresa zmeny + + + + Confirm the send action + Potvrďte odoslanie + + + + S&end + &Odoslať + + + + Clear all fields of the form. + Vyčistiť všetky polia formulára. + + + + Clear &All + Zmazať &všetko + + + + Send to multiple recipients at once + Poslať viacerým príjemcom naraz + + + + Add &Recipient + &Pridať príjemcu + + + + Darksend + Darksend + + + + InstantX + + + + + Balance: + Zostatok: + + + + Copy quantity + Kopírovať množstvo + + + + Copy amount + Kopírovať sumu + + + + Copy fee + Kopírovať poplatok + + + + Copy after fee + Kopírovať za poplatok + + + + Copy bytes + Kopírovať bajty + + + + Copy priority + Kopírovať prioritu + + + + Copy low output + Kopírovať nízky výstup + + + + Copy change + Kopírovať zmenu + + + + + + using + + + + + + anonymous funds + + + + + (darksend requires this amount to be rounded up to the nearest %1). + + + + + any available funds (not recommended) + + + + + and InstantX + + + + + + + + %1 to %2 + %1 do %2 + + + + Are you sure you want to send? + Určite to chcete odoslať? + + + + are added as transaction fee + + + + + Total Amount %1 (= %2) + Celková suma %1 (= %2) + + + + or + alebo + + + + Confirm send coins + Potvrdiť odoslanie bitcoins + + + + Payment request expired + Vypršala platnosť požiadavky na platbu + + + + Invalid payment address %1 + Neplatná adresa platby %1 + + + + The recipient address is not valid, please recheck. + Adresa príjemcu je neplatná, prosím, overte ju. + + + + The amount to pay must be larger than 0. + Suma na úhradu musí byť väčšia ako 0. + + + + The amount exceeds your balance. + Suma je vyššia ako Váš zostatok. + + + + The total exceeds your balance when the %1 transaction fee is included. + Suma celkom prevyšuje Váš zostatok ak sú započítané %1 transakčné poplatky. + + + + Duplicate address found, can only send to each address once per send operation. + Duplikát adresy objavený, je možné poslať na každú adresu len raz v jednej odchádzajúcej transakcii. + + + + Transaction creation failed! + Vytvorenie transakcie zlyhalo! + + + + 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 and coins were spent in the copy but not marked as spent here. + Transakcia bola zamietnutá! Toto sa môže stať ak niektoré coins vo vašej peňaženke už boli minuté, ako keď použijete kópiu wallet.dat a coins boli minuté z kópie ale neoznačené ako minuté tu. + + + + Error: The wallet was unlocked only to anonymize coins. + + + + + Warning: Invalid Dash address + + + + + Warning: Unknown change address + Varovanie: Neznáma adresa pre výdavok + + + + (no label) + (bez popisu) + + + + SendCoinsEntry + + + This is a normal payment. + Toto je normálna platba. + + + + Pay &To: + Zapla&tiť: + + + + The address to send the payment to (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + Choose previously used address + Vybrať predtým použitú adresu + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Vložiť adresu z klipbordu + + + + Alt+P + Alt+P + + + + + + Remove this entry + Odstrániť túto položku + + + + &Label: + &Popis: + + + + Enter a label for this address to add it to the list of used addresses + Vložte popis pre túto adresu aby sa uložila do zoznamu použitých adries + + + + + + A&mount: + Su&ma: + + + + Message: + Správa: + + + + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + + + + + This is an unverified payment request. + Toto je neoverená výzva k platbe. + + + + + Pay To: + Platba pre: + + + + + Memo: + Poznámka: + + + + This is a verified payment request. + Toto je overená výzva k platbe. + + + + Enter a label for this address to add it to your address book + Vložte popis pre túto adresu aby sa pridala do adresára + + + + ShutdownWindow + + + Dash Core is shutting down... + + + + + Do not shut down the computer until this window disappears. + Nevypínajte počítač kým toto okno nezmizne. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Podpisy - Podpísať / Overiť správu + + + + &Sign Message + &Podpísať Správu + + + + 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. + Môžete podpísať správy svojou adresou a dokázať, že ju vlastníte. Buďte opatrní a podpíšte len prehlásenia s ktorými plne súhlasíte, nakoľko útoky typu "phishing" Vás môžu lákať k ich podpísaniu. + + + + The address to sign the message with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + + Choose previously used address + Vybrať predtým použitú adresu + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Vložte adresu z klipbordu + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Sem vložte správu ktorú chcete podpísať + + + + Signature + Podpis + + + + Copy the current signature to the system clipboard + Kopírovať práve zvolenú adresu do systémového klipbordu + + + + Sign the message to prove you own this Dash address + + + + + Sign &Message + Podpísať &správu + + + + Reset all sign message fields + Vynulovať všetky polia podpisu správy + + + + + Clear &All + Zmazať &všetko + + + + &Verify Message + Overiť správu... + + + + 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. + Vložte podpisovaciu adresu, správu (uistite sa, že kopírujete ukončenia riadkov, medzery, odrážky, atď. presne) a podpis pod to na overenie adresy. Buďte opatrní a nečítajte ako podpísané viac než je v samotnej podpísanej správe a môžete sa tak vyhnúť podvodu mitm útokom. + + + + The address the message was signed with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + Verify the message to ensure it was signed with the specified Dash address + + + + + Verify &Message + Overiť správu + + + + Reset all verify message fields + Obnoviť všetky polia v overiť správu + + + + Click "Sign Message" to generate signature + Kliknite "Podpísať Správu" na získanie podpisu + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + + The entered address is invalid. + Zadaná adresa je neplatná. + + + + + + + Please check the address and try again. + Prosím skontrolujte adresu a skúste znova. + + + + + The entered address does not refer to a key. + Vložená adresa nezodpovedá žiadnemu kľúcu. + + + + Wallet unlock was cancelled. + Odomknutie peňaženky bolo zrušené. + + + + Private key for the entered address is not available. + Súkromný kľúč pre vložená adresu nieje k dispozícii. + + + + Message signing failed. + Podpísanie správy zlyhalo. + + + + Message signed. + Správa podpísaná. + + + + The signature could not be decoded. + Podpis nie je možné dekódovať. + + + + + Please check the signature and try again. + Prosím skontrolujte podpis a skúste znova. + + + + The signature did not match the message digest. + Podpis sa nezhoduje so zhrnutím správy + + + + Message verification failed. + Overenie správy zlyhalo. + + + + Message verified. + Správa overená. + + + + SplashScreen + + + Dash Core + Dash Core + + + + Version %1 + + + + + The Bitcoin Core developers + Vývojári jadra Bitcoin + + + + The Dash Core developers + Vývojári Dash Core + + + + [testnet] + [testovacia sieť] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + Otvorené do %1 + + + + + + + conflicted + sporné + + + + %1/offline (verified via instantx) + + + + + %1/confirmed (verified via instantx) + + + + + %1 confirmations (verified via instantx) + + + + + %1/offline + %1/offline + + + + %1/unconfirmed + %1/nepotvrdené + + + + + %1 confirmations + %1 potvrdení + + + + %1/offline (InstantX verification in progress - %2 of %3 signatures) + + + + + %1/confirmed (InstantX verification in progress - %2 of %3 signatures ) + + + + + %1 confirmations (InstantX verification in progress - %2 of %3 signatures) + + + + + %1/offline (InstantX verification failed) + + + + + %1/confirmed (InstantX verification failed) + + + + + Status + Stav + + + + , has not been successfully broadcast yet + , ešte nebola úspešne odoslaná + + + + , broadcast through %n node(s) + + + + + Date + Dátum + + + + Source + Zdroj + + + + Generated + Vygenerované + + + + + From + od + + + + unknown + neznámy + + + + + + To + Pre + + + + + own address + vlastná adresa + + + + label + popis + + + + + + + + Credit + Kredit + + + + matures in %n more block(s) + + + + + not accepted + neprijaté + + + + + + + Debit + Debet + + + + Transaction fee + Transakčný poplatok + + + + Net amount + Suma netto + + + + + Message + Správa + + + + Comment + Komentár + + + + Transaction ID + ID transakcie + + + + Merchant + Kupec + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Vytvorené coins musia dospieť %1 blokov kým môžu byť minuté. Keď vytvoríte tento blok, bude rozoslaný do siete aby bol akceptovaný do reťaze blokov. Ak sa nedostane reťaze, jeho stav sa zmení na "zamietnutý" a nebude sa dať minúť. Toto sa môže občas stať ak iná nóda vytvorí blok približne v tom istom čase. + + + + Debug information + Ladiace informácie + + + + Transaction + Transakcie + + + + Inputs + Vstupy + + + + Amount + Suma + + + + true + pravda + + + + false + nepravda + + + + TransactionDescDialog + + + Transaction details + Detaily transakcie + + + + This pane shows a detailed description of the transaction + Táto časť obrazovky zobrazuje detailný popis transakcie + + + + TransactionTableModel + + + Date + Dátum + + + + Type + Typ + + + + Address + Adresa + + + + Amount + Hodnota + + + + Open for %n more block(s) + + + + + Open until %1 + Otvorené do %1 + + + + Offline + Offline + + + + Unconfirmed + Nepotvrdené + + + + Confirming (%1 of %2 recommended confirmations) + Potvrdzuje sa ( %1 z %2 odporúčaných potvrdení) + + + + Confirmed (%1 confirmations) + Potvrdené (%1 potvrdení) + + + + Conflicted + V rozpore + + + + Immature (%1 confirmations, will be available after %2) + Nezrelé (%1 potvrdení, bude k dispozícii po %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Ten blok nebol prijatý žiadnou inou nódou a pravdepodobne nebude akceptovaný! + + + + Generated but not accepted + Vypočítané ale neakceptované + + + + Received with + Prijaté s + + + + Received from + Prijaté od: + + + + Received via Darksend + + + + + Sent to + Odoslané na + + + + Payment to yourself + Platba sebe samému + + + + Mined + Vyfárané + + + + Darksend Denominate + + + + + Darksend Collateral Payment + + + + + Darksend Make Collateral Inputs + + + + + Darksend Create Denominations + + + + + Darksent + + + + + (n/a) + (n/a) + + + + Transaction status. Hover over this field to show number of confirmations. + Status transakcie. Pohybujte myšou nad týmto poľom a zjaví sa počet potvrdení. + + + + Date and time that the transaction was received. + Dátum a čas prijatia transakcie. + + + + Type of transaction. + Typ transakcie. + + + + Destination address of transaction. + Cieľová adresa transakcie. + + + + Amount removed from or added to balance. + Suma pridaná alebo odobraná k zostatku. + + + + TransactionView + + + + All + Všetko + + + + Today + Dnes + + + + This week + Tento týždeň + + + + This month + Tento mesiac + + + + Last month + Minulý mesiac + + + + This year + Tento rok + + + + Range... + Rozsah... + + + + Received with + Prijaté s + + + + Sent to + Odoslané na + + + + Darksent + + + + + Darksend Make Collateral Inputs + + + + + Darksend Create Denominations + + + + + Darksend Denominate + + + + + Darksend Collateral Payment + + + + + To yourself + Samému sebe + + + + Mined + Vyfárané + + + + Other + Iné + + + + Enter address or label to search + Vložte adresu alebo popis pre vyhľadávanie + + + + Min amount + Min množstvo + + + + Copy address + Kopírovať adresu + + + + Copy label + Kopírovať popis + + + + Copy amount + Kopírovať sumu + + + + Copy transaction ID + Kopírovať ID transakcie + + + + Edit label + Editovať popis + + + + Show transaction details + Zobraziť podrobnosti transakcie + + + + Export Transaction History + Exportovať históriu transakcií + + + + Comma separated file (*.csv) + Čiarkou oddelovaný súbor (*.csv) + + + + Confirmed + Potvrdené + + + + Date + Dátum + + + + Type + Typ + + + + Label + Popis + + + + Address + Adresa + + + + Amount + Suma + + + + ID + ID + + + + Exporting Failed + Export zlyhal + + + + There was an error trying to save the transaction history to %1. + Vyskytla sa chyba pri pokuse o uloženie histórie transakcií do %1. + + + + Exporting Successful + Export úspešný + + + + The transaction history was successfully saved to %1. + História transakciá bola úspešne uložená do %1. + + + + Range: + Rozsah: + + + + to + do + + + + WalletFrame + + + No wallet has been loaded. + Nie je načítaná peňaženka. + + + + WalletModel + + + + Send Coins + Poslať Bitcoins + + + + InstantX doesn't support sending values that high yet. Transactions are currently limited to %n DASH. + + + + + WalletView + + + &Export + &Exportovať... + + + + Export the data in the current tab to a file + Exportovať tento náhľad do súboru + + + + Backup Wallet + Zálohovať peňaženku + + + + Wallet Data (*.dat) + Údaje peňaženky (*.dat) + + + + Backup Failed + Záloha zlyhala + + + + There was an error trying to save the wallet data to %1. + Vyskytla sa chyba pri pokuse o uloženie dát peňaženky do %1. + + + + Backup Successful + Záloha úspešná + + + + The wallet data was successfully saved to %1. + Dáta peňaženky boli úspešne uložené do %1. + + + + dash-core + + + %s, you must set a rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=dashrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com + + + + + + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + Akceptovateľné šifry (predvolené: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + Pri nastavovaní portu RPC %u pre počúvanie na IPv4 došlo k chybe: %s + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + Chyba pri nastavovaní portu RPC %u pre počúvanie na IPv6, spadne späť na IPv4: %s + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. Dash Core is probably already running. + + + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + + + + + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. + + + + + Disable all Masternode and Darksend related functionality (0-1, default: 0) + + + + + Enable instantx, show confirmations for locked transactions (bool, default: true) + + + + + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) + + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. + + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + 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 and coins were spent in the copy but not marked as spent here. + + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! + + + + + Error: Wallet unlocked for anonymization only, unable to create transaction. + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Fees smaller than this are considered zero fee (for transaction creation) (default: + + + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + + + + + Found unconfirmed denominated outputs, will wait till they confirm to continue. + + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. + + + + + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) + Počúvajte pre JSON-RPC spojenie na <port> (predvolené: 9998 alebo testovacia siet: 19998) + + + + Name to construct url for KeePass entry that stores the wallet passphrase + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Počet sekúnd kedy sa zabráni zle sa správajúcim peerom znovupripojenie (predvolené: 86400) + + + + Output debugging information (default: 0, supplying <category> is optional) + Výstupné informácie o ladení. (predvolené: 0, zadanie <category> je nepovinné) + + + + 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) + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + + + + + Set external address:port to get to this masternode (example: address:port) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + Nastavte maximálnu veľkosť vysoko-prioritných/nízko-poplatkových transakcií v bajtoch (predvolené: %d) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + + + + + Show N confirmations for a successfully locked transaction (0-9999, default: 1) + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + Unable to bind to %s on this computer. Dash Core is probably already running. + + + + + Unable to locate enough Darksend denominated funds for this transaction. + + + + + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. + + + + + Unable to locate enough Darksend non-denominated funds for this transaction. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) + + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + + + + + You must specify a masternodeprivkey in the configuration. Please see documentation for help. + + + + + (default: 1) + (predvolené: 1) + + + + (default: wallet.dat) + (predvolené: wallet.dat) + + + + <category> can be: + <category> môže byť: + + + + Accept command line and JSON-RPC commands + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Add a node to connect to and attempt to keep the connection open + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + Allow JSON-RPC connections from specified IP address + + + + + Already have that input. + + + + + Always query for peer addresses via DNS lookup (default: 0) + + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + + Block creation options: + + + + + Can't denominate: no compatible inputs left. + + + + + Cannot downgrade wallet + + + + + Cannot resolve -bind address: '%s' + + + + + Cannot resolve -externalip address: '%s' + + + + + Cannot write default address + + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + + Collateral is not valid. + + + + + Collateral not valid. + + + + + Connect only to the specified node(s) + + + + + Connect through SOCKS proxy + + + + + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) + + + + + Connect to KeePassHttp on port <port> (default: 19455) + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Connection options: + + + + + Corrupted block database detected + + + + + Dash Core Daemon + + + + + Dash Core RPC client version + + + + + Darksend is disabled. + + + + + Darksend options: + + + + + Debugging/Testing options: + + + + + Disable safemode, override a real safe mode event (default: 0) + + + + + Discover own IP address (default: 1 when listening and no -externalip) + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Done loading + + + + + Downgrading and trying again. + + + + + Enable the client to act as a masternode (0-1, default: 0) + + + + + Entries are full. + + + + + Error connecting to masternode. + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading block database + + + + + Error loading wallet.dat + Chyba pri načítaní wallet.dat + + + + Error loading wallet.dat: Wallet corrupted + Chyba pri načítaní wallet.dat: Peňaženka je poškodená + + + + Error loading wallet.dat: Wallet requires newer version of Dash + Chyba pri načítaní wallet.dat: Peňaženka vyžaduje novšiu verziu Dash + + + + Error opening block database + + + + + Error reading from database, shutting down. + + + + + Error recovering public key. + + + + + Error + Chyba + + + + Error: Disk space is low! + Chyba: Nedostatok miesta na disku! + + + + Error: Wallet locked, unable to create transaction! + + + + + Error: You already have pending entries in the Darksend pool + + + + + Error: system error: + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Failed to read block info + + + + + Failed to read block + + + + + Failed to sync block index + + + + + Failed to write block index + + + + + Failed to write block info + + + + + Failed to write block + + + + + Failed to write file info + + + + + Failed to write to coin database + + + + + Failed to write transaction index + + + + + Failed to write undo data + + + + + Fee per kB to add to transactions you send + + + + + Fees smaller than this are considered zero fee (for relaying) (default: + + + + + Force safe mode (default: 0) + + + + + Generate coins (default: 0) + + + + + Get help for a command + + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + + If <category> is not supplied, output all debugging information. + + + + + Ignore masternodes less than version (example: 70050; default : 0) + + + + + Importing... + + + + + Imports blocks from external blk000??.dat file + + + + + Incompatible mode. + + + + + Incompatible version. + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Information + Informácia + + + + Initialization sanity check failed. Dash Core is shutting down. + + + + + Input is not valid. + + + + + InstantX options: + + + + + Insufficient funds + + + + + Insufficient funds. + + + + + Invalid -onion address: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + + Invalid amount + + + + + Invalid masternodeprivkey. Please see documenation. + + + + + Invalid private key. + + + + + Invalid script detected. + + + + + KeePassHttp id for the established association + + + + + KeePassHttp key for AES encrypted communication with KeePass + + + + + Keep N dash anonymized (default: 0) + + + + + Keep at most <n> unconnectable blocks in memory (default: %u) + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Last Darksend was too recent. + + + + + Last successful darksend action was too recent. + + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + + List commands + + + + + Listen for connections on <port> (default: 9999 or testnet: 19999) + + + + + Loading addresses... + Načítavanie adries... + + + + Loading block index... + Načítavanie zoznamu blokov... + + + + Loading masternode list... + + + + + Loading wallet... (%3.2f %%) + Načítavanie peňaženky... (%3.2f %%) + + + + Loading wallet... + Načítavanie peňaženky... + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + + Maintain a full transaction index (default: 0) + + + + + Maintain at most <n> connections to peers (default: 125) + + + + + Masternode options: + + + + + Masternode queue is full. + + + + + Masternode: + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + + Missing input transaction information. + + + + + No compatible masternode found. + + + + + No funds detected in need of denominating. + + + + + No masternodes detected. + + + + + No matching denominations found for mixing. + + + + + Non-standard public key detected. + + + + + Not compatible with existing transactions. + + + + + Not enough file descriptors available. + + + + + Not in the masternode list. + + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + + Options: + + + + + Password for JSON-RPC connections + + + + + Prepend debug output with timestamp (default: 1) + + + + + Print block on startup, if found in block index + + + + + Print block tree on startup (default: 0) + + + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + + RPC client options: + + + + + RPC server options: + + + + + Randomly drop 1 of every <n> network messages + + + + + Randomly fuzz 1 of every <n> network messages + + + + + Rebuild block chain index from current blk000??.dat files + + + + + Rescan the block chain for missing wallet transactions + + + + + Rescanning... + + + + + Run a thread to flush wallet periodically (default: 1) + + + + + Run in the background as a daemon and accept commands + + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + + Send command to Dash Core + + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + + Send trace/debug info to console instead of debug.log file + + + + + Server certificate file (default: server.cert) + + + + + Server private key (default: server.pem) + + + + + Session not complete! + + + + + Session timed out (30 seconds), please resubmit. + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Set key pool size to <n> (default: 100) + + + + + Set maximum block size in bytes (default: %d) + + + + + Set minimum block size in bytes (default: 0) + + + + + Set the masternode private key + + + + + Set the number of threads to service RPC calls (default: 4) + + + + + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Show benchmark information (default: 0) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing failed. + + + + + Signing timed out, please resubmit. + + + + + Signing transaction failed + + + + + Specify configuration file (default: dash.conf) + + + + + Specify connection timeout in milliseconds (default: 5000) + + + + + Specify data directory + + + + + Specify masternode configuration file (default: masternode.conf) + + + + + Specify pid file (default: dashd.pid) + + + + + Specify wallet file (within data directory) + + + + + Specify your own public address + + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + + Start Dash Core Daemon + + + + + System error: + + + + + This help message + + + + + This is intended for regression testing tools and app development. + + + + + This is not a masternode. + + + + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + To use the %s option + Použiť možnosť %s + + + + Transaction amount too small + + + + + Transaction amounts must be positive + + + + + Transaction created successfully. + + + + + Transaction fees are too high. + + + + + Transaction not valid. + + + + + Transaction too large + Transakcia je príliš veľká + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Unable to sign masternode payment winner, wrong key? + + + + + Unable to sign spork message, wrong key? + + + + + Unknown -socks proxy version requested: %i + Požadovaná neznáma SOCKS proxy verzia: %i + + + + Unknown network specified in -onlynet: '%s' + Špecifikovaná neznáma sieť v -onlynet: '%s' + + + + Upgrade wallet to latest format + + + + + Usage (deprecated, use dash-cli): + + + + + Usage: + Použitie: + + + + Use KeePass 2 integration using KeePassHttp plugin (default: 0) + + + + + Use N separate masternodes to anonymize funds (2-8, default: 2) + + + + + Use OpenSSL (https) for JSON-RPC connections + Použiť OpenSSL (https) pre JSON-RPC spojenia + + + + Use UPnP to map the listening port (default: 0) + Skúsiť použiť UPnP pre mapovanie počúvajúceho portu (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + Skúsiť použiť UPnP pre mapovanie počúvajúceho portu (predvolené: 1 počas počúvania) + + + + Use the test network + Použiť testovaciu sieť + + + + Username for JSON-RPC connections + Užívateľské meno pre JSON-RPC spojenia + + + + Value more than Darksend pool maximum allows. + + + + + Verifying blocks... + Overovanie blokov + + + + Verifying wallet... + Overovanie peňaženky + + + + Wait for RPC server to start + Pred spustením počkať na RPC server + + + + Wallet %s resides outside data directory %s + Peňaženka %s je umiestnená mimo dátový adresár %s. + + + + Wallet is locked. + Peňaženka je zamknutá. + + + + Wallet needed to be rewritten: restart Dash to complete + Peňaženka potrebuje byť prepísaná: k dokončeniu reštartujte Dash + + + + Wallet options: + Možnosti peňaženky: + + + + Warning + Upozornenie + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + Upozornenie: Zastaraný argument -debugnet bol ignorovaný, použite -debug=net + + + + Warning: This version is obsolete, upgrade required! + Upozornenie: Táto verzia je zastaraná, vyžaduje sa aktualizácia! + + + Wrong state. + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + on startup + pri spustení + + + + version + verzia + + + + wallet.dat corrupt, salvage failed + wallet.dat je poškodený, záchrana zlyhala + + + \ No newline at end of file diff --git a/src/qt/locale/dash_sv.ts b/src/qt/locale/dash_sv.ts new file mode 100644 index 0000000000..e8add27bb6 --- /dev/null +++ b/src/qt/locale/dash_sv.ts @@ -0,0 +1,5296 @@ + + + AboutDialog + + + About Dash Core + Om Dash Core + + + + <b>Dash Core</b> version + <b>Dash Core</b>-version + + + + Copyright &copy; 2009-2014 The Bitcoin Core developers. +Copyright &copy; 2014-YYYY The Dash Core developers. + Upphovsrätt &kopia: 2009 - 2015 Bitcoin Core-utvecklarna. +Upphovsrätt &kopia; 2014 - YYYY Dash Core, utvecklarna. + + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +Detta är experimentell mjukvara. + +Distribuerad under mjukvarulicensen MIT/X11, se den medföljande filen COPYING eller http://www.opensource.org/licenses/mit-license.php. + +Denna produkt innehåller mjukvara utvecklad av OpenSSL Projekt för användning i OpenSSL Toolkit (http://www.openssl.org/) och kryptografisk mjukvara utvecklad av Eric Young (eay@cryptsoft.com) samt UPnP-mjukvara skriven av Thomas Bernard. + + + + + Copyright + Upphovsrätt + + + + The Bitcoin Core developers + Bitcoin Core-utvecklarna + + + + The Dash Core developers + Dash Core-utvecklarna + + + + + (%1-bit) + (%1-bit) + + + + AddressBookPage + + + Double-click to edit address or label + Dubbelklicka för att ändra adressen eller etiketten + + + + Create a new address + Skapa en ny adress + + + + &New + &Ny + + + + Copy the currently selected address to the system clipboard + Kopiera den nuvarande valda adressen till systemurklippet + + + + &Copy + &Kopiera + + + + Delete the currently selected address from the list + Radera den nuvarande valda adressen från listan + + + + &Delete + &Radera + + + + Export the data in the current tab to a file + Exportera datan i den nuvarande fliken till en fil + + + + &Export + &Exportera + + + + C&lose + S&täng + + + + Choose the address to send coins to + Välj en adress att skicka mynt till + + + + Choose the address to receive coins with + Välj adressen att motta mynt från + + + + C&hoose + V&älj + + + + Sending addresses + Avsändaradresser + + + + Receiving addresses + Mottagaradresser + + + + These are your Dash addresses for sending payments. Always check the amount and the receiving address before sending coins. + De här är dina Dash-adresser för att skicka betalningar. Kontrollera alltid mängden och mottagaradressen innan du skickar mynt. + + + + These are your Dash addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + De här är dina Dash-adresser för att motta betalningar. Det rekommenderas att använda en ny mottagaradress för varje transaktion. + + + + &Copy Address + &Kopiera adress + + + + Copy &Label + Kopiera &etikett + + + + &Edit + &Redigera + + + + Export Address List + Exportera adresslistan + + + + Comma separated file (*.csv) + Kommaseparerad fil (*.csv) + + + + Exporting Failed + Exporteringen misslyckades + + + + There was an error trying to save the address list to %1. + Det inträffade ett fel när adresslistan skulle sparas till %1. + + + + AddressTableModel + + + Label + Etikett + + + + Address + Adress + + + + (no label) + (Ingen etikett) + + + + AskPassphraseDialog + + + Passphrase Dialog + Lösenfrasdialog + + + + Enter passphrase + Ange lösenfras + + + + New passphrase + Ny lösenfras + + + + Repeat new passphrase + Upprepa ny lösenfras + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Arbetar för att inaktivera de triviala sändpengarna när OS-kontot är komprometterat. Ger ingen riktig säkerhet. + + + + For anonymization only + Endast för anonymisering + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Ange plånbokens nya lösenfras. <br/> Använd en lösenfras på <b>10 eller fler slumpmässiga tecken,</b> eller <b>åtta eller fler ord.</b> + + + + Encrypt wallet + Kryptera plånbok + + + + This operation needs your wallet passphrase to unlock the wallet. + Denna handling kräver din plånboks lösenfras för att låsa upp plånboken. + + + + Unlock wallet + Lås upp plånbok + + + + This operation needs your wallet passphrase to decrypt the wallet. + Denna handling kräver din plånboks lösenfras för att dekryptera plånboken. + + + + Decrypt wallet + Dekryptera plånbok + + + + Change passphrase + Ändra lösenfras + + + + Enter the old and new passphrase to the wallet. + Skriv in den gamla och den nya lösenfrasen till plånboken. + + + + Confirm wallet encryption + Bekräfta plånbokskryptering + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Varning: Om du krypterar din plånbok och tappar bort din lösenfras kommer du att <b>FÖRLORA ALLA DINA DASHS</b>! + + + + Are you sure you wish to encrypt your wallet? + Är du säker på att du vill kryptera din plånbok? + + + + + Wallet encrypted + Plånboken krypterades + + + + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + Dash kommer nu att avsluta krypteringsprocessen. Kom ihåg att krypteringen av din plånbok inte helt kan skydda dig mot att dina Darkcoins blir stulna av skadeprogram som har infekterat din dator. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + VIKTIGT: Alla tidigare säkerhetskopior du har gjort av plånboksfilen ska ersättas med den nygenererade krypterade plånboksfilen. Av säkerhetsskäl kommer tidigare säkerhetskopior av den okrypterade plånboksfilen bli oanvändbara då du börjar använda en ny, krypterad plånbok. + + + + + + + Wallet encryption failed + Plånbokskrypteringen misslyckades + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Plånbokskrypteringen misslyckades på grund av ett internt fel. Din plånbok krypterades inte. + + + + + The supplied passphrases do not match. + Den angivna lösenfrasen överensstämmer inte. + + + + Wallet unlock failed + Plånboksupplåsning misslyckades + + + + + + The passphrase entered for the wallet decryption was incorrect. + Den inmatade lösenfrasen för plånboksdekrypteringen var felaktig. + + + + Wallet decryption failed + Plånboksdekryptering misslyckades. + + + + Wallet passphrase was successfully changed. + Plånbokens lösenfras ändrades framgångsrikt. + + + + + Warning: The Caps Lock key is on! + Varning: Caps Lock är aktiverat! + + + + BitcoinGUI + + + Dash Core + Dash Core + + + + + Wallet + Plånbok + + + + Node + Nod + + + + + [testnet] + [testnet] + + + + &Overview + &Översikt + + + + Show general overview of wallet + Visa allmän plånboksöversikt + + + + &Send + &Skicka + + + + Send coins to a Dash address + Skicka mynt till en Dash-adress + + + + &Receive + &Motta + + + + Request payments (generates QR codes and dash: URIs) + Begär betalningar (genererar QR-koder och Dash-URI:s) + + + + &Transactions + &Transaktioner + + + + Browse transaction history + Bläddra i transaktionshistoriken + + + + E&xit + A&vsluta + + + + Quit application + Avsluta applikationen + + + + + &About Dash Core + &Om Dash Core + + + + Show information about Dash + Visa information om Dash + + + + + About &Qt + Om &Qt + + + + Show information about Qt + Visa information om Qt + + + + &Options... + &Alternativ... + + + + Modify configuration options for Dash + Anpassa konfigurationsalternatv för Dash + + + + + &Show / Hide + &Visa/göm + + + + Show or hide the main Window + Visa eller göm huvudfönstret + + + + &Encrypt Wallet... + &Kryptera plånbok... + + + + Encrypt the private keys that belong to your wallet + Kryptera de privata nycklarna som tillhör din plånbok + + + + &Backup Wallet... + &Säkerhetskopiera plånbok... + + + + Backup wallet to another location + Säkerhetskopiera plånboken till en annan plats + + + + &Change Passphrase... + &Ändra lösenfras... + + + + Change the passphrase used for wallet encryption + Ändra lösenfrasen som används för plånbokskryptering + + + + &Unlock Wallet... + &Lås upp plånbok... + + + + Unlock wallet + Lås upp plånbok + + + + &Lock Wallet + &Lås plånbok + + + + Sign &message... + Signera &meddelande... + + + + Sign messages with your Dash addresses to prove you own them + Signera meddelanden med dina Dash-adresser för att bevisa att du äger dem + + + + &Verify message... + &Bekräfta meddelande... + + + + Verify messages to ensure they were signed with specified Dash addresses + Bekräfta meddelanden för att garantera att de signerades med de angivna Dash-adresserna + + + + &Information + &Information + + + + Show diagnostic information + Visa diagnostisk information + + + + &Debug console + &Avsökningskonsol + + + + Open debugging console + Öppna avsökningskonsol + + + + &Network Monitor + &Nätverksövervakare + + + + Show network monitor + Visa nätverksövervakare + + + + Open &Configuration File + Öppna &Konfigurationsfil + + + + Open configuration file + Öppna konfigurationsfil + + + + &Sending addresses... + &Avsändaradresser... + + + + Show the list of used sending addresses and labels + Visa listan med använda avsändaradresser och etiketter + + + + &Receiving addresses... + &Mottagaradresser... + + + + Show the list of used receiving addresses and labels + Visa listan med de använda mottagaradresserna och etiketterna + + + + Open &URI... + Öppna &URI... + + + + Open a dash: URI or payment request + Öppna en Dash-URI eller betalningsbegäran + + + + &Command-line options + %Kommandoradalternativ + + + + Show the Dash Core help message to get a list with possible Dash command-line options + Visa Dash Core-hjälpmeddelandet för att få en lista med möjliga Dash-kommandoradalternativ + + + + &File + &Fil + + + + &Settings + &Inställningar + + + + &Tools + &Verktyg + + + + &Help + &Hjälp + + + + Tabs toolbar + Verktygsfält för tabbar + + + + + Dash client + Dash-klient + + + + %n active connection(s) to Dash network + %n aktiv anslutning till Dash-nätverket%n aktiva anslutningar till Dash-nätverket + + + + Synchronizing with network... + Synkroniserar med nätverket... + + + + Importing blocks from disk... + Importerar block från disk... + + + + Reindexing blocks on disk... + Återindexerar block på disk... + + + + No block source available... + Ingen tillgänglig blockkälla... + + + + Processed %1 blocks of transaction history. + Utfört %1 block av transaktionshistoriken + + + + Up to date + Aktuell + + + + %n hour(s) + %n timme%n timmar + + + + %n day(s) + %n dag%n dagar + + + + + %n week(s) + %n vecka%n veckor + + + + %1 and %2 + %1 och %2 + + + + %n year(s) + %n år%n år + + + + %1 behind + %1 efter + + + + Catching up... + Hämtar senaste... + + + + Last received block was generated %1 ago. + Senast mottagna block genererades %1 sedan. + + + + Transactions after this will not yet be visible. + Transaktioner efter denna kommer inte ännu vara synliga. + + + + Dash + Dash + + + + Error + Fel + + + + Warning + Varning + + + + Information + Information + + + + Sent transaction + Skickad transaktion + + + + Incoming transaction + Inkommande transaktion + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datum: %1 +Mängd: %2 +Typ: %3 +Adress: %4 + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Plånboken är <b>krypterad</b> och för närvarande <b>olåst</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only + Plånboken är <b>krypterad</b> och för närvarande <b>olåst</b> endast för anonymisering + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Plånboken är <b>krypterad</b> och för närvarande <b>låst</b> + + + + A fatal error occurred. Dash can no longer continue safely and will quit. + Ett ödesdigert misstag inträffade. Dash kan inte längre att fortsätta säkert och kommer att avslutas. + + + + ClientModel + + + Network Alert + Nätverkslarm + + + + CoinControlDialog + + + Coin Control Address Selection + Adressval för myntkontroll + + + + Quantity: + Mängd: + + + + Bytes: + Bytes: + + + + Amount: + Mängd: + + + + Priority: + Prioritet: + + + + Fee: + Avgift: + + + + Low Output: + Låg utdata: + + + + After Fee: + Efter avgift: + + + + Change: + Växel: + + + + (un)select all + (av)välj allt + + + + Tree mode + Trädmetod + + + + List mode + Listmetod + + + + (1 locked) + (1 låst) + + + + Amount + Mängd + + + + Label + Etikett + + + + Address + Adress + + + + Darksend Rounds + Darksend-omgångar + + + + Date + Datum + + + + Confirmations + Bekräftelser + + + + + Confirmed + Bekräftad + + + + Priority + Prioritet + + + + Copy address + Kopiera adress + + + + Copy label + Kopiera etikett + + + + + Copy amount + Kopiera mängd + + + + Copy transaction ID + Kopiera transaktions-id + + + + Lock unspent + Lås oförbrukat + + + + Unlock unspent + Lås upp oförbrukat + + + + Copy quantity + Kopiera mängd + + + + Copy fee + Kopiera avgift + + + + Copy after fee + Kopiera efter avgift + + + + Copy bytes + Kopiera bytes + + + + Copy priority + Kopiera prioritet + + + + Copy low output + Kopiera låg utdata + + + + Copy change + Kopiera växel + + + + highest + högst + + + + higher + högre + + + + high + hög + + + + medium-high + medelhög + + + + n/a + E/t + + + + + medium + medel + + + + low-medium + medellåg + + + + low + låg + + + + lower + lägre + + + + lowest + lägst + + + + (%1 locked) + (%1 låst) + + + + none + inga + + + + Dust + Damm + + + + yes + ja + + + + + no + nej + + + + This label turns red, if the transaction size is greater than 1000 bytes. + Denna etikett blir röd om transaktionen är större än 1000 bytes. + + + + + This means a fee of at least %1 per kB is required. + Detta betyder att den begärda avgiften som minst är %1 per kB + + + + Can vary +/- 1 byte per input. + Kan variera +/- 1 byte per utdata. + + + + Transactions with higher priority are more likely to get included into a block. + Transaktioner med högre prioritet är mer benägna att inkluderas i ett block. + + + + This label turns red, if the priority is smaller than "medium". + Denna etikett blir röd om prioriteten är mindre än "medel". + + + + This label turns red, if any recipient receives an amount smaller than %1. + Denna etikett blir röd om en mottagare får ett belopp mindre än %1. + + + + + This means a fee of at least %1 is required. + Detta betyder att en lägsta avgift på %1 krävs. + + + + Amounts below 0.546 times the minimum relay fee are shown as dust. + Mängder mindre än 0.546 gånger den minsta vidarebefordringsavgiften visas som damm. + + + + This label turns red, if the change is smaller than %1. + Denna etikett blir röd om växeln är mindre än %1. + + + + + (no label) + (Ingen etikett) + + + + change from %1 (%2) + växel från %1 (%2) + + + + (change) + (växel) + + + + DarksendConfig + + + Configure Darksend + Konfigurera Darksend + + + + Basic Privacy + Grundläggande integritet + + + + High Privacy + Hög integritet + + + + Maximum Privacy + Maximal integritet + + + + Please select a privacy level. + Vänligen välj en integritetsnivå. + + + + Use 2 separate masternodes to mix funds up to 1000 DASH + Använd 2 enskilda masternoder för att mixa medel upp till 1000 DASH + + + + Use 8 separate masternodes to mix funds up to 1000 DASH + Använd 8 enskilda masternoder för att mixa medel upp till 1000 DASH. + + + + Use 16 separate masternodes + Använd 16 enskilda masternoder + + + + This option is the quickest and will cost about ~0.025 DASH to anonymize 1000 DASH + Detta alternativ är det snabbaste och kommer att kosta ~0,025 DRk för att anonymisera 1000 DASH + + + + This option is moderately fast and will cost about 0.05 DASH to anonymize 1000 DASH + Detta alternativ är relativt snabbt och kommer att kosta 0,05 DRk för att anonymisera 1000 DASH + + + + 0.1 DASH per 1000 DASH you anonymize. + 0,1 DASH per 1000 DASH du anonymiserar. + + + + This is the slowest and most secure option. Using maximum anonymity will cost + Detta är det långsammaste och mest säkra alternativ. Att använda maximal anonymitet kommer att kosta + + + + + + Darksend Configuration + Darksend-konfiguration + + + + Darksend was successfully set to basic (%1 and 2 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend ställdes framgångsrikt in på grundläggande (%1 och 2 omgångar). Du kan ändra detta när som helst genom att öppna Darkcoins konfigurationsfönster. + + + + Darksend was successfully set to high (%1 and 8 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend ställdes framgångsrikt in på hög (%1 och 8 omgångar). Du kan ändra detta när som helst genom att öppna Darkcoins konfigurationsfönster. + + + + Darksend was successfully set to maximum (%1 and 16 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend ställdes framgångsrikt in på maximal (%1 och 16 omgångar). Du kan ändra detta när som helst genom att öppna Darkcoins konfigurationsfönster. + + + + EditAddressDialog + + + Edit Address + Redigera Adress + + + + &Label + &Etikett + + + + The label associated with this address list entry + Etiketten associerad med denna adresslistas inmatning + + + + &Address + &Adress + + + + The address associated with this address list entry. This can only be modified for sending addresses. + Adressen associerad med denna adresslistas post. Detta kan bara ändras för avsändaradreser. + + + + New receiving address + Ny mottagaradress + + + + New sending address + Ny avsändaradress + + + + Edit receiving address + Redigera mottagaradress + + + + Edit sending address + Redigera avsändaradress + + + + The entered address "%1" is not a valid Dash address. + Den angivna adressen "%1" är inte en giltig Dash-adress. + + + + The entered address "%1" is already in the address book. + Den angivna adressen "%1" finns redan i adressboken. + + + + Could not unlock wallet. + Plånboken kunde inte låsas upp. + + + + New key generation failed. + Misslyckades med nygenerering av nyckel. + + + + FreespaceChecker + + + A new data directory will be created. + En ny datakatalog kommer att skapas. + + + + name + namn + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Katalogen finns redan. Lägg till %1 om du vill skapa en ny katalog här. + + + + Path already exists, and is not a directory. + Sökvägen finns redan och är inte en katalog. + + + + Cannot create data directory here. + Kan inte skapa en datakatalog här. + + + + HelpMessageDialog + + + Dash Core - Command-line options + Dash Core - kommandoradalternativ + + + + Dash Core + Dash Core + + + + + version + version + + + + Usage: + Användning: + + + + command-line options + kommandoradalternativ + + + + UI options + UI-alternativ + + + + Choose data directory on startup (default: 0) + Välj datakatalog vid uppstart (standardvärde: 0) + + + + Set language, for example "de_DE" (default: system locale) + Ställ in språk, till exempel "de_DE" (standardvärde: system locale) + + + + Start minimized + Starta minimerat + + + + Set SSL root certificates for payment request (default: -system-) + Ställ in SSL-root-certifikat för betalningsbegäran (standardvärde: -system-) + + + + Show splash screen on startup (default: 1) + Visa startbilden vid uppstart (standardvärde: 1) + + + + Intro + + + Welcome + Välkommen + + + + Welcome to Dash Core. + Välkommen till Dash Core. + + + + As this is the first time the program is launched, you can choose where Dash Core will store its data. + Då detta är första gången programmet startas kan du välja var Dash Core ska lagra sin data. + + + + Dash Core will download and store a copy of the Dash block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Dash Core kommer att laddas ned och lagra en kopia av Darkcoins blockkedja. Minst %1 GB data kommer att lagras i denna katalog och den kommer att växa med tiden. Plånboken kommer också att lagras i denna katalog. + + + + Use the default data directory + Använd den förvalda datakatalogen + + + + Use a custom data directory: + Använd en anpassad datakatalog: + + + + Dash + Dash + + + + Error: Specified data directory "%1" can not be created. + Fel: Den angivna datakatalogen "%1" kan inte skapas. + + + + Error + Fel + + + + GB of free space available + GB ledigt utrymme tillgängligt + + + + (of %1GB needed) + (av %1GB krävs) + + + + OpenURIDialog + + + Open URI + Öppna URI + + + + Open payment request from URI or file + Öppna betalningsbegäran från URI eller fil + + + + URI: + URI: + + + + Select payment request file + Välj betalningsbegäranfil + + + + Select payment request file to open + Välj betalningsbegäranfil att öppna + + + + OptionsDialog + + + Options + Alternativ + + + + &Main + &Huvud + + + + Automatically start Dash after logging in to the system. + Starta Dash automatiskt efter systeminloggning. + + + + &Start Dash on system login + &Starta Dash vid systeminloggning + + + + Size of &database cache + Storleken på &databascache + + + + MB + MB + + + + Number of script &verification threads + Antal skript&verifieringstrådar + + + + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = lämna så många kärnor lediga) + + + + <html><head/><body><p>This setting determines the amount of individual masternodes that an input will be anonymized through. More rounds of anonymization gives a higher degree of privacy, but also costs more in fees.</p></body></html> + <html><head/><body><p>Denna inställning bestämmer antalet enskilda masternodes som en indata kommer att anonymiseras genom. Fler anonymiseringsomgångar ger en högre grad av integritet men kostar också mer i avgifter.</p></body></html> + + + + Darksend rounds to use + Darksend-omgångar att använda + + + + This amount acts as a threshold to turn off Darksend once it's reached. + Mängden fungerar som en tröskel att stänga av Darksend då det har uppnåtts. + + + + Amount of Dash to keep anonymized + Antal Darkcoins att bibehålla anonymiserade + + + + W&allet + &Plånbok + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. + Valfri transaktionsavgift per kB som ser till att dina transaktioner behandlas snabbt. De flesta transaktioner är 1 kB. + + + + Pay transaction &fee + Betala överförings&avgift + + + + Expert + Expert + + + + Whether to show coin control features or not. + Om myntkontrollfunktioner ska visas eller inte + + + + Enable coin &control features + Aktivera mynt- och &kontrollfunktioner + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Om du inaktiverar spenderingen med okonfirmerad växel kan inte växeln från en transaktion användas förrän den transaktionen har minst en bekräftelse. Detta påverkar också hur medlet beräknas. + + + + &Spend unconfirmed change + &Spendera oberäftad växel + + + + &Network + &Nätverk + + + + Automatically open the Dash client port on the router. This only works when your router supports UPnP and it is enabled. + Öppna Darkcoins klientport automatiskt på routern. Detta fungerar bara om din router stöder UPnP och är aktiverad. + + + + Map port using &UPnP + Kartlägg port med hjälp av &UPnP + + + + Connect to the Dash network through a SOCKS proxy. + Anslut till Dash-nätverket genom en SOCKS-proxy. + + + + &Connect through SOCKS proxy (default proxy): + &Anslut genom SOCKS-proxy (standard proxy): + + + + Proxy &IP: + Proxy-&IP: + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Proxyns IP-adress (t.ex. IPv4: 127.0.0.1 / IPv6: ::1) + + + + &Port: + &Port: + + + + Port of the proxy (e.g. 9050) + Proxyns port (t.ex. 9050) + + + + SOCKS &Version: + SOCKS-&Version: + + + + SOCKS version of the proxy (e.g. 5) + SOCKS-version av proxyn (t.ex. 5) + + + + &Window + &Fönster + + + + Show only a tray icon after minimizing the window. + Visa endast en systemfältsikon vid fönsterminimering. + + + + &Minimize to the tray instead of the taskbar + &Minimera till systemfältet istället för aktivitetsfältet + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. + Minimera applikationen istället för att stänga ner den när fönstret stängs. När detta alternativ är aktiverat kommer applikationen endast att stängas efter att ha valt Avsluta i menyn. + + + + M&inimize on close + M&inimera vid stängning + + + + &Display + &Visa + + + + User Interface &language: + Användargränssnitts&språk: + + + + The user interface language can be set here. This setting will take effect after restarting Dash. + Användargränssnittspråket kan ställas in här. Denna inställning börjar gälla efter att Dash startats om. + + + + Language missing or translation incomplete? Help contributing translations here: +https://www.transifex.com/projects/p/dash/ + Fattas språk eller är det en ofullständig översättning? Hjälp till att bidra med översättningar här: +https://www.transifex.com/projects/p/dash/ + + + + &Unit to show amounts in: + &Enhet att visa belopp i: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Välj standardindelningenhet att visa i gränssnittet och när mynt skickas. + + + + Whether to show Dash addresses in the transaction list or not. + Om du vill visa Dash-adresser i transaktionslistan eller inte. + + + + &Display addresses in transaction list + &Visa adresser i transaktionslistan + + + + + 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 |. + Tredjeparts-URL:er (t.ex. en blockutforskare) som finns i transaktionstabben som ett menyval i sammanhanget. %s i URL:en ersätts med tansaktionshashen. Flera URL:er är separerade med vertikala streck |. + + + + Third party transaction URLs + Tredjepartstransaktions-URL:er + + + + Active command-line options that override above options: + Aktiva kommandoradalternativ som åsidosätter alternativen ovan: + + + + Reset all client options to default. + Återställ alla klientinställningar till standardvärden. + + + + &Reset Options + &Återställ Alternativ + + + + &OK + &OK + + + + &Cancel + &Avbryt + + + + default + standardvärde + + + + none + ingen + + + + Confirm options reset + Bekräfta alternativåterställning + + + + + Client restart required to activate changes. + Klientomstart är nödvändig för att aktivera ändringarna. + + + + Client will be shutdown, do you want to proceed? + Klienten kommeratt stängas ned, vill du fortsätta? + + + + This change would require a client restart. + Denna ändring kräver en klientomstart. + + + + The supplied proxy address is invalid. + Den angivna proxyadressen är ogiltig. + + + + OverviewPage + + + Form + Formulär + + + + Wallet + Plånbok + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Dash network after a connection is established, but this process has not completed yet. + Den visade informationen kan vara utdaterad. Din plånbok synkroniseras automatiskt med Dash-nätverket efter att en anslutning har etablerats men denna process har inte slutförts än. + + + + Available: + Tillgängligt: + + + + Your current spendable balance + Dina tillgängliga medel att spendera + + + + Pending: + Pågående: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Totalt antal transaktioner som ännu inte har bekräftats och som ännu inte räknas med i aktuella medel. + + + + Immature: + Omogen: + + + + Mined balance that has not yet matured + Det utvunna medlet som ännu inte har mognat + + + + Total: + Totalt: + + + + Your current total balance + Din nuvarande totala medel + + + + Status: + Status: + + + + Enabled/Disabled + Aktiverad/inaktiverad + + + + Completion: + Förlopp: + + + + Darksend Balance: + Darksend-medel: + + + + 0 DASH + 0 DASH + + + + Amount and Rounds: + Mängd och omgångar: + + + + 0 DASH / 0 Rounds + 0 DASH/0 omgångar + + + + Submitted Denom: + Inmatad denom: + + + + The denominations you submitted to the Masternode. To mix, other users must submit the exact same denominations. + Denominationerna du lämnade in till Masternode. För att mixa måsta andra användare lämna in exakt likadana denominationer. + + + + n/a + E/t + + + + + + + Darksend + Darksend + + + + Start/Stop Mixing + Starta/stoppa mixning + + + + (Last Message) + (Senaste meddelande) + + + + Try to manually submit a Darksend request. + Försök att lämna in en Darksend-begäran manuellt. + + + + Try Mix + Försök att mixa + + + + Reset the current status of Darksend (can interrupt Darksend if it's in the process of Mixing, which can cost you money!) + Återställ den nuvarande Darksend-statusen (kan avbryta Darksend om den håller på att mixa vilket kan kosta dig pengar!) + + + + Reset + Återställ + + + + <b>Recent transactions</b> + <b>Nyligen genomförda transaktioner</b> + + + + + + out of sync + osynkroniserad + + + + + Disabled + Inaktiverad + + + + + + Start Darksend Mixing + Påbörja Darksend-mixning + + + + + Stop Darksend Mixing + Stoppa Darksend-mixning + + + + No inputs detected + Inga hittade inmatningar + + + + Found unconfirmed denominated outputs, will wait till they confirm to recalculate. + Hittade obekräftade denominationsutdatan, kommer att vänta tills de bekräftar återberäkning. + + + + Rounds + Omgångar + + + + Enabled + Aktiverad + + + + Last Darksend message: + + Senaste Darksend-meddelande: + + + + + + + Darksend is idle. + Darksend är overksam. + + + + Mixing in progress... + + + + + Darksend request complete: Your transaction was accepted into the pool! + Darksend-begäran är färdig: Din transaktion antogs till poolen! + + + + Submitted following entries to masternode: + Matade in följande inmatningar till masternode: + + + + + + Submitted to masternode, Waiting for more entries + Matade in till masternode, väntar på fler inmatningar + + + + Found enough users, signing ... + Hittade tillräckligt med användare, signerar... + + + + Found enough users, signing ( waiting. ) + Hittade tillräckligt med användare, signerar (väntar.) + + + + Found enough users, signing ( waiting.. ) + Hittade tillräckligt med användare, signerar (väntar..) + + + + Found enough users, signing ( waiting... ) + Hittade tillräckligt med användare, signerar (väntar...) + + + + Transmitting final transaction. + Skickar sista transaktionen. + + + + Finalizing transaction. + Slutför transaktionen. + + + + Darksend request incomplete: + Darksend-begäran ofullständig: + + + + Will retry... + Kommer att försöka igen.... + + + + Darksend request complete: + Darksend-begäran fullständig: + + + + Submitted to masternode, waiting in queue . + Inlämnad till masternode, väntar i kön. + + + + Submitted to masternode, waiting in queue .. + Inlämnad till masternode, väntar i kön... + + + + Submitted to masternode, waiting in queue ... + Inlämnad till masternode, väntar i kön... + + + + Unknown state: + Okänt tillstånd: + + + + N/A + E/t + + + + Darksend was successfully reset. + Darksen återställdes framgångsrikt. + + + + Darksend requires at least %1 to use. + Darksend kräver åtminstone %1 att använda. + + + + Wallet is locked and user declined to unlock. Disabling Darksend. + Plånboken är låst och användaren nekade till att låsa upp. Inaktiverar Darksend. + + + + PaymentServer + + + + + + + + Payment request error + Fel vid betalningsbegäran + + + + Cannot start dash: click-to-pay handler + Kan inte starta dash: klicka-för-att-betala hanterare + + + + Net manager warning + Varningar från näthanteraren + + + + Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. + Din aktiva proxy stöder inte SOCKS5 vilket är nödvändigt för att använda betalningsbegäran via proxy. + + + + + URI handling + URI-hantering + + + + Payment request fetch URL is invalid: %1 + Betalningsbegäran-hämta-URL är ogiltig: %1 + + + + URI can not be parsed! This can be caused by an invalid Dash address or malformed URI parameters. + URI kan inte parsas! Detta kan orsakas av en ogiltig Dash-adress eller vanställda URI-parametrar. + + + + Payment request file handling + Hantering av betalningsbegäranfil + + + + Payment request file can not be read or processed! This can be caused by an invalid payment request file. + Betalningsbegäranfilen kan inte läsas eller behandlas! Detta kan orsakas av en felaktig betalningsbegäranfil. + + + + Unverified payment requests to custom payment scripts are unsupported. + Obekräftade betalningsbegäranden till anpassade betalningsskript stöds inte. + + + + Requested payment amount of %1 is too small (considered dust). + Begärd betalningsbelopp om %1 är för liten (anses vara damm). + + + + Refund from %1 + Återbetalning från %1 + + + + Error communicating with %1: %2 + Kommunikationsfel med %1: %2 + + + + Payment request can not be parsed or processed! + Betalningsbegäran kan inte parsas eller behandlas! + + + + Bad response from server %1 + Dåligt svar från server %1 + + + + Network request error + Fel vid närverksbegäran + + + + Payment acknowledged + Betalning erkänd + + + + QObject + + + + + + Dash + Dash + + + + Error: Specified data directory "%1" does not exist. + Fel: Den angivna datakatalogen "%1" finns inte. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Fel: Kan inte parsa konfigurationsfilen: %1. Använd bara nyckel=värde formatet. + + + + Error reading masternode configuration file: %1 + Fel vid läsning av Masternodens konfigurationsfil: %1 + + + + Error: Invalid combination of -regtest and -testnet. + Fel: Ogiltig kombination av -regtest och -testnet. + + + + Dash Core didn't yet exit safely... + Dash Core avslutades inte säkert än... + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Skriv in en Dash-adress (t. ex. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + QRImageWidget + + + &Save Image... + &Spara Bild... + + + + &Copy Image + &Kopiera Bild + + + + Save QR Code + Spara QR-kod + + + + PNG Image (*.png) + PNG-bild (*.png) + + + + RPCConsole + + + Tools window + Verktygsfönster + + + + &Information + &Information + + + + Masternode Count + Masternode-sammanräkning + + + + General + Allmän + + + + Name + Namn + + + + Client name + Klientnamn + + + + + + + + + + + + + N/A + E/t + + + + Number of connections + Antal anslutningar + + + + Open the Dash debug log file from the current data directory. This can take a few seconds for large log files. + Öppna Darkcoins avsökningsloggfil från den nuvarande datakatalogen. Detta kan ta ett par sekunder för stora loggfiler. + + + + &Open + &Öppna + + + + Startup time + Uppstarttid + + + + Network + Nätverk + + + + Last block time + Senaste blocktid + + + + Debug log file + Avsökningsloggfil + + + + Using OpenSSL version + Använder OpenSSL-version + + + + Build date + Kompileringsdatum + + + + Current number of blocks + Aktuellt antal block + + + + Client version + Klient-version + + + + Block chain + Blockkedja + + + + &Console + &Konsol + + + + Clear console + Rensa konsollen + + + + &Network Traffic + &Nätverkstrafik + + + + &Clear + &Rensa + + + + Totals + Sammanlagt + + + + + In: + In: + + + + + Out: + Ut: + + + + Welcome to the Dash RPC console. + Välkommen till Darkcoins RPC-konsol. + + + + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + Använd upp- och ner-pilarna för att navigera i historiken, och <b>Ctrl-L</b> för att rensa skärmen. + + + + Type <b>help</b> for an overview of available commands. + Skriv <b>help</b> för en översikt av alla kommandon. + + + + %1 B + %1 B + + + + %1 KB + %1 KB + + + + %1 MB + %1 MB + + + + %1 GB + %1 GB + + + + %1 m + %1 m + + + + %1 h + %1 h + + + + %1 h %2 m + %1 h %2 m + + + + ReceiveCoinsDialog + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Återanvänd en av de senaste mottagaradresserna. Att återanvända adresser har säkerhets- och integritetsproblem. Använd inte detta om du inte har regenererat en betalningsbegäran tidigare. + + + + R&euse an existing receiving address (not recommended) + Åt&eranvänd en befintliga mottagaradresserna (rekommenderas inte) + + + + + 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 Dash network. + 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 Dash-nätverket. + + + + &Message: + &Meddelande: + + + + + An optional label to associate with the new receiving address. + En frivillig etikett att associera med den nya mottagaradressen. + + + + Use this form to request payments. All fields are <b>optional</b>. + Använd detta formulär för att begära betalningar. Alla fält är <b>frivilliga</b>. + + + + &Label: + &Etikett: + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + En valfri summa att begära. Lämna denna tom eller noll för att inte begära en specifik summa. + + + + &Amount: + &Mängd: + + + + &Request payment + &Begär betalning + + + + Clear all fields of the form. + Rensa alla formulärfälten + + + + Clear + Rensa + + + + Requested payments history + Historik för begärda betalningar + + + + Show the selected request (does the same as double clicking an entry) + Visa valda begäranden (gör samma som att dubbelklicka på en post) + + + + Show + Visa + + + + Remove the selected entries from the list + Ta bort de valda posterna från listan + + + + Remove + Ta bort + + + + Copy label + Kopiera etikett + + + + Copy message + Kopiera meddelande + + + + Copy amount + Kopiera mängd + + + + ReceiveRequestDialog + + + QR Code + QR-kod + + + + Copy &URI + Kopiera &URI + + + + Copy &Address + Kopiera &Adress + + + + &Save Image... + &Spara Bild... + + + + Request payment to %1 + Begär betalning till %1 + + + + Payment information + Betalningsinformation + + + + URI + URI + + + + Address + Adress + + + + Amount + Mängd + + + + Label + Etikett + + + + Message + Meddelande + + + + Resulting URI too long, try to reduce the text for label / message. + Slut-URI:n är för lång, försöka att minska texten för etiketten/meddelandet. + + + + Error encoding URI into QR Code. + Fel vid kodning av URI till QR-kod. + + + + RecentRequestsTableModel + + + Date + Datum + + + + Label + Etikett + + + + Message + Meddelande + + + + Amount + Mängd + + + + (no label) + (ingen etikett) + + + + (no message) + (inget meddelande) + + + + (no amount) + (inga medel) + + + + SendCoinsDialog + + + + + + Send Coins + Skicka mynt + + + + Coin Control Features + Myntkontrollfunktioner + + + + Inputs... + Indatan... + + + + automatically selected + automatiskt vald + + + + Insufficient funds! + Otillräckliga medel! + + + + Quantity: + Kvantitet: + + + + Bytes: + Bytes: + + + + Amount: + Mängd: + + + + Priority: + Prioritet: + + + + medium + medel + + + + Fee: + Avgift: + + + + Low Output: + Låg utdata: + + + + no + nej + + + + After Fee: + Efter avgift: + + + + Change: + Växel: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Om denna är aktiverad men växeladressen är tom eller ogiltig kommer växeln att sändas till en nygenererad adress. + + + + Custom change address + Specialväxeladress + + + + Confirm the send action + Bekräfta sändningshandlingen + + + + S&end + &Skicka + + + + Clear all fields of the form. + Rensa alla formulärfälten + + + + Clear &All + Rensa &alla + + + + Send to multiple recipients at once + Skicka till flera mottagare samtidigt + + + + Add &Recipient + Lägg till &mottagare + + + + Darksend + Darksend + + + + InstantX + InstantX + + + + Balance: + Saldo: + + + + Copy quantity + Kopiera kvantitet + + + + Copy amount + Kopiera mängd + + + + Copy fee + Kopiera avgift + + + + Copy after fee + Kopiera efter avgift + + + + Copy bytes + Kopiera bytes + + + + Copy priority + Kopiera prioritet + + + + Copy low output + Kopiera låg utdata + + + + Copy change + Kopiera växel + + + + + + using + använder + + + + + anonymous funds + anonyma medel + + + + (darksend requires this amount to be rounded up to the nearest %1). + (darksend kräver att denna mängd avrundas till närmaste %1) + + + + any available funds (not recommended) + vilka tillgängliga medel som helst (rekommenderas inte) + + + + and InstantX + och InstantX + + + + + + + %1 to %2 + %1 till %2 + + + + Are you sure you want to send? + Är du säker på att du vill skicka? + + + + are added as transaction fee + läggs till som transaktionsavgift + + + + Total Amount %1 (= %2) + Total mängd %1 (= %2) + + + + or + eller + + + + Confirm send coins + Bekräfta myntsändning + + + + Payment request expired + Betalningsbegäran har förfallit + + + + Invalid payment address %1 + Felaktig betalningsadress %1 + + + + The recipient address is not valid, please recheck. + Mottagaradressen är inte giltig, vänligen kontrollera igen. + + + + The amount to pay must be larger than 0. + Betalningsmängden måste vara större än 0. + + + + The amount exceeds your balance. + Mängden överstiger ditt saldo. + + + + The total exceeds your balance when the %1 transaction fee is included. + Totalsumman överstiger ditt saldo när transaktionsavgiften %1 inkluderas. + + + + Duplicate address found, can only send to each address once per send operation. + Dubblettadress funnen, kan bara skicka till varje adress en gång per sändningshandling. + + + + Transaction creation failed! + Transaktionsskapandet misslyckades! + + + + 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 and coins were spent in the copy but not marked as spent here. + Transaktionen avslogs! Detta kan hända om några av mynten i din plånbok redan har spenderats, t.ex. om du har använt en kopia av wallet.dat och mynt spenderades i kopian men inte markerades som spenderade där. + + + + Error: The wallet was unlocked only to anonymize coins. + Fel: Plånboken låstes upp enbart för att anonymisera mynt. + + + + Warning: Invalid Dash address + Varning: Ogiltig Dash-adress + + + + Warning: Unknown change address + Varning: Okänd växeladress + + + + (no label) + (Ingen etikett) + + + + SendCoinsEntry + + + This is a normal payment. + Detta är en vanlig betalning. + + + + Pay &To: + Betala &Till: + + + + The address to send the payment to (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Adressen att skicka betalningen till (t.ex. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + Choose previously used address + Välj en tidigare använd adress + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Klistra in adressen från urklippet + + + + Alt+P + Alt+P + + + + + + Remove this entry + Ta bort denna inmatning + + + + &Label: + &Etikett: + + + + Enter a label for this address to add it to the list of used addresses + Ange en etikett för denna adress att adderas till listan över använda adresser + + + + + + A&mount: + M&ängd: + + + + Message: + Meddelande: + + + + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + Ett meddelande som var bifogat till Dash: URI vilket kommer att lagras med transaktionen för din referens. Notera: Meddelandet kommer inte att skickas över Dash-nätverket. + + + + This is an unverified payment request. + Detta är en obekräftad betalningsbegäran. + + + + + Pay To: + Betala Till: + + + + + Memo: + PM: + + + + This is a verified payment request. + Detta är en bekräftad betalningsbegäran. + + + + Enter a label for this address to add it to your address book + Ange en etikett för denna adress för att lägga till den i din adressbok + + + + ShutdownWindow + + + Dash Core is shutting down... + Dash Core stängs ned... + + + + Do not shut down the computer until this window disappears. + Stäng inte av datorn förrän denna ruta försvinner. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Signaturer - Signera/bekräfta ett Meddelande + + + + &Sign Message + &Signera Meddelande + + + + You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + Du kan signera meddelanden med dina adresser för att bevisa att du äger dem. Var försiktig att inte skriva på någonting oklart då phishing-attacker kan försöka lura dig att skriva över din identitet till dem. Signera endast väldetaljerade uppgifter du samtycker till. + + + + The address to sign the message with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Adressen att signera meddelandet med (t.ex. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + Choose previously used address + Välj en tidigare använd adress + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Klistra in adressen från urklippet + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Skriv in meddelandet du vill signera här + + + + Signature + Signatur + + + + Copy the current signature to the system clipboard + Kopiera den nuvarande valda adressen till systemurklippet + + + + Sign the message to prove you own this Dash address + Signera meddelandet för att bevisa att du äger denna Dash-adress + + + + Sign &Message + Signera &Meddelande + + + + Reset all sign message fields + Återställ alla fält för signaturmeddelanden + + + + + Clear &All + Rensa &alla + + + + &Verify Message + &Bekräfta Meddelande + + + + Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. + Skriv in signeringsadressen, meddelande (försäkra dig om att du kopierar linjeavbrott, mellanslag, flikar etc.) och signera nedtill för att verifiera meddelandet. Var försiktig med att inte läsa in mer i signaturen än vad som finns i det signerade meddelandet för att undvika att bli lurad av en mellanhandattack. + + + + The address the message was signed with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Adressen meddelandet signerades med (t.ex. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + Verify the message to ensure it was signed with the specified Dash address + Bekräfta meddelandet för att garantera att den signerades med den angivna Dash-adressen + + + + Verify &Message + Bekräfta &Meddelande + + + + Reset all verify message fields + Återställ alla fält för bekräftelsemeddelanden + + + + Click "Sign Message" to generate signature + Klicka på "Signera Meddelande" för att generera en signatur + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Skriv in en Dash-adress (t.ex. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + The entered address is invalid. + Den angivna adressen är ogiltig. + + + + + + + Please check the address and try again. + Vad god kontrollera adressen och försök igen. + + + + + The entered address does not refer to a key. + Den angivna adressen refererar inte till en nyckel. + + + + Wallet unlock was cancelled. + Plånboksupplåsningen avbröts. + + + + Private key for the entered address is not available. + Privatnyckeln för den angivna adressen är inte tillgänglig. + + + + Message signing failed. + Signeringen av meddelandet misslyckades. + + + + Message signed. + Meddelandet signerades. + + + + The signature could not be decoded. + Signaturen kunde inte avkodas. + + + + + Please check the signature and try again. + Vad god kontrollera adressen och försök igen. + + + + The signature did not match the message digest. + Signaturen matchade inte meddelandesammanfattningen. + + + + Message verification failed. + Meddelandebekräftelsen misslyckades. + + + + Message verified. + Meddelandet är bekräftat. + + + + SplashScreen + + + Dash Core + Dash Core + + + + + Version %1 + Version %1 + + + + The Bitcoin Core developers + Bitcoin Core-utvecklarna + + + + The Dash Core developers + Dash Core-utvecklarna + + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + Öppen för %n fler blockÖppen för %n fler block + + + + Open until %1 + Öppen till %1 + + + + + + + conflicted + konflikterade + + + + %1/offline (verified via instantx) + %1/offline (bekräftad genom instantx) + + + + %1/confirmed (verified via instantx) + %1/bekräftad (bekräftad genom instantx) + + + + %1 confirmations (verified via instantx) + %1/bekräftelser (bekräftad genom instantx) + + + + %1/offline + %1/offline + + + + %1/unconfirmed + %1/obekräftade + + + + + %1 confirmations + %1 bekräftelser + + + + %1/offline (InstantX verification in progress - %2 of %3 signatures) + %1/offline (InstantX-verifiering under behandling - %2 av %3 signaturer) + + + + %1/confirmed (InstantX verification in progress - %2 of %3 signatures ) + %1/bekräftad (InstantX-verifiering under behandling - %2 av %3 signaturer) + + + + %1 confirmations (InstantX verification in progress - %2 of %3 signatures) + %1 bekräftelser (InstantX-verifiering under behandling - %2 av %3 signaturer) + + + + %1/offline (InstantX verification failed) + %1/offline (InstantX-bekräftelse misslyckades) + + + + %1/confirmed (InstantX verification failed) + %1/bekräftad (InstantX-bekräftelse misslyckades) + + + + Status + Status + + + + , has not been successfully broadcast yet + , har inte lyckats skickats ut än + + + + , broadcast through %n node(s) + , utsänd genom %n nod, utsänd genom %n noder + + + + Date + Datum + + + + Source + Källa + + + + Generated + Genererad + + + + + From + Från + + + + unknown + okänd + + + + + + To + Till + + + + + own address + egen adress + + + + label + etikett + + + + + + + + Credit + Kredit + + + + matures in %n more block(s) + mognar om %n blockmognar om %n block + + + + not accepted + inte accepterad + + + + + + + Debit + Debet + + + + Transaction fee + Transaktionsavgift + + + + Net amount + Nettobelopp + + + + + Message + Meddelande + + + + Comment + Kommentar + + + + Transaction ID + Transaktions-ID + + + + Merchant + Handlare + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Genererade mynt måste vänta %1 block innan de kan användas. När du skapade detta block sändes det till nätverket för att läggas till i blockkedjan. Om blocket inte kommer in i kedjan kommer dess status att ändras till "accepteras inte" och kommer ej att gå att spendera. Detta kan ibland hända om en annan nod genererar ett block nästan samtidigt som dig. + + + + Debug information + Avsökningsinformation + + + + Transaction + Transaktion + + + + Inputs + Indatan + + + + Amount + Mängd + + + + true + sant + + + + false + falsk + + + + TransactionDescDialog + + + Transaction details + Transaktionsdetaljer + + + + This pane shows a detailed description of the transaction + Den här panelen visar en detaljerad beskrivning av transaktionen + + + + TransactionTableModel + + + Date + Datum + + + + Type + Typ + + + + Address + Adress + + + + Amount + Mängd + + + + Open for %n more block(s) + Öppen för %n fler blockÖppen för %n fler block + + + + Open until %1 + Öppen till %1 + + + + Offline + Offline + + + + Unconfirmed + Obekräftad + + + + Confirming (%1 of %2 recommended confirmations) + Bekräftar (%1 of %2 rekommenderade bekräftelser) + + + + Confirmed (%1 confirmations) + Bekräftade (%1 bekräftelser) + + + + Conflicted + Konflikterad + + + + Immature (%1 confirmations, will be available after %2) + Omogen (%1 bekräftelser, blir tillgänglig efter %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Det här blocket togs inte emot av några andra noder och kommer antagligen inte att bli godkänd. + + + + Generated but not accepted + Genererad men inte accepterad + + + + Received with + Mottagen med + + + + Received from + Mottagen från + + + + Received via Darksend + Mottagen genom Darksend + + + + Sent to + Skickad till + + + + Payment to yourself + Betalning till dig själv + + + + Mined + Utvunnen + + + + Darksend Denominate + Darksend-denomination + + + + Darksend Collateral Payment + Darskends-säkerhetsbetalning + + + + Darksend Make Collateral Inputs + Darksend-skapa säkerhetsinmatningar + + + + Darksend Create Denominations + Darksend-skapa denominationer + + + + Darksent + Darksent-skickat + + + + (n/a) + (e/t) + + + + Transaction status. Hover over this field to show number of confirmations. + Transaktionsstatus. Håll muspekaren över för att se antal bekräftelser. + + + + Date and time that the transaction was received. + Datum och tid då transaktionen mottogs. + + + + Type of transaction. + Transaktionstyp. + + + + Destination address of transaction. + Transaktionens destinationsadress. + + + + Amount removed from or added to balance. + Mängd draget eller tillagt till medlet. + + + + TransactionView + + + + All + Alla + + + + Today + Idag + + + + This week + Denna vecka + + + + This month + Denna månad + + + + Last month + Förra månaden + + + + This year + Detta år + + + + Range... + Period... + + + + Received with + Mottagen med + + + + Sent to + Skickad till + + + + Darksent + Darksent-skickat + + + + Darksend Make Collateral Inputs + Darksend-skapa säkerhetsinmatningar + + + + Darksend Create Denominations + Darksend-skapa denominationer + + + + Darksend Denominate + Darksend-denomination + + + + Darksend Collateral Payment + Darskends-säkerhetsbetalning + + + + To yourself + Till dig själv + + + + Mined + Utvunnen + + + + Other + Andra + + + + Enter address or label to search + Skriv in en adress eller etikett för att söka + + + + Min amount + Minsta mängd + + + + Copy address + Kopiera adress + + + + Copy label + Kopiera etikett + + + + Copy amount + Kopiera mängd + + + + Copy transaction ID + Kopiera transaktions-ID + + + + Edit label + Redigera etikett + + + + Show transaction details + Visa transaktionsdetaljer + + + + Export Transaction History + Exportera Transaktionshistoriken + + + + Comma separated file (*.csv) + Kommaseparerad fil (*. csv) + + + + Confirmed + Bekräftad + + + + Date + Datum + + + + Type + Typ + + + + Label + Etikett + + + + Address + Adress + + + + Amount + Mängd + + + + ID + ID + + + + Exporting Failed + Exporteringen misslyckades + + + + There was an error trying to save the transaction history to %1. + Det inträffade ett fel när transaktionshistoriken skulle sparas till %1. + + + + Exporting Successful + Exporteringen lyckades + + + + The transaction history was successfully saved to %1. + Transaktionshistoriken sparades framgångsrikt till %1. + + + + Range: + Period: + + + + to + till + + + + WalletFrame + + + No wallet has been loaded. + Ingen plånbok har laddats in. + + + + WalletModel + + + + Send Coins + Skicka mynt + + + + InstantX doesn't support sending values that high yet. Transactions are currently limited to %n DASH. + InstantX stöder inte så höga sändningsvärden än. Transaktioner begränsas till &n DASH.InstantX stöder inte så höga sändningsvärden än. Transaktioner begränsas till &n DASH. + + + + WalletView + + + &Export + &Exportera + + + + Export the data in the current tab to a file + Exportera datan i den nuvarande fliken till en fil + + + + Backup Wallet + Säkerhetskopiera Plånbok + + + + Wallet Data (*.dat) + Plånboksdata (*.dat) + + + + Backup Failed + Säkerhetskopieringen misslyckades + + + + There was an error trying to save the wallet data to %1. + Det inträffade ett fel när plånbokens data skulle sparas till %1. + + + + Backup Successful + Säkerhetskopiering lyckades + + + + The wallet data was successfully saved to %1. + Plånbokens data sparades utan problem till %1. + + + + dash-core + + + %s, you must set a rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=dashrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com + + %s, du måste ställa in ett rpc-lösenord i konfigurationsfolen. +%s +Det rekommenderas att du använder följande lösenord) +Användarnamnet och lösenordet MÅSTE INTE vara desamma. +Om filen inte finns kan du skapa en fil med tillåtelserl endast läsbar för ägaren. +Det rekommenderas också att du ställer in alertnotify så att du uppmärksammar problem.; +till exempel: alertnotify=echo %%s | mail -s "Dash Alert" +admin@foo.com + + + + + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + Godtagbara chiffers (standardvärde: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + Ett fel inträffade vid inställning av RPC-prt %u för avlyssning på IPv4: %s + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + Ett fel inträffade vid inställning av RPC-prt %u för avlyssning på IPv6, går tillbaka till IPv4: %s + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Sammanbind till fastställd adress och avlyssna alltid på det. Använd [host]:port notation för IPv6 + + + + Cannot obtain a lock on data directory %s. Dash Core is probably already running. + Kan inte erhålla ett lås på datakatalog %s. Dash Core körs förmodligen redan. + + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + Fortsätt att rate-limit gratistransaktioner till <n>*1000 bytes per minut +(standardvärde: 15) + + + + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. + Darksend använder precisa denominationsmängder för att skicka medel, du kanske måste anonymisera fler mynt. + + + + Disable all Masternode and Darksend related functionality (0-1, default: 0) + Inaktivera alla Masternode- och Darksend-relaterade funktioner (0-1, standardvärde: 0) + + + + Enable instantx, show confirmations for locked transactions (bool, default: true) + Aktivera instantx, visa bekräftelser för låsta transaktioner (bool, standardvärde: true) + + + + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) + Aktivera Darksend automatiskt för lagrade medel i plånboken (0-1, standardvärde: 0) + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. + Gå in i regressionstestläget, vilken använder en särskild kedja i vilken block kan lösas direkt. Detta är endast ämnat för regressionstestverktyg och apputveckling. + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Gå in i regressionstestläget, vilken använder en särskild kedja i vilken block kan lösas direkt. + + + + Error: Listening for incoming connections failed (listen returned error %s) + Fel: Lyssnande på inkommande anslutningar misslyckades (avlyssna återkommande fel %) + + + + 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 and coins were spent in the copy but not marked as spent here. + Fel: Transaktionen avslogs! Detta kan hända om några av mynten i din plånbok redan har spenderats, t.ex. om du har använt en kopia av wallet.dat och mynt spenderades i kopian men inte har markerats som spenderade här. + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! + Fel: Transaktion kräver en transaktionsavgift om åtminstone %s på grund av dess mängd, komplexitet eller användning av nyligen mottagna medel! + + + + Error: Wallet unlocked for anonymization only, unable to create transaction. + Fel: Plånboken upplåst endast för anynomisering, kan inte skapa en transaktion. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Exekvera kommandot när ett viktigt larm mottas eller vi ser en jättelång förgrening (%s i cmd ersätts av ett meddelande) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Exekvera kommandot när en plånbokstransaktion ändras (%:en i cmd ersätts av TxID) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Exekvera kommandot när det bästa blocket ändras (%:en i cmd ersätts av blockhash) + + + + Fees smaller than this are considered zero fee (for transaction creation) (default: + Avgifter som är mindre än denna blir avgiftsfria (för skapande av transaktioner)(standard: + + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + Flusha databasaktivitet från minnespoolen för varje disklog <n> megabytes (standard: 100) + + + + Found unconfirmed denominated outputs, will wait till they confirm to continue. + Hittade obekräftade denominationsutdatan, väntar tills de bekräftar fortsättning. + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + Hur genomarbetad blockbekräftelsen för -checkblocks är (0-4, standardvärde: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + I detta läge kontrollerar -genproclimit hur många block som genereras omedelbart. + + + + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. + InstantX kräver indatan med åtminstone 6 bekräftelser. Du kanske måste vänta ett par minuter och försöka igen. + + + + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) + Avlyssna JSON-RPC-anslutningar på <port> (standardvärde: 9998 eller testnet: 19998) + + + + Name to construct url for KeePass entry that stores the wallet passphrase + Namnge för att skapa en url för KeePass-inmatning som lagrar plånbokslösenfrasen. + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Antal sekunder dåliga anslutningar ska vänta före återanslutning (standardvärde: 86400) + + + + Output debugging information (default: 0, supplying <category> is optional) + Skriv avsökningsinformation (standardvärde: 0, angivelse av <kategori> är valfri) + + + + 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) + Tillhandahåll likviditet för Darksend genom att mixa mynt ibland på en ständig basis (0 - 100, standardvärde; 0, 1 = väldigt frekvent, höga avgifter, 100 = väldigt sällan, låga avgifter) + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + Förfrågan till peer-adresser via DNS-lookup, om det är brist på adresser (standardvärde:1 unless -connect) + + + + Set external address:port to get to this masternode (example: address:port) + Ställ in extern adress:port för att få denna masternode (exempel; address:port) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + Sätt en maxgräns för högprioritet/lågavgiftsbelagda transaktioner i byte (standard: %d) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Sätt antalet skriptbekräftelsetrådar till (%u till %d, 0 = auto, <0 = lämna så många kärnor fria, standard: %d) + + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + Sätt en processorbegränsning för när generering är vid (-1 = obegränsad, standardvärde: -1) + + + + Show N confirmations for a successfully locked transaction (0-9999, default: 1) + Visa N bekräftelser för en lyckad transaktionslåsning (0 - 9999, standardvärde: 1) + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + Detta är en förhandsutgiven testutgåva - använd på egen risk - använd inte för utvinning eller handelsprogram + + + + Unable to bind to %s on this computer. Dash Core is probably already running. + Det går inte att binda till %s på denna dator. Dash Core körs förmodligen redan. + + + + Unable to locate enough Darksend denominated funds for this transaction. + Kunde inte hitta tillräckliga Darksend-denominationsmedel för transaktionen. + + + + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. + Kunde inte hitta tillräckliga Darksend-icke-denominationsmedel för transaktionen som inte är likvärdigt med 1000 DASH. + + + + Unable to locate enough Darksend non-denominated funds for this transaction. + Kunde inte hitta tillräckliga Darksend-icke-denominationsmedel för transaktionen. + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) + Använd separat SOCKS5-proxy för att nå prrtd via Tors dolda tjänster (standardvärde: -proxy) + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Varning: paytxfee är väldigt högt satt! Detta är en transaktionsavgift du kommer att få betala om du skickar en transaktion. + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. + Varning: Vänligen kolla så att ditt datum och din tid är korrekt! Om din klocka är fel kommer Dash inte att fungera ordentligt. + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + Varning: Nätverket verkar inte hålla med fullständigt! Några utvinnare verkar uppleva problem. + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + Varning: Vi verkar inte hålla med fullständigt med våra peers Du kanske måste uppgradera, eller så måste andra noder uppgraderas. + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + Varning: Fel vid avläsning av wallet.dat! Alla nycklar lästes korrekt, men transaktionsdatan eller adressboksposterna kanske saknas eller är inkorrekta. + + + + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + Varning: wallet.dat korrumperad, data räddad! Den ursprungliga wallet.dat är sparad som wallet.{timestamp}.bak i %; om dina medel eller transaktioner är felaktiga kanske du måste återställa från en säkerhetskopia. + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Du måste sätta rpcpassword=<lösenord> i konfigurationsfilen: +%s +Om filen inte existerar, skapa den och ge inga andra än ägaren läsarrättigheter. + + + + You must specify a masternodeprivkey in the configuration. Please see documentation for help. + Du måste specificera en masternodepriv-nyckel i konfigurationen. Vänligen se dokumentationen för hjälp. + + + + (default: 1) + (standardvärde: 1) + + + + (default: wallet.dat) + (standardvärde: wallet.dat) + + + + <category> can be: + <category> kan vara: + + + + Accept command line and JSON-RPC commands + Acceptera kommandorad och JSON-RPC-kommandon + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Acceptera anslutningar utifrån (standardvärde: 1 om ingen -proxy eller -connect) + + + + Add a node to connect to and attempt to keep the connection open + Lägg till en nod att ansluta till och försök att hålla anslutningen öppen + + + + Allow DNS lookups for -addnode, -seednode and -connect + Tillåt DNS-lookup för -addnode, -seednode och -connect + + + + Allow JSON-RPC connections from specified IP address + Tillåt JSON-RPC-anslutningar från en specifik IP-adress + + + + Already have that input. + Har redan en indata. + + + + Always query for peer addresses via DNS lookup (default: 0) + Förfråga alltid peer-adresser via DNS-lookup (standardvärde: 0) + + + + Attempt to recover private keys from a corrupt wallet.dat + Försök att återskapa privata nycklar från en korrumperad wallet.dat + + + + Block creation options: + Blockskapandeinställningar: + + + + Can't denominate: no compatible inputs left. + Kan inte denominera: Inga kompatibla indatan kvar. + + + + Cannot downgrade wallet + Kan inte nedgradera plånboken + + + + Cannot resolve -bind address: '%s' + Kan inte lösa -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + Kan inte lösa -externalip address: '%s' + + + + Cannot write default address + Kan inte skriva standardadress + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Rensa listan med plånbokstransaktioner (diagnostikverktyg; antyder -rescan) + + + + Collateral is not valid. + Säkerhetsåtgärd är inte giltig. + + + + Collateral not valid. + Säkerhetsåtgärd är inte giltig. + + + + Connect only to the specified node(s) + Anslut endast genom (en) särskild(a) nod(er) + + + + Connect through SOCKS proxy + Anslut genom SOCKS-proxy + + + + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) + Anslut till JSON-RPC på <port> (standardvärde: 9998 eller testnet: 19998) + + + + Connect to KeePassHttp on port <port> (default: 19455) + Anslut till KeePassHttp på port <port> (standardvärde: 19455) + + + + Connect to a node to retrieve peer addresses, and disconnect + Anslut till en nod för att få peer-adresser och koppla från + + + + Connection options: + Anslutningsalternativ: + + + + Corrupted block database detected + Upptäckt korrumperad blockdatabas + + + + Dash Core Daemon + Dash Core Daemon + + + + Dash Core RPC client version + Dash Core RPC-klientversion + + + + Darksend is disabled. + Darksend är inaktiverad. + + + + Darksend options: + Darksend-alternativ: + + + + Debugging/Testing options: + Avsöknings-/testalternativ: + + + + Disable safemode, override a real safe mode event (default: 0) + Inaktivera säkerhetsläge, åsidosätt ett riktigt säkerhetsläge (standardvärde: 0) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Upptäck din egen IP-adress (standardvärde: 1 vid avlyssning och no -externalip) + + + + Do not load the wallet and disable wallet RPC calls + Ladda inte plånboken och inaktivera plånboks-RPC-anrop + + + + Do you want to rebuild the block database now? + Vill du återuppbygga blockdatabasen nu? + + + + Done loading + Laddning färdig + + + + Downgrading and trying again. + + + + + Enable the client to act as a masternode (0-1, default: 0) + Aktivera klienten att agera som en masternode (0 - 1, standardvärde:0) + + + + Entries are full. + Inmatningar är fylkade. + + + + Error connecting to masternode. + Fel vid anslutning till masternode. + + + + Error initializing block database + Fel vid initialisering av blockadatabas + + + + Error initializing wallet database environment %s! + Fel vid initialisering av plånbokdatabasmiljö %s! + + + + Error loading block database + Fel vid laddning av blockdatabas + + + + Error loading wallet.dat + Fel vid laddning av wallet.dat + + + + Error loading wallet.dat: Wallet corrupted + Fel vid laddning av wallet.dat: Plånboken är korrumperad + + + + Error loading wallet.dat: Wallet requires newer version of Dash + Fel vid laddning av wallet.dat: Plånboken kräver en nyare Dash-version + + + + Error opening block database + Fel vid öppnande av blockdatabas + + + + Error reading from database, shutting down. + Fel vid läsning från databas, stänger ned. + + + + Error recovering public key. + Fel vid återhämtning av publik nyckel. + + + + Error + Fel + + + + Error: Disk space is low! + Fel: Diskutrymme är lågt! + + + + Error: Wallet locked, unable to create transaction! + Fel: Plånbok låst, kan inte skapa en transaktion! + + + + Error: You already have pending entries in the Darksend pool + Fel: Du har redan väntande inmatnigar i Darksend-poolen + + + + Error: system error: + Fel: systemfel: + + + + Failed to listen on any port. Use -listen=0 if you want this. + Kunde inte avlyssna någon port. Använd -listen=0 om du vill detta. + + + + Failed to read block info + Kunde inte avläsa blockinfo + + + + Failed to read block + Kunde inte avläsa block + + + + Failed to sync block index + Kunde inte synkronisera blockindex + + + + Failed to write block index + Kune inte skriva blockindex + + + + Failed to write block info + Kunde inte skriva blockinfo + + + + Failed to write block + Kunde inte skriva block + + + + Failed to write file info + Kunde inte skriva filinfo + + + + Failed to write to coin database + Kunde inte skriva till myntdatabasen + + + + Failed to write transaction index + Kunde inte skriva transaktionsindex + + + + Failed to write undo data + Kunde inte skriva upphäv data + + + + Fee per kB to add to transactions you send + Avgift per kB att lägga till transaktioner du skickar + + + + Fees smaller than this are considered zero fee (for relaying) (default: + Avgifter mindre än detta ses som nollavgift (för omgångar) (standardvärde: + + + + Force safe mode (default: 0) + Tvinga säkerhetsläge (standardvärde: 0) + + + + Generate coins (default: 0) + Generera mynt (standardvärde: 0) + + + + Get help for a command + Få hjälp med ett kommando + + + + How many blocks to check at startup (default: 288, 0 = all) + Hur många block att kontrollera vid uppstart (standardvärde: 288, 0 = alla) + + + + If <category> is not supplied, output all debugging information. + Om <category> inte finns, lägg ut all avsökningsinformation. + + + + Ignore masternodes less than version (example: 70050; default : 0) + Ignorera masternode lägre än version (exempel: 70050; standardvärde: 0) + + + + Importing... + Importerar... + + + + Imports blocks from external blk000??.dat file + Importerar block från en extern blok000??.dat-fil + + + + Incompatible mode. + Inkompatibelt läge. + + + + Incompatible version. + Inkompatibel version. + + + + Incorrect or no genesis block found. Wrong datadir for network? + Felaktig eller ingen Genesis-block hittad. Fel datadir för nätverket? + + + + Information + Information + + + + Initialization sanity check failed. Dash Core is shutting down. + Initialiseringstillståndkontroll misslyckades. Dash Core stängs ned. + + + + Input is not valid. + Indata är inte giltig. + + + + InstantX options: + InstantX-alternativ: + + + + Insufficient funds + Otillräckliga medel + + + + Insufficient funds. + Otillräckliga medel! + + + + Invalid -onion address: '%s' + Ogiltig -onion-adress: '%s' + + + + Invalid -proxy address: '%s' + Ogiltig -proxy-adress: '%s' + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + Ogiltig mängd för -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + Ogiltig mängd för -mintxfee=<amount>: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + Ogiltig mängd för -paytxfee=<amount>: '%s' + + + + Invalid amount + Ogiltig mängd + + + + Invalid masternodeprivkey. Please see documenation. + Ogiltig masternodepriv-nyckel. Vänligen se dokumentationen. + + + + Invalid private key. + Ogiltig privatnyckel. + + + + Invalid script detected. + Ogiltigt skript hittat. + + + + KeePassHttp id for the established association + KeePassHttp-id för den etablerade associeringen + + + + KeePassHttp key for AES encrypted communication with KeePass + KeePassHttp-nyckel för AES-krypterad kommunikation med KeePass + + + + Keep N dash anonymized (default: 0) + Bibehåll N dash anonymiserade (standardvärde: 0) + + + + Keep at most <n> unconnectable blocks in memory (default: %u) + Bibehåll som mest <n> icke-anslutningsbara block i minnet (standardvärde: %u) + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + Bibehåll som mest <n> icke-anslutningsbara transaktioner i minnet (standardvärde: %u) + + + + Last Darksend was too recent. + Senaste Darksend var för nygjord. + + + + Last successful darksend action was too recent. + Senast lyckade darksend-handlingen var för nygjord. + + + + Limit size of signature cache to <n> entries (default: 50000) + Begränsa storleken för signaturcachen till <n> inmatningar (standardvärde: 50000) + + + + List commands + Lista kommandon + + + + Listen for connections on <port> (default: 9999 or testnet: 19999) + Avlyssna anslutningar på <port> (standardvärde: 9999 eller testnet: 19999) + + + + Loading addresses... + Laddar adresser... + + + + Loading block index... + Laddar blockindex... + + + + Loading masternode list... + + + + + Loading wallet... (%3.2f %%) + Laddar plånbok... (%3.2f %%) + + + + Loading wallet... + Laddar plånbok... + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + Logga transaktionsprioritet och avgift per kB när du utvinner block (standardvärde: 0) + + + + Maintain a full transaction index (default: 0) + Kvarhåll ett fullständigt transaktionsindex (standardvärde: 0) + + + + Maintain at most <n> connections to peers (default: 125) + Kvarhåll som mest <n> anslutningar till peers (standardvärde: 125) + + + + Masternode options: + Masternode-alternativ: + + + + Masternode queue is full. + Masternode-kön är full. + + + + Masternode: + Masternode: + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Maximal peeranslutningmottagarbuffert, <n>*1000 bytes (standardvärde: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Maximalt per anslutningssändningsbuffert, <n>*1000 bytes (standardvärde: 1000) + + + + Missing input transaction information. + Fattas indatatransaktionsinformation. + + + + No compatible masternode found. + Inga kompatibla masternoder hittade. + + + + No funds detected in need of denominating. + Inga medel hittades som behöver denominering. + + + + No masternodes detected. + Inga masternoder hittade. + + + + No matching denominations found for mixing. + Inga matchande denominationer hittades för mixning. + + + + Non-standard public key detected. + Icke-standard publik nyckel hittades. + + + + Not compatible with existing transactions. + Inte kompatibel med nuvarande transaktioner. + + + + Not enough file descriptors available. + Inte tillräckliga fildeskriptorer tillgängliga. + + + + Not in the masternode list. + Inte i masternode-listan. + + + + Only accept block chain matching built-in checkpoints (default: 1) + Acceptera endast blockkedjematchande inbyggda kontrollpunkter (standardvärde: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Anslut endast till noder på nätverket <net> (IPv4, IPv6 eller Tor) + + + + Options: + Alternativ: + + + + Password for JSON-RPC connections + Lösenord för JSON-RPC-anslutningar + + + + Prepend debug output with timestamp (default: 1) + Addera avsökningsutdatan med tidsstämpel till början (standardvärde: 1) + + + + Print block on startup, if found in block index + Skriv ut block vid uppstart om det hittas i blockindex + + + + Print block tree on startup (default: 0) + Skriv ut blockträd vid uppstart (standardvärde: 0) + + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + RPC SSL-alternativ: (Se Bitcoin Wiki för SSL-inställningsinstruktioner) + + + + RPC client options: + RPC-klientalternativ: + + + + RPC server options: + RPC-serveralternativ: + + + + Randomly drop 1 of every <n> network messages + Släng 1 av varje <n> nätverksmeddelande slumpmässigt + + + + Randomly fuzz 1 of every <n> network messages + Ludda 1 av varje <n> nätverksmeddelande slumpmässigt + + + + Rebuild block chain index from current blk000??.dat files + Återuppbygg blockkedjeindexet från de nuvarande blk000??.dat-filerna + + + + Rescan the block chain for missing wallet transactions + Omskanna blockkedjan efter förlorade plånbokstransaktioner + + + + Rescanning... + Omskannar... + + + + Run a thread to flush wallet periodically (default: 1) + Kör en tråd för att rensa plånboken då och då (standardvärde: 1) + + + + Run in the background as a daemon and accept commands + Kör i bakgrunden som daemon och acceptera alla kommandon + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL-alternativ: (Se Bitcoin Wiki för SSL-inställningsinstruktioner) + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + Välj SOCKS-version för -proxy (4 or 5, standardvärde: 5) + + + + Send command to Dash Core + Skicka kommando till Dash Core + + + + Send commands to node running on <ip> (default: 127.0.0.1) + Skicka kommandon till den körande noden på <ip> (standardvärde: 127.0.0.1) + + + + Send trace/debug info to console instead of debug.log file + Skicka spårnings-/avsökningsinfo till konsolen istället för debug.log-filen + + + + Server certificate file (default: server.cert) + Servercertifikatfil (standardvärde: server.cert) + + + + Server private key (default: server.pem) + Serverprivatnyckel (standardvärde: server.pem) + + + + Session not complete! + Sessionen är inte fullständig! + + + + Session timed out (30 seconds), please resubmit. + Sessionen tog en paus (30 sekunder), vänligen återinmata. + + + + Set database cache size in megabytes (%d to %d, default: %d) + Ställ in databascachens storlek i megabytes (%d till %d, standardvärde: %d) + + + + Set key pool size to <n> (default: 100) + Ställ in nyckelpoolstorlek till <n> (standardvärde: 100) + + + + Set maximum block size in bytes (default: %d) + Ställ in maximal blockstorlek i bytes (standardvärde: %d) + + + + Set minimum block size in bytes (default: 0) + Ställ in minimal blockstorlek i bytes (standardvärde: 0) + + + + Set the masternode private key + Ställ in masternodeprivatnyckeln + + + + Set the number of threads to service RPC calls (default: 4) + Ställ in antal trådar att tjänstgöra RPC-anrop (standardvärde: 4) + + + + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + Ställer in DB_PRIVATE-flaggan i plånbokens db-miljö (standardvärde: 1) + + + + Show all debugging options (usage: --help -help-debug) + Visa alla avsökningsalternativ (usage: --help -help-debug) + + + + Show benchmark information (default: 0) + Visa riktvärdesinformation (standardvärde: 0) + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Förminska debug.log-filen vid klientuppstart (standardvärde 1 vid ingen -debug) + + + + Signing failed. + Signering misslyckades. + + + + Signing timed out, please resubmit. + Signeringen pausade, vänligen återinmata. + + + + Signing transaction failed + Transaktionssigneringen misslyckades + + + + Specify configuration file (default: dash.conf) + Specificera konfigurationsfilen (standardvärde: dash.conf) + + + + Specify connection timeout in milliseconds (default: 5000) + Specificera anslutningspaus i millisekunder (standardvärde: 5000) + + + + Specify data directory + Specificera datakatalog + + + + Specify masternode configuration file (default: masternode.conf) + Specificera masternodens konfigurationsfil (standardvärde: masternode.conf) + + + + Specify pid file (default: dashd.pid) + Specificera pid-fil (standardvärde: dash.pid) + + + + Specify wallet file (within data directory) + Specificera plånboksfil (inom datakatologen) + + + + Specify your own public address + Specificera din egen publika adress + + + + Spend unconfirmed change when sending transactions (default: 1) + Spendera obekräftad växel när du skickar transaktioner (standardvärde: 1) + + + + Start Dash Core Daemon + Starta Dash Core Daemon + + + + System error: + Systemfel: + + + + This help message + Detta hjälpmeddelande + + + + This is intended for regression testing tools and app development. + Detta är ämnat för regressionstestverktyg och apputveckling. + + + + This is not a masternode. + Detta är ingen masternode. + + + + Threshold for disconnecting misbehaving peers (default: 100) + Tröskel för att koppla från peers som uppför sig dåligt (standardvärde: 100) + + + + To use the %s option + Att använda &s alternativet + + + + Transaction amount too small + Transaktionsmängden är för liten + + + + Transaction amounts must be positive + Transaktionsmängder måste vara positiva + + + + Transaction created successfully. + Transaktionen skapades utan problem. + + + + Transaction fees are too high. + Transaktionsavgifter är för höga. + + + + Transaction not valid. + Transaktionen är inte giltig. + + + + Transaction too large + Transaktionen är för stor + + + + Unable to bind to %s on this computer (bind returned error %s) + Kan inte binda %s till denna dator (bindning återgav ett fel &s) + + + + Unable to sign masternode payment winner, wrong key? + Kan inte signera masternodebetalningsvinnarna, fel nyckel? + + + + Unable to sign spork message, wrong key? + Kan inte sporka meddelandet, fel nyckel? + + + + Unknown -socks proxy version requested: %i + Okänd -socks proxy-version begärd: %i + + + + Unknown network specified in -onlynet: '%s' + Okänt specificerat nätverk i -onlynet: '%s' + + + + Upgrade wallet to latest format + Uppgradera plånboken till det senaste formatet + + + + Usage (deprecated, use dash-cli): + Användning (ta avstånd från, använd dash-cli): + + + + Usage: + Användning: + + + + Use KeePass 2 integration using KeePassHttp plugin (default: 0) + Använd KeePass 2-integrering med KeePassHtpp-plugin (standardvärde: 0) + + + + Use N separate masternodes to anonymize funds (2-8, default: 2) + Använd N enskilda masternoder att anonymisera medel med (2 - 8, standardvärde: 2) + + + + Use OpenSSL (https) for JSON-RPC connections + Använd OpenSSL (https) för JSON-RPC-anslutningar + + + + Use UPnP to map the listening port (default: 0) + Använd UPnP för att kartlägga avlyssningsporten (standardvärde: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + Använd UPnP för att kartlägga avlyssningsporten (standardvärde: 1 vid avlyssning) + + + + Use the test network + Använd testnätverket + + + + Username for JSON-RPC connections + Användarnamn för JSON-RPC-anslutningar + + + + Value more than Darksend pool maximum allows. + Värdera mer än Darksend-poolmaximum tillåter. + + + + Verifying blocks... + Bekräftar block... + + + + Verifying wallet... + Bekräftar plånbok... + + + + Wait for RPC server to start + Väntar på att RPC-servern ska starta + + + + Wallet %s resides outside data directory %s + Plånboken %s återfinns utanför datakatalogen &s + + + + Wallet is locked. + Plånboken är låst. + + + + Wallet needed to be rewritten: restart Dash to complete + Plånboken måste omskrivas: Starta om Dash för att färdigställa + + + + Wallet options: + Plånboksalternativ: + + + + Warning + Varning + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + Varning: Avståndsargument -debugnet ignorerad, använd -debug=net + + + + Warning: This version is obsolete, upgrade required! + Varning: Versionen är förlegad, uppgradering krävs! + + + Wrong state. + + + + + You need to rebuild the database using -reindex to change -txindex + Du måste återuppbygga databasen med -reindex för att ändra -txindex + + + + Zapping all transactions from wallet... + Zappar alla transaktioner från plånboken... + + + + on startup + vid uppstart + + + + version + version + + + + wallet.dat corrupt, salvage failed + wallet.dat är korrumperad, återställning misslyckades + + + \ No newline at end of file diff --git a/src/qt/locale/dash_tr.ts b/src/qt/locale/dash_tr.ts new file mode 100644 index 0000000000..f82891f6e1 --- /dev/null +++ b/src/qt/locale/dash_tr.ts @@ -0,0 +1,5279 @@ + + + AboutDialog + + + About Dash Core + Dash Çekirdeği Hakkında + + + + <b>Dash Core</b> version + <b>Dash Çekirdek</b> versiyon + + + + Copyright &copy; 2009-2014 The Bitcoin Core developers. +Copyright &copy; 2014-YYYY The Dash Core developers. + + + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + + Bu yazılım deneme safhasındadır. + + MIT/X11 yazılım lisansı kapsamında yayınlanmıştır, COPYING dosyasına ya da http://www.opensource.org/licenses/mit-license.php sayfasına bakınız. + + Bu ürün OpenSSL projesi tarafından OpenSSL araç takımı (http://www.openssl.org/) için geliştirilen yazılımlar, Eric Young (eay@cryptsoft.com) tarafından hazırlanmış şifreleme yazılımları ve Thomas Bernard tarafından programlanmış UPnP yazılımı içerir. + + + + + Copyright + Telif hakkı + + + + The Bitcoin Core developers + Bitcoin Çekirdeği geliştiricileri + + + + The Dash Core developers + Dash Çekirdek Geliştiricileri + + + + + (%1-bit) + (%1-bit) + + + + AddressBookPage + + + Double-click to edit address or label + Adresi ya da etiketi düzenlemek için çift tıklayınız + + + + Create a new address + Yeni bir adres oluştur + + + + &New + &Yeni + + + + Copy the currently selected address to the system clipboard + Şu anda seçili olan adresi sistem panosuna kopyala + + + + &Copy + &Kopyala + + + + Delete the currently selected address from the list + Seçili adresi listeden sil + + + + &Delete + &Sil + + + + Export the data in the current tab to a file + Güncel sekmedeki verileri bir dosyaya aktar + + + + &Export + &Dışa aktar + + + + C&lose + K&apat + + + + Choose the address to send coins to + Bitcoin yollanacak adresi seç + + + + Choose the address to receive coins with + Bitcoin alınacak adresi seç + + + + C&hoose + S&eç + + + + Sending addresses + Yollama adresleri + + + + Receiving addresses + Alım adresleri + + + + These are your Dash addresses for sending payments. Always check the amount and the receiving address before sending coins. + Bunlar ödeme yapmak için kullanacağınız Dash adreslerinizdir. Dash yollamadan önce meblağı ve alıcı adresini daima kontrol ediniz + + + + These are your Dash addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Bunlar ödeme almak için kullanacağınız Dash adreslerinizdir. Her muamele için yeni bir alım adresi kullanmanız tavsiye edilir. + + + + &Copy Address + Adresi &kopyala + + + + Copy &Label + &Etiketi kopyala + + + + &Edit + &Düzenle + + + + Export Address List + Adres listesini dışa aktar + + + + Comma separated file (*.csv) + Virgülle ayrılmış değerler dosyası (*.csv) + + + + Exporting Failed + Dışa aktarım başarısız oldu + + + + There was an error trying to save the address list to %1. + Adres listesinin %1 konumuna kaydedilmesi sırasında bir hata meydana geldi. + + + + AddressTableModel + + + Label + Etiket + + + + Address + Adres + + + + (no label) + (boş etiket) + + + + AskPassphraseDialog + + + Passphrase Dialog + Parola diyaloğu + + + + Enter passphrase + Parolayı giriniz + + + + New passphrase + Yeni parola + + + + Repeat new passphrase + Yeni parolayı tekrarlayınız + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + + + + + For anonymization only + Sadece anonimleştirme için + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Cüzdanınız için yeni parolayı giriniz.<br/>Lütfen <b>10 ya da daha fazla rastgele karakter</b> veya <b>sekiz ya da daha fazla kelime</b> içeren bir parola seçiniz. + + + + Encrypt wallet + Cüzdanı şifrele + + + + This operation needs your wallet passphrase to unlock the wallet. + Bu işlem cüzdan kilidini açmak için cüzdan parolanızı gerektirir. + + + + Unlock wallet + Cüzdan kilidini aç + + + + This operation needs your wallet passphrase to decrypt the wallet. + Bu işlem, cüzdan şifresini açmak için cüzdan parolasını gerektirir. + + + + Decrypt wallet + Cüzdan şifresini aç + + + + Change passphrase + Parolayı değiştir + + + + Enter the old and new passphrase to the wallet. + Cüzdan için eski ve yeni parolaları giriniz. + + + + Confirm wallet encryption + Cüzdan şifrelenmesini teyit eder + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Uyarı: Eğer cüzdanınızı şifreler ve şifrenizi kaybederseniz,<b>TÜM DASHLERİNİZİ" kaybedersiniz. + + + + Are you sure you wish to encrypt your wallet? + Cüzdanınızı şifrelemek istediğinizden emin misiniz? + + + + + Wallet encrypted + Cüzdan şifrelendi + + + + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + Dash, şifreleme işlemini tamamlamak için kapanacak. Cüzdanınızı şifrelemenizin, bilgisayarınıza bulaşacak zararlı yazılımlar tarafından Dash'lerinizin çalınmasından sizi tam olarak korumayacağını unutmayınız. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + ÖNEMLİ: Önceden yapmış olduğunuz cüzdan dosyası yedeklemelerinin yeni oluşturulan şifrelenmiş cüzdan dosyası ile değiştirilmeleri gerekir. Güvenlik nedenleriyle yeni, şifrelenmiş cüzdanı kullanmaya başladığınızda eski şifrelenmemiş cüzdan dosyaları işe yaramaz hale gelecektir. + + + + + + + Wallet encryption failed + Cüzdan şifrelemesi başarısız oldu + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Dahili bir hata sebebiyle cüzdan şifrelemesi başarısız oldu. Cüzdanınız şifrelenmedi. + + + + + The supplied passphrases do not match. + Girilen parolalar birbirleriyle uyumlu değil. + + + + Wallet unlock failed + Cüzdan kilidinin açılması başarısız oldu + + + + + + The passphrase entered for the wallet decryption was incorrect. + Cüzdan şifresinin açılması için girilen parola yanlıştı. + + + + Wallet decryption failed + Cüzdan şifresinin açılması başarısız oldu + + + + Wallet passphrase was successfully changed. + Cüzdan parolası başarılı bir şekilde değiştirildi. + + + + + Warning: The Caps Lock key is on! + Uyarı: Caps Lock tuşu faal durumda! + + + + BitcoinGUI + + + Dash Core + Dash Çekirdeği + + + + Wallet + Cüzdan + + + + Node + Düğüm + + + + + [testnet] + [testnet] + + + + &Overview + &Genel bakış + + + + Show general overview of wallet + Cüzdana genel bakışı göster + + + + &Send + &Gönder + + + + Send coins to a Dash address + Bir Dash adresine para gönder + + + + &Receive + &Al + + + + Request payments (generates QR codes and dash: URIs) + Ödeme iste (QR kodu ve dash: URIs oluşturur) + + + + &Transactions + &Muameleler + + + + Browse transaction history + Muamele tarihçesini tara + + + + E&xit + &Çık + + + + Quit application + Uygulamadan çık + + + + + &About Dash Core + &Dash Çekirdeği Hakkında + + + + Show information about Dash + Dash hakkında bilgi göster + + + + + About &Qt + &Qt hakkında + + + + Show information about Qt + Qt hakkında bilgi görüntü + + + + &Options... + &Seçenekler... + + + + Modify configuration options for Dash + Dash seçeneklerinin yapılandırmasını değiştir + + + + + &Show / Hide + &Göster / Sakla + + + + Show or hide the main Window + Ana pencereyi görüntüle ya da sakla + + + + &Encrypt Wallet... + Cüzdanı &şifrele... + + + + Encrypt the private keys that belong to your wallet + Cüzdanınızın özel anahtarlarını şifrele + + + + &Backup Wallet... + Cüzdanı &yedekle... + + + + Backup wallet to another location + Cüzdanı diğer bir konumda yedekle + + + + &Change Passphrase... + Parolayı &değiştir... + + + + Change the passphrase used for wallet encryption + Cüzdan şifrelemesi için kullanılan parolayı değiştir + + + + &Unlock Wallet... + &Cüzdan Kilidini Kaldır + + + + Unlock wallet + Cüzdan kilidini aç + + + + &Lock Wallet + &Cüzdanı Kilitle + + + + Sign &message... + &Mesaj imzala... + + + + Sign messages with your Dash addresses to prove you own them + Mesajları, adreslerin size ait olduğunu ispatlamak için Dash adresleri ile imzala + + + + &Verify message... + Mesaj &kontrol et... + + + + Verify messages to ensure they were signed with specified Dash addresses + + + + + &Information + &Malumat + + + + Show diagnostic information + + + + + &Debug console + + + + + Open debugging console + + + + + &Network Monitor + &Ağ Monitörü + + + + Show network monitor + Ağ monitörünü göster + + + + Open &Configuration File + + + + + Open configuration file + + + + + &Sending addresses... + &Gönderme adresleri... + + + + Show the list of used sending addresses and labels + Kullanılmış gönderme adresleri ve etiketlerin listesini göster + + + + &Receiving addresses... + &Alma adresleri... + + + + Show the list of used receiving addresses and labels + Kullanılmış alım adresleri ve etiketlerin listesini göster + + + + Open &URI... + &URI aç... + + + + Open a dash: URI or payment request + + + + + &Command-line options + &Komut satırı seçenekleri + + + + Show the Dash Core help message to get a list with possible Dash command-line options + + + + + &File + &Dosya + + + + &Settings + &Ayarlar + + + + &Tools + &Araçlar + + + + &Help + &Yardım + + + + Tabs toolbar + Sekme araç çubuğu + + + + + Dash client + Dash istemcisi + + + + %n active connection(s) to Dash network + + + + + Synchronizing with network... + Şebeke ile senkronizasyon... + + + + Importing blocks from disk... + Bloklar diskten içe aktarılıyor... + + + + Reindexing blocks on disk... + Diskteki bloklar yeniden endeksleniyor... + + + + No block source available... + Hiçbir blok kaynağı mevcut değil... + + + + Processed %1 blocks of transaction history. + Muamele tarihçesinde %1 blok işlendi. + + + + Up to date + Güncel + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 ve %2 + + + + %n year(s) + + + + + %1 behind + %1 geride + + + + Catching up... + Aralık kapatılıyor... + + + + Last received block was generated %1 ago. + Son alınan blok %1 evvel oluşturulmuştu. + + + + Transactions after this will not yet be visible. + Bundan sonraki muameleler henüz görüntülenemez. + + + + Dash + + + + + Error + Hata + + + + Warning + Uyarı + + + + Information + Bilgi + + + + Sent transaction + Muamele yollandı + + + + Incoming transaction + Gelen muamele + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Tarih: %1 +Meblağ: %2 +Tür: %3 +Adres: %4 + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Cüzdan <b>şifrelenmiştir</b> ve şu anda <b>kilidi açıktır</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Cüzdan <b>şifrelenmiştir</b> ve şu anda <b>kilitlidir</b> + + + + A fatal error occurred. Dash can no longer continue safely and will quit. + + + + + ClientModel + + + Network Alert + Şebeke hakkında uyarı + + + + CoinControlDialog + + + Coin Control Address Selection + Para kontrolü adres seçimi + + + + Quantity: + Miktar: + + + + Bytes: + Bayt: + + + + Amount: + Meblağ: + + + + Priority: + Öncelik: + + + + Fee: + Ücret: + + + + Low Output: + Düşük çıktı: + + + + After Fee: + Ücretten sonra: + + + + Change: + Para üstü: + + + + (un)select all + tümünü seç(me) + + + + Tree mode + Ağaç kipi + + + + List mode + Liste kipi + + + + (1 locked) + + + + + Amount + Meblağ + + + + Label + Etiket + + + + Address + Adres + + + + Darksend Rounds + + + + + Date + Tarih + + + + Confirmations + Doğrulamalar + + + + Confirmed + Doğrulandı + + + + Priority + Öncelik + + + + Copy address + Adresi kopyala + + + + Copy label + Etiketi kopyala + + + + + Copy amount + Meblağı kopyala + + + + Copy transaction ID + Muamele kimliğini kopyala + + + + Lock unspent + Harcanmamışı kilitle + + + + Unlock unspent + Harcanmamışın kilidini aç + + + + Copy quantity + Miktarı kopyala + + + + Copy fee + Ücreti kopyala + + + + Copy after fee + Ücretten sonrakini kopyala + + + + Copy bytes + Baytları kopyala + + + + Copy priority + Önceliği kopyala + + + + Copy low output + Düşük çıktıyı kopyala + + + + Copy change + Para üstünü kopyala + + + + highest + azami + + + + higher + daha yüksek + + + + high + yüksek + + + + medium-high + orta-yüksek + + + + n/a + + + + + + medium + orta + + + + low-medium + düşük-orta + + + + low + düşük + + + + lower + daha düşük + + + + lowest + asgari + + + + (%1 locked) + (%1 kilitlendi) + + + + none + boş + + + + Dust + Toz + + + + yes + evet + + + + + no + hayır + + + + This label turns red, if the transaction size is greater than 1000 bytes. + Eğer muamele boyutu 1000 bayttan büyükse bu etkiket kırmızı olur. + + + + + This means a fee of at least %1 per kB is required. + Bu, kB başına en az %1 ücret gerektiği anlamnına gelir. + + + + Can vary +/- 1 byte per input. + Girdi başına +/- 1 bayt değişebilir. + + + + Transactions with higher priority are more likely to get included into a block. + Yüksek öncelikli muamelelerin bir bloğa dahil olmaları daha olasıdır. + + + + This label turns red, if the priority is smaller than "medium". + Eğer öncelik "ortadan" düşükse bu etiket kırmızı olur. + + + + This label turns red, if any recipient receives an amount smaller than %1. + Eğer herhangi bir alıcı %1'den düşük bir meblağ alırsa bu etiket kırmızı olur. + + + + + This means a fee of at least %1 is required. + Bu, en az %1 tutarında bir ücret gerektiği anlamına gelir. + + + + Amounts below 0.546 times the minimum relay fee are shown as dust. + Asgari yönlendirme ücretinin 0.546 oranının altındaki meblağlar toz olarak gösterilir. + + + + This label turns red, if the change is smaller than %1. + Eğer para üstü %1'den düşükse bu etiket kırmızı olur. + + + + + (no label) + (boş etiket) + + + + change from %1 (%2) + %1 unsurundan para üstü (%2) + + + + (change) + (para üstü) + + + + DarksendConfig + + + Configure Darksend + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select a privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000 DASH + + + + + Use 8 separate masternodes to mix funds up to 1000 DASH + + + + + Use 16 separate masternodes + + + + + This option is the quickest and will cost about ~0.025 DASH to anonymize 1000 DASH + + + + + This option is moderately fast and will cost about 0.05 DASH to anonymize 1000 DASH + + + + + 0.1 DASH per 1000 DASH you anonymize. + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + + + Darksend Configuration + Darksend Konfigürasyonu + + + + Darksend was successfully set to basic (%1 and 2 rounds). You can change this at any time by opening Dash's configuration screen. + + + + + Darksend was successfully set to high (%1 and 8 rounds). You can change this at any time by opening Dash's configuration screen. + + + + + Darksend was successfully set to maximum (%1 and 16 rounds). You can change this at any time by opening Dash's configuration screen. + + + + + EditAddressDialog + + + Edit Address + Adresi düzenle + + + + &Label + &Etiket + + + + The label associated with this address list entry + Bu adres listesi girdisi ile ilişkili etiket + + + + &Address + &Adres + + + + The address associated with this address list entry. This can only be modified for sending addresses. + Bu adres listesi girdisi ile ilişkili adres. Sadece gönderme adresleri için değiştirilebilir. + + + + New receiving address + Yeni alım adresi + + + + New sending address + Yeni gönderi adresi + + + + Edit receiving address + Alım adresini düzenle + + + + Edit sending address + Gönderi adresini düzenle + + + + The entered address "%1" is not a valid Dash address. + + + + + The entered address "%1" is already in the address book. + Girilen "%1" adresi hâlihazırda adres defterinde mevcuttur. + + + + Could not unlock wallet. + Cüzdan kilidi açılamadı. + + + + New key generation failed. + Yeni anahtar oluşturulması başarısız oldu. + + + + FreespaceChecker + + + A new data directory will be created. + Yeni bir veri klasörü oluşturulacaktır. + + + + name + isim + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Klasör hâlihazırda mevcuttur. Burada yeni bir klasör oluşturmak istiyorsanız, %1 ilâve ediniz. + + + + Path already exists, and is not a directory. + Erişim yolu zaten mevcuttur ve klasör değildir. + + + + Cannot create data directory here. + Burada veri klasörü oluşturulamaz. + + + + HelpMessageDialog + + + Dash Core - Command-line options + Dash Çekirdeği - Komut satırı seçenekleri + + + + Dash Core + Dash Çekirdeği + + + + version + sürüm + + + + Usage: + Kullanım: + + + + command-line options + komut satırı seçenekleri + + + + UI options + Kullanıcı arayüzü seçenekleri + + + + Choose data directory on startup (default: 0) + Başlangıçta veri klasörü seç (varsayılan: 0) + + + + Set language, for example "de_DE" (default: system locale) + Lisan belirt, mesela "de_De" (varsayılan: sistem dili) + + + + Start minimized + Küçültülmüş olarak başlat + + + + Set SSL root certificates for payment request (default: -system-) + Ödeme talebi için SSL kök sertifikalarını belirle (varsayılan: -system-) + + + + Show splash screen on startup (default: 1) + Başlatıldığında başlangıç ekranını göster (varsayılan: 1) + + + + Intro + + + Welcome + Hoş geldiniz + + + + Welcome to Dash Core. + + + + + As this is the first time the program is launched, you can choose where Dash Core will store its data. + + + + + Dash Core will download and store a copy of the Dash block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + + + + + Use the default data directory + Varsayılan veri klasörünü kullan + + + + Use a custom data directory: + Özel bir veri klasörü kullan: + + + + Dash + + + + + Error: Specified data directory "%1" can not be created. + Hata: belirtilen "%1" veri klasörü oluşturulamaz. + + + + Error + Hata + + + + GB of free space available + GB boş alan mevcuttur + + + + (of %1GB needed) + (gereken boyut: %1GB) + + + + OpenURIDialog + + + Open URI + URI aç + + + + Open payment request from URI or file + Dosyadan veya URI'den ödeme talebi aç + + + + URI: + URI: + + + + Select payment request file + Ödeme talebi dosyasını seç + + + + Select payment request file to open + Açılacak ödeme talebi dosyasını seç + + + + OptionsDialog + + + Options + Seçenekler + + + + &Main + &Esas ayarlar + + + + Automatically start Dash after logging in to the system. + + + + + &Start Dash on system login + + + + + Size of &database cache + &Veritabanı tamponunun boyutu + + + + MB + MB + + + + Number of script &verification threads + İş parçacıklarını &denetleme betiği sayısı + + + + (0 = auto, <0 = leave that many cores free) + (0 = otomatik, <0 = bu kadar çekirdeği kullanma) + + + + <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> + + + + + Darksend rounds to use + + + + + This amount acts as a threshold to turn off Darksend once it's reached. + + + + + Amount of Dash to keep anonymized + + + + + W&allet + &Cüzdan + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. + Muamelelerin hızlı işlenmesini garantilemeye yardım eden, seçime dayalı kB başı muamele ücreti. Muamelelerin çoğunluğunun boyutu 1 kB'dir. + + + + Pay transaction &fee + Muamele ücreti &öde + + + + Expert + Gelişmiş + + + + Whether to show coin control features or not. + Para kontrol özelliklerinin gösterilip gösterilmeyeceğini ayarlar. + + + + Enable coin &control features + Para &kontrolü özelliklerini etkinleştir + + + + 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. + Teyit edilmemiş para üstünü harcamayı devre dışı bırakırsanız, bir muamelenin para üstü bu muamele için en az bir teyit olana dek harcanamaz. Bu, aynı zamanda bakiyenizin nasıl hesaplandığını da etkiler. + + + + &Spend unconfirmed change + Teyit edilmemiş para üstünü &harca + + + + &Network + &Şebeke + + + + Automatically open the Dash client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + Portları &UPnP kullanarak haritala + + + + Connect to the Dash network through a SOCKS proxy. + + + + + &Connect through SOCKS proxy (default proxy): + SOCKS vekil sunucusuyla &bağlan (varsayılan vekil): + + + + Proxy &IP: + Vekil &İP: + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Vekil sunucusunun IP adresi (mesela IPv4: 127.0.0.1 / IPv6: ::1) + + + + &Port: + &Port: + + + + Port of the proxy (e.g. 9050) + Vekil sunucunun portu (mesela 9050) + + + + SOCKS &Version: + SOCKS &sürümü: + + + + SOCKS version of the proxy (e.g. 5) + Vekil sunucunun SOCKS sürümü (mesela 5) + + + + &Window + &Pencere + + + + Show only a tray icon after minimizing the window. + Küçültüldükten sonra sadece çekmece ikonu göster. + + + + &Minimize to the tray instead of the taskbar + İşlem çubuğu yerine sistem çekmecesine &küçült + + + + 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. + Pencere kapatıldığında uygulamadan çıkmak yerine uygulamayı küçültür. Bu seçenek etkinleştirildiğinde, uygulama sadece menüden çıkış seçildiğinde kapanacaktır. + + + + M&inimize on close + Kapatma sırasında k&üçült + + + + &Display + &Görünüm + + + + User Interface &language: + Kullanıcı arayüzü &lisanı: + + + + The user interface language can be set here. This setting will take effect after restarting Dash. + + + + + Language missing or translation incomplete? Help contributing translations here: +https://www.transifex.com/projects/p/dash/ + + + + + &Unit to show amounts in: + Meblağları göstermek için &birim: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Bitcoin gönderildiğinde arayüzde gösterilecek varsayılan alt birimi seçiniz. + + + + Whether to show Dash addresses in the transaction list or not. + + + + + &Display addresses in transaction list + Muamele listesinde adresleri &göster + + + + + 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 |. + Muameleler sekmesinde bağlam menüsü unsurları olarak görünen üçüncü taraf bağlantıları (mesela bir blok tarayıcısı). URL'deki %s, muamele hash değeri ile değiştirilecektir. Birden çok bağlantılar düşey çubuklar | ile ayrılacaktır. + + + + Third party transaction URLs + Üçüncü taraf muamele URL'leri + + + + Active command-line options that override above options: + Yukarıdaki seçeneklerin yerine geçen faal komut satırı seçenekleri: + + + + Reset all client options to default. + İstemcinin tüm seçeneklerini varsayılan değerlere geri al. + + + + &Reset Options + Seçenekleri Sıfı&rla + + + + &OK + &Tamam + + + + &Cancel + &İptal + + + + default + varsayılan + + + + none + boş + + + + Confirm options reset + Seçeneklerin sıfırlanmasını teyit et + + + + + Client restart required to activate changes. + Değişikliklerin uygulanması için istemcinin yeniden başlatılması lazımdır. + + + + Client will be shutdown, do you want to proceed? + İstemci kapanacaktır, devam etmek istiyor musunuz? + + + + This change would require a client restart. + Bu değişiklik istemcinin tekrar başlatılmasını gerektirir. + + + + The supplied proxy address is invalid. + Girilen vekil sunucu adresi geçersizdir. + + + + OverviewPage + + + Form + Form + + + + Wallet + Cüzdan + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Dash network after a connection is established, but this process has not completed yet. + + + + + Available: + Mevcut: + + + + Your current spendable balance + Güncel harcanabilir bakiyeniz + + + + Pending: + Beklemede: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Henüz teyit edilmemiş ve harcanabilir bakiyeye eklenmemiş muamelelerin toplamı + + + + Immature: + Olgunlaşmamış: + + + + Mined balance that has not yet matured + Oluşturulan bakiye henüz olgunlaşmamıştır + + + + Total: + Toplam: + + + + Your current total balance + Güncel toplam bakiyeniz + + + + Status: + + + + + Enabled/Disabled + + + + + Completion: + + + + + Darksend Balance: + + + + + 0 DASH + + + + + Amount and Rounds: + + + + + 0 DASH / 0 Rounds + + + + + Submitted Denom: + + + + + The denominations you submitted to the Masternode. To mix, other users must submit the exact same denominations. + + + + + n/a + + + + + + + + Darksend + + + + + Start/Stop Mixing + + + + + (Last Message) + + + + + Try to manually submit a Darksend request. + + + + + Try Mix + + + + + Reset the current status of Darksend (can interrupt Darksend if it's in the process of Mixing, which can cost you money!) + + + + + Reset + + + + + <b>Recent transactions</b> + <b>Son muameleler</b> + + + + + + out of sync + eşleşme dışı + + + + + Disabled + + + + + + + Start Darksend Mixing + + + + + + Stop Darksend Mixing + + + + + No inputs detected + + + + + Found unconfirmed denominated outputs, will wait till they confirm to recalculate. + + + + + Rounds + + + + + Enabled + + + + + Last Darksend message: + + + + + + + Darksend is idle. + + + + + Mixing in progress... + + + + + Darksend request complete: Your transaction was accepted into the pool! + + + + + Submitted following entries to masternode: + + + + + + + Submitted to masternode, Waiting for more entries + + + + + Found enough users, signing ... + + + + + Found enough users, signing ( waiting. ) + + + + + Found enough users, signing ( waiting.. ) + + + + + Found enough users, signing ( waiting... ) + + + + + Transmitting final transaction. + + + + + Finalizing transaction. + + + + + Darksend request incomplete: + + + + + Will retry... + + + + + Darksend request complete: + + + + + Submitted to masternode, waiting in queue . + + + + + Submitted to masternode, waiting in queue .. + + + + + Submitted to masternode, waiting in queue ... + + + + + Unknown state: + + + + + N/A + Mevcut değil + + + + Darksend was successfully reset. + + + + + Darksend requires at least %1 to use. + + + + + Wallet is locked and user declined to unlock. Disabling Darksend. + + + + + PaymentServer + + + + + + + + Payment request error + Ödeme talebi hatası + + + + Cannot start dash: click-to-pay handler + + + + + Net manager warning + Şebeke yöneticisi uyarısı + + + + Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. + Faal vekil sunucunuz, vekil vasıtasıyla ödeme talepleri için gereken SOCKS5'i desteklememektedir. + + + + + URI handling + URI yönetimi + + + + Payment request fetch URL is invalid: %1 + Ödeme talebini alma URL'i geçersiz: %1 + + + + URI can not be parsed! This can be caused by an invalid Dash address or malformed URI parameters. + + + + + Payment request file handling + Ödeme talebi dosyası yönetimi + + + + Payment request file can not be read or processed! This can be caused by an invalid payment request file. + Ödeme talebi okunamaz ya da işlenemez! Bunun sebebi geçersiz bir ödeme talebi dosyası olabilir. + + + + Unverified payment requests to custom payment scripts are unsupported. + Özel ödeme betiklerine teyit edilmemiş ödeme talepleri desteklenmez. + + + + Requested payment amount of %1 is too small (considered dust). + Talep edilen %1 meblağında ödeme çok düşüktür (toz olarak kabul edilir). + + + + Refund from %1 + %1 öğesinden iade + + + + Error communicating with %1: %2 + %1 ile iletişimde hata: %2 + + + + Payment request can not be parsed or processed! + Ödeme talebi ayrıştırılamaz ya da işlenemez! + + + + Bad response from server %1 + %1 sunucusundan hatalı cevap + + + + Network request error + Şebeke talebi hatası + + + + Payment acknowledged + Ödeme teyit edildi + + + + QObject + + + + + + Dash + + + + + Error: Specified data directory "%1" does not exist. + Hata: belirtilen "%1" veri klasörü yoktur. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Hata: %1 yapılandırma dosyası ayrıştırılamadı. Sadece anahtar=değer dizimini kullanınız. + + + + Error reading masternode configuration file: %1 + + + + + Error: Invalid combination of -regtest and -testnet. + Hata: -regtest ve -testnet'in geçersiz kombinasyonu. + + + + Dash Core didn't yet exit safely... + + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + QRImageWidget + + + &Save Image... + Resmi k&aydet... + + + + &Copy Image + Resmi &kopyala + + + + Save QR Code + QR kodu kaydet + + + + PNG Image (*.png) + PNG resim (*.png) + + + + RPCConsole + + + Tools window + + + + + &Information + &Malumat + + + + Masternode Count + + + + + General + Genel + + + + Name + İsim + + + + Client name + İstemci ismi + + + + + + + + + + + + + N/A + Mevcut değil + + + + Number of connections + Bağlantı sayısı + + + + Open the Dash debug log file from the current data directory. This can take a few seconds for large log files. + + + + + &Open + &Aç + + + + Startup time + Başlama zamanı + + + + Network + Şebeke + + + + Last block time + Son blok zamanı + + + + Debug log file + Hata ayıklama kütük dosyası + + + + Using OpenSSL version + Kullanılan OpenSSL sürümü + + + + Build date + Derleme tarihi + + + + Current number of blocks + Güncel blok sayısı + + + + Client version + İstemci sürümü + + + + Block chain + Blok zinciri + + + + &Console + &Konsol + + + + Clear console + Konsolu temizle + + + + &Network Traffic + &Şebeke trafiği + + + + &Clear + &Temizle + + + + Totals + Toplamlar + + + + + In: + İçeri: + + + + + Out: + Dışarı: + + + + Welcome to the Dash RPC console. + + + + + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + Tarihçede gezinmek için imleç tuşlarını kullanınız, <b>Ctrl-L</b> ile de ekranı temizleyebilirsiniz. + + + + Type <b>help</b> for an overview of available commands. + Mevcut komutların listesi için <b>help</b> yazınız. + + + + %1 B + %1 B + + + + %1 KB + %1 KB + + + + %1 MB + %1 MB + + + + %1 GB + %1 GB + + + + %1 m + %1 d + + + + %1 h + %1 s + + + + %1 h %2 m + %1 s %2 d + + + + ReceiveCoinsDialog + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Daha önce kullanılmış bir alım adresini kullan. Adresleri tekrar kullanmak güvenlik ve gizlilik sorunları doğurur. Bunu, daha önce yaptığınız bir talebi tekrar oluşturmak durumu dışında kullanmayınız. + + + + R&euse an existing receiving address (not recommended) + &Hâlihazırda bulunan bir alım adresini kullan (önerilmez) + + + + + 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 Dash network. + + + + + &Message: + Me&saj: + + + + + An optional label to associate with the new receiving address. + Yeni alım adresi ile ilişkili, seçiminize dayalı etiket. + + + + Use this form to request payments. All fields are <b>optional</b>. + Ödeme talep etmek için bu formu kullanın. Tüm alanlar <b>seçime dayalıdır</b>. + + + + &Label: + &Etiket: + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Seçiminize dayalı talep edilecek meblağ. Belli bir meblağ talep etmemek için bunu boş bırakın veya sıfır değerini kullanın. + + + + &Amount: + &Meblağ: + + + + &Request payment + Ödeme &talep et + + + + Clear all fields of the form. + Formdaki tüm alanları temizle. + + + + Clear + Temizle + + + + Requested payments history + Talep edilen ödemelerin tarihçesi + + + + Show the selected request (does the same as double clicking an entry) + Seçilen talebi göster (bir unsura çift tıklamakla aynı anlama gelir) + + + + Show + Göster + + + + Remove the selected entries from the list + Seçilen unsurları listeden kaldır + + + + Remove + Kaldır + + + + Copy label + Etiketi kopyala + + + + Copy message + Mesajı kopyala + + + + Copy amount + Meblağı kopyala + + + + ReceiveRequestDialog + + + QR Code + QR Kodu + + + + Copy &URI + &URI'yi kopyala + + + + Copy &Address + &Adresi kopyala + + + + &Save Image... + Resmi ka&ydet... + + + + Request payment to %1 + %1 unsuruna ödeme talep et + + + + Payment information + Ödeme bilgisi + + + + URI + URI + + + + Address + Adres + + + + Amount + Meblağ + + + + Label + Etiket + + + + Message + Mesaj + + + + Resulting URI too long, try to reduce the text for label / message. + Sonuç URI çok uzun, etiket ya da mesaj metnini kısaltmayı deneyiniz. + + + + Error encoding URI into QR Code. + URI'nin QR koduna kodlanmasında hata oluştu. + + + + RecentRequestsTableModel + + + Date + Tarih + + + + Label + Etiket + + + + Message + Mesaj + + + + Amount + Meblağ + + + + (no label) + (boş etiket) + + + + (no message) + (boş mesaj) + + + + (no amount) + (boş meblağ) + + + + SendCoinsDialog + + + + + + Send Coins + Bitcoin yolla + + + + Coin Control Features + Para kontrolü özellikleri + + + + Inputs... + Girdiler... + + + + automatically selected + otomatik seçilmiş + + + + Insufficient funds! + Yetersiz fon! + + + + Quantity: + Miktar: + + + + Bytes: + Bayt: + + + + Amount: + Meblağ: + + + + Priority: + Öncelik: + + + + medium + orta + + + + Fee: + Ücret: + + + + Low Output: + Düşük çıktı: + + + + no + hayır + + + + After Fee: + Ücretten sonra: + + + + Change: + Para üstü: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Bu etkinleştirildiyse fakat para üstü adresi boş ya da geçersizse para üstü yeni oluşturulan bir adrese gönderilecektir. + + + + Custom change address + Özel para üstü adresi + + + + Confirm the send action + Yollama etkinliğini teyit ediniz + + + + S&end + G&önder + + + + Clear all fields of the form. + Formdaki tüm alanları temizle. + + + + Clear &All + Tümünü &temizle + + + + Send to multiple recipients at once + Birçok alıcıya aynı anda gönder + + + + Add &Recipient + &Alıcı ekle + + + + Darksend + + + + + InstantX + + + + + Balance: + Bakiye: + + + + Copy quantity + Miktarı kopyala + + + + Copy amount + Meblağı kopyala + + + + Copy fee + Ücreti kopyala + + + + Copy after fee + Ücretten sonrakini kopyala + + + + Copy bytes + Baytları kopyala + + + + Copy priority + Önceliği kopyala + + + + Copy low output + Düşük çıktıyı kopyala + + + + Copy change + Para üstünü kopyala + + + + + + using + + + + + + anonymous funds + + + + + (darksend requires this amount to be rounded up to the nearest %1). + + + + + any available funds (not recommended) + + + + + and InstantX + + + + + + + + %1 to %2 + %1 öğesinden %2 unsuruna + + + + Are you sure you want to send? + Göndermek istediğinizden emin misiniz? + + + + are added as transaction fee + + + + + Total Amount %1 (= %2) + Toplam meblağ %1 (= %2) + + + + or + veya + + + + Confirm send coins + Gönderiyi teyit ediniz + + + + Payment request expired + Ödeme talebinin ömrü doldu + + + + Invalid payment address %1 + Geçersiz ödeme adresi %1 + + + + The recipient address is not valid, please recheck. + Alıcı adresi geçerli değildir, lütfen denetleyiniz. + + + + The amount to pay must be larger than 0. + Ödeyeceğiniz tutarın sıfırdan yüksek olması gerekir. + + + + The amount exceeds your balance. + Tutar bakiyenizden yüksektir. + + + + The total exceeds your balance when the %1 transaction fee is included. + Toplam, %1 muamele ücreti ilâve edildiğinde bakiyenizi geçmektedir. + + + + Duplicate address found, can only send to each address once per send operation. + Çift adres bulundu, belli bir gönderi sırasında her adrese sadece tek bir gönderide bulunulabilir. + + + + Transaction creation failed! + Muamelenin oluşturulması başarısız oldu! + + + + 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 and coins were spent in the copy but not marked as spent here. + Muamele reddedildi! Cüzdanınızdaki madenî paraların bazıları zaten harcanmış olduğunda bu meydana gelebilir. Örneğin wallet.dat dosyasının bir kopyasını kullandıysanız ve kopyada para harcandığında ancak burada harcandığı işaretlenmediğinde. + + + + Error: The wallet was unlocked only to anonymize coins. + + + + + Warning: Invalid Dash address + + + + + Warning: Unknown change address + Uyarı: geçersiz para üstü adresi + + + + (no label) + (boş etiket) + + + + SendCoinsEntry + + + This is a normal payment. + Bu, normal bir ödemedir. + + + + Pay &To: + &Şu adrese öde: + + + + The address to send the payment to (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + Choose previously used address + Önceden kullanılmış adres seç + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Panodan adres yapıştır + + + + Alt+P + Alt+P + + + + + + Remove this entry + Bu unsuru kaldır + + + + &Label: + &Etiket: + + + + Enter a label for this address to add it to the list of used addresses + Kullanılmış adres listesine eklemek için bu adrese bir etiket girin + + + + + + A&mount: + Mebla&ğ: + + + + Message: + Mesaj: + + + + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + + + + + This is an unverified payment request. + Bu, teyit edilmemiş bir ödeme talebidir. + + + + + Pay To: + Şu adrese öde: + + + + + Memo: + Not: + + + + This is a verified payment request. + Bu, teyit edilmiş bir ödeme talebidir. + + + + Enter a label for this address to add it to your address book + Adres defterinize eklemek için bu adrese ilişik bir etiket giriniz + + + + ShutdownWindow + + + Dash Core is shutting down... + + + + + Do not shut down the computer until this window disappears. + Bu pencere kalkıncaya dek bilgisayarı kapatmayınız. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + İmzalar - Mesaj İmzala / Kontrol et + + + + &Sign Message + Mesaj &imzala + + + + 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. + Bir adresin sizin olduğunu ispatlamak için adresinizle mesaj imzalayabilirsiniz. Oltalama saldırılarının kimliğinizi imzanızla elde etmeyi deneyebilecekleri için belirsiz hiçbir şey imzalamamaya dikkat ediniz. Sadece ayrıntılı açıklaması olan ve tümüne katıldığınız ifadeleri imzalayınız. + + + + The address to sign the message with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + + Choose previously used address + Önceden kullanılmış adres seç + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Panodan adres yapıştır + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + İmzalamak istediğiniz mesajı burada giriniz + + + + Signature + İmza + + + + Copy the current signature to the system clipboard + Güncel imzayı sistem panosuna kopyala + + + + Sign the message to prove you own this Dash address + + + + + Sign &Message + &Mesajı imzala + + + + Reset all sign message fields + Tüm mesaj alanlarını sıfırla + + + + + Clear &All + Tümünü &temizle + + + + &Verify Message + Mesaj &kontrol et + + + + 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. + İmza için kullanılan adresi, mesajı (satır sonları, boşluklar, sekmeler vs. karakterleri tam olarak kopyaladığınızdan emin olunuz) ve imzayı aşağıda giriniz. Bir ortadaki adam saldırısı tarafından kandırılmaya mâni olmak için imzadan, imzalı mesajın içeriğini aşan bir anlam çıkarmamaya dikkat ediniz. + + + + The address the message was signed with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + Verify the message to ensure it was signed with the specified Dash address + + + + + Verify &Message + &Mesaj kontrol et + + + + Reset all verify message fields + Tüm mesaj kontrolü alanlarını sıfırla + + + + Click "Sign Message" to generate signature + İmzayı oluşturmak için "Mesaj İmzala" unsurunu tıklayın + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + + The entered address is invalid. + Girilen adres geçersizdir. + + + + + + + Please check the address and try again. + Adresi kontrol edip tekrar deneyiniz. + + + + + The entered address does not refer to a key. + Girilen adres herhangi bir anahtara işaret etmemektedir. + + + + Wallet unlock was cancelled. + Cüzdan kilidinin açılması iptal edildi. + + + + Private key for the entered address is not available. + Girilen adres için özel anahtar mevcut değildir. + + + + Message signing failed. + Mesajın imzalanması başarısız oldu. + + + + Message signed. + Mesaj imzalandı. + + + + The signature could not be decoded. + İmzanın kodu çözülemedi. + + + + + Please check the signature and try again. + İmzayı kontrol edip tekrar deneyiniz. + + + + The signature did not match the message digest. + İmza mesajın hash değeri ile eşleşmedi. + + + + Message verification failed. + Mesaj doğrulaması başarısız oldu. + + + + Message verified. + Mesaj doğrulandı. + + + + SplashScreen + + + Dash Core + Dash Çekirdeği + + + + Version %1 + + + + + The Bitcoin Core developers + Bitcoin Çekirdeği geliştiricileri + + + + The Dash Core developers + Dash Çekirdek Geliştiricileri + + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + %1 değerine dek açık + + + + + + + conflicted + çakışma + + + + %1/offline (verified via instantx) + + + + + %1/confirmed (verified via instantx) + + + + + %1 confirmations (verified via instantx) + + + + + %1/offline + %1/çevrim dışı + + + + %1/unconfirmed + %1/doğrulanmadı + + + + + %1 confirmations + %1 teyit + + + + %1/offline (InstantX verification in progress - %2 of %3 signatures) + + + + + %1/confirmed (InstantX verification in progress - %2 of %3 signatures ) + + + + + %1 confirmations (InstantX verification in progress - %2 of %3 signatures) + + + + + %1/offline (InstantX verification failed) + + + + + %1/confirmed (InstantX verification failed) + + + + + Status + Durum + + + + , has not been successfully broadcast yet + , henüz başarılı bir şekilde yayınlanmadı + + + + , broadcast through %n node(s) + + + + + Date + Tarih + + + + Source + Kaynak + + + + Generated + Oluşturuldu + + + + + From + Gönderen + + + + unknown + bilinmiyor + + + + + + To + Alıcı + + + + + own address + kendi adresiniz + + + + label + etiket + + + + + + + + Credit + Gider + + + + matures in %n more block(s) + + + + + not accepted + kabul edilmedi + + + + + + + Debit + Gelir + + + + Transaction fee + Muamele ücreti + + + + Net amount + Net meblağ + + + + + Message + Mesaj + + + + Comment + Yorum + + + + Transaction ID + Muamele tanımlayıcı + + + + Merchant + Tüccar + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Oluşturulan bitcoin'lerin harcanabilmelerinden önce %1 blok beklemeleri gerekmektedir. Bu blok, oluşturduğunuzda, blok zincirine eklenmesi için ağda yayınlandı. Zincire eklenmesi başarısız olursa, durumu "kabul edilmedi" olarak değiştirilecek ve harcanamayacaktır. Bu, bazen başka bir düğüm sizden birkaç saniye önce ya da sonra blok oluşturursa meydana gelebilir. + + + + Debug information + Hata ayıklama verileri + + + + Transaction + Muamele + + + + Inputs + Girdiler + + + + Amount + Meblağ + + + + true + doğru + + + + false + yanlış + + + + TransactionDescDialog + + + Transaction details + Muamele detayları + + + + This pane shows a detailed description of the transaction + Bu pano muamelenin ayrıntılı açıklamasını gösterir + + + + TransactionTableModel + + + Date + Tarih + + + + Type + Tür + + + + Address + Adres + + + + Amount + Meblağ + + + + Open for %n more block(s) + + + + + Open until %1 + %1 değerine dek açık + + + + Offline + Çevrim dışı + + + + Unconfirmed + Teyit edilmemiş + + + + Confirming (%1 of %2 recommended confirmations) + Teyit ediliyor (tavsiye edilen %2 teyit üzerinden %1 doğrulama) + + + + Confirmed (%1 confirmations) + Doğrulandı (%1 teyit) + + + + Conflicted + Çakışma + + + + Immature (%1 confirmations, will be available after %2) + Olgunlaşmamış (%1 teyit, %2 teyit ardından kullanılabilir olacaktır) + + + + This block was not received by any other nodes and will probably not be accepted! + Bu blok başka hiçbir düğüm tarafından alınmamıştır ve muhtemelen kabul edilmeyecektir! + + + + Generated but not accepted + Oluşturuldu ama kabul edilmedi + + + + Received with + Şununla alındı + + + + Received from + Alındığı kişi + + + + Received via Darksend + + + + + Sent to + Gönderildiği adres + + + + Payment to yourself + Kendinize ödeme + + + + Mined + Madenden çıkarılan + + + + Darksend Denominate + + + + + Darksend Collateral Payment + + + + + Darksend Make Collateral Inputs + + + + + Darksend Create Denominations + + + + + Darksent + + + + + (n/a) + (mevcut değil) + + + + Transaction status. Hover over this field to show number of confirmations. + Muamele durumu. Doğrulama sayısını görüntülemek için imleci bu alanda tutunuz. + + + + Date and time that the transaction was received. + Muamelenin alındığı tarih ve zaman. + + + + Type of transaction. + Muamele türü. + + + + Destination address of transaction. + Muamelenin alıcı adresi. + + + + Amount removed from or added to balance. + Bakiyeden alınan ya da bakiyeye eklenen meblağ. + + + + TransactionView + + + + All + Hepsi + + + + Today + Bugün + + + + This week + Bu hafta + + + + This month + Bu ay + + + + Last month + Geçen ay + + + + This year + Bu sene + + + + Range... + Aralık... + + + + Received with + Şununla alınan + + + + Sent to + Gönderildiği adres + + + + Darksent + + + + + Darksend Make Collateral Inputs + + + + + Darksend Create Denominations + + + + + Darksend Denominate + + + + + Darksend Collateral Payment + + + + + To yourself + Kendinize + + + + Mined + Oluşturulan + + + + Other + Diğer + + + + Enter address or label to search + Aranacak adres ya da etiket giriniz + + + + Min amount + Asgari meblağ + + + + Copy address + Adresi kopyala + + + + Copy label + Etiketi kopyala + + + + Copy amount + Meblağı kopyala + + + + Copy transaction ID + Muamele kimliğini kopyala + + + + Edit label + Etiketi düzenle + + + + Show transaction details + Muamele detaylarını göster + + + + Export Transaction History + Muamele tarihçesini dışa aktar + + + + Comma separated file (*.csv) + Virgülle ayrılmış değerler dosyası (*.csv) + + + + Confirmed + Doğrulandı + + + + Date + Tarih + + + + Type + Tür + + + + Label + Etiket + + + + Address + Adres + + + + Amount + Meblağ + + + + ID + Tanımlayıcı + + + + Exporting Failed + Dışa aktarım başarısız oldu + + + + There was an error trying to save the transaction history to %1. + Muamele tarihçesinin %1 konumuna kaydedilmesi sırasında bir hata meydana geldi. + + + + Exporting Successful + Dışa aktarım başarılı oldu + + + + The transaction history was successfully saved to %1. + Muamele tarihçesi başarılı bir şekilde %1 konumuna kaydedildi. + + + + Range: + Aralık: + + + + to + ilâ + + + + WalletFrame + + + No wallet has been loaded. + Hiçbir cüzdan yüklenmemiştir. + + + + WalletModel + + + + Send Coins + Bitcoin yolla + + + + InstantX doesn't support sending values that high yet. Transactions are currently limited to %n DASH. + + + + + WalletView + + + &Export + &Dışa aktar + + + + Export the data in the current tab to a file + Güncel sekmedeki verileri bir dosyaya aktar + + + + Backup Wallet + Cüzdanı Yedekle + + + + Wallet Data (*.dat) + Cüzdan verileri (*.dat) + + + + Backup Failed + Yedekleme başarısız oldu + + + + There was an error trying to save the wallet data to %1. + Cüzdan verilerinin %1 konumuna kaydedilmesi sırasında bir hata meydana geldi. + + + + Backup Successful + Yedekleme başarılı + + + + The wallet data was successfully saved to %1. + Cüzdan verileri %1 konumuna başarıyla kaydedildi. + + + + dash-core + + + %s, you must set a rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=dashrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com + + + + + + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + Kabul edilebilir şifreler (varsayılan: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + IPv4 üzerinde dinlemek için %u numaralı RPC portunun kurulumu sırasında hata meydana geldi: %s + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + IPv6 üzerinde dinlemek için %u numaralı RPC portu kurulurken bir hata meydana geldi, IPv4'e dönülüyor: %s + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Belirtilen adrese bağlan ve daima ondan dinle. IPv6 için [makine]:port yazımını kullanınız + + + + Cannot obtain a lock on data directory %s. Dash Core is probably already running. + + + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + Devamlı olarak ücretsiz muameleleri dakikada <n>*1000 bayt olarak sınırla (varsayılan: 15) + + + + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. + + + + + Disable all Masternode and Darksend related functionality (0-1, default: 0) + + + + + Enable instantx, show confirmations for locked transactions (bool, default: true) + + + + + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) + + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. + Anında çözümlenebilen bloklar içeren ve özel zincir kullanan regresyon test kipine gir. Bu, uygulama geliştirme ve regresyon testi araçları için tasarlanmıştır. + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Blokların anında çözülebileceği özel bir zincir kullanan regresyon deneme kipine gir. + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + 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 and coins were spent in the copy but not marked as spent here. + Hata: Muamele reddedildi! Cüzdanınızdaki madenî paraların bazıları zaten harcanmış olduğunda bu meydana gelebilir. Örneğin wallet.dat dosyasının bir kopyasını kullandıysanız ve kopyada para harcandığında ancak burada harcandığı işaretlenmediğinde. + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! + Hata: Muamelenin meblağı, karmaşıklığı ya da yakın geçmişte alınan fonların kullanılması nedeniyle bu muamele en az %s tutarında ücret gerektirmektedir! + + + + Error: Wallet unlocked for anonymization only, unable to create transaction. + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + İlgili bir uyarı alındığında ya da gerçekten uzun bir çatallama gördüğümüzde komutu çalıştır (komuttaki %s mesaj ile değiştirilir) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Bir cüzdan muamelesi değiştiğinde komutu çalıştır (komuttaki %s TxID ile değiştirilecektir) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + En iyi blok değiştiğinde komutu çalıştır (komut için %s parametresi blok hash değeri ile değiştirilecektir) + + + + Fees smaller than this are considered zero fee (for transaction creation) (default: + Bundan düşük ücretler sıfır değerinde sayılır (muamele oluşturulması için) (varsayılan: + + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + Veritabanı etkinliğini bellekten disk kütüğüne her <n> megabaytta aktar (varsayılan: 100) + + + + Found unconfirmed denominated outputs, will wait till they confirm to continue. + + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + -checkblocks'un blok kontrolünün ne kadar kapsamlı olacağı (0 ilâ 4, varsayılan: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + Bu kipte -genproclimit kaç sayıda bloğun anında oluşturulduğunu kontrol eder. + + + + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. + + + + + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) + + + + + Name to construct url for KeePass entry that stores the wallet passphrase + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Aksaklık gösteren eşlerle yeni bağlantıları engelleme süresi, saniye olarak (varsayılan: 86400) + + + + Output debugging information (default: 0, supplying <category> is optional) + Hata ayıklama bilgisi dök (varsayılan:0, <kategori> sağlanması seçime dayalıdır) + + + + 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) + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + + + + + Set external address:port to get to this masternode (example: address:port) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + Yüksek öncelikli/düşük ücretli muamelelerin azami boyutunu bayt olarak ayarla (varsayılan: %d) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Betik kontrolü iş parçacıklarının sayısını belirler (%u ilâ %d, 0 = otomatik, <0 = bu sayıda çekirdeği kullanma, varsayılan: %d) + + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + Oluşturma etkinken işlemci sınırını belirler (-1 = sınırsız, varsayılan: -1) + + + + Show N confirmations for a successfully locked transaction (0-9999, default: 1) + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + Bu yayın öncesi bir deneme sürümüdür - tüm riski siz üstlenmiş olursunuz - bitcoin oluşturmak ya da ticari uygulamalar için kullanmayınız + + + + Unable to bind to %s on this computer. Dash Core is probably already running. + + + + + Unable to locate enough Darksend denominated funds for this transaction. + + + + + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. + + + + + Unable to locate enough Darksend non-denominated funds for this transaction. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) + Eşlere gizli Tor servisleri ile ulaşmak için ayrı SOCKS5 vekil sunucusu kullan (varsayılan: -proxy) + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Uyarı: -paytxfee çok yüksek bir değere ayarlanmış! Bu, muamele gönderirseniz ödeyeceğiniz muamele ücretidir. + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + Uyarı: şebeke tamamen mutabık değil gibi görünüyor! Bazı madenciler sorun yaşıyor gibi görünüyor. + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + Uyarı: eşlerimizle tamamen mutabık değiliz gibi görünüyor! Güncelleme yapmanız gerekebilir ya da diğer düğümlerin güncelleme yapmaları gerekebilir. + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + Uyarı: wallet.dat dosyasının okunması sırasında bir hata meydana geldi! Tüm anahtarlar doğru bir şekilde okundu, ancak muamele verileri ya da adres defteri unsurları hatalı veya eksik olabilir. + + + + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + Uyarı: wallet.dat bozuk, veriler geri kazanıldı! Özgün wallet.dat, wallet.{zamandamgası}.bak olarak %s klasörüne kaydedildi; bakiyeniz ya da muameleleriniz yanlışsa bir yedeklemeden tekrar yüklemeniz gerekir. + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + rpcpassword=<parola> şu yapılandırma dosyasında belirtilmelidir: +%s +Dosya mevcut değilse, sadece sahibi için okumayla sınırlı izin ile oluşturunuz. + + + + You must specify a masternodeprivkey in the configuration. Please see documentation for help. + + + + + (default: 1) + (varsayılan: 1) + + + + (default: wallet.dat) + (varsayılan: wallet.dat) + + + + <category> can be: + <kategori> şunlar olabilir: + + + + Accept command line and JSON-RPC commands + Komut satırı ve JSON-RPC komutlarını kabul et + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Dışarıdan gelen bağlantıları kabul et (varsayılan: -proxy veya -connect yoksa 1) + + + + Add a node to connect to and attempt to keep the connection open + Bağlanılacak düğüm ekle ve bağlantıyı zinde tutmaya çalış + + + + Allow DNS lookups for -addnode, -seednode and -connect + -addnode, -seednode ve -connect için DNS aramalarına izin ver + + + + Allow JSON-RPC connections from specified IP address + Belirtilen İP adresinden JSON-RPC bağlantılarını kabul et + + + + Already have that input. + + + + + Always query for peer addresses via DNS lookup (default: 0) + + + + + Attempt to recover private keys from a corrupt wallet.dat + Bozuk bir wallet.dat dosyasından özel anahtarları geri kazanmayı dene + + + + Block creation options: + Blok oluşturma seçenekleri: + + + + Can't denominate: no compatible inputs left. + + + + + Cannot downgrade wallet + Cüzdan eski biçime geri alınamaz + + + + Cannot resolve -bind address: '%s' + -bind adresi çözümlenemedi: '%s' + + + + Cannot resolve -externalip address: '%s' + -externalip adresi çözümlenemedi: '%s' + + + + Cannot write default address + Varsayılan adres yazılamadı + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Cüzdanın muamele listesini temizle (tanı aracı; -rescan ima eder) + + + + Collateral is not valid. + + + + + Collateral not valid. + + + + + Connect only to the specified node(s) + Sadece belirtilen düğüme veya düğümlere bağlan + + + + Connect through SOCKS proxy + SOCKS vekil sunucusuyla bağlan + + + + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) + + + + + Connect to KeePassHttp on port <port> (default: 19455) + + + + + Connect to a node to retrieve peer addresses, and disconnect + Eş adresleri elde etmek için bir düğüme bağlan ve ardından bağlantıyı kes + + + + Connection options: + Bağlantı seçenekleri: + + + + Corrupted block database detected + Bozuk blok veritabanı tespit edildi + + + + Dash Core Daemon + + + + + Dash Core RPC client version + + + + + Darksend is disabled. + + + + + Darksend options: + + + + + Debugging/Testing options: + Hata ayıklama/deneme seçenekleri: + + + + Disable safemode, override a real safe mode event (default: 0) + Güvenli kipi devre dışı bırak, gerçek bir güvenli olayı geçersiz kıl (varsayılan: 0) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Kendi IP adresini keşfet (varsayılan: dinlenildiğinde ve -externalip yoksa 1) + + + + Do not load the wallet and disable wallet RPC calls + Cüzdanı yükleme ve cüzdan RPC çağrılarını devre dışı bırak + + + + Do you want to rebuild the block database now? + Blok veritabanını şimdi yeniden inşa etmek istiyor musunuz? + + + + Done loading + Yükleme tamamlandı + + + + Downgrading and trying again. + + + + + Enable the client to act as a masternode (0-1, default: 0) + + + + + Entries are full. + + + + + Error connecting to masternode. + + + + + Error initializing block database + Blok veritabanını başlatılırken bir hata meydana geldi + + + + Error initializing wallet database environment %s! + %s cüzdan veritabanı ortamının başlatılmasında hata meydana geldi! + + + + Error loading block database + Blok veritabanının yüklenmesinde hata + + + + Error loading wallet.dat + wallet.dat dosyasının yüklenmesinde hata oluştu + + + + Error loading wallet.dat: Wallet corrupted + wallet.dat dosyasının yüklenmesinde hata oluştu: bozuk cüzdan + + + + Error loading wallet.dat: Wallet requires newer version of Dash + + + + + Error opening block database + Blok veritabanının açılışı sırasında hata + + + + Error reading from database, shutting down. + + + + + Error recovering public key. + + + + + Error + Hata + + + + Error: Disk space is low! + Hata: Disk alanı düşük! + + + + Error: Wallet locked, unable to create transaction! + Hata: Cüzdan kilitli, muamele oluşturulamadı! + + + + Error: You already have pending entries in the Darksend pool + + + + + Error: system error: + Hata: sistem hatası: + + + + Failed to listen on any port. Use -listen=0 if you want this. + Herhangi bir portun dinlenmesi başarısız oldu. Bunu istiyorsanız -listen=0 seçeneğini kullanınız. + + + + Failed to read block info + Blok verileri okunamadı + + + + Failed to read block + Blok okunamadı + + + + Failed to sync block index + Blok indeksi eşleştirilemedi + + + + Failed to write block index + Blok indeksi yazılamadı + + + + Failed to write block info + Blok verileri yazılamadı + + + + Failed to write block + Blok yazılamadı + + + + Failed to write file info + Dosya verileri yazılamadı + + + + Failed to write to coin database + Madenî para veritabanına yazılamadı + + + + Failed to write transaction index + Muamele indeksi yazılamadı + + + + Failed to write undo data + Geri alma verilerinin yazılamadı + + + + Fee per kB to add to transactions you send + Yolladığınız muameleler için eklenecek kB başı ücret + + + + Fees smaller than this are considered zero fee (for relaying) (default: + Bundan düşük ücretler sıfır değerinde sayılacaktır (aktarım için) (varsayılan: + + + + Force safe mode (default: 0) + Güvenli kipi zorla (varsayılan: 0) + + + + Generate coins (default: 0) + Bitcoin oluştur (varsayılan: 0) + + + + Get help for a command + Bir komut için yardım al + + + + How many blocks to check at startup (default: 288, 0 = all) + Başlangıçta kontrol edilecek blok sayısı (varsayılan: 288, 0 = hepsi) + + + + If <category> is not supplied, output all debugging information. + <kategori> sağlanmamışsa tüm hata ayıklama verilerini dök. + + + + Ignore masternodes less than version (example: 70050; default : 0) + + + + + Importing... + İçe aktarılıyor... + + + + Imports blocks from external blk000??.dat file + Harici blk000??.dat dosyasından blokları içe aktarır + + + + Incompatible mode. + + + + + Incompatible version. + + + + + Incorrect or no genesis block found. Wrong datadir for network? + Yanlış ya da bulunamamış doğuş bloku. Şebeke için yanlış veri klasörü mü? + + + + Information + Bilgi + + + + Initialization sanity check failed. Dash Core is shutting down. + + + + + Input is not valid. + + + + + InstantX options: + + + + + Insufficient funds + Yetersiz bakiye + + + + Insufficient funds. + + + + + Invalid -onion address: '%s' + Geçersiz -onion adresi: '%s' + + + + Invalid -proxy address: '%s' + Geçersiz -proxy adresi: '%s' + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + -minrelaytxfee=<amount> için geçersiz meblağ: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + -mintxfee=<amount> için geçersiz meblağ: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + -paytxfee=<meblağ> için geçersiz meblağ: '%s' + + + + Invalid amount + Geçersiz meblağ + + + + Invalid masternodeprivkey. Please see documenation. + + + + + Invalid private key. + + + + + Invalid script detected. + + + + + KeePassHttp id for the established association + + + + + KeePassHttp key for AES encrypted communication with KeePass + + + + + Keep N dash anonymized (default: 0) + + + + + Keep at most <n> unconnectable blocks in memory (default: %u) + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Last Darksend was too recent. + + + + + Last successful darksend action was too recent. + + + + + Limit size of signature cache to <n> entries (default: 50000) + İmza arabelleğinin boyutunu <n> unsurla sınırla (varsayılan: 50000) + + + + List commands + Komutları listele + + + + Listen for connections on <port> (default: 9999 or testnet: 19999) + + + + + Loading addresses... + Adresler yükleniyor... + + + + Loading block index... + Blok indeksi yükleniyor... + + + + Loading masternode list... + + + + + Loading wallet... (%3.2f %%) + + + + + Loading wallet... + Cüzdan yükleniyor... + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + Blok oluşturulduğunda muamele önceliğini ve kB başı ücreti kütüğe al (varsayılan: 0) + + + + Maintain a full transaction index (default: 0) + Muamelelerin tamamının indeksini tut (varsayılan: 0) + + + + Maintain at most <n> connections to peers (default: 125) + Eşler ile en çok <n> adet bağlantı kur (varsayılan: 125) + + + + Masternode options: + + + + + Masternode queue is full. + + + + + Masternode: + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Bağlantı başına azami alım tamponu, <n>*1000 bayt (varsayılan: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Bağlantı başına azami yollama tamponu, <n>*1000 bayt (varsayılan: 1000) + + + + Missing input transaction information. + + + + + No compatible masternode found. + + + + + No funds detected in need of denominating. + + + + + No masternodes detected. + + + + + No matching denominations found for mixing. + + + + + Non-standard public key detected. + + + + + Not compatible with existing transactions. + + + + + Not enough file descriptors available. + Kafi derecede dosya tanımlayıcıları mevcut değil. + + + + Not in the masternode list. + + + + + Only accept block chain matching built-in checkpoints (default: 1) + Sadece yerleşik kontrol noktalarıyla eşleşen blok zincirini kabul et (varsayılan: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Sadece <net> şebekesindeki düğümlere bağlan (IPv4, IPv6 ya da Tor) + + + + Options: + Seçenekler: + + + + Password for JSON-RPC connections + JSON-RPC bağlantıları için parola + + + + Prepend debug output with timestamp (default: 1) + Hata ayıklama verilerinin önüne zaman damgası ekle (varsayılan: 1) + + + + Print block on startup, if found in block index + Başlangıçta bloğu göster, blok indeksinde bulunduysa + + + + Print block tree on startup (default: 0) + Başlangıçta blok ağacını göster (varsayılan: 0) + + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + RPC SSL seçenekleri: (SSL kurulumu yönergeleri için Bitcoin vikisine bakınız) + + + + RPC client options: + RPC istemci seçenekleri: + + + + RPC server options: + RPC sunucu seçenekleri: + + + + Randomly drop 1 of every <n> network messages + Her <n> şebeke mesajından rastgele 1 mesajı görmezden gel + + + + Randomly fuzz 1 of every <n> network messages + Her <n> şebeke mesajından rastgele birini bulanıklaştır + + + + Rebuild block chain index from current blk000??.dat files + Blok zinciri indeksini güncel blk000??.dat dosyalarından tekrar inşa et + + + + Rescan the block chain for missing wallet transactions + Blok zincirini eksik cüzdan muameleleri için tekrar tara + + + + Rescanning... + Yeniden tarama... + + + + Run a thread to flush wallet periodically (default: 1) + Periyodik olarak cüdanı diske yazdırmak için bir iş parçacığı çalıştır (varsayılan: 1) + + + + Run in the background as a daemon and accept commands + Arka planda daemon (servis) olarak çalış ve komutları kabul et + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL seçenekleri: (SSL kurulum bilgisi için Bitcoin vikisine bakınız) + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + -proxy için SOCKS sürümünü seç (4 veya 5, varsayılan: 5) + + + + Send command to Dash Core + + + + + Send commands to node running on <ip> (default: 127.0.0.1) + Şu <ip> adresinde (varsayılan: 127.0.0.1) çalışan düğüme komut yolla + + + + Send trace/debug info to console instead of debug.log file + Trace/hata ayıklama verilerini debug.log dosyası yerine konsola gönder + + + + Server certificate file (default: server.cert) + Sunucu sertifika dosyası (varsayılan: server.cert) + + + + Server private key (default: server.pem) + Sunucu özel anahtarı (varsayılan: server.pem) + + + + Session not complete! + + + + + Session timed out (30 seconds), please resubmit. + + + + + Set database cache size in megabytes (%d to %d, default: %d) + Veritabanı önbellek boyutunu megabayt olarak belirt (%d ilâ %d, varsayılan: %d) + + + + Set key pool size to <n> (default: 100) + Anahtar alan boyutunu <n> değerine ayarla (varsayılan: 100) + + + + Set maximum block size in bytes (default: %d) + Azami blok boyutunu bayt olarak ayarla (varsayılan: %d) + + + + Set minimum block size in bytes (default: 0) + Bayt olarak asgari blok boyutunu tanımla (varsayılan: 0) + + + + Set the masternode private key + + + + + Set the number of threads to service RPC calls (default: 4) + RPC aramaları için iş parçacığı sayısını belirle (varsayılan: 4) + + + + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + Cüzdan veritabanı ortamında DB_PRIVATE bayrağını koyar (varsayılan: 1) + + + + Show all debugging options (usage: --help -help-debug) + Tüm hata ayıklama seçeneklerini göster (kullanımı: --help -help-debug) + + + + Show benchmark information (default: 0) + Denektaşı verilerini göster (varsayılan: 0) + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + İstemci başlatıldığında debug.log dosyasını küçült (varsayılan: -debug bulunmadığında 1) + + + + Signing failed. + + + + + Signing timed out, please resubmit. + + + + + Signing transaction failed + Muamelenin imzalanması başarısız oldu + + + + Specify configuration file (default: dash.conf) + + + + + Specify connection timeout in milliseconds (default: 5000) + Bağlantı zaman aşım süresini milisaniye olarak belirt (varsayılan: 5000) + + + + Specify data directory + Veri dizinini belirt + + + + Specify masternode configuration file (default: masternode.conf) + + + + + Specify pid file (default: dashd.pid) + + + + + Specify wallet file (within data directory) + Cüzdan dosyası belirtiniz (veri klasörünün içinde) + + + + Specify your own public address + Kendi genel adresinizi tanımlayın + + + + Spend unconfirmed change when sending transactions (default: 1) + Gönderme muamelelerinde teyit edilmemiş para üstünü harca (varsayılan: 1) + + + + Start Dash Core Daemon + + + + + System error: + Sistem hatası: + + + + This help message + Bu yardım mesajı + + + + This is intended for regression testing tools and app development. + Bu, regresyon deneme araçları ve uygulama geliştirmesi için tasarlanmıştır. + + + + This is not a masternode. + + + + + Threshold for disconnecting misbehaving peers (default: 100) + Aksaklık gösteren eşlerle bağlantıyı kesme sınırı (varsayılan: 100) + + + + To use the %s option + %s seçeneğini kullanmak için + + + + Transaction amount too small + Muamele meblağı çok düşük + + + + Transaction amounts must be positive + Muamele tutarının pozitif olması lazımdır + + + + Transaction created successfully. + + + + + Transaction fees are too high. + + + + + Transaction not valid. + + + + + Transaction too large + Muamele çok büyük + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Unable to sign masternode payment winner, wrong key? + + + + + Unable to sign spork message, wrong key? + + + + + Unknown -socks proxy version requested: %i + Bilinmeyen bir -socks vekil sürümü talep edildi: %i + + + + Unknown network specified in -onlynet: '%s' + -onlynet için bilinmeyen bir şebeke belirtildi: '%s' + + + + Upgrade wallet to latest format + Cüzdanı en yeni biçime güncelle + + + + Usage (deprecated, use dash-cli): + + + + + Usage: + Kullanım: + + + + Use KeePass 2 integration using KeePassHttp plugin (default: 0) + + + + + Use N separate masternodes to anonymize funds (2-8, default: 2) + + + + + Use OpenSSL (https) for JSON-RPC connections + JSON-RPC bağlantıları için OpenSSL (https) kullan + + + + Use UPnP to map the listening port (default: 0) + Dinlenecek portu haritalamak için UPnP kullan (varsayılan: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + Dinlenecek portu haritalamak için UPnP kullan (varsayılan: dinlenildiğinde 1) + + + + Use the test network + Deneme şebekesini kullan + + + + Username for JSON-RPC connections + JSON-RPC bağlantıları için kullanıcı ismi + + + + Value more than Darksend pool maximum allows. + + + + + Verifying blocks... + Bloklar kontrol ediliyor... + + + + Verifying wallet... + Cüzdan kontrol ediliyor... + + + + Wait for RPC server to start + RPC sunucusunun başlamasını bekle + + + + Wallet %s resides outside data directory %s + %s cüzdan %s veri klasörünün dışında bulunuyor + + + + Wallet is locked. + + + + + Wallet needed to be rewritten: restart Dash to complete + + + + + Wallet options: + Cüzdan seçenekleri: + + + + Warning + Uyarı + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + Uyarı: eskimiş seçenek -debugnet görmezden gelinir, -debug=net kullanınız + + + + Warning: This version is obsolete, upgrade required! + Uyarı: Bu sürüm çok eskidir, güncellemeniz gerekir! + + + Wrong state. + + + + + You need to rebuild the database using -reindex to change -txindex + -txindex'i değiştirmek için veritabanını -reindex kullanarak tekrar inşa etmeniz gerekmektedir + + + + Zapping all transactions from wallet... + Cüzdandaki tüm muameleler kaldırılıyor... + + + + on startup + başlangıçta + + + + version + sürüm + + + + wallet.dat corrupt, salvage failed + wallet.dat bozuk, geri kazanım başarısız oldu + + + \ No newline at end of file diff --git a/src/qt/locale/dash_vi.ts b/src/qt/locale/dash_vi.ts new file mode 100644 index 0000000000..403a1f05b6 --- /dev/null +++ b/src/qt/locale/dash_vi.ts @@ -0,0 +1,5292 @@ + + + AboutDialog + + + About Dash Core + Giới thiệu về Dash Core + + + + <b>Dash Core</b> version + <b>Dash Core</b> phiên bản + + + + Copyright &copy; 2009-2014 The Bitcoin Core developers. +Copyright &copy; 2014-YYYY The Dash Core developers. + Bản quyền &copy; 2009-2014 Nhóm phát triển Bitcoin Core. +Bản quyền &copy; 2014-YYYY Nhóm phát triển Dash Core. + + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +Đây là phần mềm thử nghiệm. + +Phát hành dưới giấy phép phần mềm MIT/X11, hãy xem file đi kèm theo đây hoặc http://www.opensource.org/licenses/mit-license.php. + +Sản phẩm này bao gồm phần mềm được phát triển bởi dự án OpenSSL cho việc sử dụng trong bộ công cụ OpenSSL Toolkit (http://www.openssl.org/) và phần mềm mã hoá được viết bởi Eric Young (eay@cryptsoft.com) và phần mềm UPnP được viết bởi Thomas Bernard. + + + + + Copyright + Bản quyền + + + + The Bitcoin Core developers + Nhóm phát triển Bitcoin Core + + + + The Dash Core developers + Nhóm phát triển Dash Core + + + + + (%1-bit) + (%1-bit) + + + + AddressBookPage + + + Double-click to edit address or label + Nháy đúp để sửa địa chỉ hoặc nhãn + + + + Create a new address + Tạo một địa chỉ mới + + + + &New + &Mới + + + + Copy the currently selected address to the system clipboard + Chép địa chỉ đã được chọn vào vùng đệm clipboard + + + + &Copy + &Sao chép + + + + Delete the currently selected address from the list + Xoá địa chỉ đang được chọn khỏi danh sách + + + + &Delete + &Xoá + + + + Export the data in the current tab to a file + Kết xuất dữ liệu trong tab này sang một file + + + + &Export + &Kết xuất + + + + C&lose + Đó&ng + + + + Choose the address to send coins to + Chọn địa chỉ để gửi tiền đến + + + + Choose the address to receive coins with + Chọn địa chỉ để nhận tiền + + + + C&hoose + C&họn + + + + Sending addresses + Đia chỉ gửi + + + + Receiving addresses + Địa chỉ nhận + + + + These are your Dash addresses for sending payments. Always check the amount and the receiving address before sending coins. + Đây là các địa chỉ Dash của bạn để gửi thanh toán. Luôn luôn kiểm tra số tiền và địa chỉ nhận trước khi bạn gửi tiền. + + + + These are your Dash addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Đây là các địa chỉ Dash của bạn để nhận thanh toán. Gợi ý là sử dụng một địa chỉ nhận mới cho mỗi giao dịch. + + + + &Copy Address + &Sao chép Địa chỉ + + + + Copy &Label + Sao chép &Nhãn + + + + &Edit + &Sửa + + + + Export Address List + Kết xuất danh sách Địa chỉ + + + + Comma separated file (*.csv) + File định dạng phân cách bởi dấu phẩy (*.csv) + + + + Exporting Failed + Kết xuất không thành công + + + + There was an error trying to save the address list to %1. + Có một lỗi xảy ra khi lưu danh sách địa chỉ vào %1. + + + + AddressTableModel + + + Label + Nhãn + + + + Address + Địa chỉ + + + + (no label) + (không có nhãn) + + + + AskPassphraseDialog + + + Passphrase Dialog + Khung hội thoại mật khẩu + + + + Enter passphrase + Mời nhập mật khẩu + + + + New passphrase + Mật khẩu mới + + + + Repeat new passphrase + Nhập lại mật khẩu mới + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Phục vụ để tắt tính năng chuyển tiền vô giá trị khi tài khoản của hệ điều hành bị xâm nhập. Không cung cấp đủ an ninh thực sự. + + + + For anonymization only + Chỉ dùng cho mục đích vô danh + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Nhập mật khẩu mới cho ví. <br/>Hãy sử dụng mật khẩu có <b>10 các ký tự ngẫu nhiên hoặc nhiều hơn</b>, hay <b>8 từ hoặc nhiều hơn</b>. + + + + Encrypt wallet + Mã hoá ví + + + + This operation needs your wallet passphrase to unlock the wallet. + Công việc này cần mật khẩu ví của bạn để mở khoá ví. + + + + Unlock wallet + Mở khoá ví + + + + This operation needs your wallet passphrase to decrypt the wallet. + Công việc này cần mật khẩu ví của bạn để giải mã ví. + + + + Decrypt wallet + Giải mã ví + + + + Change passphrase + Đổi mật khẩu + + + + Enter the old and new passphrase to the wallet. + Hãy nhập mật khẩu cũ và mật khẩu mới cho ví. + + + + Confirm wallet encryption + Xác nhận mã hoá ví + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + Chú ý: Nếu bạn mã hoá ví và mất mật khẩu, bạn sẽ <b>MẤT TẤT CẢ DASH CỦA BẠN</b>! + + + + Are you sure you wish to encrypt your wallet? + Bạn có chắc là mình muốn mã hoá ví? + + + + + Wallet encrypted + Ví đã được mã hoá. + + + + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + Dash sẽ được đóng lại bây giờ để hoàn thành tiến trình mã hoá. Hãy nhớ rằng mã hoá ví của bạn không thể hoàn toàn bảo vệ dash khỏi bị trộm bởi những mã độc lây nhiễm vào máy tính của bạn. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + QUAN TRỌNG: Bất kỳ sao lưu nào mà bạn đã thực hiện trước với ví của bạn sẽ nên được thay thế bởi tệp Ví mới, được mã hoá. Vì lý do an ninh, những tệp sao lưu trước của ví không mã hoá sẽ trở nên vô nghĩa khi bạn bắt đầu sử dụng ví mới, có mã hoá. + + + + + + + Wallet encryption failed + Mã hoá ví không thành công + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Mã hoá ví bị lỗi vì lỗi bên trong của phần mềm. Ví của bạn không được mã hoá. + + + + + The supplied passphrases do not match. + Mật khẩu bạn cung cấp không tương xứng. + + + + Wallet unlock failed + Mở khoá ví không thành công + + + + + + The passphrase entered for the wallet decryption was incorrect. + Mật khẩu bạn nhập để giải mã ví không chính xác. + + + + Wallet decryption failed + Giải mã ví không thành công + + + + Wallet passphrase was successfully changed. + Mật khẩu ví đã được đổi thành công. + + + + + Warning: The Caps Lock key is on! + Cảnh báo: Khoá Caps Lock đang được bật! + + + + BitcoinGUI + + + Dash Core + Dash Core + + + + Wallet + + + + + Node + Nút + + + + + [testnet] + [mạng thử] + + + + &Overview + &Tổng thể + + + + Show general overview of wallet + Hiển thị thông tin tổng thể của ví + + + + &Send + &Gửi + + + + Send coins to a Dash address + Gửi tiền vào địa chỉ Dash + + + + &Receive + &Nhận + + + + Request payments (generates QR codes and dash: URIs) + Yêu cầu thanh toán (sinh mã QR và dash: URIs) + + + + &Transactions + Các &Giao dịch + + + + Browse transaction history + Xem lịch sử giao dịch + + + + E&xit + T&hoát + + + + Quit application + Thoát ứng dụng + + + + + &About Dash Core + &Về Dash Core + + + + Show information about Dash + Hiển thị thông tin giới thiệu về Dash + + + + + About &Qt + Về &QT + + + + Show information about Qt + Hiển thị thông tin giới thiệu về Qt + + + + &Options... + &Tuỳ chọn... + + + + Modify configuration options for Dash + Thay đổi tuỳ chọn cấu hình cho Dash + + + + + &Show / Hide + Ẩ&n / Hiện + + + + Show or hide the main Window + Hiển thị hoặc ẩn cửa sổ chính + + + + &Encrypt Wallet... + &Mã hoá Ví... + + + + Encrypt the private keys that belong to your wallet + Mã hoá khoá riêng mà thuộc về ví của bạn + + + + &Backup Wallet... + &Sao lưu Ví... + + + + Backup wallet to another location + Sao lưu ví vào vị trí khác + + + + &Change Passphrase... + Đổi &Mật khẩu... + + + + Change the passphrase used for wallet encryption + Đổi mật khẩu dùng để mã hoá ví + + + + &Unlock Wallet... + &Mở khoá Ví... + + + + Unlock wallet + Mở khoá ví + + + + &Lock Wallet + &Khoá Ví + + + + Sign &message... + Ký vào &thông điệp... + + + + Sign messages with your Dash addresses to prove you own them + Ký vào thông điệp với địa chỉ Dash để chứng minh bạn là chủ của chúng + + + + &Verify message... + &Kiểm tra thông điệp... + + + + Verify messages to ensure they were signed with specified Dash addresses + Kiểm tra thông điệp để đảm bảo rằng nó đã được ký bằng địa chỉ Dash nhất định + + + + &Information + &Thông tin + + + + Show diagnostic information + Hiển thị thông tin chuẩn đoán + + + + &Debug console + Giao diện gỡ rối + + + + Open debugging console + Mở giao diện gỡ rối + + + + &Network Monitor + Theo dõi &Mạng + + + + Show network monitor + Hiển thị thông tin theo dõi mạng + + + + Open &Configuration File + Mở Tệp &Cấu hình + + + + Open configuration file + Mở tệp cấu hình + + + + &Sending addresses... + &Gửi địa chỉ... + + + + Show the list of used sending addresses and labels + Hiển thị danh sách các địa chỉ đã sử dụng và các nhãn + + + + &Receiving addresses... + Địa chỉ nhận... + + + + Show the list of used receiving addresses and labels + Hiển thị danh sách các địa chỉ đã sử dụng để nhận và các nhãn + + + + Open &URI... + Mở &URI... + + + + Open a dash: URI or payment request + Mở một dash: URI hoặc một yêu cầu thanh toán + + + + &Command-line options + &Các Tuỳ chọn dòng lệnh + + + + Show the Dash Core help message to get a list with possible Dash command-line options + Hiển thị hướng dẫn của Dash Core để có danh sách đầy đủ các tuỳ chọn dòng lệnh của Dash. + + + + &File + &Tệp + + + + &Settings + &Thiết đặt + + + + &Tools + &Công cụ + + + + &Help + &Trợ giúp + + + + Tabs toolbar + Bảng Thanh công cụ + + + + + Dash client + Phần mềm Dash + + + + %n active connection(s) to Dash network + %n (các) kết nối hoạt động tới mạng lưới Dash + + + + Synchronizing with network... + Đang đồng bộ với mạng lưới... + + + + Importing blocks from disk... + Nhập các khối từ đĩa... + + + + Reindexing blocks on disk... + Sắp xếp lại các khối trên đĩa... + + + + No block source available... + Không thấy nguồn sẵn sàng của các khối... + + + + Processed %1 blocks of transaction history. + Đang xử lý %1 các khối của lịch sử giao dịch. + + + + Up to date + Mới nhất + + + + %n hour(s) + %n giờ + + + + %n day(s) + %n ngày + + + + + %n week(s) + %n tuần + + + + %1 and %2 + %1 và %2 + + + + %n year(s) + %n năm + + + + %1 behind + %1 đằng sau + + + + Catching up... + Đang nạp bộ đệm... + + + + Last received block was generated %1 ago. + Khối vừa nhận đã được sinh ra từ %1. + + + + Transactions after this will not yet be visible. + Các giao dịch sau đây sẽ chưa thể thấy được. + + + + Dash + Dash + + + + Error + Lỗi + + + + Warning + Cảnh báo + + + + Information + Thông tin + + + + Sent transaction + Giao dịch gửi đi + + + + Incoming transaction + Giao dịch nhận về + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Ngày: %1 +Số tiền: %2 +Kiểu: %3 +Địa chỉ: %4 + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Ví <b>đã được mã hoá</b> và hiện tại <b>đã được mở</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only + Ví <b>đã được mã hoá</b> và hiện tại <b>đã được mở</b> chỉ để cho việc ẩn danh + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Ví <b>đã được mã hoá</b> và hiện tại <b>đã được khoá</b> + + + + A fatal error occurred. Dash can no longer continue safely and will quit. + Một lỗi nghiêm trọng đã xảy ra. Dash không thể tiếp tục một cách an toàn và sẽ thoát. + + + + ClientModel + + + Network Alert + Cảnh báo mạng + + + + CoinControlDialog + + + Coin Control Address Selection + Chọn địa chỉ Coin Control + + + + Quantity: + Số lượng: + + + + Bytes: + Bytes: + + + + Amount: + Số tiền: + + + + Priority: + Ưu tiên: + + + + Fee: + Phí: + + + + Low Output: + Low Output: + + + + After Fee: + Phí sau: + + + + Change: + Trả lại: + + + + (un)select all + (bỏ) chọn tất cả + + + + Tree mode + Kiểu cây + + + + List mode + Kiểu danh sách + + + + (1 locked) + (1 khoá) + + + + Amount + Số tiền + + + + Label + Nhãn + + + + Address + Địa chỉ + + + + Darksend Rounds + Số vòng Darksend + + + + Date + Ngày + + + + Confirmations + Lượt xác nhận + + + + Confirmed + Đã được xác nhận + + + + Priority + Ưu tiên + + + + Copy address + Sao chép địa chỉ + + + + Copy label + Sao chép nhãn + + + + + Copy amount + Sao chép số tiền + + + + Copy transaction ID + Sao chép mã giao dịch + + + + Lock unspent + Khoá khoản chưa tiêu + + + + Unlock unspent + Mở khoản chưa tiêu + + + + Copy quantity + Sao chép số lượng + + + + Copy fee + Sao chép phí + + + + Copy after fee + Sao chép giá trị sau tính phí + + + + Copy bytes + Sao chép các bytes + + + + Copy priority + Sao chép ưu tiên + + + + Copy low output + Sao chép đầu ra thấp + + + + Copy change + Sao chép tiền trả lại + + + + highest + cao nhất + + + + higher + cao hơn + + + + high + cao + + + + medium-high + cao-vừa + + + + n/a + không áp dụng + + + + + medium + vừa + + + + low-medium + thấp-vừa + + + + low + thấp + + + + lower + thấp hơn + + + + lowest + thấp nhất + + + + (%1 locked) + (%1 được khoá) + + + + none + không có + + + + Dust + Bụi + + + + yes + + + + + + no + không + + + + This label turns red, if the transaction size is greater than 1000 bytes. + Nhãn này chuyển sang đỏ, nếu kích thước giao dịch lớn hơn 1000 bytes. + + + + + This means a fee of at least %1 per kB is required. + Điều này có nghĩa là cần một mức phí ít nhất %1 cho mỗi kB. + + + + Can vary +/- 1 byte per input. + Có thể thay đổi +/-1 byte cho mỗi đầu vào + + + + Transactions with higher priority are more likely to get included into a block. + Giao dịch với độ ưu tiên cao hơn có cơ hội nhiều hơn được đưa vào khối. + + + + This label turns red, if the priority is smaller than "medium". + Nhãn này chuyển sang đỏ, nếu ưu tiên thấp hơn "trung bình". + + + + This label turns red, if any recipient receives an amount smaller than %1. + Nhãn này chuyển sang đỏ, nếu bất kỳ bên nhận nào nhận một số tiền nhỏ hơn %1. + + + + + This means a fee of at least %1 is required. + Có nghĩa là cần mức phí ít nhất 1%. + + + + Amounts below 0.546 times the minimum relay fee are shown as dust. + Số tiền dưới 0.546 lần chi phí tiếp sức tối thiểu được coi như là bụi. + + + + This label turns red, if the change is smaller than %1. + Nhãn này sẽ chuyển sang đỏ, nếu phần trả lại nhỏ hơn %1. + + + + + (no label) + (không có nhãn) + + + + change from %1 (%2) + phần trả lại từ %1 (%2) + + + + (change) + (phần trả lại) + + + + DarksendConfig + + + Configure Darksend + Cấu hình Darksend + + + + Basic Privacy + Mức Riêng tư Cơ bản + + + + High Privacy + Mức Riêng tư Cao + + + + Maximum Privacy + Mức Riêng tư Tối đa + + + + Please select a privacy level. + Hãy chọn mức độ riêng tư. + + + + Use 2 separate masternodes to mix funds up to 1000 DASH + Sử dụng 2 masternode khác nhau để trộn số tiền lên đến 1000 DASH + + + + Use 8 separate masternodes to mix funds up to 1000 DASH + Sử dụng 8 masternode khác nhau để trộn số tiền lên đến 1000 DASH + + + + Use 16 separate masternodes + Sử dụng 16 masternode khác nhau + + + + This option is the quickest and will cost about ~0.025 DASH to anonymize 1000 DASH + Tuỳ chọn này là nhanh nhất và sẽ mất chi phí khoảng ~0.025 DASH để ẩn danh 1000 DASH + + + + This option is moderately fast and will cost about 0.05 DASH to anonymize 1000 DASH + Tuỳ chọn này là tương đối nhanh và sẽ mất chi phí khoảng ~0.05 DASH để ẩn danh 1000 DASH + + + + 0.1 DASH per 1000 DASH you anonymize. + 0.1 DASH cho mỗi 1000 DASH bạn muốn ẩn danh. + + + + This is the slowest and most secure option. Using maximum anonymity will cost + Đây là tuỳ chọn chậm nhất và an toàn nhất. Sử dụng mức vô danh cao nhất sẽ tốn kém + + + + + + Darksend Configuration + Cấu hình Darksend + + + + Darksend was successfully set to basic (%1 and 2 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend được thiết lập thành công về mức cơ bản (%1 và 2 vòng). Bạn có thể thay đổi nó bất cứ thời gian nào bằng cách mở màn hình cấu hình Dash. + + + + Darksend was successfully set to high (%1 and 8 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend được thiết lập thành công về mức cao (%1 và 8 vòng). Bạn có thể thay đổi nó bất cứ thời gian nào bằng cách mở màn hình cấu hình Dash. + + + + Darksend was successfully set to maximum (%1 and 16 rounds). You can change this at any time by opening Dash's configuration screen. + Darksend được thiết lập thành công về mức tối đa (%1 và 16 vòng). Bạn có thể thay đổi nó bất cứ thời gian nào bằng cách mở màn hình cấu hình Dash. + + + + EditAddressDialog + + + Edit Address + Sửa địa chỉ + + + + &Label + &Nhãn + + + + The label associated with this address list entry + Nhãn tương ứng với địa chỉ này trong danh sách đầu vào + + + + &Address + Địa &chỉ + + + + The address associated with this address list entry. This can only be modified for sending addresses. + Địa chỉ tương ứng với địa chỉ này trong danh sách đầu vào. Chỉ có thể thay đổi địa chỉ gửi đi. + + + + New receiving address + Địa chỉ nhận mới + + + + New sending address + Địa chỉ gửi mới + + + + Edit receiving address + Sửa địa chỉ nhận + + + + Edit sending address + Sửa địa chỉ gửi + + + + The entered address "%1" is not a valid Dash address. + Địa chỉ vừa nhập "%1" không phải địa chỉ Dash hợp lệ. + + + + The entered address "%1" is already in the address book. + Địa chỉ vừa nhập "%1" đã có trong danh sách địa chỉ. + + + + Could not unlock wallet. + Không thể mở khoá ví. + + + + New key generation failed. + Sinh khoá mới không thành công. + + + + FreespaceChecker + + + A new data directory will be created. + Một thư mục dữ liệu mớ đã được tạo. + + + + name + tên + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Thư mục đã tồn tại. Thêm %1 nếu bạn định tạo một thư mục mới tại đây. + + + + Path already exists, and is not a directory. + Đường dẫn đã tồn tại, và nó không phải là thư mục. + + + + Cannot create data directory here. + Không thể tạo thư mục dữ liệu ở đây. + + + + HelpMessageDialog + + + Dash Core - Command-line options + Dash Core - Các tuỳ chọn dòng lệnh + + + + Dash Core + Dash Core + + + + version + phiên bản + + + + Usage: + Cách dùng: + + + + command-line options + tuỳ chọn dòng lệnh + + + + UI options + Tuỳ chọn giao diện + + + + Choose data directory on startup (default: 0) + Chọn thư mục dữ liệu khi khởi động (ngầm định: 0) + + + + Set language, for example "de_DE" (default: system locale) + Chọn ngôn ngữ, ví dụ "vn_VN" (ngầm định: theo hệ thống) + + + + Start minimized + Bắt đầu thu nhỏ + + + + Set SSL root certificates for payment request (default: -system-) + Đặt chứng thực gốc cho yêu cầu thanh toán (ngầm định: -hệ thống-) + + + + Show splash screen on startup (default: 1) + Hiển thị màn hình giới thiệu khi khởi động (ngầm định: 1) + + + + Intro + + + Welcome + Chào mừng + + + + Welcome to Dash Core. + Chào mừng đến với Dash Core. + + + + As this is the first time the program is launched, you can choose where Dash Core will store its data. + Đây là lần đầu tiên chương trình được khởi động, bạn có thể chọn nơi mà Dash Core sẽ lưu dữ liệu. + + + + Dash Core will download and store a copy of the Dash block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Dash Core sẽ tải và lưu một bản của sổ cái Dash. Ít nhất %1GB dữ liệu sẽ được lưu trong thư mục này, và nó sẽ tăng lên theo thời gian. Ví của bạn cũng sẽ được lưu trong thư mục này. + + + + Use the default data directory + Sử dụng thư mục dữ liệu ngầm định + + + + Use a custom data directory: + Sử dụng thư mục dữ liệu tuỳ chọn: + + + + Dash + Dash + + + + Error: Specified data directory "%1" can not be created. + Lỗi: Thư mục dữ liệu được chọn "%1" không thể được tạo. + + + + Error + Lỗi + + + + GB of free space available + GB không gian trống còn lại + + + + (of %1GB needed) + (của %1GB cần thiết) + + + + OpenURIDialog + + + Open URI + Mở URI + + + + Open payment request from URI or file + Mở yêu cầu thanh toán từ URI hoặc file + + + + URI: + URI: + + + + Select payment request file + Chọn file yêu cầ thanh toán + + + + Select payment request file to open + Chọn tệp yêu cầu thanh toán để mở + + + + OptionsDialog + + + Options + Các tuỳ chọn + + + + &Main + &Chính + + + + Automatically start Dash after logging in to the system. + Tự động khởi động Dash sau khi đăng nhập hệ thống. + + + + &Start Dash on system login + &Khởi động Dash khi đăng nhập hệ thống + + + + Size of &database cache + Kích thước của dữ liệu cache + + + + MB + MB + + + + Number of script &verification threads + Số lượng các luồng kịch bản kiểm tra + + + + (0 = auto, <0 = leave that many cores free) + (0 = tự động, <0 = để đó rất nhiều lõi miễn phí) + + + + <html><head/><body><p>This setting determines the amount of individual masternodes that an input will be anonymized through. More rounds of anonymization gives a higher degree of privacy, but also costs more in fees.</p></body></html> + <html><head/><body><p>Thiết lập này xác định số tiền cho mỗi master nodes mà đầu vào thông qua đó được ẩn danh. Càng có nhiều vòng ẩn danh thì sẽ cho mức độ riêng tư càng cao, nhưng nó cũng tốn nhiều phí hơn.</p></body></html> + + + + Darksend rounds to use + Số vòng Darksend sử dụng + + + + This amount acts as a threshold to turn off Darksend once it's reached. + Số lượng này hoạt động như là một ngưỡng để tắt Darksend một khi nó đạt đến. + + + + Amount of Dash to keep anonymized + Lượng Dash muốn giữ vô danh + + + + W&allet + &Ví + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. + Tuỳ chọn phí giao dịch trên kB có thể giúp cho giao dịch của bạn được xử lý nhanh chóng. Hầu hết các giao dịch khoảng 1 kB. + + + + Pay transaction &fee + Trả &phí giao dịch + + + + Expert + Chuyên gia + + + + Whether to show coin control features or not. + Hiển thị hoặc không hiển thị tính năng coin control. + + + + Enable coin &control features + Bật tính năng Coin &control + + + + 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. + Nếu bạn tắt chức năng chi tiêu các khoản tiền trả lại chưa được xác nhận, thì những khoản trả lại đó sẽ không thể sử dụng đến tận khi các giao dịch đó được ít nhất một lần xác nhận. Điều này cũng ảnh hưởng đến cách tính số dư của bạn. + + + + &Spend unconfirmed change + &Tiêu phần trả lại chưa được xác nhận + + + + &Network + &Mạng + + + + Automatically open the Dash client port on the router. This only works when your router supports UPnP and it is enabled. + Tự động mở cổng phần mềm Dash trên rounter. Nó chỉ làm việc khi router của bạn hỗ trợ UPnP và nó phải được bật. + + + + Map port using &UPnP + Ánh xạ cổng sử dụng &UPnP + + + + Connect to the Dash network through a SOCKS proxy. + Kết nối với mạng lưới Dash thông qua một SOCKS proxy. + + + + &Connect through SOCKS proxy (default proxy): + &Kết nối qua SOCKS proxy (proxy ngầm định): + + + + Proxy &IP: + Proxy &IP: + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Địa chỉ IP của proxy (ví dụ: IPv4: 127.0.0.1 / IPv6: ::1) + + + + &Port: + &Cổng: + + + + Port of the proxy (e.g. 9050) + Cổng của proxy (ví dụ: 9050) + + + + SOCKS &Version: + Phiên bản SOCKS: + + + + SOCKS version of the proxy (e.g. 5) + Phiên bản SOCKS của proxy (ví dụ: 5) + + + + &Window + &Cửa sổ + + + + Show only a tray icon after minimizing the window. + Chỉ hiển thị biểu tượng ở khai sau khi thu nhỏ cửa sổ. + + + + &Minimize to the tray instead of the taskbar + Thu &nhỏ về khay thay vì về thanh taskbar + + + + 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. + Thu nhỏ thay vì thoát ứng dụng khi cửa sổ được đóng lại. Khi tuỳ chọn này được bật thì chương trình sẽ chỉ đóng sau khi chọn chức năng Thoát trong menu. + + + + M&inimize on close + Thu &nhỏ khi đóng + + + + &Display + &Hiển thị + + + + User Interface &language: + &Ngôn ngữ người dùng: + + + + The user interface language can be set here. This setting will take effect after restarting Dash. + Ngôn ngữ người dùng có thể thiết lập ở đây. Thiết lập này sẽ có tác dụng sau khi khởi động lại Dash. + + + + Language missing or translation incomplete? Help contributing translations here: +https://www.transifex.com/projects/p/dash/ + Ngôn ngữ ị thiếu hoặc việc dịch chưa hoàn tất? Tham gia dịch giúp tại đây: +https://www.transifex.com/projects/p/dash/ + + + + &Unit to show amounts in: + Đơn vị &hiển thị số lượng: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Chọn đơn vị phân khu mặc định để hiển thị trong giao diện và khi gửi tiền. + + + + Whether to show Dash addresses in the transaction list or not. + Hiển thị hoặc không hiển thị địa chỉ Dash trong danh giao dịch + + + + &Display addresses in transaction list + &Hiển thị địa chỉ trong danh sách giao dịch + + + + + 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 |. + Địa chỉ web của bên thứ ba (VD: chức năng kiểm tra số cái) mà nó xuất hiện trong tab giao dịch giống như các mục trong menu ngữ cảnh. %s trong địa chỉ web được thay thế bởi mã băm giao dịch. Nhiều địa chỉ web được phân cách bởi dấu gạch đứng |. + + + + Third party transaction URLs + URLs của giao dịch bên thứ ba + + + + Active command-line options that override above options: + Kích hoạt các tuỳ chọn dòng lệnh sẽ thay thế cho các tuỳ chọn trên: + + + + Reset all client options to default. + Tái lập lại tất cả các tuỳ chọn về ngầm định. + + + + &Reset Options + &Tái lập Tuỳ chọn + + + + &OK + &OK + + + + &Cancel + &Huỷ + + + + default + ngầm định + + + + none + không có + + + + Confirm options reset + Xác nhận tái lập tuỳ chọn + + + + + Client restart required to activate changes. + Cần phải khởi động phần mềm để kích hoạt các thay đổi. + + + + Client will be shutdown, do you want to proceed? + Phần mềm sẽ được tắt, bạn có muốn tiến hành? + + + + This change would require a client restart. + Thay đổi này có thể cần phải khởi động lại phần mềm. + + + + The supplied proxy address is invalid. + Địa chỉ proxy được cung cấp không hợp lệ. + + + + OverviewPage + + + Form + Biểu mẫu + + + + Wallet + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Dash network after a connection is established, but this process has not completed yet. + Thông tin được hiển thị có thể đã lỗi thời. Ví của bạn sẽ tự động đồng bộ với mạng lưới Dash sau khi kết nối được thiết lập, tuy nhiên quá trình này chưa hoàn thành. + + + + Available: + Sẵn sàng: + + + + Your current spendable balance + Số dư có thể chi tiêu của bạn + + + + Pending: + Đang chờ: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Tổng của những giao dịch chưa được xác nhận, và do đó chưa được tính vào số dư có thể tiêu được + + + + Immature: + Chưa chín muồi: + + + + Mined balance that has not yet matured + Số dư khai thác được chưa được xác nhận đủ + + + + Total: + Tổng: + + + + Your current total balance + Tổng số dư hiện tại của bạn + + + + Status: + Tình trạng: + + + + Enabled/Disabled + Bật/Tắt + + + + Completion: + Hoàn thành: + + + + Darksend Balance: + Số dư cho Darksend: + + + + 0 DASH + 0 DASH + + + + Amount and Rounds: + Số tiền và số vòng: + + + + 0 DASH / 0 Rounds + 0 DASH / 0 Vòng + + + + Submitted Denom: + Mệnh giá được gửi: + + + + The denominations you submitted to the Masternode. To mix, other users must submit the exact same denominations. + Mệnh giá mà bạn gửi cho Masternode. Để trộn, những người dùng khác cũng cần gửi chính xác dùng loại mệnh giá đó. + + + + n/a + không áp dụng + + + + + + + Darksend + Darksend + + + + Start/Stop Mixing + Bắt đầu/Tắt việc trộn + + + + (Last Message) + (Thông điệp cuối) + + + + Try to manually submit a Darksend request. + Thử gửi yêu cầu Darksend bằng tay. + + + + Try Mix + Thử Trộn + + + + Reset the current status of Darksend (can interrupt Darksend if it's in the process of Mixing, which can cost you money!) + Tái lập lại trạng thái hiện tại của Darksend (có thể gián đoạn Darksend nếu nó đang trong quá trình trộn, điều đó có thể làm bạn bị mất tiền!) + + + + Reset + Khởi động lại + + + + <b>Recent transactions</b> + <b>Các giao dịch gần đây</b> + + + + + + out of sync + không đồng bộ + + + + + Disabled + Đã tắt + + + + + + Start Darksend Mixing + Bắt đầu trộn Darksend + + + + + Stop Darksend Mixing + Tắt trộn Darksend + + + + No inputs detected + Phát hiện không có đầu vào + + + + Found unconfirmed denominated outputs, will wait till they confirm to recalculate. + Tìm thấy các mệnh giá đầu ra chưa được xác nhận, sẽ đợi đến khi chúng xác nhận để tính toán lại. + + + + Rounds + Vòng + + + + Enabled + Đã bật + + + + Last Darksend message: + + Thông điệp Darksend cuối cùng: + + + + + + Darksend is idle. + Darksend đang nghỉ. + + + + Mixing in progress... + + + + + Darksend request complete: Your transaction was accepted into the pool! + Yêu cầu Darksend đã hoàn tất: Giao dịch của bạn đã được chấp nhận vào bể trộn! + + + + Submitted following entries to masternode: + Gửi những thành phần sau đến masternode: + + + + + + Submitted to masternode, Waiting for more entries + Đã gửi cho masternode, Đợi các thành phần thêm + + + + Found enough users, signing ... + Đã kiếm đủ người dùng, đang ký ... + + + + Found enough users, signing ( waiting. ) + Đã kiếm đủ người dùng, đang ký (vui lòng đợi.) + + + + Found enough users, signing ( waiting.. ) + Đã kiếm đủ người dùng, đang ký (vui lòng đợi..) + + + + Found enough users, signing ( waiting... ) + Đã kiếm đủ người dùng, đang ký (vui lòng đợi...) + + + + Transmitting final transaction. + Đang gửi giao dịch cuối cùng. + + + + Finalizing transaction. + Đang hoàn tất các giao dịch. + + + + Darksend request incomplete: + Yêu cầu Darksend chưa hoàn thành: + + + + Will retry... + Sẽ thử lại... + + + + Darksend request complete: + Yêu cầu Darksend hoàn thành: + + + + Submitted to masternode, waiting in queue . + Đã gửi đến masternode, đang đợi trong hàng đợi . + + + + Submitted to masternode, waiting in queue .. + Đã gửi đến masternode, đang đợi trong hàng đợi .. + + + + Submitted to masternode, waiting in queue ... + Đã gửi đến masternode, đang đợi trong hàng đợi ... + + + + Unknown state: + Tình trạng không rõ: + + + + N/A + Không áp dụng + + + + Darksend was successfully reset. + Darksend vừa được tái lập thành công. + + + + Darksend requires at least %1 to use. + Darksend cần ít nhất %1 để sử dụng. + + + + Wallet is locked and user declined to unlock. Disabling Darksend. + Ví đã được khoá và người dùng từ chối mở khoá. Đang tắt Darksend. + + + + PaymentServer + + + + + + + + Payment request error + Yêu cầu thanh toán bị lỗi + + + + Cannot start dash: click-to-pay handler + Không thể khởi động dash: trình xử lý click-to-pay + + + + Net manager warning + Cảnh báo quản lý mạng + + + + Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. + Proxy hiện tại không hỗ trợ SOCKS5, nó là cần thiết để cho yêu cầu thanh toán thông qua proxy. + + + + + URI handling + xử lý URI + + + + Payment request fetch URL is invalid: %1 + Yêu cầu thanh toán lấy URL là không hợp lệ: %1 + + + + URI can not be parsed! This can be caused by an invalid Dash address or malformed URI parameters. + URI không thể phân tích. Nó có thể bởi địa chỉ Dash không hợp lệ hoặc thông số URI dị hình. + + + + Payment request file handling + Thanh toán cần file xử lý + + + + Payment request file can not be read or processed! This can be caused by an invalid payment request file. + Tệp yêu cầu thanh toán không thể đọc hoặc xử lý được! Đó có thể là do tệp yêu cầu thanh toán không hợp lệ. + + + + Unverified payment requests to custom payment scripts are unsupported. + Yêu cầu thanh toán chưa được xác minh để tùy chỉnh các kịch bản thanh toán không được hỗ trợ. + + + + Requested payment amount of %1 is too small (considered dust). + Yêu cầu thanh toán khoản tiền của %1 là quá nhỏ (được xem là bụi). + + + + Refund from %1 + Trả lại từ %1 + + + + Error communicating with %1: %2 + Lỗi kết nối với %1: %2 + + + + Payment request can not be parsed or processed! + Yêu cầu thanh toán không thể xử lý được. + + + + Bad response from server %1 + Phản hồi xấu từ máy chủ %1 + + + + Network request error + Yêu cầu mạng bị lỗi + + + + Payment acknowledged + Thanh toán được ghi nhận + + + + QObject + + + + + + Dash + Dash + + + + Error: Specified data directory "%1" does not exist. + Lỗi: Thư mục được chọn "%1" không tồn tại. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Lỗi: Không phân tích được tệp cấu hình: %1. Chỉ sử dụng cú pháp key=value. + + + + Error reading masternode configuration file: %1 + Lỗi đọc tệp cấu hình masternode: %1 + + + + Error: Invalid combination of -regtest and -testnet. + Lỗi: Tổng hợp không hợp lệ của -regtest và -testnet. + + + + Dash Core didn't yet exit safely... + Dash Core chưa được thoát một cách an toàn... + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Hãy nhập địa chỉ Dash (VD: XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + QRImageWidget + + + &Save Image... + &Lưu ảnh... + + + + &Copy Image + &Sao chép ảnh + + + + Save QR Code + &Lưu mã QR + + + + PNG Image (*.png) + Ảnh dạng PNG (*.png) + + + + RPCConsole + + + Tools window + Cửa sổ công cụ + + + + &Information + &Thông tin + + + + Masternode Count + Số Masternode + + + + General + Chung chung + + + + Name + Tên + + + + Client name + Phiên bản + + + + + + + + + + + + + N/A + Không áp dụng + + + + Number of connections + Số kết nối + + + + Open the Dash debug log file from the current data directory. This can take a few seconds for large log files. + Mở file nhật kỹ lỗi Dash từ thư mục hiện tại. Nó có thể mất vài giây trong trường hợp file log lớn. + + + + &Open + &Mở + + + + Startup time + Thời gian khởi động + + + + Network + Mạng + + + + Last block time + Thời gian block cuối cùng + + + + Debug log file + Debug log file + + + + Using OpenSSL version + Sử dụng phiên bản OpenSSL + + + + Build date + Ngày xây dựng + + + + Current number of blocks + Số khối hiện tại + + + + Client version + Phiên bản + + + + Block chain + Block chain + + + + &Console + &Console + + + + Clear console + Xoá console + + + + &Network Traffic + &Lưu lượng mạng + + + + &Clear + &Xoá + + + + Totals + Tổng + + + + + In: + Vào: + + + + + Out: + Ra: + + + + Welcome to the Dash RPC console. + Chào mừng đến với giao tiếp Dash RPC + + + + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + Sử dụng các phím mũi tên lên và xuống để xem lịch sử, và <b>Ctrl-L</b> để xoá màn hình. + + + + Type <b>help</b> for an overview of available commands. + Gõ <b>help</b> để xem tổng thể các lệnh có thể dùng. + + + + %1 B + %1 B + + + + %1 KB + %1 KB + + + + %1 MB + %1 MB + + + + %1 GB + %1 GB + + + + %1 m + %1 phút + + + + %1 h + %1 giờ + + + + %1 h %2 m + %1 giờ %2 phút + + + + ReceiveCoinsDialog + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Sử dụng lại địa chỉ đã được sử dụng để nhận trước đây. Sử dụng lại địa chỉ nảy sinh vấn đề an ninh và riêng tư. Đừng sử dụng nó trừ khi bạn tạo lại yêu cầu thanh toán mà bạn đã làm trước đây. + + + + R&euse an existing receiving address (not recommended) + Tái &sử dụng lại địa chỉ nhận đã có (không khuyến khích) + + + + + 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 Dash network. + Một thông điệp tuỳ chọn để đính vào yêu cầu thanh toán, nó sẽ hiển thị khi yêu cầu được mở. Chú ý: Thông điệp sẽ không được gửi thông qua mạng lưới Dash. + + + + &Message: + &Thông điệp: + + + + + An optional label to associate with the new receiving address. + Một nhãn tuỳ chọn để liên kết với địa chỉ nhận mới. + + + + Use this form to request payments. All fields are <b>optional</b>. + Sử dụng biểu mẫu này để yêu cầu thanh toán. Tất cả các trường đều là <b>không bắt buộc</b>. + + + + &Label: + &Nhãn: + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Một tuỳ chọn về số tiền yêu cầu. Để nó trống hoặc bằng không để không yêu cầu một số tiền cụ thể. + + + + &Amount: + &Số tiền: + + + + &Request payment + &Yêu cầu thanh toán + + + + Clear all fields of the form. + Xoá tất cả các ô. + + + + Clear + Xoá + + + + Requested payments history + Xem lịch sử thanh toán + + + + Show the selected request (does the same as double clicking an entry) + Hiển thị những yêu cầu được chọn (giống như click đúp vào mỗi thành phần) + + + + Show + Xem + + + + Remove the selected entries from the list + Xoá thành phần được chọn khỏi danh sách + + + + Remove + Xoá + + + + Copy label + Sao chép nhãn + + + + Copy message + Sao chép thông điệp + + + + Copy amount + Sao chép số tiền + + + + ReceiveRequestDialog + + + QR Code + Mã QR + + + + Copy &URI + Copy &URI + + + + Copy &Address + Copy địa chỉ + + + + &Save Image... + &Lưu ảnh... + + + + Request payment to %1 + Yêu cầu thanh toán tới %1 + + + + Payment information + Thông tin thanh toán + + + + URI + URI + + + + Address + Địa chỉ + + + + Amount + Số tiền + + + + Label + Nhãn + + + + Message + Thông điệp + + + + Resulting URI too long, try to reduce the text for label / message. + Kết quả là URI quá dài, hãy thử rút gọn chữ trong nhãn / thông điệp. + + + + Error encoding URI into QR Code. + Lỗi mã hoá URI thành mã QR. + + + + RecentRequestsTableModel + + + Date + Ngày + + + + Label + Nhãn + + + + Message + Thông điệp + + + + Amount + Số tiền + + + + (no label) + (không có nhãn) + + + + (no message) + (không thông điệp) + + + + (no amount) + (không số tiền) + + + + SendCoinsDialog + + + + + + Send Coins + Gửi tiền + + + + Coin Control Features + Tính năng Coin Control + + + + Inputs... + Đầu vào... + + + + automatically selected + tự động chọn + + + + Insufficient funds! + Không đủ tiền! + + + + Quantity: + Số lượng: + + + + Bytes: + Bytes: + + + + Amount: + Số tiền: + + + + Priority: + Ưu tiên: + + + + medium + vừa + + + + Fee: + Phí: + + + + Low Output: + Low Output: + + + + no + không + + + + After Fee: + Phí sau: + + + + Change: + Trả lại: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Nếu nó được kích hoạt, nhưng địa chỉ tiền nhận lại là trống hoặc không hợp lệ, thì tiền lẻ trả lại sẽ được gửi đến một địa chỉ được sinh mới. + + + + Custom change address + Thay đổi địa chỉ tiền trả lại + + + + Confirm the send action + Xác nhận việc gửi + + + + S&end + &Gửi + + + + Clear all fields of the form. + Xoá tất cả các ô. + + + + Clear &All + Xoá &Tất cả + + + + Send to multiple recipients at once + Gửi đến nhiều địa chỉ một lúc + + + + Add &Recipient + Thêm &Người nhận + + + + Darksend + Darksend + + + + InstantX + InstantX + + + + Balance: + Số dư: + + + + Copy quantity + Sao chép số lượng + + + + Copy amount + Sao chép số tiền + + + + Copy fee + Sao chép phí + + + + Copy after fee + Sao chép giá trị sau tính phí + + + + Copy bytes + Sao chép bytes + + + + Copy priority + Sao chép ưu tiên + + + + Copy low output + Sao chép đầu ra thấp + + + + Copy change + Sao chép tiền trả lại + + + + + + using + sử dụng + + + + + anonymous funds + các khoản tiền ẩn danh + + + + (darksend requires this amount to be rounded up to the nearest %1). + (darksend yêu cầu số tiền này sẽ được làm tròn đến gần %1) + + + + any available funds (not recommended) + bất kỳ khoản tiền sẵn nào (gợi ý không nên) + + + + and InstantX + và InstantX + + + + + + + %1 to %2 + %1 đến %2 + + + + Are you sure you want to send? + Bạn có chắc mình muốn gửi? + + + + are added as transaction fee + được thêm vào như là phí giao dịch + + + + Total Amount %1 (= %2) + Tổng số tiền %1 (= %2) + + + + or + hoặc + + + + Confirm send coins + Xác nhận việc gửi tiền + + + + Payment request expired + Yêu cầu thanh toán đã hết hạn + + + + Invalid payment address %1 + Địa chỉ thanh toán không hợp lệ %1 + + + + The recipient address is not valid, please recheck. + Địa chỉ nhận không hợp lệ, hãy kiểm tra lại. + + + + The amount to pay must be larger than 0. + Số tiền thanh toán phải lớn hơn 0. + + + + The amount exceeds your balance. + Số tiền này lớn hơn số dư của bạn. + + + + The total exceeds your balance when the %1 transaction fee is included. + Tổng số lớn hơn số dư của bạn khi tính cả %1 phí giao dịch. + + + + Duplicate address found, can only send to each address once per send operation. + Thấy trùng địa chỉ, chỉ có thể gửi cho mỗi địa chỉ một lần trong một giao dịch gửi. + + + + Transaction creation failed! + Tạo giao dịch không thành công! + + + + 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 and coins were spent in the copy but not marked as spent here. + Giao dịch đã bị từ chối! Điều này có thể xảy ra khi một số tiền trong ví của bạn đã được tiêu, ví dụ như là nếu bạn sử dụng một bản sao của wallet.dat và tiền đã được tiêu nhưng bản khác của ví nhưng lại chưa được đánh dấu đã tiêu trong bản này. + + + + Error: The wallet was unlocked only to anonymize coins. + Lỗi: Ví vừa được mở chỉ cho việc ẩn danh tiền. + + + + Warning: Invalid Dash address + Cảnh báo: Địa chỉ Dash không hợp lệ + + + + Warning: Unknown change address + Cảnh báo: Không biết địa chỉ trả lại + + + + (no label) + (không có nhãn) + + + + SendCoinsEntry + + + This is a normal payment. + Đây là giao dịch thông thường. + + + + Pay &To: + Trả &Cho + + + + The address to send the payment to (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Địa chỉ để gửi thanh toán (VD: XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + Choose previously used address + Chọn địa chỉ đã sử dụng trước + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Dán địa chỉ từ clipboard + + + + Alt+P + Alt+P + + + + + + Remove this entry + Xoá thành phần này + + + + &Label: + &Nhãn: + + + + Enter a label for this address to add it to the list of used addresses + Nhập nhãn cho địa chỉ này để đưa vào danh sách địa chỉ đã dùng + + + + + + A&mount: + &Số tiền: + + + + Message: + Thông điệp: + + + + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + Một thông điệp được đính với dash: URI đó sẽ được lưu trữ với các giao dịch cho các bạn tham khảo. Lưu ý: Thông điệp này sẽ không được gửi qua mạng Dash. + + + + This is an unverified payment request. + Đây là yêu cầu thanh toán chưa được xác thực. + + + + + Pay To: + Trả cho: + + + + + Memo: + Ghi nhớ: + + + + This is a verified payment request. + Đây là một yêu cầu thanh toán được xác thực. + + + + Enter a label for this address to add it to your address book + Nhập nhãn cho địa chỉ để thêm nó vào sổ địa chỉ của bạn. + + + + ShutdownWindow + + + Dash Core is shutting down... + Dash Core đang được tắt... + + + + Do not shut down the computer until this window disappears. + Đừng tắt máy tính cho đến khi cửa sổ này biến mất. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Chữ ký - Ký / Kiểm tra Thông điệp + + + + &Sign Message + &Ký thông điệp + + + + 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. + Bạn có thể ký vào thông điệp với địa chỉ của bạn để chứng minh bạn là chủ của nó. Hãy cẩn thận không ký vào những gì mơ hồ, như là thứ lừa đảo để lừa bạn ký xác nhận của bạn vào đó cho họ. Chỉ ký vào những gì mà bạn hoàn thoàn đồng ý. + + + + The address to sign the message with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Địa chỉ để ký thông điệp với (VD: XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + Choose previously used address + Chọn địa chỉ đã dùng + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Dán địa chỉ từ clipboard + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Nhập vào thông điệp mà bạn muốn ký tại đây + + + + Signature + Chữ ký + + + + Copy the current signature to the system clipboard + Copy chữ ký hiện tại vào bộ đệm của hệ thống + + + + Sign the message to prove you own this Dash address + Ký vào thông điệp để chứng tỏ bạn sở hữu địa chỉ Dash + + + + Sign &Message + &Ký thông điệp + + + + Reset all sign message fields + Tái lập lại tất cả các trường cần ký + + + + + Clear &All + Xoá &tất cả + + + + &Verify Message + &Xác thực Thông điệp + + + + 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. + Hãy nhập địa chỉ ký, thông điệp (hãy chắc chắn rằng bạn copy cả các dấu xuống dòng, dấu cách, tab,... một cách chính xác) và chữ ký dưới đây để xác thực cho thông điệp. Hãy cẩn thận không thêm vào chữ ký hơn so với bản thân nó trong thông điệp đã ký, để tránh bị đánh lừa bởi kiểu tấn công người trung gian. + + + + The address the message was signed with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Địa chỉ mà thông điệp được ký (VD: XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + Verify the message to ensure it was signed with the specified Dash address + Kiểm tra lại thông điệp để đảm bảo rằng nó được ký với địa chỉ Dash cụ thể + + + + Verify &Message + Xác thực &Thông điệp + + + + Reset all verify message fields + Tái lập lại tất cả các trường kiểm tra + + + + Click "Sign Message" to generate signature + Bấm "Ký Thông điệp" để sinh chữ ký + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + Nhập một địa chỉ Dardcoin: (VD: XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + The entered address is invalid. + Địa chỉ vừa nhập không hợp lệ. + + + + + + + Please check the address and try again. + Hãy kiểm tra địa chỉ và thử lại. + + + + + The entered address does not refer to a key. + Địa chỉ bạn nhập không đề cập đến một khoá. + + + + Wallet unlock was cancelled. + Mở khoá ví bị huỷ bỏ. + + + + Private key for the entered address is not available. + Khoá riêng cho địa chỉ vừa nhập không có. + + + + Message signing failed. + Ký vào thông điệp thất bại. + + + + Message signed. + Thông điệp đã được ký. + + + + The signature could not be decoded. + Chữ ký không thể giải mã được. + + + + + Please check the signature and try again. + Hãy kiểm tra chữ ký và thử lại. + + + + The signature did not match the message digest. + Chữ ký không tương xứng với nội dung thông điệp. + + + + Message verification failed. + Không thể xác thực thông điệp. + + + + Message verified. + Thông điệp đã được xác thực. + + + + SplashScreen + + + Dash Core + Dash Core + + + + Version %1 + Phiên bản %1 + + + + The Bitcoin Core developers + Nhóm phát triển Bitcoin Core + + + + The Dash Core developers + Nhóm phát triển Dash Core + + + + [testnet] + [mạng thử] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + Mở thêm %n khối + + + + Open until %1 + Mở đến khi %1 + + + + + + + conflicted + xung đột + + + + %1/offline (verified via instantx) + %1/ngắt kết nối (đã được kiểm tra qua instantx) + + + + %1/confirmed (verified via instantx) + %1/đã được xác nhận (đã được kiểm tra qua instantx) + + + + %1 confirmations (verified via instantx) + %1 xác nhận (đã được kiểm tra qua instantx) + + + + %1/offline + %1/ngắt kết nối + + + + %1/unconfirmed + %1/chưa xác nhận + + + + + %1 confirmations + %1 xác nhận + + + + %1/offline (InstantX verification in progress - %2 of %3 signatures) + %1/mất kết nối (Đang trong tiến trình kiểm tra InstantX - %2 trên %3 các chữ ký) + + + + %1/confirmed (InstantX verification in progress - %2 of %3 signatures ) + %1/được xác nhận (Đang trong tiến trình kiểm tra InstantX - %2 trên %3 các chữ ký) + + + + %1 confirmations (InstantX verification in progress - %2 of %3 signatures) + %1 xác nhận (Đang trong tiến trình kiểm tra InstantX - %2 trên %3 các chữ ký) + + + + %1/offline (InstantX verification failed) + %1/mất kết nối (Thất bại trong việc kiểm tra InstantX) + + + + %1/confirmed (InstantX verification failed) + %1/đã được xác nhận (Thất bại trong việc kiểm tra InstantX) + + + + Status + Trạng thái + + + + , has not been successfully broadcast yet + , đã không được phát sóng thành công + + + + , broadcast through %n node(s) + , phát sóng thông qua %n nút + + + + Date + Ngày + + + + Source + Nguồn + + + + Generated + Đã được sinh + + + + + From + Từ + + + + unknown + không biết + + + + + + To + Đến + + + + + own address + địa chỉ của mình + + + + label + nhãn + + + + + + + + Credit + + + + + matures in %n more block(s) + đầy đủ trong %n khối nữa + + + + not accepted + không chấp nhận + + + + + + + Debit + Nợ + + + + Transaction fee + Phí giao dịch + + + + Net amount + Số tiền chưa gồm phí + + + + + Message + Thông điệp + + + + Comment + Bình luận + + + + Transaction ID + Mã giao dịch + + + + Merchant + Người bán + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Coin được tạo phải được trưởng thành 1% khối trước khi chúng có thể được tiêu. Khi bạn sinh khối này, nó được quảng bá trong mạng để thêm vào chuỗi khối. Nếu nó không được đưa vào chuỗi, trạng thái của nó được chuyển thành "không được chấp nhận" và sẽ không thể tiêu được. Điều này thỉnh thoảng có xảy ra nếu những nút khác cũng sinh trong vòng vài giây với khối của bạn. + + + + Debug information + Thông tin gỡ rối + + + + Transaction + Giao dịch + + + + Inputs + Đầu vào + + + + Amount + Số tiền + + + + true + đúng + + + + false + sai + + + + TransactionDescDialog + + + Transaction details + Chi tiết giao dịch + + + + This pane shows a detailed description of the transaction + Bảng này hiển thị mô tả chi tiết về giao dịch + + + + TransactionTableModel + + + Date + Ngày + + + + Type + Kiểu + + + + Address + Địa chỉ + + + + Amount + Số tiền + + + + Open for %n more block(s) + Mở thêm %n khối + + + + Open until %1 + Mở đến khi %1 + + + + Offline + Ngắt kết nối + + + + Unconfirmed + Chưa xác thực + + + + Confirming (%1 of %2 recommended confirmations) + Đang xác nhận (%1 của %2 xác nhận được đề nghị) + + + + Confirmed (%1 confirmations) + Được xác nhận (%1 xác nhận) + + + + Conflicted + Xung đột + + + + Immature (%1 confirmations, will be available after %2) + Chưa hoàn thành (%1 xác nhận, sẽ sẵn sàng sau %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Khối này đã không nhận được bởi bất kỳ các nút nào khác và có thể sẽ không được chấp nhận! + + + + Generated but not accepted + Đã sinh nhưng không được chấp nhận + + + + Received with + Nhận với + + + + Received from + Nhận từ + + + + Received via Darksend + Nhận qua Darksend + + + + Sent to + Gửi đến + + + + Payment to yourself + Trả cho bản thân bạn + + + + Mined + Được đào + + + + Darksend Denominate + Darksend Denominate + + + + Darksend Collateral Payment + Thanh toán Darksend Collateral + + + + Darksend Make Collateral Inputs + Darksend tạo đầu vào Collateral + + + + Darksend Create Denominations + Darksend tạo các mệnh giá + + + + Darksent + Darksent + + + + (n/a) + (không áp dụng) + + + + Transaction status. Hover over this field to show number of confirmations. + Trạng thái giao dịch: Di chuột qua ô này để hiển thị số lần xác nhận. + + + + Date and time that the transaction was received. + Thời gian giao dịch đã được nhận. + + + + Type of transaction. + Kiểu giao dịch. + + + + Destination address of transaction. + Địa chỉ đích của giao dịch. + + + + Amount removed from or added to balance. + Lượng tiền được gỡ bỏ hoặc thêm vào số dư. + + + + TransactionView + + + + All + Tất cả + + + + Today + Hôm nay + + + + This week + Tuần này + + + + This month + Tháng này + + + + Last month + Tháng gần nhất + + + + This year + Năm nay + + + + Range... + Khoảng... + + + + Received with + Nhận với + + + + Sent to + Gửi đến + + + + Darksent + Darksent + + + + Darksend Make Collateral Inputs + Darksend tạo đầu vào Collateral + + + + Darksend Create Denominations + Darksend tạo các mệnh giá + + + + Darksend Denominate + Darksend Denominate + + + + Darksend Collateral Payment + Thanh toán Darksend Collateral + + + + To yourself + Đến bản thân bạn + + + + Mined + Được đào + + + + Other + Khác + + + + Enter address or label to search + Nhập địa chỉ hoặc nhãn để tìm + + + + Min amount + Số tiền tối thiểu + + + + Copy address + Sao chép địa chỉ + + + + Copy label + Sao chép nhãn + + + + Copy amount + Sao chép số tiền + + + + Copy transaction ID + Sao chép mã giao dịch + + + + Edit label + Sửa nhãn + + + + Show transaction details + Xem chi tiết giao dịch + + + + Export Transaction History + Kết xuất Lịch sử Giao dịch + + + + Comma separated file (*.csv) + File định dạng phân cách bởi dấu phẩy (*.csv) + + + + Confirmed + Đã được xác nhận + + + + Date + Ngày + + + + Type + Kiểu + + + + Label + Nhãn + + + + Address + Địa chỉ + + + + Amount + Số tiền + + + + ID + + + + + Exporting Failed + Kết xuất không thành công + + + + There was an error trying to save the transaction history to %1. + Có một lỗi xảy ra khi lưu lịch sử giao dịch vào %1. + + + + Exporting Successful + Kết xuất thành công + + + + The transaction history was successfully saved to %1. + Lịch sử giao dịch đã được lưu thành công vào %1. + + + + Range: + Khoảng: + + + + to + đến + + + + WalletFrame + + + No wallet has been loaded. + Không có ví nào được nạp. + + + + WalletModel + + + + Send Coins + Gửi tiền + + + + InstantX doesn't support sending values that high yet. Transactions are currently limited to %n DASH. + InstantX không hỗ trợ để gửi giá trị lớn đến như vậy. Giới hạn giao dịch hiện tại đến %n DASH. + + + + WalletView + + + &Export + &Kết xuất + + + + Export the data in the current tab to a file + Kết xuất dữ liệu trong tab này sang một file + + + + Backup Wallet + Sao lưu Ví + + + + Wallet Data (*.dat) + Dữ liệu Ví (*.dat) + + + + Backup Failed + Sao lưu không thành công + + + + There was an error trying to save the wallet data to %1. + Có lỗi xảy ra khi lưu dữ liệu ví xuống %1. + + + + Backup Successful + Sao lưu thành công + + + + The wallet data was successfully saved to %1. + Dữ liệu ví đã được lưu thành công vào %1. + + + + dash-core + + + %s, you must set a rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=dashrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com + + %s, bạn phải gửi một rpcpassword trong tệp cấu hình: +%s +Gợi ý rằng bạn sử dụng mật khẩu ngẫu nhiên sau: +rpcuser=dảkcoinrpc +rpcpassword=%s +(bạn không cần thiết phải nhớ mật khẩu này) +Username và mật khẩu KHÔNG ĐƯỢC giống nhau. +Nếu tệp không tồn tại, tạo nó với quyền owner-readable-only. +Cũng gợi ý rằng bạn nên đặt alertnotify để bạn có thể nhận thông báo về những vấn đề; +ví dụ: alertnotify=echo %%s | mail -s "Cảnh báo Dash" admin@foo.com + + + + + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + Các mã hoá chấp nhận được (ngầm định: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + Có lỗi xảy ra khi thiết lập cổng RPC để lắng nghe trên IPv4: %s + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + Một lỗi xảy ra trong khi thiết lập cổng RPC để lắng nghe trên IPv6, chuyển xuống IPv4: %s + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Liên kết với địa chỉ nhất định và luôn luôn lắng nghe trên đó. Sử dụng ký hiệu [host]:port cho IPv6 + + + + Cannot obtain a lock on data directory %s. Dash Core is probably already running. + Không nhận được một khoá trong thư mục %s. Dash Core có thể đã đang chạy. + + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + Liên tục giới hạn tỷ lệ miễn phí giao dịch về <n>*1000 byte cho mỗi phút (ngầm định: 15) + + + + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. + Darksend sử dụng số lượng mệnh giá nhất định để gửi tiền, bạn có thể chỉ cần đơn giản ẩn danh vài coin nữa. + + + + Disable all Masternode and Darksend related functionality (0-1, default: 0) + Tắt tất cả các chức năng liên quan đến Masternode và Darksend (0-1, ngầm định: 0) + + + + Enable instantx, show confirmations for locked transactions (bool, default: true) + Cho phép InstantX, hiển thị xác nhận cho các giao dịch bị khoá (bool, ngầm định: true) + + + + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) + Cho phép sử dụng tự động darksend cho những ngân sách được lưu trong ví (0-1, ngầm định: 0) + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. + Hãy nhập chế độ kiểm tra hồi quy, mà sử dụng một chuỗi đặc biệt mà trong những khối được giải tức thời. Điều này là để dành cho công cụ kiểm tra hồi quy và phát triển ứng dụng. + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Hãy nhập chế độ kiểm tra hồi quy, mà sử dụng một chuỗi đặc biệt mà trong những khối được giải tức thời. + + + + Error: Listening for incoming connections failed (listen returned error %s) + Lỗi: Lắng nghe để nhận kết nối bị lỗi (lỗi trả về %s) + + + + 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 and coins were spent in the copy but not marked as spent here. + Lỗi: Giao dịch bị từ chối! Nó có thể xảy ra nếu một số tiền trong ví của bạn đã được tiêu, ví dụ như trường hợp bạn sử dụng bản sao của wallet.dat và số tiền đã được tiêu trong bản sao nhưng không được đánh dấu đã được tiêu ở đây. + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! + Lỗi: Giao dịch này cần khoản phí giao dịch ít nhất %s bởi vì số tiền của nó, mức độ phức tạp, hoặc sử dụng nguồn tiền mới nhận! + + + + Error: Wallet unlocked for anonymization only, unable to create transaction. + Lỗi: Ví đã được mở chỉ cho việc ẩn danh, không thể tạo được giao dịch. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Thực hiện lệnh khi một cảnh báo liên quan được nhận hoặc chúng ta thấy sự phân nhánh thực sự dài (%s trong cmd được thay bởi message) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Thực hiện lệnh khi một giao dịch ví thay đổi (%s trong cmd được thay thế bởi TxID) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Thực hiện lệnh khi khối tốt nhất thay đổi (%s trong cmd được thay thế bởi giá trị băm của khối) + + + + Fees smaller than this are considered zero fee (for transaction creation) (default: + Mức phí nhỏ hơn này có thể được xem là không phí (để cho việc tạo giao dịch) (ngầm định: + + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + Đẩy các hoạt động với cơ sở dữ liệu từ bộ nhớ xuống nhật ký trên đĩa mỗi <n> megabytes (ngầm định: 100) + + + + Found unconfirmed denominated outputs, will wait till they confirm to continue. + Đã thấy các mệnh giá đầu ra chưa được xác nhận, sẽ đợi đến khi chúng xác nhận để tiếp tục. + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + Cách kiểm tra khối triệt để -checkblocks là (0-4, ngầm định: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + Chế độ này -genproclimit kiểm soát bao nhiêu khối được sinh tức thời. + + + + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. + InstantX cần đầu vào với ít nhất 6 xác nhận, bạn có thể cần phải đợi vài phút và thử lại. + + + + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) + Lắng nghe kết nối từ JSON-RPC trên <cổng> (ngầm định: 9998 hoặc mạng thử: 19998) + + + + Name to construct url for KeePass entry that stores the wallet passphrase + Đặt tên để tạo dựng url cho các thành phần KeePass mà nó sẽ lưu giữ mật khẩu của ví + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Số giây hạn chế để không cho phép các đối tác ngang hàng kết nối lại (ngầm định: 86400) + + + + Output debugging information (default: 0, supplying <category> is optional) + Kết xuất thông tin gỡ rối (ngầm định: 0, cung cấp <category> là không bắt buộc) + + + + 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) + Cung cấp thanh khoản cho Darksend bằng việc thường xuyên trộn tiền một cách liên tục (0-100, ngầm định: 0, 1=rất thường xuyên, phí cao, 100=rất ít thường xuyên, phí thấp) + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + Truy vấn địa chỉ đối tác ngang hàng thông qua tìm kiếm DNS, nếu có ít địa chỉ (ngầm định: 1 trừ trường hợp -connect) + + + + Set external address:port to get to this masternode (example: address:port) + Đặt external address:port cho masternode này (ví dụ: address:port) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + Đặt kích thước tối đa cho giao dịch với ưu tiên cao/phí thấp theo bytes (ngầm định: %d) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Thiết lập số luồng của kịch bản kiểm tra (%u to %d, 0 = tự động, <0 = để nhiều lõi miễn phí, ngầm định: %d) + + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + Đặt giới hạn xử lý khi quá trình phát sinh là bật (-1 = không giới hạn, ngầm định: -1) + + + + Show N confirmations for a successfully locked transaction (0-9999, default: 1) + Hiển thị N xác nhận cho mỗi giao dịch được khoá thành công (0-9999, ngầm định: 1) + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + Đây là phiên bản chưa chính thức - hãy dùng và tự chấp nhận mạo hiểm - đừng dùng để đào coin hoặc các ứng dụng thương mại. + + + + Unable to bind to %s on this computer. Dash Core is probably already running. + Không thể để ràng buộc vào %s trên máy tính này. Dash Core có thể đã chạy. + + + + Unable to locate enough Darksend denominated funds for this transaction. + Không tìm đủ ngân sách Darksend denominated cho giao dịch này. + + + + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. + Không tìm đủ ngân sách Darksend denominated cho giao dịch mà nó không bằng 1000 DASH + + + + Unable to locate enough Darksend non-denominated funds for this transaction. + Không kiếm đủ ngân sách Darksend non-denominated cho giao dịch này. + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) + Sử dụng SOCKS5 proxy riêng biệt đối với mỗi thành phần ngang hàng thông qua Tor cho các dịch vụ ẩn (ngầm định: -proxy) + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Cảnh báo: -paytxfee được đặt rất cao! Đây là mức phí giao dịch mà bạn sẽ trả nếu bạn gửi một giao dịch. + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. + Cảnh báo: Hãy kiểm tra ngày giờ trên máy tính của bạn xem có chính xác! Nếu đồng hồ của bạn không đúng Dash sẽ không hoạt động tốt. + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + Cảnh báo: Mạng lưới có vẻ chưa hoàn toàn đồng ý! Một vài máy đào có vẻ như đã kinh nghiệm với những vấn đề này. + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + Cảnh báo: Chúng ta có vẻ không được sự đồng ý một cách đầy đủ từ các đối tác ngang hàng! Bạn cần nâng cấp hoặc các nút khác cần nâng cấp. + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + Cảnh báo: lỗi đọc tệp wallet.dat! Tất cả các khoá được đọc đúng, như dữ liệu giao dich hoặc các thành phần địa chỉ khối có thể bị mất hoặc không chính xác. + + + + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + Cảnh báo: wallet.dat đã bị hỏng, dữ liệu đã được cứu! Tệp gốc wallet.dat đã được lưu thành wallet.{timestamp}.bak trong %s; nếu số dư hoặc các giao dịch của bạn không chính xác, bạn có thể khôi phục từ bản sao lưu. + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Bạn phải đặt rpcpassword=<mật khẩu> trong tệp cấu hình: +%s +Nếu tệp không tồn tại, tạo nó với quyền tệp owner-readable-only. + + + + You must specify a masternodeprivkey in the configuration. Please see documentation for help. + Bạn cần chỉ rõ masternodeprivkey trong tệp cấu hình. Hãy xem tài liệu để có hướng dẫn. + + + + (default: 1) + (ngầm định: 1) + + + + (default: wallet.dat) + (ngầm định: wallet.dat) + + + + <category> can be: + <category> có thể là: + + + + Accept command line and JSON-RPC commands + Chấp nhận dòng lệnh và các lệnh JSON-RPC + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Chấp nhật kết nối từ ngoài (ngầm định: 1 nếu không có -proxy hoặc -connect) + + + + Add a node to connect to and attempt to keep the connection open + Thêm nút để kết nối tới và giữ mở kết nối + + + + Allow DNS lookups for -addnode, -seednode and -connect + Cho phép DNS tìm kiếm -addnode, -seednode và -connect + + + + Allow JSON-RPC connections from specified IP address + Cho phép các kết nối JSON-RPC từ các địa chỉ IP xác định + + + + Already have that input. + Đã có đầu vào đó. + + + + Always query for peer addresses via DNS lookup (default: 0) + Luôn truy vấn cho các địa chỉ ngang hàng thông qua DNS (ngầm định: 0) + + + + Attempt to recover private keys from a corrupt wallet.dat + Thử khôi phục khoá riêng từ tệp wallet.dat bị lỗi + + + + Block creation options: + Tuỳ chọn tạo khối: + + + + Can't denominate: no compatible inputs left. + Không thể định giá: không còn đầu vào tương tích. + + + + Cannot downgrade wallet + Không thể hạ cấp ví + + + + Cannot resolve -bind address: '%s' + Không thể phân giải địa chỉ -bind: '%s' + + + + Cannot resolve -externalip address: '%s' + Không thể phân giải địa chỉ -externalip: '%s' + + + + Cannot write default address + Không thể viết vào địa chỉ ngầm định + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Xoá danh sách các giao dịch của ví (công cụ chuẩn đoán; implies -rescan) + + + + Collateral is not valid. + Collateral là không hợp lệ. + + + + Collateral not valid. + Collateral không hợp lệ. + + + + Connect only to the specified node(s) + Kết nối chỉ với (các) nút nhất định + + + + Connect through SOCKS proxy + Kết nối thông qua SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) + Kết nối tới JSON-RPC trên <cổng> (ngầm định: 9998 hoặc mạng thử: 19998) + + + + Connect to KeePassHttp on port <port> (default: 19455) + Kết nối tới KeePassHttp trên cổng <port> (ngầm định: 19455) + + + + Connect to a node to retrieve peer addresses, and disconnect + Kết nối với một nút để lấy địa chỉ ngang hàng, và ngắt kết nối + + + + Connection options: + Tuỳ chọn kết nối: + + + + Corrupted block database detected + Phát hiện ra dữ liệu khối bị hỏng + + + + Dash Core Daemon + Dash Core Daemon + + + + Dash Core RPC client version + Phiên bản phần mềm Dash Core RPC + + + + Darksend is disabled. + Darksend đã được tắt. + + + + Darksend options: + Tuỳ chọn Darksend: + + + + Debugging/Testing options: + Tuỳ chọn Gỡ rối/Kiểm tra: + + + + Disable safemode, override a real safe mode event (default: 0) + Tắt chế độ an toàn, ghi đè lên một sự kiện của chế đọ an toàn (ngầm định: 0) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Phát hiện địa chỉ IP của mình (ngầm định: 1 khi lắng nghe và không dùng -externalip) + + + + Do not load the wallet and disable wallet RPC calls + Không tải ví và tắt các lời gọi ví RPC + + + + Do you want to rebuild the block database now? + Bạn có muốn xây dựng lại dữ liệu khối bây giờ không? + + + + Done loading + Nạp xong + + + + Downgrading and trying again. + + + + + Enable the client to act as a masternode (0-1, default: 0) + Cho phép phần mềm hoạt động như là masternode (0-1, ngầm định: 0) + + + + Entries are full. + Các đầu vào đã đầy. + + + + Error connecting to masternode. + Lỗi kết nối đến masternode. + + + + Error initializing block database + Lỗi khởi tạo cơ sở dữ liệu khối + + + + Error initializing wallet database environment %s! + Lỗi khởi tạo cơ sở dữ liệu môi trường ví %s! + + + + Error loading block database + Lỗi nạp cơ sở dữ liệu khối + + + + Error loading wallet.dat + Lỗi nạp wallet.dat + + + + Error loading wallet.dat: Wallet corrupted + Lỗi nạp wallet.dat: Ví bị lỗi + + + + Error loading wallet.dat: Wallet requires newer version of Dash + Lỗi nạp wallet.dat: Ví cần một phiên bản mới hơn của Dash + + + + Error opening block database + Lỗi mở cơ sở dữ liệu khối + + + + Error reading from database, shutting down. + Lỗi đọc từ cơ sở dữ liệu, đang tắt phần mềm. + + + + Error recovering public key. + Lỗi khi phục hồi khoá công khai. + + + + Error + Lỗi + + + + Error: Disk space is low! + Lỗi: Dung lượng đĩa thấp! + + + + Error: Wallet locked, unable to create transaction! + Lỗi: Ví đã bị khoá, không thể tạo giao dịch! + + + + Error: You already have pending entries in the Darksend pool + Lỗi: Bạn đã có các thành phần đang chờ trong Darksend pool + + + + Error: system error: + Lỗi: lỗi hệ thống. + + + + Failed to listen on any port. Use -listen=0 if you want this. + Không thành công khi lắng nghe trên các cổng. Sử dụng -listen=0 nếu bạn muốn nó. + + + + Failed to read block info + Thất bại trong việc đọc thông tin khối + + + + Failed to read block + Thất bại trong việc đọc khối + + + + Failed to sync block index + Thất bại trong việc đồng bộ chỉ mục khối + + + + Failed to write block index + Thất bại trong việc ghi chỉ mục khối + + + + Failed to write block info + Thất bại trong việc ghi thông tin khối + + + + Failed to write block + Thất bại trong việc ghi khối + + + + Failed to write file info + Thất bại trong việc ghi thông tin tệp + + + + Failed to write to coin database + Thất bại trong việc ghi cơ sở dữ liệu tiền + + + + Failed to write transaction index + Thất bại trong việc ghi chỉ mục giao dịch + + + + Failed to write undo data + Thất bại trong việc ghi dữ liệu hoãn + + + + Fee per kB to add to transactions you send + Phí cho mỗi kB được thêm vào giao dịch bạn gửi + + + + Fees smaller than this are considered zero fee (for relaying) (default: + Mức phí nhỏ hơn đây được coi là không phí (cho tiếp sức) (ngầm định: + + + + Force safe mode (default: 0) + Cưỡng bức ở chế độ an toàn (ngầm định: 0) + + + + Generate coins (default: 0) + Sinh tiền (ngầm định: 0) + + + + Get help for a command + Để có trợ giúp cho một lệnh + + + + How many blocks to check at startup (default: 288, 0 = all) + Bao nhiêu khối để kiểm tra khi khởi động (ngầm định: 288, 0 = tất cả) + + + + If <category> is not supplied, output all debugging information. + Nếu <category> không được cung cấp, đưa ra tất cả các thông tin gỡ rối. + + + + Ignore masternodes less than version (example: 70050; default : 0) + Bỏ qua các masternodes có phiên bản thấp hơn (ví dụ: 70050; ngầm định: 0) + + + + Importing... + Đang nạp... + + + + Imports blocks from external blk000??.dat file + Nạp khối từ tệp ngoài blk000??.dat + + + + Incompatible mode. + Kiểu không tương thích. + + + + Incompatible version. + Phiên bản không tương thích. + + + + Incorrect or no genesis block found. Wrong datadir for network? + Khối sáng thế không chính xác hoặc không tìm thấy. Sai datadir cho mạng lưới? + + + + Information + Thông tin + + + + Initialization sanity check failed. Dash Core is shutting down. + Khởi tạo việc kiểm tra tính đúng đắn thất bại. Dash Core đang được tắt. + + + + Input is not valid. + Đầu vào không hợp lệ. + + + + InstantX options: + Tuỳ chọn InstantX: + + + + Insufficient funds + Không đủ tiền + + + + Insufficient funds. + Không đủ tiền. + + + + Invalid -onion address: '%s' + Địa chỉ -onion không hợp lệ: '%s' + + + + Invalid -proxy address: '%s' + Địa chỉ proxy không hợp lệ: '%s' + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + Số tiền không hợp lệ cho -minrelaytxfee=<số tiền>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + Số tiền không hợp lệ cho -mintxfee =<số tiền>: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + Số tiền không hợp lệ cho -paytxfee =<số tiền>: '%s' + + + + Invalid amount + Số tiền không hợp lệ + + + + Invalid masternodeprivkey. Please see documenation. + Masternodeprivkey không hợp lệ. Hãy xem lại tài liệu. + + + + Invalid private key. + Khoá riêng không hợp lệ. + + + + Invalid script detected. + Kịch bản được phát hiện không hợp lệ. + + + + KeePassHttp id for the established association + KeePassHttp id cho thiết lập sự kết hợp + + + + KeePassHttp key for AES encrypted communication with KeePass + Khoá KeePassHttp cho liên lạc mã hoá AES với KeePass + + + + Keep N dash anonymized (default: 0) + Giữ N dash ẩn danh hoá (ngầm định: 0) + + + + Keep at most <n> unconnectable blocks in memory (default: %u) + Giữ nhiều nhất <n> các khối không kết nối được trong bộ nhớ (ngầm định: %u) + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + Giữ nhiều nhất <n> các giao dịch không kết nối được trong bộ nhớ (ngầm định: %u) + + + + Last Darksend was too recent. + Darksend cuối cùng quá gần. + + + + Last successful darksend action was too recent. + Darksend thành công cuối cùng quá gần. + + + + Limit size of signature cache to <n> entries (default: 50000) + Giới hạn kích thước bộ đệm chữ ký tới <n> thành phần (ngầm định: 50000) + + + + List commands + Liệt kê các lệnh + + + + Listen for connections on <port> (default: 9999 or testnet: 19999) + Lắng nghe kết nối từ <cổng> (ngầm định: 9999 hoặc mạng thử: 19999) + + + + Loading addresses... + Nạp các địa chỉ... + + + + Loading block index... + Đang nạp chỉ mục khối... + + + + Loading masternode list... + Đang tải danh sách master node... + + + + Loading wallet... (%3.2f %%) + Đang nạp ví... (%3.2f %%) + + + + Loading wallet... + Đang tải ví... + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + Lưu nhật ký các ưu tiên và phí giao dịch cho mỗi kB khi đào các khối (ngầm định: 0) + + + + Maintain a full transaction index (default: 0) + Duy trì một chỉ mục giao dịch đầy đủ (ngầm định: 0) + + + + Maintain at most <n> connections to peers (default: 125) + Duy trì nhiều nhất <n> kết nối tới các điểm ngang hàng (ngầm định: 125) + + + + Masternode options: + Tuỳ chọn Masternode: + + + + Masternode queue is full. + Danh sách hàng đợi Masternode đã đầy. + + + + Masternode: + Masternode: + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Tối đa cho bộ đệm nhận của mỗi kết nối, <n>*1000 bytes (ngầm định: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Tối đa cho bộ đệm gửi của mỗi kết nối, <n>*1000 bytes (ngầm định: 5000) + + + + Missing input transaction information. + Thiếu thông tin giao dịch đầu vào. + + + + No compatible masternode found. + Không tìm thấy masternode tương thích. + + + + No funds detected in need of denominating. + Không thấy có nguồn tiền cần thiết để định giá. + + + + No masternodes detected. + Không phát hiện được masternode. + + + + No matching denominations found for mixing. + Không tìm thấy mệnh giá tương ứng để trộn. + + + + Non-standard public key detected. + Phát hiện thấy khoá công khai không hợp chuẩn. + + + + Not compatible with existing transactions. + Không tương thích với các giao dịch hiện tại. + + + + Not enough file descriptors available. + Chưa có đủ thông tin mô tả tệp. + + + + Not in the masternode list. + Không có trong danh sách masternode. + + + + Only accept block chain matching built-in checkpoints (default: 1) + Chỉ chấp nhận các chuỗi khối tương ứng với các điểm kiểm tra trong (ngầm định: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Chỉ kết nối với các nút trong mạng <net> (IPv4, IPv6 hoặc Tor) + + + + Options: + Tuỳ chọn: + + + + Password for JSON-RPC connections + Mật khẩu cho kết nối JSON-RPC + + + + Prepend debug output with timestamp (default: 1) + Thêm tiền tố đầu ra debug với dấu thời gian (ngầm định: 1) + + + + Print block on startup, if found in block index + In khối khi khởi động, nếu tìm thấy trong chỉ mục khối + + + + Print block tree on startup (default: 0) + In cây khối khi khởi động (ngầm định: 0) + + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Tuỳ chọn RPC SSL (xem Bitcoin Wiki để có hướng dẫn cài đặt SSL) + + + + RPC client options: + Tuỳ chọn phần mềm RPC: + + + + RPC server options: + Tuỳ chọn cho RPC server + + + + Randomly drop 1 of every <n> network messages + Bỏ ngẫu nhiên 1 mỗi <n> thông điệp mạng + + + + Randomly fuzz 1 of every <n> network messages + Làm xơ ngẫu nhiên 1 trên mỗi <n> thông điệp mạng. + + + + Rebuild block chain index from current blk000??.dat files + Tái tạo lại chỉ mục chuỗi khối từ tệp blk000??.dat + + + + Rescan the block chain for missing wallet transactions + Quét lại chuỗi khối cho các giao dịch ví bị thiếu. + + + + Rescanning... + Đang quét lại... + + + + Run a thread to flush wallet periodically (default: 1) + Chạy một luồng để làm sạch ví một cách thường xuyên (ngầm định: 1) + + + + Run in the background as a daemon and accept commands + Chạy trên chế độ nền như là một tiến trình ngầm và chấp nhận các lệnh + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Tuỳ chọn SSL: (xem Bitcoin Wiki để có hướng dẫn cài đặt SSL) + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + Chọn phiên bản SOCK cho -proxy (4 hoặc 5, ngầm định: 5) + + + + Send command to Dash Core + Gửi lệnh đến Dash Core + + + + Send commands to node running on <ip> (default: 127.0.0.1) + Gửi các lệnh đến nút chạy trên <ip> (ngầm định: 127.0.0.1) + + + + Send trace/debug info to console instead of debug.log file + Gửi thông tin theo dõi/gỡ rối đến console thay vì tệp debug.log + + + + Server certificate file (default: server.cert) + Tệp chứng thực máy chủ (ngầm định: server.cert) + + + + Server private key (default: server.pem) + Mã riêng của máy chủ (ngầm định: server.pem) + + + + Session not complete! + Phiên làm việc chưa hoàn thành. + + + + Session timed out (30 seconds), please resubmit. + Phiên làm việc đã hết hạn (30 giây), hãy gửi lại. + + + + Set database cache size in megabytes (%d to %d, default: %d) + Thiết lập kích thước bộ đệm cơ sở dữ liệu theo megabytes (%d đến %d, ngầm định: %d) + + + + Set key pool size to <n> (default: 100) + Đăt kích thước pool đến <n> (ngầm định: 100) + + + + Set maximum block size in bytes (default: %d) + Thiết lập kích thước khối tối đa theo bytes (ngầm định: %d) + + + + Set minimum block size in bytes (default: 0) + Thiết lập kích thước khối tối thiểu theo bytes (ngầm định: 0) + + + + Set the masternode private key + Đặt khoá riêng cho masternode + + + + Set the number of threads to service RPC calls (default: 4) + Thiết lập số luồng phục vụ các lời gọi RPC (ngầm định: 4) + + + + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + Thiết lập cờ DB_PRIVATE trong môi trường cơ sở dữ liệu ví (ngầm định: 1) + + + + Show all debugging options (usage: --help -help-debug) + Hiển thị tất cả các tuỳ chọn gỡ rối (cách sử dụng: --help -help-debug) + + + + Show benchmark information (default: 0) + Hiển thị thông tin tốc độ (ngầm định: 0) + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Rút gọn tệp debug.log khi phần mềm khởi động (ngầm định: 1 khi không có -debug) + + + + Signing failed. + Ký không thành công. + + + + Signing timed out, please resubmit. + Ký không kịp, hãy gửi lại. + + + + Signing transaction failed + Thất bại khi ký giao dịch + + + + Specify configuration file (default: dash.conf) + Xác định tệp cấu hình (ngầm định: dash.conf) + + + + Specify connection timeout in milliseconds (default: 5000) + Xác định thời gian chờ kết nối tính theo mili giây (ngầm định: 5000) + + + + Specify data directory + Hãy chọn thư mục + + + + Specify masternode configuration file (default: masternode.conf) + Xác định tệp cấu hình masternode (ngầm định: masternode.conf) + + + + Specify pid file (default: dashd.pid) + Xác định tệp pid (ngầm định: dashd.pid) + + + + Specify wallet file (within data directory) + Xác định tệp ví (trong thư mục dữ liệu) + + + + Specify your own public address + Hãy xác định địa chỉ công khai của bạn + + + + Spend unconfirmed change when sending transactions (default: 1) + Tiên các khoản trả lại chưa được xác nhận khi gửi các giao dịch (ngầm định: 1) + + + + Start Dash Core Daemon + Khởi động Dash Core Daemon + + + + System error: + Lỗi hệ thống: + + + + This help message + Đây là thông điệp trợ giúp + + + + This is intended for regression testing tools and app development. + Điều này là để dành cho công cụ kiểm tra hồi quy và phát triển ứng dụng. + + + + This is not a masternode. + Đây không phải là một masternode. + + + + Threshold for disconnecting misbehaving peers (default: 100) + Ngưỡng ngắt kết nối khi đối tác ngang hàng cư xử không đúng (ngầm định: 100) + + + + To use the %s option + Để sử dụng tuỳ chọn %s + + + + Transaction amount too small + Số tiền của giao dịch quá nhỏ + + + + Transaction amounts must be positive + Số tiền của giao dịch phải là số dương + + + + Transaction created successfully. + Giao dịch được tạo thành công. + + + + Transaction fees are too high. + Phí giao dịch quá cao. + + + + Transaction not valid. + Giao dịch không hợp lệ. + + + + Transaction too large + Giao dịch quá lớn + + + + Unable to bind to %s on this computer (bind returned error %s) + Không thể để ràng buộc vào %s trên máy tính này (bind trả lại lỗi %s) + + + + Unable to sign masternode payment winner, wrong key? + Không thể ký cho giao dịch masternod chiến thắng, khoá sai? + + + + Unable to sign spork message, wrong key? + Không thể ký vào thông điệp phân nhánh, sai khoá? + + + + Unknown -socks proxy version requested: %i + Không biết phiên bản proxy yêu cầu -socks: %i + + + + Unknown network specified in -onlynet: '%s' + Không biết mạng được chỉ ra trong -onlynet: '%s' + + + + Upgrade wallet to latest format + Nâng cấp ví lên định dạng mới nhất + + + + Usage (deprecated, use dash-cli): + Cách sử dụng (đã từ bỏ, sử dụng dash-cli): + + + + Usage: + Cách dùng: + + + + Use KeePass 2 integration using KeePassHttp plugin (default: 0) + Sử dụng tích hợp KeePass 2 dùng KeePassHttp plugin (ngầm định: 0) + + + + Use N separate masternodes to anonymize funds (2-8, default: 2) + Sử dụng N masternods riêng biệt để ẩn danh khoản tiền (2-8, ngầm định: 2) + + + + Use OpenSSL (https) for JSON-RPC connections + Sử dụng OpenSSL (https) cho các kết nối JSON-RPC + + + + Use UPnP to map the listening port (default: 0) + Sử dụng UPnP để ánh xạ cổng lắng nghe (ngầm định: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + Sử dụng UPnP để ánh xạ cổng lắng nghe (ngầm định: 1 khi lắng nghe) + + + + Use the test network + Sử dụng mạng thử + + + + Username for JSON-RPC connections + Username cho kết nối JSON-RPC + + + + Value more than Darksend pool maximum allows. + Giá tri trị lớn hơn giá trị tối đa mà bể Darksend cho phép. + + + + Verifying blocks... + Đang kiểm tra các khối... + + + + Verifying wallet... + Đang kiểm tra ví... + + + + Wait for RPC server to start + Chờ cho RPC server khởi động + + + + Wallet %s resides outside data directory %s + Ví %s nằm ở bên ngoài thư mục dữ liệu %s + + + + Wallet is locked. + Ví đã bị khoá. + + + + Wallet needed to be rewritten: restart Dash to complete + Ví cần được ghi lại: khởi động lại Dash để hoàn tất + + + + Wallet options: + Tuỳ chọn ví: + + + + Warning + Cảnh báo + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + Cảnh báo: Tham số -debugnet đã được bỏ, hãy sử dụng -debug=net + + + + Warning: This version is obsolete, upgrade required! + Cảnh báo: Phiên bản này đã cũ, cần phải cập nhật mới! + + + Wrong state. + + + + + You need to rebuild the database using -reindex to change -txindex + Bạn cần xây dựng lại cơ sở dữ liệu sử dụng -reindex để thay cho -txindex + + + + Zapping all transactions from wallet... + Dọn sạch tất cả các giao dịch khỏi ví... + + + + on startup + khi khởi động + + + + version + phiên bản + + + + wallet.dat corrupt, salvage failed + wallet.dat bị lỗi, cứu chữa không thành công. + + + \ No newline at end of file diff --git a/src/qt/locale/dash_zh_CN.ts b/src/qt/locale/dash_zh_CN.ts new file mode 100644 index 0000000000..b50842c4cc --- /dev/null +++ b/src/qt/locale/dash_zh_CN.ts @@ -0,0 +1,5279 @@ + + + AboutDialog + + + About Dash Core + 关于 Dash Core + + + + <b>Dash Core</b> version + <b>Dash Core</b> 版本 + + + + Copyright &copy; 2009-2014 The Bitcoin Core developers. +Copyright &copy; 2014-YYYY The Dash Core developers. + + + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +本软件为仍处于实验阶段的软件。 + +基于MIT/X11软件许可协议发布,详情请查看附带文本或者浏览此链接http://www.opensource.org/licenses/mit-license.php 。 + +本软件涉及并使用了其他项目软件,如OpenSSL项目的开发工具包以使用OpenSSL(http://www.openssl.org/),由Eric Young(eay@cryptsoft.com)所开发的加密软件,以及由Thomas Bernard开发的UPnP。 + + + + + Copyright + 版权 + + + + The Bitcoin Core developers + Bitcoin Core 的开发者 + + + + The Dash Core developers + Dash Core 的开发者 + + + + + (%1-bit) + (%1 位) + + + + AddressBookPage + + + Double-click to edit address or label + 双击编辑地址或标签 + + + + Create a new address + 创建新地址 + + + + &New + 新建(&N) + + + + Copy the currently selected address to the system clipboard + 复制当前选中的地址到系统剪贴板 + + + + &Copy + 复制(&C) + + + + Delete the currently selected address from the list + 从列表中删除选中的地址 + + + + &Delete + 删除(&D) + + + + Export the data in the current tab to a file + 导出当前数据到文件 + + + + &Export + 导出(&E) + + + + C&lose + 关闭(&C) + + + + Choose the address to send coins to + 选择发款地址 + + + + Choose the address to receive coins with + 选择收款地址 + + + + C&hoose + 选择(&H) + + + + Sending addresses + 正在发送地址 + + + + Receiving addresses + 正在接收地址 + + + + These are your Dash addresses for sending payments. Always check the amount and the receiving address before sending coins. + 这些是您用以发送暗黑币的地址。请务必在每次发送前检查金额及接收地址。 + + + + These are your Dash addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + 这些是您用以接收暗黑币的地址。推荐使用新地址以接收每次的转账。 + + + + &Copy Address + 复制地址(&C) + + + + Copy &Label + 复制标签(&L) + + + + &Edit + 编辑(&E) + + + + Export Address List + 导出地址列表 + + + + Comma separated file (*.csv) + 逗号分隔文件 (*.csv) + + + + Exporting Failed + 导出失败 + + + + There was an error trying to save the address list to %1. + 地址列表保存至 %1 时发生错误。 + + + + AddressTableModel + + + Label + 标签 + + + + Address + 地址 + + + + (no label) + (没有标签) + + + + AskPassphraseDialog + + + Passphrase Dialog + 密码对话框 + + + + Enter passphrase + 输入密码 + + + + New passphrase + 新密码 + + + + Repeat new passphrase + 重复新密码 + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + + + + + For anonymization only + 仅限匿名 + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + 输入钱包的新密码。<br/>使用的密码请至少包含<b>10个以上随机字符</>,或者是<b>8个以上的单词</b>。 + + + + Encrypt wallet + 加密钱包 + + + + This operation needs your wallet passphrase to unlock the wallet. + 此操作需要您首先使用密码解锁该钱包。 + + + + Unlock wallet + 解锁钱包 + + + + This operation needs your wallet passphrase to decrypt the wallet. + 该操作需要您首先使用密码解密钱包。 + + + + Decrypt wallet + 解密钱包 + + + + Change passphrase + 更改密码 + + + + Enter the old and new passphrase to the wallet. + 请输入该钱包的旧密码与新密码。 + + + + Confirm wallet encryption + 确认加密钱包 + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + 警告:如果您加密了钱包却将该密码遗忘,您将<b>丢失您的暗黑币</b> + + + + Are you sure you wish to encrypt your wallet? + 您确定需要为钱包加密吗? + + + + + Wallet encrypted + 钱包已加密 + + + + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + 暗黑币即将关闭以完成加密。请牢记即便是加密后的钱包也无法完全保护您的暗黑币免遭被恶意程序入侵等被偷之患。 + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + 重要提示:您以前备份的钱包文件应该替换成最新生成的加密钱包文件(重新备份)。从安全性上考虑,您以前备份的未加密的钱包文件,在您使用新的加密钱包后将无效,请重新备份。 + + + + + + + Wallet encryption failed + 钱包加密失败 + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + 由于一个本地错误,加密钱包的操作已经失败。您的钱包没能被加密。 + + + + + The supplied passphrases do not match. + 密码不匹配。 + + + + Wallet unlock failed + 钱包解锁失败 + + + + + + The passphrase entered for the wallet decryption was incorrect. + 用于解密钱包的密码不正确。 + + + + Wallet decryption failed + 钱包解密失败。 + + + + Wallet passphrase was successfully changed. + 修改钱包密码成功。 + + + + + Warning: The Caps Lock key is on! + 警告:大写锁定键处于打开状态! + + + + BitcoinGUI + + + Dash Core + 暗黑币 内核 + + + + Wallet + 钱包 + + + + Node + 节点 + + + + + [testnet] + [测试网络] + + + + &Overview + 概况(&O) + + + + Show general overview of wallet + 显示钱包概况 + + + + &Send + 发送(&S) + + + + Send coins to a Dash address + 向暗黑币地址发送 + + + + &Receive + 接收(&R) + + + + Request payments (generates QR codes and dash: URIs) + 请求付款(产生QR码以及暗黑币:URIs) + + + + &Transactions + 交易记录(&T) + + + + Browse transaction history + 查看交易历史 + + + + E&xit + 退出(&X) + + + + Quit application + 退出程序 + + + + + &About Dash Core + 关于暗黑币内核(&A) + + + + Show information about Dash + 显示关于暗黑币的信息 + + + + + About &Qt + 关于 &Qt + + + + Show information about Qt + 显示 Qt 相关信息 + + + + &Options... + 选项(&O)... + + + + Modify configuration options for Dash + 更改暗黑币设置 + + + + + &Show / Hide + 显示 / 隐藏(&S) + + + + Show or hide the main Window + 显示或隐藏主窗口 + + + + &Encrypt Wallet... + 加密钱包(&E)... + + + + Encrypt the private keys that belong to your wallet + 对钱包中的私钥加密 + + + + &Backup Wallet... + 备份钱包(&B)... + + + + Backup wallet to another location + 备份钱包到其他文件夹 + + + + &Change Passphrase... + 更改密码(&C)... + + + + Change the passphrase used for wallet encryption + 更改钱包加密口令 + + + + &Unlock Wallet... + 解锁钱包(&U) + + + + Unlock wallet + 解锁钱包 + + + + &Lock Wallet + 锁定钱包(&L) + + + + Sign &message... + 消息签名(&M)... + + + + Sign messages with your Dash addresses to prove you own them + 使用您的暗黑币地址进行消息签名以证明对此地址的所有权 + + + + &Verify message... + 验证消息(&V)... + + + + Verify messages to ensure they were signed with specified Dash addresses + 校验消息签名以证明此消息是由特定暗黑币地址所签发 + + + + &Information + 信息(&I) + + + + Show diagnostic information + 显示诊断信息 + + + + &Debug console + Debug控制台(&D) + + + + Open debugging console + 打开调试控制台 + + + + &Network Monitor + 网络流量监控(&N) + + + + Show network monitor + 显示网络流量监控 + + + + Open &Configuration File + + + + + Open configuration file + + + + + &Sending addresses... + &付款地址 + + + + Show the list of used sending addresses and labels + 显示用过的发送地址和标签的列表 + + + + &Receiving addresses... + &收款地址 + + + + Show the list of used receiving addresses and labels + 显示用过的接收地址和标签的列表 + + + + Open &URI... + 打开 &URI... + + + + Open a dash: URI or payment request + 打开一个暗黑币:URI或者付款请求 + + + + &Command-line options + &命令行 选项 + + + + Show the Dash Core help message to get a list with possible Dash command-line options + 显示暗黑币内核帮助信息并以列表形式展示可用的暗黑币命令行选项 + + + + &File + 文件(&F) + + + + &Settings + 设置(&S) + + + + &Tools + 工具(&T) + + + + &Help + 帮助(&H) + + + + Tabs toolbar + 分页工具栏 + + + + + Dash client + 暗黑币客户端 + + + + %n active connection(s) to Dash network + %n (个)至暗黑币网络的有效连接 + + + + Synchronizing with network... + 正在与网络同步... + + + + Importing blocks from disk... + 正在从磁盘导入数据块... + + + + Reindexing blocks on disk... + 正在为数据块建立索引... + + + + No block source available... + 沒有可用的区块来源... + + + + Processed %1 blocks of transaction history. + 已处理 %1 个交易历史数据块。 + + + + Up to date + 已是最新 + + + + %n hour(s) + %n 小时 + + + + %n day(s) + %n 天 + + + + + %n week(s) + %n 周 + + + + %1 and %2 + %1 和 %2 + + + + %n year(s) + %n 年 + + + + %1 behind + 落后 %1 + + + + Catching up... + 更新中... + + + + Last received block was generated %1 ago. + 最新收到的区块产生于 %1。 + + + + Transactions after this will not yet be visible. + 在此之后的交易尚未可见 + + + + Dash + 暗黑币 + + + + Error + 错误 + + + + Warning + 警告 + + + + Information + 信息 + + + + Sent transaction + 发送交易 + + + + Incoming transaction + 流入交易 + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + 日期: %1 +金额: %2 +类别: %3 +地址: %4 + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + 钱包已被<b>加密</b>,当前为<b>解锁</b>状态 + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only + 钱包已被<b>加密</b>并且目前处于<b>解锁</b>状态以进行匿名处理 + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + 钱包已被<b>加密</b>,当前为<b>锁定</b>状态 + + + + A fatal error occurred. Dash can no longer continue safely and will quit. + 发生致命错误。暗黑币客户端将关闭。 + + + + ClientModel + + + Network Alert + 网络警报 + + + + CoinControlDialog + + + Coin Control Address Selection + 选择交易源地址 + + + + Quantity: + 总量: + + + + Bytes: + 字节: + + + + Amount: + 金额: + + + + Priority: + 优先级: + + + + Fee: + 费用: + + + + Low Output: + 低输出 + + + + After Fee: + 加上交易费用后: + + + + Change: + 变更 : + + + + (un)select all + (不)全选 + + + + Tree mode + 树状模式 + + + + List mode + 列表模式 + + + + (1 locked) + + + + + Amount + 金额 + + + + Label + 标签 + + + + Address + 地址 + + + + Darksend Rounds + 匿名发送 循环次数 + + + + Date + 日期 + + + + Confirmations + 确认 + + + + Confirmed + 已确认 + + + + Priority + 优先级 + + + + Copy address + 复制地址 + + + + Copy label + 复制标签 + + + + + Copy amount + 复制金额 + + + + Copy transaction ID + 复制交易编号 + + + + Lock unspent + 锁定未花费 + + + + Unlock unspent + 解锁未花费 + + + + Copy quantity + 复制金额 + + + + Copy fee + 复制交易费 + + + + Copy after fee + 复制含交易费的金额 + + + + Copy bytes + 复制字节 + + + + Copy priority + 复制优先级 + + + + Copy low output + 复制低输出 + + + + Copy change + 复制零钱 + + + + highest + 最高 + + + + higher + 更高 + + + + high + + + + + medium-high + 中高 + + + + n/a + n/a + + + + + medium + 中等 + + + + low-medium + 中低 + + + + low + + + + + lower + 更低 + + + + lowest + 最低 + + + + (%1 locked) + (%1 锁定) + + + + none + + + + + Dust + 尘埃交易 + + + + yes + + + + + + no + + + + + This label turns red, if the transaction size is greater than 1000 bytes. + 如果这笔交易大于1000字节,标签会变成红色。 + + + + + This means a fee of at least %1 per kB is required. + 这意味着将对交易收取 %1/千字节 的交易费。 + + + + Can vary +/- 1 byte per input. + 每笔输入可能会有 正负1字节的偏差。 + + + + Transactions with higher priority are more likely to get included into a block. + 交易的优先级越高,被矿工收入数据块的速度也越快。 + + + + This label turns red, if the priority is smaller than "medium". + 如果优先级小于"中位数" ,标签将变成红色。 + + + + This label turns red, if any recipient receives an amount smaller than %1. + 如果收款地址收到小于%1的比特币,标签将变成红色。 + + + + + This means a fee of at least %1 is required. + 这意味着至少需要 %1的交易费。 + + + + Amounts below 0.546 times the minimum relay fee are shown as dust. + 小于最小转发交易费的0.546倍的 转账金额将被视为 尘埃交易。 + + + + This label turns red, if the change is smaller than %1. + 如果零钱小于 %1,标签将变成红色。 + + + + + (no label) + (没有标签) + + + + change from %1 (%2) + 来自%1的零钱 (%2) + + + + (change) + (零钱) + + + + DarksendConfig + + + Configure Darksend + 配置匿名发送 + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select a privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000 DASH + 使用2个独立主节点进行混合至多1000个DASH + + + + Use 8 separate masternodes to mix funds up to 1000 DASH + 使用8个独立主节点进行混合至多1000个DASH + + + + Use 16 separate masternodes + 使用16个独立主节点 + + + + This option is the quickest and will cost about ~0.025 DASH to anonymize 1000 DASH + 此选项提供最快速度并且将花费大概0.025DRK的费用以匿名化1000DRK + + + + This option is moderately fast and will cost about 0.05 DASH to anonymize 1000 DASH + 此选项提供中等速度并且将花费大概0.05DRK的费用以匿名化1000DRK + + + + 0.1 DASH per 1000 DASH you anonymize. + 0.1DRK每匿名化1000DRK + + + + This is the slowest and most secure option. Using maximum anonymity will cost + 此选项提供最慢速度但是却最安全的匿名服务。最多匿名化将花费 + + + + + + Darksend Configuration + 匿名发送配置 + + + + Darksend was successfully set to basic (%1 and 2 rounds). You can change this at any time by opening Dash's configuration screen. + 匿名发送已成功设置为基本配置(%1 至 2轮循环)。你可以通过打开暗黑币的配置界面随时改变此配置。 + + + + Darksend was successfully set to high (%1 and 8 rounds). You can change this at any time by opening Dash's configuration screen. + 匿名发送已成功设置为高循环配置(%1 至 8轮循环)。你可以通过打开暗黑币的配置界面随时改变此配置。 + + + + Darksend was successfully set to maximum (%1 and 16 rounds). You can change this at any time by opening Dash's configuration screen. + 匿名发送已成功设置为最大循环配置(%1 至 16轮循环)。你可以通过打开暗黑币的配置界面随时改变此配置。 + + + + EditAddressDialog + + + Edit Address + 编辑地址 + + + + &Label + 标签(&L) + + + + The label associated with this address list entry + 与此地址相关的标签项 + + + + &Address + 地址(&A) + + + + The address associated with this address list entry. This can only be modified for sending addresses. + 该地址已与地址列表中的条目关联,只能被发送地址修改。 + + + + New receiving address + 新建接收地址 + + + + New sending address + 新建发送地址 + + + + Edit receiving address + 编辑接收地址 + + + + Edit sending address + 编辑发送地址 + + + + The entered address "%1" is not a valid Dash address. + 此"%1"地址不是暗黑币有效地址 + + + + The entered address "%1" is already in the address book. + 输入的地址“%1”已经存在于地址簿中。 + + + + Could not unlock wallet. + 无法解锁钱包 + + + + New key generation failed. + 新的密钥生成失败。 + + + + FreespaceChecker + + + A new data directory will be created. + 一个新的数据目录将被创建。 + + + + name + 名称 + + + + Directory already exists. Add %1 if you intend to create a new directory here. + 目录已存在。如果您打算在这里创建一个新目录,添加 %1。 + + + + Path already exists, and is not a directory. + 路径已存在,并且不是一个目录。 + + + + Cannot create data directory here. + 无法在此创建数据目录。 + + + + HelpMessageDialog + + + Dash Core - Command-line options + 暗黑币内核 - 命令行选项 + + + + Dash Core + 暗黑币 内核 + + + + version + 版本 + + + + Usage: + 使用: + + + + command-line options + 命令行选项 + + + + UI options + UI选项 + + + + Choose data directory on startup (default: 0) + 在启动时选择数据目录(默认:0) + + + + Set language, for example "de_DE" (default: system locale) + 设置语言, 例如“zh-TW”(默认为系统语言) + + + + Start minimized + 启动时最小化 + + + + + Set SSL root certificates for payment request (default: -system-) + 设置SSL根证书的付款请求(默认:-系统-) + + + + Show splash screen on startup (default: 1) + 启动时显示版权页 (缺省: 1) + + + + Intro + + + Welcome + 欢迎 + + + + Welcome to Dash Core. + 欢迎来到暗黑币内核 + + + + As this is the first time the program is launched, you can choose where Dash Core will store its data. + 本次启动是您第一次使用,您可以选择将暗黑币内核程序相应的数据文件存储在您想存储的文件路径 + + + + Dash Core will download and store a copy of the Dash block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + 暗黑币内核程序将开始下载并存储一份暗黑币数据块链资源。至少%1GB大小的数据将被保存在这个路径下。该数据会随着日后使用而增加其大小。您的钱包同样也会被保存在这个路径下。 + + + + Use the default data directory + 使用默认的数据目录 + + + + Use a custom data directory: + 使用自定义的数据目录: + + + + Dash + 暗黑币 + + + + Error: Specified data directory "%1" can not be created. + 错误:指定的数据目录“%1”无法创建。 + + + + Error + 错误 + + + + GB of free space available + 可用空间(GB) + + + + (of %1GB needed) + (需要 %1GB) + + + + OpenURIDialog + + + Open URI + 打开 URI + + + + Open payment request from URI or file + 打开来自URI或文件的付款请求 + + + + URI: + URI: + + + + Select payment request file + 选择付款请求文件 + + + + Select payment request file to open + 选择需要打开的付款请求文件 + + + + OptionsDialog + + + Options + 选项 + + + + &Main + 主要(&M) + + + + Automatically start Dash after logging in to the system. + 登录系统后自动启动暗黑币客户端 + + + + &Start Dash on system login + 登录后启动暗黑币(&S) + + + + Size of &database cache + 数据库缓存大小(&D) + + + + MB + MB + + + + Number of script &verification threads + 脚本&验证 进程数 + + + + (0 = auto, <0 = leave that many cores free) + (0 = 自动, <0 = 离开很多免费的核心) + + + + <html><head/><body><p>This setting determines the amount of individual masternodes that an input will be anonymized through. More rounds of anonymization gives a higher degree of privacy, but also costs more in fees.</p></body></html> + <html><head/><body><p>此选项用以调整进行匿名化操作的主节点数量。越多的循环次数提供了更高级别的匿名性,同时也会花费更多的手续费</p></body></html> + + + + Darksend rounds to use + 匿名传送的循环次数 + + + + This amount acts as a threshold to turn off Darksend once it's reached. + + + + + Amount of Dash to keep anonymized + 匿名化暗黑币数量 + + + + W&allet + &钱包 + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. + 可选的每 kB 交易费,这有助于您的交易被更快的处理。大多数交易都是 1 kB。 + + + + Pay transaction &fee + 支付交易费用(&F) + + + + Expert + 专家 + + + + Whether to show coin control features or not. + 是否需要交易源地址控制功能。 + + + + Enable coin &control features + 启动货币 &控制功能 + + + + 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. + 如果禁用未确认的零钱,则零钱至少需要1个确认才能使用。同时账户余额显示会受到影响。 + + + + &Spend unconfirmed change + &选择未经确认的花费 + + + + &Network + 网络(&N) + + + + Automatically open the Dash client port on the router. This only works when your router supports UPnP and it is enabled. + 自动在路由器上打开暗黑币客户端端口。此项设置仅在您的路由器支持UPnP功能并且处于打开情况下才可正常工作 + + + + Map port using &UPnP + 使用 &UPnP 映射端口 + + + + Connect to the Dash network through a SOCKS proxy. + 通过SOCKS代理连接暗黑币网络。 + + + + &Connect through SOCKS proxy (default proxy): + 通过 SO&CKS 代理连接 (默认代理): + + + + Proxy &IP: + 代理服务器 &IP: + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + 代理的 IP 地址 (例如 IPv4: 127.0.0.1 / IPv6: ::1) + + + + &Port: + 端口(&P): + + + + Port of the proxy (e.g. 9050) + 代理端口(例如 9050) + + + + SOCKS &Version: + Socks 版本(&V): + + + + SOCKS version of the proxy (e.g. 5) + Socks 代理版本(例如 5) + + + + &Window + 窗口(&W) + + + + Show only a tray icon after minimizing the window. + 最小化窗口后仅显示托盘图标 + + + + &Minimize to the tray instead of the taskbar + 最小化到托盘(&M) + + + + 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. + 当窗口关闭时程序最小化而不是退出。当使用该选项时,程序只能通过在菜单中选择退出来关闭 + + + + M&inimize on close + 单击关闭按钮最小化(&I) + + + + &Display + 显示(&D) + + + + User Interface &language: + 用户界面语言(&L): + + + + The user interface language can be set here. This setting will take effect after restarting Dash. + 在此可以进行设置用户界面的语言。此设置需要重启暗黑币客户端以生效 + + + + Language missing or translation incomplete? Help contributing translations here: +https://www.transifex.com/projects/p/dash/ + + + + + &Unit to show amounts in: + 比特币金额单位(&U): + + + + Choose the default subdivision unit to show in the interface and when sending coins. + 选择比特币单位。 + + + + Whether to show Dash addresses in the transaction list or not. + 是否在交易列表中显示暗黑币地址。 + + + + &Display addresses in transaction list + 在交易清单中显示比特币地址(&D) + + + + + 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 |. + 出现在交易的选项卡的上下文菜单项的第三方网址 (例如:区块链接查询) 。 %s的URL被替换为交易哈希。多个的URL需要竖线 | 分隔。 + + + + Third party transaction URLs + 第三方交易网址 + + + + Active command-line options that override above options: + 有效的命令行参数覆盖上述选项: + + + + Reset all client options to default. + 恢复客户端的缺省设置 + + + + &Reset Options + 恢复缺省设置(&R) + + + + &OK + 确定(&O) + + + + &Cancel + 取消(&C) + + + + default + 默认 + + + + none + + + + + Confirm options reset + 确认恢复缺省设置 + + + + + Client restart required to activate changes. + 更改生效需要重启客户端。 + + + + Client will be shutdown, do you want to proceed? + 客户端即将关闭,确定继续吗? + + + + This change would require a client restart. + 此更改需要重启客户端。 + + + + The supplied proxy address is invalid. + 提供的代理服务器地址无效。 + + + + OverviewPage + + + Form + 表单 + + + + Wallet + 钱包 + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Dash network after a connection is established, but this process has not completed yet. + 显示的信息可能已过期。在建立连接后您的钱包自动与暗黑币网络同步数据,此同步过程目前尚未完毕。 + + + + Available: + 可使用的余额: + + + + Your current spendable balance + 您当前可使用的余额 + + + + Pending: + 等待中的余额: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + 尚未确认的交易总额,未计入当前余额 + + + + Immature: + 未成熟的: + + + + Mined balance that has not yet matured + 尚未成熟的挖矿收入余额 + + + + Total: + 总额: + + + + Your current total balance + 您当前的总余额 + + + + Status: + 状态: + + + + Enabled/Disabled + 打开/关闭 + + + + Completion: + 完成度: + + + + Darksend Balance: + 匿名传送余额: + + + + 0 DASH + 0 DASH + + + + Amount and Rounds: + 数量与循环次数: + + + + 0 DASH / 0 Rounds + 0 DASH/ 0 轮循环 + + + + Submitted Denom: + 提交的面额: + + + + The denominations you submitted to the Masternode. To mix, other users must submit the exact same denominations. + 您向主节点所提交的用以面额化混合的DASH,当其他用户提交相同的面额化DASH数量时,将开始混合。 + + + + n/a + n/a + + + + + + + Darksend + 匿名发送 + + + + Start/Stop Mixing + 开始/关闭 混合 + + + + (Last Message) + (最近一次信息) + + + + Try to manually submit a Darksend request. + 尝试手动提交一次匿名化请求 + + + + Try Mix + 尝试混合 + + + + Reset the current status of Darksend (can interrupt Darksend if it's in the process of Mixing, which can cost you money!) + 重置目前匿名状态(此操作可能会影响您目前正在执行的混合过程,并且产生费用!) + + + + Reset + 重置 + + + + <b>Recent transactions</b> + <b>最近交易记录</b> + + + + + + out of sync + 数据同步中 + + + + + Disabled + 关闭 + + + + + + Start Darksend Mixing + 开始匿名化混合 + + + + + Stop Darksend Mixing + 关闭匿名化混合 + + + + No inputs detected + 未检测到输入 + + + + Found unconfirmed denominated outputs, will wait till they confirm to recalculate. + 未确认的面额化输出,将等待他们确认及重新计算 + + + + Rounds + 循环次数 + + + + Enabled + 打开 + + + + Last Darksend message: + + 最后一次匿名信息: + + + + + + Darksend is idle. + 匿名化处于空闲状态 + + + + Mixing in progress... + + + + + Darksend request complete: Your transaction was accepted into the pool! + 匿名化请求已完成: 您的交易成功被匿名池接受 + + + + Submitted following entries to masternode: + 正在向主节点提交: + + + + + + Submitted to masternode, Waiting for more entries + 已向主节点提交,等待更多实例 + + + + Found enough users, signing ... + 用户数已满足,开始签名 ... + + + + Found enough users, signing ( waiting. ) + 用户数已满足,开始签名 (等待中.) + + + + Found enough users, signing ( waiting.. ) + 用户数已满足,开始签名 (等待中..) + + + + Found enough users, signing ( waiting... ) + 用户数已满足,开始签名 (等待中...) + + + + Transmitting final transaction. + 发送最终交易。 + + + + Finalizing transaction. + 正在完成交易。 + + + + Darksend request incomplete: + 匿名化请求未完成: + + + + Will retry... + 即将重试... + + + + Darksend request complete: + 匿名化请求已完成: + + + + Submitted to masternode, waiting in queue . + 已提交至主节点,在队列中等待 . + + + + Submitted to masternode, waiting in queue .. + 已提交至主节点,在队列中等待 .. + + + + Submitted to masternode, waiting in queue ... + 已提交至主节点,在队列中等待 ... + + + + Unknown state: + 位置状态: + + + + N/A + 不可用 + + + + Darksend was successfully reset. + 匿名化被成功重置。 + + + + Darksend requires at least %1 to use. + 匿名化要求至少 1% 以使用 + + + + Wallet is locked and user declined to unlock. Disabling Darksend. + 钱包已锁定需要用户解锁。 正在关闭匿名化。 + + + + PaymentServer + + + + + + + + Payment request error + 支付请求出错 + + + + Cannot start dash: click-to-pay handler + 不能启动暗黑币:click-to-pay handler + + + + Net manager warning + 网络管理器警告 + + + + Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. + 您的活动代理不支持 SOCKS5,而通过代理进行支付请求时这是必须的。 + + + + + URI handling + URI 处理 + + + + Payment request fetch URL is invalid: %1 + 付款请求URI链接非法: %1 + + + + URI can not be parsed! This can be caused by an invalid Dash address or malformed URI parameters. + URI无法被解析!此问题可能是由无效的暗黑币地址或者无效的URI参数导致。 + + + + Payment request file handling + 付款请求文件处理 + + + + Payment request file can not be read or processed! This can be caused by an invalid payment request file. + 付款请求文件不能读取或无法识别!这可能是个不合格的付款请求文件。 + + + + Unverified payment requests to custom payment scripts are unsupported. + 不支持到自定义付款脚本的未验证付款请求。 + + + + Requested payment amount of %1 is too small (considered dust). + 请求支付的金额 %1 太小(就像尘埃)。 + + + + Refund from %1 + 退款来自 %1 + + + + Error communicating with %1: %2 + %1: %2 通讯出错 + + + + Payment request can not be parsed or processed! + 支付请求不能被解析或处理! + + + + Bad response from server %1 + 来自 %1 服务器的错误响应 + + + + Network request error + 网络请求出错 + + + + Payment acknowledged + 支付已到账 + + + + QObject + + + + + + Dash + 暗黑币 + + + + Error: Specified data directory "%1" does not exist. + 错误:指定的数据目录“%1”不存在。 + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + 错误: 无法解析配置文件: %1. 只有钥匙=重要的私匙. + + + + Error reading masternode configuration file: %1 + 读取主节点配置错误:%1 + + + + Error: Invalid combination of -regtest and -testnet. + 错误:无效的 -regtest 与 -testnet 结合体。 + + + + Dash Core didn't yet exit safely... + 暗黑币内核尚未安全退出... + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + 输入一个暗黑币地址(如 XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + QRImageWidget + + + &Save Image... + 保存图片(&S)... + + + + &Copy Image + 复制图片(&C) + + + + Save QR Code + 保存二维码 + + + + PNG Image (*.png) + PNG图片(*.png) + + + + RPCConsole + + + Tools window + 工具窗口 + + + + &Information + 信息(&I) + + + + Masternode Count + 主节点统计 + + + + General + 常规 + + + + Name + 姓名 + + + + Client name + 客户端名称 + + + + + + + + + + + + + N/A + 不可用 + + + + Number of connections + 连接数 + + + + Open the Dash debug log file from the current data directory. This can take a few seconds for large log files. + 从目前数据路径下打开暗黑币的调试日志。如果您的日志文件比较大可能会多花费一些时间。 + + + + &Open + 打开(&O) + + + + Startup time + 启动时间 + + + + Network + 网络 + + + + Last block time + 上一数据块时间 + + + + Debug log file + 调试日志文件 + + + + Using OpenSSL version + 使用 OpenSSL 版本 + + + + Build date + 创建时间 + + + + Current number of blocks + 当前数据块数量 + + + + Client version + 客户端版本 + + + + Block chain + 数据链 + + + + &Console + 控制台(&C) + + + + Clear console + 清空控制台 + + + + &Network Traffic + 网络流量(&N) + + + + &Clear + 清除(&C) + + + + Totals + 总数 + + + + + In: + 输入: + + + + + Out: + 输出: + + + + Welcome to the Dash RPC console. + 欢迎来到暗黑币RPC控制台。 + + + + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + 使用上下方向键浏览历史, <b>Ctrl-L</b>清除屏幕。 + + + + Type <b>help</b> for an overview of available commands. + 使用 <b>help</b> 命令显示帮助信息。 + + + + %1 B + %1 字节 + + + + %1 KB + %1 KB + + + + %1 MB + %1 MB + + + + %1 GB + %1 GB + + + + %1 m + %1 分钟 + + + + %1 h + %1 小时 + + + + %1 h %2 m + %1 小时 %2 分钟 + + + + ReceiveCoinsDialog + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + 重复使用以前用过的接收地址。重用地址有安全和隐私方面的隐患。除非是为重复生成同一项支付请求,否则请不要这样做。 + + + + R&euse an existing receiving address (not recommended) + 重用现有的接收地址(不推荐) + + + + + 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 Dash network. + 可在付款请求中附加一条消息,当打开此请求时会显示这条消息。 注意:此条消息不会随着该请求被暗黑币网络发送。 + + + + &Message: + 消息(&M): + + + + + An optional label to associate with the new receiving address. + 可为新建的收款地址添加一个标签。 + + + + Use this form to request payments. All fields are <b>optional</b>. + 使用此表单要求付款。所有字段都是<b>可选</b>。 + + + + &Label: + 标签(&L): + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + 可选的请求金额。留空或填零为不要求具体金额。 + + + + &Amount: + 总额(&A): + + + + &Request payment + 请求付款(&R) + + + + Clear all fields of the form. + 清空此表单的所有字段。 + + + + Clear + 清除 + + + + Requested payments history + 请求付款的历史 + + + + Show the selected request (does the same as double clicking an entry) + 显示选中的请求 (双击也可以显示) + + + + Show + 显示 + + + + Remove the selected entries from the list + 从列表中移除选中的条目 + + + + Remove + 移除 + + + + Copy label + 复制标签 + + + + Copy message + 复制消息 + + + + Copy amount + 复制金额 + + + + ReceiveRequestDialog + + + QR Code + 二维码 + + + + Copy &URI + 复制 URI(&U) + + + + Copy &Address + 复制地址(&A) + + + + &Save Image... + 保存图片(&S)... + + + + Request payment to %1 + 请求付款到 %1 + + + + Payment information + 付款信息 + + + + URI + URI + + + + Address + 地址 + + + + Amount + 金额 + + + + Label + 标签 + + + + Message + 消息 + + + + Resulting URI too long, try to reduce the text for label / message. + URI 太长,请试着精简标签或消息文本。 + + + + Error encoding URI into QR Code. + 将 URI 转为二维码失败。 + + + + RecentRequestsTableModel + + + Date + 日期 + + + + Label + 标签 + + + + Message + 消息 + + + + Amount + 金额 + + + + (no label) + (没有标签) + + + + (no message) + (无消息) + + + + (no amount) + (无金额) + + + + SendCoinsDialog + + + + + + Send Coins + 发送货币 + + + + Coin Control Features + 交易源地址控制功能 + + + + Inputs... + 输入... + + + + automatically selected + 自动选择 + + + + Insufficient funds! + 存款不足! + + + + Quantity: + 总量: + + + + Bytes: + 字节: + + + + Amount: + 金额: + + + + Priority: + 优先级: + + + + medium + 中等 + + + + Fee: + 费用: + + + + Low Output: + 低输出 + + + + no + + + + + After Fee: + 加上交易费用后: + + + + Change: + 变更 : + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + 如果激活该选项,但是零钱地址用光或者非法,将会新生成零钱地址,转入零钱。 + + + + Custom change address + 自定义零钱地址 + + + + Confirm the send action + 确认并发送货币 + + + + S&end + 发送(&E) + + + + Clear all fields of the form. + 清除此表单的所有字段。 + + + + Clear &All + 清除所有(&A) + + + + Send to multiple recipients at once + 一次发送给多个接收者 + + + + Add &Recipient + 添加收款人(&R) + + + + Darksend + 匿名发送 + + + + InstantX + + + + + Balance: + 余额: + + + + Copy quantity + 复制金额 + + + + Copy amount + 复制金额 + + + + Copy fee + 复制交易费 + + + + Copy after fee + 复制含交易费的金额 + + + + Copy bytes + 复制字节 + + + + Copy priority + 复制优先级 + + + + Copy low output + 复制低输出 + + + + Copy change + 复制零钱 + + + + + + using + + + + + + anonymous funds + + + + + (darksend requires this amount to be rounded up to the nearest %1). + + + + + any available funds (not recommended) + + + + + and InstantX + + + + + + + + %1 to %2 + %1 到 %2 + + + + Are you sure you want to send? + 您确定要发出吗? + + + + are added as transaction fee + + + + + Total Amount %1 (= %2) + 总额 %1 (= %2) + + + + or + + + + + Confirm send coins + 确认发送货币 + + + + Payment request expired + 支付请求已过期 + + + + Invalid payment address %1 + 无效的付款地址 %1 + + + + The recipient address is not valid, please recheck. + 收款人地址不合法,请检查。 + + + + The amount to pay must be larger than 0. + 支付金额必须大于0。 + + + + The amount exceeds your balance. + 金额超出您的账上余额。 + + + + The total exceeds your balance when the %1 transaction fee is included. + 计入 %1 交易费后的金额超出您的账上余额。 + + + + Duplicate address found, can only send to each address once per send operation. + 发现重复的地址, 每次只能对同一地址发送一次。 + + + + Transaction creation failed! + 交易创建失败! + + + + 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 and coins were spent in the copy but not marked as spent here. + 错误:该交易被拒绝!发生这种错误的原因可能是:钱包中的比特币已经被用掉,有可能您复制了wallet.dat钱包文件,然后用复制的钱包文件支付了比特币,但是这个钱包文件中没有记录。 + + + + Error: The wallet was unlocked only to anonymize coins. + 错误: 钱包被锁定以用于匿名化您的暗黑币。 + + + + Warning: Invalid Dash address + 警告:无效的暗黑币地址 + + + + Warning: Unknown change address + 警告:未知的更改地址 + + + + (no label) + (没有标签) + + + + SendCoinsEntry + + + This is a normal payment. + 这是笔正常的支付。 + + + + Pay &To: + 付给(&T): + + + + The address to send the payment to (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + Choose previously used address + 选择以前用过的地址 + + + + Alt+A + Alt+A + + + + Paste address from clipboard + 从剪贴板粘贴地址 + + + + Alt+P + Alt+P + + + + + + Remove this entry + 移除此项 + + + + &Label: + 标签(&L): + + + + Enter a label for this address to add it to the list of used addresses + 请为此地址输入一个标签以将它加入用过的地址列表 + + + + + + A&mount: + 金额(&M) + + + + Message: + 消息: + + + + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + + + + + This is an unverified payment request. + 这是个非有效的支付请求。 + + + + + Pay To: + 支付给: + + + + + Memo: + 便条: + + + + This is a verified payment request. + 这是个有效的支付请求。 + + + + Enter a label for this address to add it to your address book + 为这个地址输入一个标签,以便将它添加到您的地址簿 + + + + ShutdownWindow + + + Dash Core is shutting down... + + + + + Do not shut down the computer until this window disappears. + 在此窗口消失前不要关闭计算机。 + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + 签名 - 为消息签名/验证签名消息 + + + + &Sign Message + 签名消息(&S) + + + + 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. + 您可以用你的地址对消息进行签名,以证明您是该地址的所有人。注意不要对模棱两可的消息签名,以免遭受钓鱼式攻击。请确保消息内容准确的表达了您的真实意愿。 + + + + The address to sign the message with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + + Choose previously used address + 选择以前用过的地址 + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + 从剪贴板粘贴地址 + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + 请输入您要发送的签名消息 + + + + Signature + 签名 + + + + Copy the current signature to the system clipboard + 复制当前签名至剪切板 + + + + Sign the message to prove you own this Dash address + + + + + Sign &Message + 消息签名(&M) + + + + Reset all sign message fields + 清空所有签名消息栏 + + + + + Clear &All + 清除所有(&A) + + + + &Verify Message + 验证消息(&V) + + + + 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. + 在下面输入签名地址,消息(请确保换行符、空格符、制表符等等一个不漏)和签名以验证消息。请确保签名信息准确,提防中间人攻击。 + + + + The address the message was signed with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + Verify the message to ensure it was signed with the specified Dash address + + + + + Verify &Message + 验证消息签名(&M) + + + + Reset all verify message fields + 清空所有验证消息栏 + + + + Click "Sign Message" to generate signature + 单击“签名消息“产生签名。 + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + 输入一个暗黑币地址(如 XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + The entered address is invalid. + 输入的地址非法。 + + + + + + + Please check the address and try again. + 请检查地址后重试。 + + + + + The entered address does not refer to a key. + 输入的地址没有关联的公私钥对。 + + + + Wallet unlock was cancelled. + 钱包解锁动作取消。 + + + + Private key for the entered address is not available. + 找不到输入地址关联的私钥。 + + + + Message signing failed. + 消息签名失败。 + + + + Message signed. + 消息已签名。 + + + + The signature could not be decoded. + 签名无法解码。 + + + + + Please check the signature and try again. + 请检查签名后重试。 + + + + The signature did not match the message digest. + 签名与消息摘要不匹配。 + + + + Message verification failed. + 消息验证失败。 + + + + Message verified. + 消息验证成功。 + + + + SplashScreen + + + Dash Core + 暗黑币 内核 + + + + Version %1 + + + + + The Bitcoin Core developers + Bitcoin Core 的开发者 + + + + The Dash Core developers + Dash Core 的开发者 + + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + 至 %1 个数据块时开启 + + + + + + + conflicted + 发现冲突 + + + + %1/offline (verified via instantx) + + + + + %1/confirmed (verified via instantx) + + + + + %1 confirmations (verified via instantx) + + + + + %1/offline + %1 / 离线 + + + + %1/unconfirmed + %1/未确认 + + + + + %1 confirmations + %1 已确认 + + + + %1/offline (InstantX verification in progress - %2 of %3 signatures) + + + + + %1/confirmed (InstantX verification in progress - %2 of %3 signatures ) + + + + + %1 confirmations (InstantX verification in progress - %2 of %3 signatures) + + + + + %1/offline (InstantX verification failed) + + + + + %1/confirmed (InstantX verification failed) + + + + + Status + 状态 + + + + , has not been successfully broadcast yet + ,未被成功广播 + + + + , broadcast through %n node(s) + + + + + Date + 日期 + + + + Source + + + + + Generated + 生成 + + + + + From + 来自 + + + + unknown + 未知 + + + + + + To + + + + + + own address + 自己的地址 + + + + label + 标签 + + + + + + + + Credit + 收入 + + + + matures in %n more block(s) + + + + + not accepted + 未被接受 + + + + + + + Debit + 支出 + + + + Transaction fee + 交易费 + + + + Net amount + 净额 + + + + + Message + 消息 + + + + Comment + 备注 + + + + Transaction ID + 交易ID + + + + Merchant + 商店 + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + 生成的比特币在可以使用前必须有 %1 个成熟的区块。当您生成了此区块后,它将被广播到网络中以加入区块链。如果它未成功进入区块链,其状态将变更为“不接受”并且不可使用。这可能偶尔会发生,如果另一个节点比你早几秒钟成功生成一个区块。 + + + + Debug information + 调试信息 + + + + Transaction + 交易 + + + + Inputs + 输入 + + + + Amount + 金额 + + + + true + 正确 + + + + false + 错误 + + + + TransactionDescDialog + + + Transaction details + 交易细节 + + + + This pane shows a detailed description of the transaction + 当前面板显示了交易的详细信息 + + + + TransactionTableModel + + + Date + 日期 + + + + Type + 类型 + + + + Address + 地址 + + + + Amount + 数量 + + + + Open for %n more block(s) + + + + + Open until %1 + 至 %1 个数据块时开启 + + + + Offline + 掉线 + + + + Unconfirmed + 未确认的 + + + + Confirming (%1 of %2 recommended confirmations) + 确认中 (推荐 %2个确认,已经有 %1个确认) + + + + Confirmed (%1 confirmations) + 已确认 (%1 条确认信息) + + + + Conflicted + 冲突的 + + + + Immature (%1 confirmations, will be available after %2) + 未成熟 (%1 个确认,将在 %2 个后可用) + + + + This block was not received by any other nodes and will probably not be accepted! + 此数据块未被任何其他节点接收,可能不被接受! + + + + Generated but not accepted + 已生成但未被接受 + + + + Received with + 接收于 + + + + Received from + 收款来自 + + + + Received via Darksend + + + + + Sent to + 发送给 + + + + Payment to yourself + 付款给自己 + + + + Mined + 挖矿所得 + + + + Darksend Denominate + + + + + Darksend Collateral Payment + + + + + Darksend Make Collateral Inputs + + + + + Darksend Create Denominations + + + + + Darksent + + + + + (n/a) + (不可用) + + + + Transaction status. Hover over this field to show number of confirmations. + 交易状态。 鼠标移到此区域可显示确认项数量。 + + + + Date and time that the transaction was received. + 接收到交易的时间 + + + + Type of transaction. + 交易类别。 + + + + Destination address of transaction. + 交易目的地址。 + + + + Amount removed from or added to balance. + 从余额添加或移除的金额。 + + + + TransactionView + + + + All + 全部 + + + + Today + 今天 + + + + This week + 本周 + + + + This month + 本月 + + + + Last month + 上月 + + + + This year + 今年 + + + + Range... + 范围... + + + + Received with + 接收于 + + + + Sent to + 发送给 + + + + Darksent + + + + + Darksend Make Collateral Inputs + + + + + Darksend Create Denominations + + + + + Darksend Denominate + + + + + Darksend Collateral Payment + + + + + To yourself + 到自己 + + + + Mined + 挖矿所得 + + + + Other + 其他 + + + + Enter address or label to search + 输入地址或标签进行搜索 + + + + Min amount + 最小金额 + + + + Copy address + 复制地址 + + + + Copy label + 复制标签 + + + + Copy amount + 复制金额 + + + + Copy transaction ID + 复制交易编号 + + + + Edit label + 编辑标签 + + + + Show transaction details + 显示交易详情 + + + + Export Transaction History + 导出交易历史 + + + + Comma separated file (*.csv) + 逗号分隔文件 (*.csv) + + + + Confirmed + 已确认 + + + + Date + 日期 + + + + Type + 类别 + + + + Label + 标签 + + + + Address + 地址 + + + + Amount + 金额 + + + + ID + ID + + + + Exporting Failed + 导出失败 + + + + There was an error trying to save the transaction history to %1. + 导出交易历史到 %1 时发生错误。 + + + + Exporting Successful + 导出成功 + + + + The transaction history was successfully saved to %1. + 交易历史已成功保存到 %1。 + + + + Range: + 范围: + + + + to + + + + + WalletFrame + + + No wallet has been loaded. + 没有载入钱包。 + + + + WalletModel + + + + Send Coins + 发送比特币 + + + + InstantX doesn't support sending values that high yet. Transactions are currently limited to %n DASH. + + + + + WalletView + + + &Export + 导出(&E) + + + + Export the data in the current tab to a file + 导出当前数据到文件 + + + + Backup Wallet + 备份钱包 + + + + Wallet Data (*.dat) + 钱包文件(*.dat) + + + + Backup Failed + 备份失败 + + + + There was an error trying to save the wallet data to %1. + 尝试保存钱包数据至 %1 时发生错误。 + + + + Backup Successful + 备份成功 + + + + The wallet data was successfully saved to %1. + 钱包数据成功保存至 %1 。 + + + + dash-core + + + %s, you must set a rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=dashrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com + + + + + + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. Dash Core is probably already running. + + + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + + + + + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. + + + + + Disable all Masternode and Darksend related functionality (0-1, default: 0) + + + + + Enable instantx, show confirmations for locked transactions (bool, default: true) + + + + + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) + + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. + + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + 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 and coins were spent in the copy but not marked as spent here. + + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! + + + + + Error: Wallet unlocked for anonymization only, unable to create transaction. + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Fees smaller than this are considered zero fee (for transaction creation) (default: + + + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + + + + + Found unconfirmed denominated outputs, will wait till they confirm to continue. + + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. + + + + + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) + + + + + Name to construct url for KeePass entry that stores the wallet passphrase + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + + 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) + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + + + + + Set external address:port to get to this masternode (example: address:port) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + + + + + Show N confirmations for a successfully locked transaction (0-9999, default: 1) + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + Unable to bind to %s on this computer. Dash Core is probably already running. + + + + + Unable to locate enough Darksend denominated funds for this transaction. + + + + + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. + + + + + Unable to locate enough Darksend non-denominated funds for this transaction. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) + + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + + + + + You must specify a masternodeprivkey in the configuration. Please see documentation for help. + + + + + (default: 1) + + + + + (default: wallet.dat) + + + + + <category> can be: + + + + + Accept command line and JSON-RPC commands + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Add a node to connect to and attempt to keep the connection open + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + Allow JSON-RPC connections from specified IP address + + + + + Already have that input. + + + + + Always query for peer addresses via DNS lookup (default: 0) + + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + + Block creation options: + + + + + Can't denominate: no compatible inputs left. + + + + + Cannot downgrade wallet + + + + + Cannot resolve -bind address: '%s' + + + + + Cannot resolve -externalip address: '%s' + + + + + Cannot write default address + + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + + Collateral is not valid. + + + + + Collateral not valid. + + + + + Connect only to the specified node(s) + + + + + Connect through SOCKS proxy + + + + + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) + + + + + Connect to KeePassHttp on port <port> (default: 19455) + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Connection options: + + + + + Corrupted block database detected + + + + + Dash Core Daemon + + + + + Dash Core RPC client version + + + + + Darksend is disabled. + + + + + Darksend options: + + + + + Debugging/Testing options: + + + + + Disable safemode, override a real safe mode event (default: 0) + + + + + Discover own IP address (default: 1 when listening and no -externalip) + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Done loading + + + + + Downgrading and trying again. + + + + + Enable the client to act as a masternode (0-1, default: 0) + + + + + Entries are full. + + + + + Error connecting to masternode. + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading block database + + + + + Error loading wallet.dat + + + + + Error loading wallet.dat: Wallet corrupted + + + + + Error loading wallet.dat: Wallet requires newer version of Dash + + + + + Error opening block database + + + + + Error reading from database, shutting down. + + + + + Error recovering public key. + + + + + Error + 错误 + + + + Error: Disk space is low! + + + + + Error: Wallet locked, unable to create transaction! + + + + + Error: You already have pending entries in the Darksend pool + + + + + Error: system error: + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Failed to read block info + + + + + Failed to read block + + + + + Failed to sync block index + + + + + Failed to write block index + + + + + Failed to write block info + + + + + Failed to write block + + + + + Failed to write file info + + + + + Failed to write to coin database + + + + + Failed to write transaction index + + + + + Failed to write undo data + + + + + Fee per kB to add to transactions you send + + + + + Fees smaller than this are considered zero fee (for relaying) (default: + + + + + Force safe mode (default: 0) + + + + + Generate coins (default: 0) + + + + + Get help for a command + + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + + If <category> is not supplied, output all debugging information. + + + + + Ignore masternodes less than version (example: 70050; default : 0) + + + + + Importing... + + + + + Imports blocks from external blk000??.dat file + + + + + Incompatible mode. + + + + + Incompatible version. + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Information + 信息 + + + + Initialization sanity check failed. Dash Core is shutting down. + + + + + Input is not valid. + + + + + InstantX options: + + + + + Insufficient funds + + + + + Insufficient funds. + + + + + Invalid -onion address: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + + Invalid amount + + + + + Invalid masternodeprivkey. Please see documenation. + + + + + Invalid private key. + + + + + Invalid script detected. + + + + + KeePassHttp id for the established association + + + + + KeePassHttp key for AES encrypted communication with KeePass + + + + + Keep N dash anonymized (default: 0) + + + + + Keep at most <n> unconnectable blocks in memory (default: %u) + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Last Darksend was too recent. + + + + + Last successful darksend action was too recent. + + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + + List commands + + + + + Listen for connections on <port> (default: 9999 or testnet: 19999) + + + + + Loading addresses... + + + + + Loading block index... + + + + + Loading masternode list... + + + + + Loading wallet... (%3.2f %%) + + + + + Loading wallet... + + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + + Maintain a full transaction index (default: 0) + + + + + Maintain at most <n> connections to peers (default: 125) + + + + + Masternode options: + + + + + Masternode queue is full. + + + + + Masternode: + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + + Missing input transaction information. + + + + + No compatible masternode found. + + + + + No funds detected in need of denominating. + + + + + No masternodes detected. + + + + + No matching denominations found for mixing. + + + + + Non-standard public key detected. + + + + + Not compatible with existing transactions. + + + + + Not enough file descriptors available. + + + + + Not in the masternode list. + + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + + Options: + + + + + Password for JSON-RPC connections + + + + + Prepend debug output with timestamp (default: 1) + + + + + Print block on startup, if found in block index + + + + + Print block tree on startup (default: 0) + + + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + + RPC client options: + + + + + RPC server options: + + + + + Randomly drop 1 of every <n> network messages + + + + + Randomly fuzz 1 of every <n> network messages + + + + + Rebuild block chain index from current blk000??.dat files + + + + + Rescan the block chain for missing wallet transactions + + + + + Rescanning... + + + + + Run a thread to flush wallet periodically (default: 1) + + + + + Run in the background as a daemon and accept commands + + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + + Send command to Dash Core + + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + + Send trace/debug info to console instead of debug.log file + + + + + Server certificate file (default: server.cert) + + + + + Server private key (default: server.pem) + + + + + Session not complete! + + + + + Session timed out (30 seconds), please resubmit. + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Set key pool size to <n> (default: 100) + + + + + Set maximum block size in bytes (default: %d) + + + + + Set minimum block size in bytes (default: 0) + + + + + Set the masternode private key + + + + + Set the number of threads to service RPC calls (default: 4) + + + + + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Show benchmark information (default: 0) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing failed. + + + + + Signing timed out, please resubmit. + + + + + Signing transaction failed + + + + + Specify configuration file (default: dash.conf) + + + + + Specify connection timeout in milliseconds (default: 5000) + + + + + Specify data directory + + + + + Specify masternode configuration file (default: masternode.conf) + + + + + Specify pid file (default: dashd.pid) + + + + + Specify wallet file (within data directory) + + + + + Specify your own public address + + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + + Start Dash Core Daemon + + + + + System error: + + + + + This help message + + + + + This is intended for regression testing tools and app development. + + + + + This is not a masternode. + + + + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + To use the %s option + + + + + Transaction amount too small + + + + + Transaction amounts must be positive + + + + + Transaction created successfully. + + + + + Transaction fees are too high. + + + + + Transaction not valid. + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Unable to sign masternode payment winner, wrong key? + + + + + Unable to sign spork message, wrong key? + + + + + Unknown -socks proxy version requested: %i + + + + + Unknown network specified in -onlynet: '%s' + + + + + Upgrade wallet to latest format + + + + + Usage (deprecated, use dash-cli): + + + + + Usage: + 使用: + + + + Use KeePass 2 integration using KeePassHttp plugin (default: 0) + + + + + Use N separate masternodes to anonymize funds (2-8, default: 2) + + + + + Use OpenSSL (https) for JSON-RPC connections + + + + + Use UPnP to map the listening port (default: 0) + + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + + Use the test network + + + + + Username for JSON-RPC connections + + + + + Value more than Darksend pool maximum allows. + + + + + Verifying blocks... + + + + + Verifying wallet... + + + + + Wait for RPC server to start + + + + + Wallet %s resides outside data directory %s + + + + + Wallet is locked. + + + + + Wallet needed to be rewritten: restart Dash to complete + + + + + Wallet options: + + + + + Warning + 警告 + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + + Warning: This version is obsolete, upgrade required! + + + + Wrong state. + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + on startup + + + + + version + 版本 + + + + wallet.dat corrupt, salvage failed + + + + \ No newline at end of file diff --git a/src/qt/locale/dash_zh_HK.ts b/src/qt/locale/dash_zh_HK.ts new file mode 100644 index 0000000000..5711eab9de --- /dev/null +++ b/src/qt/locale/dash_zh_HK.ts @@ -0,0 +1,5295 @@ + + + AboutDialog + + + About Dash Core + 關於暗黑幣核心 + + + + <b>Dash Core</b> version + <b>暗黑幣核心</b> 版本 + + + + Copyright &copy; 2009-2014 The Bitcoin Core developers. +Copyright &copy; 2014-YYYY The Dash Core developers. + 版權 &copy 為位元幣核心開發人員自西元 2009-2014年所有 +版權 &copy 為暗黑幣核心開發人員自西元 2014-YYYY年所有 + + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +位元幣,原名是 Bitcoin, 又叫做比特幣。 + +這是一套實驗性的軟體。 + +這套軟體是依據 MIT/X11 軟體授權條款散布,詳情請見附帶的 COPYING 檔案,或是以下網站: http://www.opensource.org/licenses/mit-license.php. + +此產品也包含了由 OpenSSL Project 所開發的 OpenSSL Toolkit (http://www.openssl.org/) 軟體,和由 Eric Young (eay@cryptsoft.com) 撰寫的加解密軟體,以及由 Thomas Bernard 所撰寫的 UPnP 軟體。 + + + + + Copyright + 版權 + + + + The Bitcoin Core developers + 位元幣核心開發人員 + + + + The Dash Core developers + 暗黑幣核心開發人員 + + + + + (%1-bit) + (%1 位元) + + + + AddressBookPage + + + Double-click to edit address or label + 按兩下來編輯位址或標記 + + + + Create a new address + 製造新的位址 + + + + &New + 新增 + + + + Copy the currently selected address to the system clipboard + 複製目前選擇的位址到系統剪貼簿 + + + + &Copy + 複製 + + + + Delete the currently selected address from the list + 把目前選擇的位址從列表中刪掉 + + + + &Delete + 刪掉 + + + + Export the data in the current tab to a file + 把目前分頁的資料匯出存成檔案 + + + + &Export + 匯出 + + + + C&lose + 關閉 + + + + Choose the address to send coins to + 選擇要付錢過去的位址 + + + + Choose the address to receive coins with + 選擇要收錢進來的位址 + + + + C&hoose + 選取 + + + + Sending addresses + 付款位址 + + + + Receiving addresses + 收款位址 + + + + These are your Dash addresses for sending payments. Always check the amount and the receiving address before sending coins. + 這些是你要付款過去的暗黑幣位址。在付款之前,務必要檢查金額和收款位址是否正確。 + + + + These are your Dash addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + 這些是你用來收款的暗黑幣位址。建議在每次交易時,都使用一個新的收款位址。 + + + + &Copy Address + 複製位址 + + + + Copy &Label + 複製標記 + + + + &Edit + 編輯 + + + + Export Address List + 匯出位址清單 + + + + Comma separated file (*.csv) + 逗號分隔資料檔(*.csv) + + + + Exporting Failed + 匯出失敗 + + + + There was an error trying to save the address list to %1. + 儲存位址列表到 %1 時發生錯誤。 + + + + AddressTableModel + + + Label + 標記 + + + + Address + 位址 + + + + (no label) + (無標記) + + + + AskPassphraseDialog + + + Passphrase Dialog + 密碼對話視窗 + + + + Enter passphrase + 請輸入密碼 + + + + New passphrase + 新密碼 + + + + Repeat new passphrase + 重複新密碼 + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + 當OS帳號被盜就禁止發送幣。這並不提供真正的安全性。 + + + + For anonymization only + 只為匿名處理 + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + 請輸入錢包的新密碼。<br/>建議用<b>10 個以上的任意字元</b>,或是<b>8 個以上的單字</b>。 + + + + Encrypt wallet + 加密錢包 + + + + This operation needs your wallet passphrase to unlock the wallet. + 這個動作需要你的錢包密碼來解鎖錢包。 + + + + Unlock wallet + 解鎖錢包 + + + + This operation needs your wallet passphrase to decrypt the wallet. + 這個動作需要你的錢包密碼來把錢包解密。 + + + + Decrypt wallet + 解密錢包 + + + + Change passphrase + 改變密碼 + + + + Enter the old and new passphrase to the wallet. + 請輸入錢包的舊密碼及新密碼。 + + + + Confirm wallet encryption + 確認錢包加密 + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DASHS</b>! + 警告:如果把錢包加密後又忘記密碼,你就會從此<b>失去所有的暗黑幣了</b>! + + + + Are you sure you wish to encrypt your wallet? + 你確定要把錢包加密嗎? + + + + + Wallet encrypted + 錢包已加密 + + + + Dash will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your dashs from being stolen by malware infecting your computer. + 暗黑幣軟體現在要關閉,以完成加密過程。請注意,加密錢包不能完全防止惡意軟件入侵你的電腦盜取你的暗黑幣。 + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + 重要: 請改用新產生有加密的錢包檔,來取代舊錢包檔的備份。為了安全性的理由,當你開始使用新的有加密的錢包後,舊錢包檔的備份就不能再使用了。 + + + + + + + Wallet encryption failed + 錢包加密失敗 + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + 因為內部錯誤導致錢包加密失敗。你的錢包還是沒加密。 + + + + + The supplied passphrases do not match. + 提供的密碼不一樣。 + + + + Wallet unlock failed + 錢包解鎖失敗 + + + + + + The passphrase entered for the wallet decryption was incorrect. + 輸入要用來解密錢包的密碼不對。 + + + + Wallet decryption failed + 錢包解密失敗 + + + + Wallet passphrase was successfully changed. + 錢包密碼改成功了。 + + + + + Warning: The Caps Lock key is on! + 警告: 大寫字母鎖定作用中! + + + + BitcoinGUI + + + Dash Core + 暗黑幣核心 + + + + Wallet + 錢包 + + + + Node + 節點 + + + + + [testnet] + [testnet] + + + + &Overview + 總覽 + + + + Show general overview of wallet + 顯示錢包一般總覽 + + + + &Send + 付款 + + + + Send coins to a Dash address + 發送幣至暗黑幣地址 + + + + &Receive + 收款 + + + + Request payments (generates QR codes and dash: URIs) + 要求付款(生成二維碼和暗黑幣付款協議的 URI) + + + + &Transactions + 交易 + + + + Browse transaction history + 瀏覽交易紀錄 + + + + E&xit + 結束 + + + + Quit application + 結束應用程式 + + + + + &About Dash Core + 關於暗黑幣核心 + + + + Show information about Dash + 顯示暗黑幣的相關資訊 + + + + + About &Qt + 關於 &Qt + + + + Show information about Qt + 顯示 Qt 相關資訊 + + + + &Options... + 選項... + + + + Modify configuration options for Dash + 修改暗黑幣配置選項 + + + + + &Show / Hide + 顯示或隱藏 + + + + Show or hide the main Window + 顯示或隱藏主視窗 + + + + &Encrypt Wallet... + 加密錢包... + + + + Encrypt the private keys that belong to your wallet + 把錢包中的密鑰加密 + + + + &Backup Wallet... + 備份錢包... + + + + Backup wallet to another location + 把錢包備份到其它地方 + + + + &Change Passphrase... + 改變密碼... + + + + Change the passphrase used for wallet encryption + 改變錢包加密用的密碼 + + + + &Unlock Wallet... + &解鎖錢包 + + + + Unlock wallet + 解鎖錢包 + + + + &Lock Wallet + &鎖定錢包 + + + + Sign &message... + 簽署訊息... + + + + Sign messages with your Dash addresses to prove you own them + 用暗黑幣位址簽署訊息來證明位址是你的 + + + + &Verify message... + 驗證訊息... + + + + Verify messages to ensure they were signed with specified Dash addresses + 驗證訊息是用來確定訊息是用指定的暗黑幣位址簽署的 + + + + &Information + 資訊 + + + + Show diagnostic information + 顯示診斷信息 + + + + &Debug console + 除錯控制台 + + + + Open debugging console + 開啟除錯控制台 + + + + &Network Monitor + 網絡監控器 + + + + Show network monitor + 顯示網絡監控器 + + + + Open &Configuration File + 開啟配置文件 + + + + Open configuration file + 開啟配置文件 + + + + &Sending addresses... + 付款位址... + + + + Show the list of used sending addresses and labels + 顯示已使用過的付款位址和標記的清單 + + + + &Receiving addresses... + 收款位址... + + + + Show the list of used receiving addresses and labels + 顯示已使用過的收款位址和標記的清單 + + + + Open &URI... + 開啓 URI... + + + + Open a dash: URI or payment request + 打開暗黑幣:網頁或付款請求 + + + + &Command-line options + 命令列選項 + + + + Show the Dash Core help message to get a list with possible Dash command-line options + 打開暗黑幣核心的幫助信息以取得可使用的命令行列表 + + + + &File + 檔案 + + + + &Settings + 設定 + + + + &Tools + 工具 + + + + &Help + 說明 + + + + Tabs toolbar + 分頁工具列 + + + + + Dash client + 暗黑幣客戶端 + + + + %n active connection(s) to Dash network + %n 個運作中的暗黑幣網路連線 + + + + Synchronizing with network... + 正在跟網路進行同步... + + + + Importing blocks from disk... + 正在從磁碟匯入區塊資料... + + + + Reindexing blocks on disk... + 正在為磁碟裡的區塊重建索引... + + + + No block source available... + 沒有可用的區塊來源... + + + + Processed %1 blocks of transaction history. + 已處理了 %1 個區塊的交易紀錄。 + + + + Up to date + 最新狀態 + + + + %n hour(s) + %n 個小時 + + + + %n day(s) + %n 天 + + + + + %n week(s) + %n 個星期 + + + + %1 and %2 + %1又 %2 + + + + %n year(s) + %n 年 + + + + %1 behind + 落後 %1 + + + + Catching up... + 正在趕進度... + + + + Last received block was generated %1 ago. + 最近收到的區塊是在 %1 以前生出來的。 + + + + Transactions after this will not yet be visible. + 暫時會看不到在這之後的交易。 + + + + Dash + 暗黑幣 + + + + Error + 錯誤 + + + + Warning + 警告 + + + + Information + 資訊 + + + + Sent transaction + 付款交易 + + + + Incoming transaction + 收款交易 + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + 日期: %1 +金額: %2 +種類: %3 +位址: %4 + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + 錢包<b>已加密</b>並且<b>解鎖中</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only + 錢包<b>已加密</b>並且因為匿名操作而<b>解鎖中</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + 錢包<b>已加密</b>並且<b>上鎖中</b> + + + + A fatal error occurred. Dash can no longer continue safely and will quit. + 發生嚴重錯誤。暗黑幣不能繼續安全操作,將退出。 + + + + ClientModel + + + Network Alert + 網路警報 + + + + CoinControlDialog + + + Coin Control Address Selection + 錢幣控制的位址選擇 + + + + Quantity: + 數目: + + + + Bytes: + 位元組數: + + + + Amount: + 金額: + + + + Priority: + 優先度: + + + + Fee: + 手續費: + + + + Low Output: + 低輸出: + + + + After Fee: + 計費後金額: + + + + Change: + 找零金額: + + + + (un)select all + 全選或全不選 + + + + Tree mode + 樹狀模式 + + + + List mode + 列表模式 + + + + (1 locked) + (1 鎖定 ) + + + + Amount + 金額 + + + + Label + 標記 + + + + Address + 位址 + + + + Darksend Rounds + 暗黑發送循環 + + + + Date + 日期 + + + + Confirmations + 確認次數 + + + + Confirmed + 已確認 + + + + Priority + 優先度 + + + + Copy address + 複製位址 + + + + Copy label + 複製標記 + + + + + Copy amount + 複製金額 + + + + Copy transaction ID + 複製交易識別碼 + + + + Lock unspent + 鎖定不用 + + + + Unlock unspent + 解鎖可用 + + + + Copy quantity + 複製數目 + + + + Copy fee + 複製手續費 + + + + Copy after fee + 複製計費後金額 + + + + Copy bytes + 複製位元組數 + + + + Copy priority + 複製優先度 + + + + Copy low output + 複製低輸出 + + + + Copy change + 複製找零金額 + + + + highest + 最高 + + + + higher + 很高 + + + + high + + + + + medium-high + 中高 + + + + n/a + 不適用 + + + + + medium + 中等 + + + + low-medium + 中低 + + + + low + + + + + lower + 很低 + + + + lowest + 最低 + + + + (%1 locked) + (鎖定 %1 枚) + + + + none + + + + + Dust + 零散錢 + + + + yes + + + + + + no + + + + + This label turns red, if the transaction size is greater than 1000 bytes. + 當交易大小大於 1000 位元組時,文字會變紅色。 + + + + + This means a fee of at least %1 per kB is required. + 表示每一千位元組(kB)需要至少 %1 的手續費。 + + + + Can vary +/- 1 byte per input. + 每組輸入可能會誤差多或少 1 個位元組。 + + + + Transactions with higher priority are more likely to get included into a block. + 優先度較高的交易比較有可能被接受放進區塊中。 + + + + This label turns red, if the priority is smaller than "medium". + 當優先度低於「中等」時,文字會變紅色。 + + + + This label turns red, if any recipient receives an amount smaller than %1. + 當任何一個收款金額小於 %1 時,文字會變紅色。 + + + + + This means a fee of at least %1 is required. + 表示至少需要 %1 的交易手續費。 + + + + Amounts below 0.546 times the minimum relay fee are shown as dust. + 當金額低於最低轉發手續費乘以 0.546 時,會顯示成零散錢。 + + + + This label turns red, if the change is smaller than %1. + 當找零金額小於 %1 時,文字會變紅色。 + + + + + (no label) + (無標記) + + + + change from %1 (%2) + 找零前是 %1 (%2) + + + + (change) + (找零) + + + + DarksendConfig + + + Configure Darksend + 設定暗黑發送 + + + + Basic Privacy + 基本隱私 + + + + High Privacy + 高度隱私 + + + + Maximum Privacy + 最大隱私 + + + + Please select a privacy level. + 請選擇隱私等級。 + + + + Use 2 separate masternodes to mix funds up to 1000 DASH + 使用2個獨立的主節點混合資金最多1000DRK + + + + Use 8 separate masternodes to mix funds up to 1000 DASH + 使用8個獨立的主節點混合資金最多1000DRK + + + + Use 16 separate masternodes + 使用16個獨立的主節點 + + + + This option is the quickest and will cost about ~0.025 DASH to anonymize 1000 DASH + 此選項為最快速度,需要支付0.025D​​RK/1000DRK的匿名處理費用。 + + + + This option is moderately fast and will cost about 0.05 DASH to anonymize 1000 DASH + 此選項為一般速度,需要支付0.05DRK/1000DRK的匿名處理費用。 + + + + 0.1 DASH per 1000 DASH you anonymize. + 0.1DRK/1000DRK的匿名處理費用。 + + + + This is the slowest and most secure option. Using maximum anonymity will cost + 這是最慢的,最安全的選擇。使用最多的匿名費用 + + + + + + Darksend Configuration + 暗黑發送設定 + + + + Darksend was successfully set to basic (%1 and 2 rounds). You can change this at any time by opening Dash's configuration screen. + 暗黑發送已成功設置為一般(%1到2次循環)。你可以通過打開暗黑幣配置窗口來隨時修改。 + + + + Darksend was successfully set to high (%1 and 8 rounds). You can change this at any time by opening Dash's configuration screen. + 暗黑發送已成功設置為高(%1到8次循環)。你可以通過打開暗黑幣配置窗口來隨時修改。 + + + + Darksend was successfully set to maximum (%1 and 16 rounds). You can change this at any time by opening Dash's configuration screen. + 暗黑發送已成功設置為最高(%1到16次循環)。你可以通過打開暗黑幣配置窗口來隨時修改。 + + + + EditAddressDialog + + + Edit Address + 編輯位址 + + + + &Label + 標記 + + + + The label associated with this address list entry + 跟這個位址簿項目關聯的標記 + + + + &Address + 位址 + + + + The address associated with this address list entry. This can only be modified for sending addresses. + 跟這個位址簿項目關聯的位址。只有付款位址能被修改。 + + + + New receiving address + 造新的收款位址 + + + + New sending address + 造新的付款位址 + + + + Edit receiving address + 編輯收款位址 + + + + Edit sending address + 編輯付款位址 + + + + The entered address "%1" is not a valid Dash address. + 輸入的地址"%1"不是有效的暗黑幣地址。 + + + + The entered address "%1" is already in the address book. + 輸入的位址 %1 在位址簿中已經有了。 + + + + Could not unlock wallet. + 沒辦法把錢包解鎖。 + + + + New key generation failed. + 產生新的密鑰失敗了。 + + + + FreespaceChecker + + + A new data directory will be created. + 就要造出新的資料目錄。 + + + + name + 名稱 + + + + Directory already exists. Add %1 if you intend to create a new directory here. + 已經有這個目錄了。如果你要在裡面造出新的目錄的話,請加上 %1. + + + + Path already exists, and is not a directory. + 已經有指定的路徑了,並且不是一個目錄。 + + + + Cannot create data directory here. + 沒辦法在這裡造出資料目錄。 + + + + HelpMessageDialog + + + Dash Core - Command-line options + 暗黑幣核心 - 命令行選項 + + + + Dash Core + 暗黑幣核心 + + + + version + 版本 + + + + Usage: + 用法: + + + + command-line options + 命令列選項 + + + + UI options + 使用界面選項 + + + + Choose data directory on startup (default: 0) + 啓動時選擇資料目錄(預設值: 0) + + + + Set language, for example "de_DE" (default: system locale) + 設定語言,比如說 de_DE (預設值: 系統語系) + + + + Start minimized + 啓動時縮到最小 + + + + Set SSL root certificates for payment request (default: -system-) + 設定付款請求時所使用的 SSL 根憑證 (預設值: 系統憑證庫) + + + + Show splash screen on startup (default: 1) + 顯示啓動畫面(預設值: 1) + + + + Intro + + + Welcome + 歡迎 + + + + Welcome to Dash Core. + 歡迎來到暗黑幣核心。 + + + + As this is the first time the program is launched, you can choose where Dash Core will store its data. + 因為這是程式第一次啓動,你可以選擇暗黑幣核心儲存資料的地方。 + + + + Dash Core will download and store a copy of the Dash block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + 暗黑幣核心會下載並儲存一份暗黑幣區塊鏈的拷貝。至少有 %1GB 的資料會儲存到這個目錄中,並且還會持續增長。另外錢包資料也會儲存在這個目錄。 + + + + Use the default data directory + 使用預設的資料目錄 + + + + Use a custom data directory: + 使用自定的資料目錄: + + + + Dash + 暗黑幣 + + + + Error: Specified data directory "%1" can not be created. + 錯誤: 沒辦法造出指定的資料目錄 %1 。 + + + + Error + 錯誤 + + + + GB of free space available + GB 可用空間 + + + + (of %1GB needed) + (需要 %1GB) + + + + OpenURIDialog + + + Open URI + 開啓 URI + + + + Open payment request from URI or file + 從 URI 或檔案開啟付款要求 + + + + URI: + URI: + + + + Select payment request file + 選擇付款要求資料檔 + + + + Select payment request file to open + 選擇要開啟的付款要求資料檔 + + + + OptionsDialog + + + Options + 選項 + + + + &Main + 主要 + + + + Automatically start Dash after logging in to the system. + 登錄系統後自動啟動暗黑幣程序 + + + + &Start Dash on system login + 系統登錄時啟動暗黑幣程序 + + + + Size of &database cache + 資料庫快取大小 + + + + MB + MB (百萬位元組) + + + + Number of script &verification threads + 指令碼驗證執行緒數目 + + + + (0 = auto, <0 = leave that many cores free) + (0 表示程式自動決定,小於 0 表示保留處理器核心不用的數目) + + + + <html><head/><body><p>This setting determines the amount of individual masternodes that an input will be anonymized through. More rounds of anonymization gives a higher degree of privacy, but also costs more in fees.</p></body></html> + <html><head/><body><p>這個設置決定個別主節點進行匿名處理的數量。更多的匿名循環提供了更高程度的隱私,不過會花費更多的費用。</p></body></html> + + + + Darksend rounds to use + 使用的暗黑發送循環數 + + + + This amount acts as a threshold to turn off Darksend once it's reached. + 此金額為關閉暗黑發送的門檻。 + + + + Amount of Dash to keep anonymized + 保持匿名化的暗黑幣數 + + + + W&allet + 錢包 + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. + 每一千位元組(kB)要付的交易手續費,如果有付可以加速網路處理你的交易。大部份交易資料的大小是 1 kB. + + + + Pay transaction &fee + 付交易手續費 + + + + Expert + 專家 + + + + Whether to show coin control features or not. + 是否要顯示錢幣控制功能。 + + + + Enable coin &control features + 開啟錢幣控制功能 + + + + 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. + 如果你關掉「可以花還沒確認的零錢」,那麼交易中找零的零錢就必須要等交易至少有一次確認後,才能夠使用。這也會影響餘額的計算方式。 + + + + &Spend unconfirmed change + 可以花還沒確認的零錢 + + + + &Network + 網路 + + + + Automatically open the Dash client port on the router. This only works when your router supports UPnP and it is enabled. + 自動對路由器打開暗黑幣客戶端端口。此項只在路由器支持UPnP時有效。 + + + + Map port using &UPnP + 用 &UPnP 設定通訊埠對應 + + + + Connect to the Dash network through a SOCKS proxy. + 通過SOCKS代理鏈接暗黑幣網絡。 + + + + &Connect through SOCKS proxy (default proxy): + 透過 SOCKS 代理伺服器連線(預設代理伺服器): + + + + Proxy &IP: + 代理位址: + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + 代理伺服器的網際網路位址(像是 IPv4 的 127.0.0.1 或 IPv6 的 ::1) + + + + &Port: + 埠號: + + + + Port of the proxy (e.g. 9050) + 代理伺服器的通訊埠(像是 9050) + + + + SOCKS &Version: + SOCKS 版本: + + + + SOCKS version of the proxy (e.g. 5) + 代理伺服器的 SOCKS 協定版本(像是 5) + + + + &Window + 視窗 + + + + Show only a tray icon after minimizing the window. + 視窗縮到最小後只在通知區域顯示圖示。 + + + + &Minimize to the tray instead of the taskbar + 縮到最小到通知區域而不是工作列 + + + + 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. + 當視窗關閉時,把應用程式縮到最小,而不是結束。當勾選這個選項時,只能夠用選單中的結束來關掉應用程式。 + + + + M&inimize on close + 關閉時縮到最小 + + + + &Display + 顯示 + + + + User Interface &language: + 使用界面語言: + + + + The user interface language can be set here. This setting will take effect after restarting Dash. + 可以在這裡設定使用者介面的語言。這個設定在重啓暗黑幣軟體後才會生效。 + + + + Language missing or translation incomplete? Help contributing translations here: +https://www.transifex.com/projects/p/dash/ + 缺少相關語言或翻譯不完整? 請到這裡協助翻譯: +https://www.transifex.com/projects/p/dash/ + + + + &Unit to show amounts in: + 金額顯示單位: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + 選擇操作界面和付款時,預設顯示金額的細分單位。 + + + + Whether to show Dash addresses in the transaction list or not. + 是否顯示交易列表中的暗黑幣地址。 + + + + &Display addresses in transaction list + 在交易列表顯示位址 + + + + + 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 |. + 在交易頁籤的情境選單出現的第三方(比如說區塊探索網站)網址連結。網址中的 %s 會被取代為交易的雜湊值。可以用直線符號 | 來分隔多個連結。 + + + + Third party transaction URLs + 交易的第三方網址連結 + + + + Active command-line options that override above options: + 從命令列取代掉以上設定的選項有: + + + + Reset all client options to default. + 重設所有客戶端軟體選項成預設值。 + + + + &Reset Options + 重設選項 + + + + &OK + + + + + &Cancel + 取消 + + + + default + 預設值 + + + + none + + + + + Confirm options reset + 確認重設選項 + + + + + Client restart required to activate changes. + 需要重新啟動客戶端軟體來讓改變生效。 + + + + Client will be shutdown, do you want to proceed? + 客戶端軟體就要關掉了,繼續做下去嗎? + + + + This change would require a client restart. + 這項改變需要重新啟動客戶端軟體。 + + + + The supplied proxy address is invalid. + 提供的代理伺服器位址無效。 + + + + OverviewPage + + + Form + 表單 + + + + Wallet + 錢包 + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Dash network after a connection is established, but this process has not completed yet. + 顯示的資訊可能是過期的。跟暗黑幣網路的連線建立後,你的錢包會自動和網路同步,但是這個步驟還沒完成。 + + + + Available: + 可用金額: + + + + Your current spendable balance + 目前可用餘額 + + + + Pending: + 未定金額: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + 還沒被確認的交易的總金額,可用餘額不包含這些金額 + + + + Immature: + 未成熟金額: + + + + Mined balance that has not yet matured + 還沒成熟的開採金額 + + + + Total: + 總金額: + + + + Your current total balance + 目前全部餘額 + + + + Status: + 狀態: + + + + Enabled/Disabled + 啟用/禁用 + + + + Completion: + 完成: + + + + Darksend Balance: + 暗黑發送餘額: + + + + 0 DASH + 0 暗黑幣 + + + + Amount and Rounds: + 金額和循環數: + + + + 0 DASH / 0 Rounds + 0 暗黑幣 / 0 循環數 + + + + Submitted Denom: + 已提交的面額: + + + + The denominations you submitted to the Masternode. To mix, other users must submit the exact same denominations. + 你已提交給主節點的除名額度。為了混合,其他用戶必須提交完全一致的除名額度。 + + + + n/a + 不適用 + + + + + + + Darksend + 暗黑發送 + + + + Start/Stop Mixing + 啟動/停止 混合 + + + + (Last Message) + (最新信息) + + + + Try to manually submit a Darksend request. + 請嘗試手動提交暗黑發送請求。 + + + + Try Mix + 嘗試混合 + + + + Reset the current status of Darksend (can interrupt Darksend if it's in the process of Mixing, which can cost you money!) + 重置目前暗黑發送配置(若暗黑發送正在混合的過程中,將會終止操作,並產生處理費用!) + + + + Reset + 重置 + + + + <b>Recent transactions</b> + <b>最近交易</b> + + + + + + out of sync + 還沒同步 + + + + + Disabled + 禁用 + + + + + + Start Darksend Mixing + 啟動暗黑發送混合 + + + + + Stop Darksend Mixing + 停止暗黑發送混合 + + + + No inputs detected + 未檢測到任何輸入 + + + + Found unconfirmed denominated outputs, will wait till they confirm to recalculate. + 發現未確認的己除名輸出,等待確認後重新計算。 + + + + Rounds + 循環 + + + + Enabled + 啟用 + + + + Last Darksend message: + + 最新暗黑發送信息: + + + + + + Darksend is idle. + 暗黑發送閒置中。 + + + + Mixing in progress... + + + + + Darksend request complete: Your transaction was accepted into the pool! + 暗黑發送请求完成:你的交易已經被礦池接受! + + + + Submitted following entries to masternode: + 向主節點遞交以下條目: + + + + + + Submitted to masternode, Waiting for more entries + 已遞交至主節點,等待更多條目 + + + + Found enough users, signing ... + 已找到足夠用戶,簽名中... + + + + Found enough users, signing ( waiting. ) + 已找到足夠用戶,簽名中(等待. ) + + + + Found enough users, signing ( waiting.. ) + 已找到足夠用戶,簽名中(等待.. ) + + + + Found enough users, signing ( waiting... ) + 已找到足夠用戶,簽名中(等待... ) + + + + Transmitting final transaction. + 正在傳送最終交易。 + + + + Finalizing transaction. + 正在完成交易。 + + + + Darksend request incomplete: + 暗黑發送請求未完成: + + + + Will retry... + 將重試... + + + + Darksend request complete: + 暗黑發送請求完成: + + + + Submitted to masternode, waiting in queue . + 己提交至主節點,排隊等待. + + + + Submitted to masternode, waiting in queue .. + 己提交至主節點,排隊等待.. + + + + Submitted to masternode, waiting in queue ... + 己提交至主節點,排隊等待... + + + + Unknown state: + 未知狀態: + + + + N/A + 未知 + + + + Darksend was successfully reset. + 暗黑發送已成功重置。 + + + + Darksend requires at least %1 to use. + 暗黑發送需要至少%1來使用。 + + + + Wallet is locked and user declined to unlock. Disabling Darksend. + 錢包已被鎖,用戶拒絕解鎖。正在停止暗黑發送。 + + + + PaymentServer + + + + + + + + Payment request error + 要求付款時發生錯誤 + + + + Cannot start dash: click-to-pay handler + 無法啟動暗黑幣程序:click-to-pay handler + + + + Net manager warning + 網路管理員警告 + + + + Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. + 目前使用中的代理伺服器不支援 SOCKS5 通訊協定,因此不能透過它來要求付款。 + + + + + URI handling + URI 處理 + + + + Payment request fetch URL is invalid: %1 + 取得付款要求的 URL 無效: %1 + + + + URI can not be parsed! This can be caused by an invalid Dash address or malformed URI parameters. + 鏈接無法被解析! 原因可能是無效的暗黑幣地址或輸入的鏈接有錯。 + + + + Payment request file handling + 處理付款要求檔案 + + + + Payment request file can not be read or processed! This can be caused by an invalid payment request file. + 沒辦法讀或處理付款要求檔案!可能是無效的檔案造成的。 + + + + Unverified payment requests to custom payment scripts are unsupported. + 不支援含有自訂付款指令碼,且沒驗證過的付款要求。 + + + + Requested payment amount of %1 is too small (considered dust). + 要求付款的金額 %1 太少(會被網路認為是沒必要的零散錢)。 + + + + Refund from %1 + 來自 %1 的退款 + + + + Error communicating with %1: %2 + 跟 %1 通訊時發生錯誤: %2 + + + + Payment request can not be parsed or processed! + 沒辦法解析或處理付款要求! + + + + Bad response from server %1 + 伺服器 %1 的回應有誤 + + + + Network request error + 發出要求時發生網路錯誤 + + + + Payment acknowledged + 已確認付款 + + + + QObject + + + + + + Dash + 暗黑幣 + + + + Error: Specified data directory "%1" does not exist. + 錯誤: 沒有指定的資料目錄 %1 。 + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + 錯誤: 沒辦法解析設定檔: %1。請只用「名稱=設定值」這種語法。 + + + + Error reading masternode configuration file: %1 + 讀取主節點配置文件出錯:%1 + + + + Error: Invalid combination of -regtest and -testnet. + 錯誤: -regtest 和 -testnet 的使用組合無效。 + + + + Dash Core didn't yet exit safely... + 暗黑幣核心還未安全退出... + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + 输入暗黑币地址(如. +XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + QRImageWidget + + + &Save Image... + 儲存圖片... + + + + &Copy Image + 複製圖片 + + + + Save QR Code + 儲存 QR Code + + + + PNG Image (*.png) + PNG 圖檔(*.png) + + + + RPCConsole + + + Tools window + 工具窗口 + + + + &Information + 資訊 + + + + Masternode Count + 主節點計算 + + + + General + 普通 + + + + Name + 名稱 + + + + Client name + 客戶端軟體名稱 + + + + + + + + + + + + + N/A + 未知 + + + + Number of connections + 連線數 + + + + Open the Dash debug log file from the current data directory. This can take a few seconds for large log files. + 從當前的數據目錄打開除錯日誌文件。如果日誌文件較大的話可能需要幾秒鐘。 + + + + &Open + 開啓 + + + + Startup time + 啓動時間 + + + + Network + 網路 + + + + Last block time + 最近區塊時間 + + + + Debug log file + 除錯紀錄檔 + + + + Using OpenSSL version + 使用的 OpenSSL 版本 + + + + Build date + 建置日期 + + + + Current number of blocks + 目前區塊數 + + + + Client version + 客戶端軟體版本 + + + + Block chain + 區塊鏈 + + + + &Console + 主控台 + + + + Clear console + 清主控台 + + + + &Network Traffic + 網路流量 + + + + &Clear + 清掉 + + + + Totals + 總計 + + + + + In: + 輸入: + + + + + Out: + 輸出: + + + + Welcome to the Dash RPC console. + 歡迎來到暗黑幣RPC控制台。 + + + + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + 請用上下游標鍵來瀏覽先前指令的紀錄,並用 <b>Ctrl-L</b> 來清畫面。 + + + + Type <b>help</b> for an overview of available commands. + 請打 <b>help</b> 來看可用指令的簡介。 + + + + %1 B + %1 B (位元組) + + + + %1 KB + %1 KB (千位元組) + + + + %1 MB + %1 MB (百萬位元組) + + + + %1 GB + %1 GB (十億位元組) + + + + %1 m + %1 分鐘 + + + + %1 h + %1 小時 + + + + %1 h %2 m + %1 小時 %2 分 + + + + ReceiveCoinsDialog + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + 重複使用先前使用過的收款位址。重複使用位址會有安全和隱私方面的問題。除非是要重新產生先前的付款要求,不然請不要使用。 + + + + R&euse an existing receiving address (not recommended) + 重複使用現有的收款位址(不建議) + + + + + 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 Dash network. + 附加在付款要求中的訊息,可以不填,打開要求內容時會顯示。注意: 這個訊息不會隨著付款送到暗黑幣網路上。 + + + + &Message: + 訊息: + + + + + An optional label to associate with the new receiving address. + 跟新收款位址關聯的標記,可以不填。 + + + + Use this form to request payments. All fields are <b>optional</b>. + 請用這份表單來要求付款。所有欄位都<b>可以不填</b>。 + + + + &Label: + 標記: + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + 要求付款的金額,可以不填。不確定金額時可以留白或是填零。 + + + + &Amount: + 金額: + + + + &Request payment + 要求付款 + + + + Clear all fields of the form. + 把表單中的所有欄位清空。 + + + + Clear + 清空 + + + + Requested payments history + 先前要求付款的記錄 + + + + Show the selected request (does the same as double clicking an entry) + 顯示選擇的要求內容(效果跟按它兩下一樣) + + + + Show + 顯示 + + + + Remove the selected entries from the list + 從列表中刪掉選擇的項目 + + + + Remove + 刪掉 + + + + Copy label + 複製標記 + + + + Copy message + 複製訊息 + + + + Copy amount + 複製金額 + + + + ReceiveRequestDialog + + + QR Code + QR Code + + + + Copy &URI + 複製 URI + + + + Copy &Address + 複製位址 + + + + &Save Image... + 儲存圖片... + + + + Request payment to %1 + 付款給 %1 的要求 + + + + Payment information + 付款資訊 + + + + URI + URI + + + + Address + 位址 + + + + Amount + 金額 + + + + Label + 標記 + + + + Message + 訊息 + + + + Resulting URI too long, try to reduce the text for label / message. + 產生的 URI 過長,請試著縮短標記或訊息的文字內容。 + + + + Error encoding URI into QR Code. + 把 URI 編碼成 QR Code 時發生錯誤。 + + + + RecentRequestsTableModel + + + Date + 日期 + + + + Label + 標記 + + + + Message + 訊息 + + + + Amount + 金額 + + + + (no label) + (無標記) + + + + (no message) + (無訊息) + + + + (no amount) + (無金額) + + + + SendCoinsDialog + + + + + + Send Coins + 付款 + + + + Coin Control Features + 錢幣控制功能 + + + + Inputs... + 輸入... + + + + automatically selected + 自動選擇 + + + + Insufficient funds! + 累計金額不足! + + + + Quantity: + 數目: + + + + Bytes: + 位元組數: + + + + Amount: + 金額: + + + + Priority: + 優先度: + + + + medium + 中等 + + + + Fee: + 手續費: + + + + Low Output: + 低輸出: + + + + no + + + + + After Fee: + 計費後金額: + + + + Change: + 找零金額: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + 如果這項有打開,但是找零位址是空的或無效,那麼找零的錢會送到一個新產生的位址去。 + + + + Custom change address + 自定找零位址 + + + + Confirm the send action + 確認付款動作 + + + + S&end + 付款 + + + + Clear all fields of the form. + 把表單中的所有欄位清空。 + + + + Clear &All + 全部清掉 + + + + Send to multiple recipients at once + 一次付給多個收款人 + + + + Add &Recipient + 增加收款人 + + + + Darksend + 暗黑發送 + + + + InstantX + 即時到帳 + + + + Balance: + 餘額: + + + + Copy quantity + 複製數目 + + + + Copy amount + 複製金額 + + + + Copy fee + 複製手續費 + + + + Copy after fee + 複製計費後金額 + + + + Copy bytes + 複製位元組數 + + + + Copy priority + 複製優先度 + + + + Copy low output + 複製低輸出 + + + + Copy change + 複製找零金額 + + + + + + using + 用法 + + + + + anonymous funds + 匿名的資金 + + + + (darksend requires this amount to be rounded up to the nearest %1). + (暗黑發送需要四捨五入這個數額到最接近的值%1)。 + + + + any available funds (not recommended) + 任何可用的資金 (不推薦) + + + + and InstantX + 和即時到帳 + + + + + + + %1 to %2 + %1 給 %2 + + + + Are you sure you want to send? + 你確定要付錢出去嗎? + + + + are added as transaction fee + 被添加作為交易手續費 + + + + Total Amount %1 (= %2) + 總金額 %1 (= %2) + + + + or + + + + + Confirm send coins + 確認付款金額 + + + + Payment request expired + 付款的要求已經過期 + + + + Invalid payment address %1 + 無效的付款位址 %1 + + + + The recipient address is not valid, please recheck. + 收款位址無效,請再檢查看看。 + + + + The amount to pay must be larger than 0. + 付款金額必須大於零。 + + + + The amount exceeds your balance. + 金額超過餘額了。 + + + + The total exceeds your balance when the %1 transaction fee is included. + 包含 %1 的交易手續費後,總金額超過你的餘額了。 + + + + Duplicate address found, can only send to each address once per send operation. + 發現有重複的位址。每個付款動作中,只能付給個別的位址一次。 + + + + Transaction creation failed! + 製造交易失敗了! + + + + 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 and coins were spent in the copy but not marked as spent here. + 交易被拒絕了!有時候會發生這種錯誤,是因為你錢包中的一些錢已經被花掉了。比如說你複製了錢包檔 wallet.dat, 然後用複製的錢包花掉了錢,你現在所用的原來的錢包中,卻沒有那筆錢已經花掉的紀錄。 + + + + Error: The wallet was unlocked only to anonymize coins. + 錯誤: 解鎖錢包只用作幣的匿名處理。 + + + + Warning: Invalid Dash address + 警告:無效的暗黑幣地址 + + + + Warning: Unknown change address + 警告: 不明的找零位址 + + + + (no label) + (無標記) + + + + SendCoinsEntry + + + This is a normal payment. + 這是一筆正常的付款。 + + + + Pay &To: + 付給: + + + + The address to send the payment to (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + 發送付款的位址(e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + Choose previously used address + 選擇先前使用過的位址 + + + + Alt+A + Alt+A + + + + Paste address from clipboard + 貼上剪貼簿裡的位址 + + + + Alt+P + Alt+P + + + + + + Remove this entry + 刪掉這個項目 + + + + &Label: + 標記: + + + + Enter a label for this address to add it to the list of used addresses + 請輸入這個位址的標記,來把它加進去已使用過位址的清單。 + + + + + + A&mount: + 金額: + + + + Message: + 訊息: + + + + A message that was attached to the dash: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dash network. + 附加在暗黑幣付款協議 URI 中的訊息,會和交易內容一起存起來,給你自己做參考。注意: 這個訊息不會送到暗黑幣網路上。 + + + + This is an unverified payment request. + 這是個沒驗證過的付款要求。 + + + + + Pay To: + 付給: + + + + + Memo: + 備註: + + + + This is a verified payment request. + 這是個已驗證的付款要求。 + + + + Enter a label for this address to add it to your address book + 請輸入這個位址的標記來把它加進位址簿中 + + + + ShutdownWindow + + + Dash Core is shutting down... + 暗黑幣核心正在關閉... + + + + Do not shut down the computer until this window disappears. + 在這個視窗不見以前,請不要關掉電腦。 + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + 簽章 - 簽署或驗證訊息 + + + + &Sign Message + 簽署訊息 + + + + 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. + 你可以用自己的位址簽署訊息,來證明你對位址的所有權。但是請小心,不要簽署語意含糊不清的內容,因為釣魚式詐騙可能會用騙你簽署的手法來冒充是你。只有在語句中的細節你都同意時才簽署。 + + + + The address to sign the message with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + 用來簽署訊息的位址 (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + Choose previously used address + 選擇先前使用過的位址 + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + 貼上剪貼簿裡的位址 + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + 請在這裡輸入你想簽署的訊息 + + + + Signature + 簽章 + + + + Copy the current signature to the system clipboard + 複製目前的簽章到系統剪貼簿 + + + + Sign the message to prove you own this Dash address + 簽署信息證明你擁有此暗黑幣地址 + + + + Sign &Message + 簽署訊息 + + + + Reset all sign message fields + 重設所有訊息簽署欄位 + + + + + Clear &All + 全部清掉 + + + + &Verify Message + 驗證訊息 + + + + 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. + 請在下面輸入簽署的位址,訊息(請確定完整複製了所包含的換行,空格,跳位符號等等),以及簽章,來驗證這個訊息。請小心,除了訊息內容以外,不要對簽章本身過度解讀,以避免被用「中間人攻擊法」詐騙。 + + + + The address the message was signed with (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + 簽署該信息的位址 (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + Verify the message to ensure it was signed with the specified Dash address + 驗證信息用來確保此被簽署信息對應相對的暗黑幣地址 + + + + Verify &Message + 驗證訊息 + + + + Reset all verify message fields + 重設所有訊息驗證欄位 + + + + Click "Sign Message" to generate signature + 請按一下「簽署訊息」來產生簽章 + + + + Enter a Dash address (e.g. XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + 輸入暗黑幣地址(如. +XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) + + + + + The entered address is invalid. + 輸入的位址無效。 + + + + + + + Please check the address and try again. + 請檢查位址是否正確後再試一次。 + + + + + The entered address does not refer to a key. + 輸入的位址沒有對應到你的任何密鑰。 + + + + Wallet unlock was cancelled. + 錢包解鎖已取消。 + + + + Private key for the entered address is not available. + 沒有對應輸入位址的密鑰。 + + + + Message signing failed. + 訊息簽署失敗。 + + + + Message signed. + 訊息簽署好了。 + + + + The signature could not be decoded. + 沒辦法把這個簽章解碼。 + + + + + Please check the signature and try again. + 請檢查簽章是否正確後再試一次。 + + + + The signature did not match the message digest. + 這個簽章跟訊息的數位摘要不符。 + + + + Message verification failed. + 訊息驗證失敗。 + + + + Message verified. + 訊息驗證沒錯。 + + + + SplashScreen + + + Dash Core + 暗黑幣核心 + + + + Version %1 + 版本 %1 + + + + The Bitcoin Core developers + 位元幣核心開發人員 + + + + The Dash Core developers + 暗黑幣核心開發人員 + + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + 對於%n開放更多區塊 + + + + Open until %1 + 到 %1 前可修改 + + + + + + + conflicted + 有衝突 + + + + %1/offline (verified via instantx) + %1/離線 (通過即時到帳系統核實) + + + + %1/confirmed (verified via instantx) + %1/已確認 (通過即時到帳系統核實) + + + + %1 confirmations (verified via instantx) + %1/確認完成 (通過即時到帳系統核實) + + + + %1/offline + %1 次/離線中 + + + + %1/unconfirmed + %1 次/未確認 + + + + + %1 confirmations + 確認 %1 次 + + + + %1/offline (InstantX verification in progress - %2 of %3 signatures) + %1/離線 (即時到帳系統正在核實中- %2 of %3 簽名) + + + + %1/confirmed (InstantX verification in progress - %2 of %3 signatures ) + %1/已確認 (即時到帳系統正在核實中- %2 of %3 簽名) + + + + %1 confirmations (InstantX verification in progress - %2 of %3 signatures) + %1/確認完成 (即時到帳系統正在核實中- %2 of %3 簽名) + + + + %1/offline (InstantX verification failed) + %1/離線 (即時到帳系統核實失敗) + + + + %1/confirmed (InstantX verification failed) + %1/已確認 (即時到帳系統核實失敗) + + + + Status + 狀態 + + + + , has not been successfully broadcast yet + ,還沒成功公告出去 + + + + , broadcast through %n node(s) + ,通過%n(多個)節點廣播 + + + + Date + 日期 + + + + Source + 來源 + + + + Generated + 生產出來 + + + + + From + 來源 + + + + unknown + 未知 + + + + + + To + 目的 + + + + + own address + 自己的位址 + + + + label + 標記 + + + + + + + + Credit + 入帳 + + + + matures in %n more block(s) + 再等 %n 個區塊生出來後成熟 + + + + not accepted + 不被接受 + + + + + + + Debit + 出帳 + + + + Transaction fee + 交易手續費 + + + + Net amount + 淨額 + + + + + Message + 訊息 + + + + Comment + 附註 + + + + Transaction ID + 交易識別碼 + + + + Merchant + 商家 + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + 生產出來的錢要再等 %1 個區塊生出來後才成熟可以用。當區塊生產出來時會公布到網路上,來被加進區塊鏈。如果加失敗了,狀態就會變成「不被接受」,而且不能夠花。如果在你生產出區塊的幾秒鐘內,也有其他節點生產出來的話,就有可能會發生這種情形。 + + + + Debug information + 除錯資訊 + + + + Transaction + 交易 + + + + Inputs + 輸入 + + + + Amount + 金額 + + + + true + + + + + false + + + + + TransactionDescDialog + + + Transaction details + 交易明細 + + + + This pane shows a detailed description of the transaction + 這個版面顯示這次交易的詳細說明 + + + + TransactionTableModel + + + Date + 日期 + + + + Type + 種類 + + + + Address + 位址 + + + + Amount + 金額 + + + + Open for %n more block(s) + 對於%n開放更多區塊 + + + + Open until %1 + 到 %1 前可修改 + + + + Offline + 離線中 + + + + Unconfirmed + 未確認 + + + + Confirming (%1 of %2 recommended confirmations) + 確認中(已經 %1 次,建議至少 %2 次) + + + + Confirmed (%1 confirmations) + 已確認(%1 次) + + + + Conflicted + 有衝突 + + + + Immature (%1 confirmations, will be available after %2) + 未成熟(確認 %1 次,會在 %2 次後可用) + + + + This block was not received by any other nodes and will probably not be accepted! + 沒有其他節點收到這個區塊,也許它不會被接受! + + + + Generated but not accepted + 生產出來但是不被接受 + + + + Received with + 收款在 + + + + Received from + 收款自 + + + + Received via Darksend + 經暗黑發送收到 + + + + Sent to + 付款給 + + + + Payment to yourself + 付給自己 + + + + Mined + 開採所得 + + + + Darksend Denominate + 暗黑發送除名額度 + + + + Darksend Collateral Payment + 暗黑發送附加費用 + + + + Darksend Make Collateral Inputs + 暗黑發送會制造附加費用 + + + + Darksend Create Denominations + 暗黑發送會制造除名額度 + + + + Darksent + 暗黑發送 + + + + (n/a) + (不適用) + + + + Transaction status. Hover over this field to show number of confirmations. + 交易狀態。把游標停在欄位上會顯示確認次數。 + + + + Date and time that the transaction was received. + 收到交易的日期和時間。 + + + + Type of transaction. + 交易的種類。 + + + + Destination address of transaction. + 交易的目的地位址。 + + + + Amount removed from or added to balance. + 要減掉或加進餘額的金額。 + + + + TransactionView + + + + All + 全部 + + + + Today + 今天 + + + + This week + 這星期 + + + + This month + 這個月 + + + + Last month + 上個月 + + + + This year + 今年 + + + + Range... + 指定範圍... + + + + Received with + 收款 + + + + Sent to + 付款 + + + + Darksent + 暗黑發送 + + + + Darksend Make Collateral Inputs + 暗黑發送會制造附加費用 + + + + Darksend Create Denominations + 暗黑發送會制造除名額度 + + + + Darksend Denominate + 暗黑發送除名額度 + + + + Darksend Collateral Payment + 暗黑發送附加費用 + + + + To yourself + 給自己 + + + + Mined + 開採所得 + + + + Other + 其它 + + + + Enter address or label to search + 請輸入要搜尋的位址或標記 + + + + Min amount + 最小金額 + + + + Copy address + 複製位址 + + + + Copy label + 複製標記 + + + + Copy amount + 複製金額 + + + + Copy transaction ID + 複製交易識別碼 + + + + Edit label + 編輯標記 + + + + Show transaction details + 顯示交易明細 + + + + Export Transaction History + 匯出交易記錄 + + + + Comma separated file (*.csv) + 逗點分隔資料檔(*.csv) + + + + Confirmed + 已確認 + + + + Date + 日期 + + + + Type + 種類 + + + + Label + 標記 + + + + Address + 位址 + + + + Amount + 金額 + + + + ID + 識別碼 + + + + Exporting Failed + 匯出失敗 + + + + There was an error trying to save the transaction history to %1. + 儲存交易記錄到 %1 時發生錯誤。 + + + + Exporting Successful + 匯出成功 + + + + The transaction history was successfully saved to %1. + 交易記錄已經成功儲存到 %1 了。 + + + + Range: + 範圍: + + + + to + + + + + WalletFrame + + + No wallet has been loaded. + 沒有載入錢包。 + + + + WalletModel + + + + Send Coins + 付款 + + + + InstantX doesn't support sending values that high yet. Transactions are currently limited to %n DASH. + 即時到帳系統暫時不支援發送這麼多的幣。目前交易額只限於%n DASH。 + + + + WalletView + + + &Export + 匯出 + + + + Export the data in the current tab to a file + 把目前分頁的資料匯出存成檔案 + + + + Backup Wallet + 備份錢包 + + + + Wallet Data (*.dat) + 錢包資料檔(*.dat) + + + + Backup Failed + 備份失敗 + + + + There was an error trying to save the wallet data to %1. + 儲存錢包資料到 %1 時發生錯誤。 + + + + Backup Successful + 備份成功 + + + + The wallet data was successfully saved to %1. + 錢包的資料已經成功儲存到 %1 了。 + + + + dash-core + + + %s, you must set a rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=dashrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com + + %s,您必須在配置文件中設定 rpcpassword : +%s +建議您使用以下隨機密碼: +rpcuser=dashrpc +rpcpassword=%s +(你不需要記住這個密碼) +用戶名和密碼不能相同。 +如果該文件不存在,則建立一個只能讓當前使用者有讀取權限的文件: +此外,還建議設置alertnotify讓您知道發生的問題; +例如 : alertnotify=echo %%s | mail -s "Dash Alert" admin@foo.com + + + + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + 可接受的密碼(預設: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + 設定RPC通訊埠 %u 聽候IPv4: %s 時發生錯誤: + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + 設定RPC通訊埠 %u 聽候IPv6: %s 時發生錯誤,失敗回滾至 IPv4: %s + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + 與提供地址綁定,持續聽候。使用[host]:標記IPv6端口 + + + + Cannot obtain a lock on data directory %s. Dash Core is probably already running. + 無法獲得鎖定的數據目錄%s. 暗黑幣核心可能已經在運行。 + + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + 對沒付手續費的交易持續限制每分鐘內最多只能有 <n>*1000 個位元組(預設值: 15) + + + + Darksend uses exact denominated amounts to send funds, you might simply need to anonymize some more coins. + 暗黑發送要使用相同的除名金額用來發送資金,你可能需要對更多的幣進行匿名處理。 + + + + Disable all Masternode and Darksend related functionality (0-1, default: 0) + 禁止所有主節點和與匿名發送相關功能(0-1,預設:0) + + + + Enable instantx, show confirmations for locked transactions (bool, default: true) + 啟用即時到帳,顯示鎖定交易的確認數(bool, 預設:true) + + + + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) + 允許存儲在這個錢包的資金自動使用暗黑發送 (0-1, 預設: 0) + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. + 進入回歸測試模式,它使用一種特殊的區塊鏈讓它能立即解出區塊。這是用於回歸測試工具和應用程序開發。 + + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + 進入回歸測試模式,使用它可以立即解出區塊的特殊區塊鏈。 + + + + Error: Listening for incoming connections failed (listen returned error %s) + 錯誤: 聽候外來連線失敗(回傳錯誤 %s) + + + + 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 and coins were spent in the copy but not marked as spent here. + 錯誤: 交易被拒絕了!有時候會發生這種錯誤,是因為你錢包中的一些錢已經被花掉了。比如說你複製了錢包檔 wallet.dat, 然後用複製的錢包花掉了錢,你現在所用的原來的錢包中,卻沒有那筆錢已經花掉的紀錄。 + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! + 錯誤: 本次交易由於它的數量,複雜性,或使用到最近收到的資金,需要至少%s 交易手續費! + + + + Error: Wallet unlocked for anonymization only, unable to create transaction. + 錯誤: 解鎖錢包只用作匿名處理,無法創建交易。 + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + 當收到相關警示,或發現相當長的分支時,所要執行的指令(指令中的 %s 會被取代成警示訊息) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + 當錢包有交易改變時要執行的指令(指令中的 %s 會被取代成交易識別碼) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + 當最新區塊改變時要執行的指令(指令中的 %s 會被取代成區塊雜湊值) + + + + Fees smaller than this are considered zero fee (for transaction creation) (default: + 如果手續費比這個值低,就視為沒付手續費 (當製造交易時) (預設值: + + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + 每當累積到 <n> 百萬位元組(MB)時,才將資料庫的變動從記憶體暫存池中寫進磁碟紀錄檔(預設值: 100) + + + + Found unconfirmed denominated outputs, will wait till they confirm to continue. + 發現未確認的已除名輸出,等待確認後繼續。 + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + 使用 -checkblocks 檢查區塊的仔細程度 (0-4,預設值: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + 在這個運作模式下,-genproclimit 選項控制立刻產生出的區塊數目。 + + + + InstantX requires inputs with at least 6 confirmations, you might need to wait a few minutes and try again. + 即時到帳系統需要輸入的資金至少有6次確認,你可能需要等待幾分鐘,然後重試。 + + + + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) + 在通訊埠 <port> 聽候 JSON-RPC 連線(預設值: 9998, 或若為測試網路: 19998) + + + + Name to construct url for KeePass entry that stores the wallet passphrase + 為建立URL命名,用作KeePass存儲錢包密碼的條目之用 + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + 避免與亂搞的節點連線的秒數(預設: 86400) + + + + Output debugging information (default: 0, supplying <category> is optional) + 輸出除錯資訊(預設值: 0, 不一定要指定 <category>) + + + + 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) + 透過偶爾混合暗黑幣,並為暗黑發送持續提供流動性 (0-100,預設值 : 0 ,1=經常 ,收費高,100=不經常,收費低) + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + 是否允許在節點位址數目不足時,使用域名查詢來搜尋節點 (預設值: 當沒用 -connect 時為 1) + + + + Set external address:port to get to this masternode (example: address:port) + 設置外部地址:端口去連接這個主節點 (例如:地址:端口) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + 設定高優先度或低手續費的交易資料大小上限成多少位元組(預設值: %d) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + 設定指令碼驗證的執行緒數目 (%u 到 %d,0 表示程式自動決定,小於 0 表示保留處理器核心不用的數目,預設值: %d) + + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + 設定生成器啟動時的處理器上限(-1 =無限制,預設值: -1) + + + + Show N confirmations for a successfully locked transaction (0-9999, default: 1) + 顯示 N 確認數成功鎖定的交易 (0-9999, 預設: 1) + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + 這是一個先行發佈的測試版 - 你需自行承擔風險 - 不要用於採礦或商業應用上 + + + + Unable to bind to %s on this computer. Dash Core is probably already running. + 沒辦法繫結在這台電腦上的 %s 。暗黑幣核心可能已經在執行了。 + + + + Unable to locate enough Darksend denominated funds for this transaction. + 無法找到足夠的暗黑發送己除名資金用於本次交易。 + + + + Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DASH. + 無法找到足夠的暗黑發送未除名資金(不等於1000 DASH)用於本次交易。 + + + + Unable to locate enough Darksend non-denominated funds for this transaction. + 無法找到足夠的暗黑發送未除名資金用於本次交易。 + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) + 使用另外的 SOCK5 代理伺服器,來透過 Tor 隱藏服務跟節點聯繫(預設值: -proxy) + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + 警告: -paytxfee 設定了很高的金額!這可是你交易付款所要付的手續費。 + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dash will not work properly. + 警告: 請檢查電腦日期和時間是否正確!暗黑幣核心沒辦法在時鐘不準的情況下正常運作。 + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + 警告: 暗黑幣網路對於區塊鏈結的決定目前有分歧!看來有些礦工會有問題。 + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + 警告: 我們和某些連線的節點對於區塊鏈結的決定不同!你可能需要升級,或是需要等其它的節點升級。 + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + 警告: 讀取錢包檔 wallet.dat 時發生錯誤!所有的密鑰都正確讀取了,但是交易資料或位址簿資料可能會缺少或不正確。 + + + + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + 警告: 錢包檔 wallet.dat 壞掉,但資料被拯救回來了!原來的 wallet.dat 會改儲存在 %s, 檔名是 wallet.{timestamp}.bak. 如果餘額或交易資料有誤,你應該要用備份資料復原回來。 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + 你必須在配置文件中設置rpcpassword=<password> : +%s +如果該文件不存在,就應該建立一個只能讓當前使用者有讀取權限的文件。 + + + + You must specify a masternodeprivkey in the configuration. Please see documentation for help. + 您必須在配置中指定一個主節點密鑰。請參閱文檔以獲得幫助。 + + + + (default: 1) + (預設: 1) + + + + (default: wallet.dat) + (預設: wallet.dat) + + + + <category> can be: + <category> 可以是: + + + + Accept command line and JSON-RPC commands + 接受命令行以及JSON-RPC命令 + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + 是否接受外來連線(預設值: 當沒有 -proxy 或 -connect 時為 1) + + + + Add a node to connect to and attempt to keep the connection open + 增加一個要連線的節線,並試著保持對它的連線暢通 + + + + Allow DNS lookups for -addnode, -seednode and -connect + 允許對 -addnode, -seednode, -connect 的參數使用域名查詢 + + + + Allow JSON-RPC connections from specified IP address + 允許由指定的IP地址建立 JSON-RPC 連線。 + + + + Already have that input. + 輸入已經存在。 + + + + Always query for peer addresses via DNS lookup (default: 0) + 總是通過域名查詢來搜尋節點(預設值: 0) + + + + Attempt to recover private keys from a corrupt wallet.dat + 嘗試從壞掉的錢包檔 wallet.dat 復原密鑰 + + + + Block creation options: + 區塊製造選項: + + + + Can't denominate: no compatible inputs left. + 無法進行除名 : 沒有留下相容的輸入 + + + + Cannot downgrade wallet + 沒辦法把錢包格式降級 + + + + Cannot resolve -bind address: '%s' + 沒辦法解析 -bind 位址: '%s' + + + + Cannot resolve -externalip address: '%s' + 沒辦法解析 -externalip 位址: '%s' + + + + Cannot write default address + 沒辦法把預設位址寫進去 + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + 清除錢包的交易列表 (診斷工具; 意味著-rescan) + + + + Collateral is not valid. + 附加費用無效。 + + + + Collateral not valid. + 附加費用無效。 + + + + Connect only to the specified node(s) + 只連線到指定節點(可多個) + + + + Connect through SOCKS proxy + 透過 SOCKS 代理伺服器連線 + + + + Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998) + 透過通訊埠 <port> 連線到 JSON-RPC (預設值: 9998 或測試網路: 19998) + + + + Connect to KeePassHttp on port <port> (default: 19455) + 透過通訊埠 <port> 連線到 KeePassHttp (預設值:19455) + + + + Connect to a node to retrieve peer addresses, and disconnect + 連線到某個節點來取得其它節點的位址,然後斷線 + + + + Connection options: + 連線選項: + + + + Corrupted block database detected + 發現區塊資料庫壞掉了 + + + + Dash Core Daemon + 黑幣核心後台程序 + + + + Dash Core RPC client version + 暗黑幣核心RPC客戶端版本 + + + + Darksend is disabled. + 暗黑發送已禁用。 + + + + Darksend options: + 暗黑發送選項 : + + + + Debugging/Testing options: + 除錯與測試選項 + + + + Disable safemode, override a real safe mode event (default: 0) + 不進入安全模式,用在真的發生需要進入安全模式的事件時,強制不進入(預設值: 0) + + + + Discover own IP address (default: 1 when listening and no -externalip) + 找出自己的網際網路位址(預設值: 當有聽候連線且沒有 -externalip 時為 1) + + + + Do not load the wallet and disable wallet RPC calls + 不要載入錢包,並且拿掉錢包相關的 RPC 功能請求。 + + + + Do you want to rebuild the block database now? + 你想要現在重建區塊資料庫嗎? + + + + Done loading + 載入完成 + + + + Downgrading and trying again. + + + + + Enable the client to act as a masternode (0-1, default: 0) + 充許客戶端充當主節點 (0-1,預設值 : 0) + + + + Entries are full. + 條目己滿。 + + + + Error connecting to masternode. + 連接到主節點時發生錯誤。 + + + + Error initializing block database + 初始化區塊資料庫時發生錯誤 + + + + Error initializing wallet database environment %s! + 初始化錢包資料庫環境 %s 時發生錯誤! + + + + Error loading block database + 載入區塊資料庫時發生錯誤 + + + + Error loading wallet.dat + 載入錢包檔 wallet.dat 時發生錯誤 + + + + Error loading wallet.dat: Wallet corrupted + 載入檔案 wallet.dat 時發生錯誤: 錢包損毀了 + + + + Error loading wallet.dat: Wallet requires newer version of Dash + 載入檔案 wallet.dat 時發生錯誤: 錢包需要更新的暗黑幣版本 + + + + Error opening block database + 打開區塊資料庫時發生錯誤 + + + + Error reading from database, shutting down. + 讀取數據庫時發生錯誤,正在關閉。 + + + + Error recovering public key. + 恢復公鑰時發生錯誤 + + + + Error + 錯誤 + + + + Error: Disk space is low! + 錯誤: 磁碟空間很少! + + + + Error: Wallet locked, unable to create transaction! + 錯誤: 錢包被鎖定,無法創建交易! + + + + Error: You already have pending entries in the Darksend pool + 錯誤: 你已經有未處理條目在暗黑發送池中 + + + + Error: system error: + 錯誤:系統錯誤: + + + + Failed to listen on any port. Use -listen=0 if you want this. + 在任意的通訊埠聽候失敗。如果你希望這樣的話,可以設定 -listen=0. + + + + Failed to read block info + 無法讀取區塊信息 + + + + Failed to read block + 無法讀取區塊 + + + + Failed to sync block index + 無法同步區塊索引 + + + + Failed to write block index + 無法寫入區塊索引 + + + + Failed to write block info + 無法寫入區塊信息 + + + + Failed to write block + 無法寫入區塊 + + + + Failed to write file info + 無法寫入文件信息 + + + + Failed to write to coin database + 無法寫入到幣的數據庫 + + + + Failed to write transaction index + 無法寫入交易索引 + + + + Failed to write undo data + 無法寫入還原數據 + + + + Fee per kB to add to transactions you send + 添加到您發送的交易的費用,每KB計 + + + + Fees smaller than this are considered zero fee (for relaying) (default: + 如果手續費比這個值低,就視為沒付手續費 (當製轉發交易時) (預設值: + + + + Force safe mode (default: 0) + 強制進入安全模式 (預設值: 0) + + + + Generate coins (default: 0) + 生產暗黑幣 (預設值: 0) + + + + Get help for a command + 取得指令的幫助 + + + + How many blocks to check at startup (default: 288, 0 = all) + 啓動時檢查的區塊數(預設值: 288, 0 表示全部) + + + + If <category> is not supplied, output all debugging information. + 如果沒有提供 <category> 就會輸出所有的除錯資訊。 + + + + Ignore masternodes less than version (example: 70050; default : 0) + 忽略版本數比這個低的主節點 (例子 : 70050; 預設 :0) + + + + Importing... + 正在匯入中... + + + + Imports blocks from external blk000??.dat file + 從其它來源的 blk000??.dat 檔匯入區塊 + + + + Incompatible mode. + 不兼容的模式。 + + + + Incompatible version. + 不兼容的版本。 + + + + Incorrect or no genesis block found. Wrong datadir for network? + 創世區塊不正確或找不到。資料目錄錯了嗎? + + + + Information + 資訊 + + + + Initialization sanity check failed. Dash Core is shutting down. + 初始化時的基本檢查失敗了。暗黑幣核心將會關閉。 + + + + Input is not valid. + 輸入無效。 + + + + InstantX options: + 即時到帳選項 : + + + + Insufficient funds + 資金不足 + + + + Insufficient funds. + 資金不足。 + + + + Invalid -onion address: '%s' + 無效的 -onion 位址: '%s' + + + + Invalid -proxy address: '%s' + 無效的 -proxy 位址: '%s' + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + 設定最低轉發手續費 -minrelaytxfee=<amount> 的金額無效: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + 設定 -mintxfee=<amount> 的金額無效: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + 設定 -paytxfee=<amount> 的金額無效: '%s' + + + + Invalid amount + 金額無效 + + + + Invalid masternodeprivkey. Please see documenation. + 無效主節點密鑰。請參閱文檔。 + + + + Invalid private key. + 密鑰無效。 + + + + Invalid script detected. + 檢測到無效的腳本。 + + + + KeePassHttp id for the established association + KeePassHttp ID,為建立關聯之用 + + + + KeePassHttp key for AES encrypted communication with KeePass + KeePassHttp密鑰,為KeePass的AES加密通信之用 + + + + Keep N dash anonymized (default: 0) + 保持 N 個暗黑幣是匿名的 (預設值 : 0) + + + + Keep at most <n> unconnectable blocks in memory (default: %u) + 保持最多 <n> 無法連結的區塊在記憶體 (預設: %u) + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + 保持最多 <n> 無法連結的交易在記憶體 (預設: %u) + + + + Last Darksend was too recent. + 距離上一次的暗黑發送時間太短。 + + + + Last successful darksend action was too recent. + 距離上一次成功進行暗黑發送的時間太短。 + + + + Limit size of signature cache to <n> entries (default: 50000) + 限制簽章快取大小為 <n> 筆(預設值: 50000) + + + + List commands + 命令列表 + + + + Listen for connections on <port> (default: 9999 or testnet: 19999) + 在通訊埠 <port> 聽候連線(預設值: 9999, 或若為測試網路: 19999) + + + + Loading addresses... + 正在載入位址資料... + + + + Loading block index... + 正在載入區塊索引... + + + + Loading masternode list... + + + + + Loading wallet... (%3.2f %%) + 正在載入錢包資料... (%3.2f %%) + + + + Loading wallet... + 正在載入錢包資料... + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + 開採區塊的時候,紀錄交易的優先度以及每千位元組(kB)的手續費(預設值: 0) + + + + Maintain a full transaction index (default: 0) + 維護全部交易的索引 (預設值: 0) + + + + Maintain at most <n> connections to peers (default: 125) + 維持與節點連線數的上限為 <n> 個(預設值: 125) + + + + Masternode options: + 主節點選項: + + + + Masternode queue is full. + 主節點隊列已滿。 + + + + Masternode: + 主節點: + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + 每個連線的接收緩衝區大小上限為 <n>*1000 個位元組(預設值: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + 每個連線的傳送緩衝區大小上限為 <n>*1000 個位元組(預設值: 1000) + + + + Missing input transaction information. + 缺少輸入交易信息。 + + + + No compatible masternode found. + 沒有發現相容的主節點。 + + + + No funds detected in need of denominating. + 沒有找到除名所需的資金。 + + + + No masternodes detected. + 未檢測到任何主節點。 + + + + No matching denominations found for mixing. + 沒有找到匹配的除名資金用作混合。 + + + + Non-standard public key detected. + 檢測到不標準的公鑰。 + + + + Not compatible with existing transactions. + 與現有的交易不相容。 + + + + Not enough file descriptors available. + 檔案描述元不足。 + + + + Not in the masternode list. + 不在主節點列表中。 + + + + Only accept block chain matching built-in checkpoints (default: 1) + 只接受與內建的檢查段點吻合的區塊鎖鏈(預設值: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + 只會連接到網絡節點 <net> (IPv4,IPv6或 Tor) + + + + Options: + 選項: + + + + Password for JSON-RPC connections + JSON-RPC 連線密碼 + + + + Prepend debug output with timestamp (default: 1) + 在除錯輸出內容前附加時間(預設值: 1) + + + + Print block on startup, if found in block index + 如果找到區塊索引,就在啟動時打印區塊 + + + + Print block tree on startup (default: 0) + 在啟動時打印區塊樹 (預設值:0) + + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + RPC SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) + + + + RPC client options: + RPC 客戶端選項: + + + + RPC server options: + RPC 伺服器選項: + + + + Randomly drop 1 of every <n> network messages + 隨機丟掉 <n> 分之1的網路訊息 + + + + Randomly fuzz 1 of every <n> network messages + 隨機亂動 <n> 分之1的網路訊息裡的資料 + + + + Rebuild block chain index from current blk000??.dat files + 從目前的區塊檔 blk000??.dat 重建區塊鏈的索引 + + + + Rescan the block chain for missing wallet transactions + 重新掃描區塊鏈,來尋找錢包可能漏掉的交易。 + + + + Rescanning... + 重新掃描中... + + + + Run a thread to flush wallet periodically (default: 1) + 啟用定期將變動寫入錢包檔的執行緒(預設值: 1) + + + + Run in the background as a daemon and accept commands + 用護靈模式在背後執行並接受指令 + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + 選擇SOCKS -proxy 的版本 (4 or 5, 預設值: 5) + + + + Send command to Dash Core + 向暗黑幣核心發送命令 + + + + Send commands to node running on <ip> (default: 127.0.0.1) + 發送命令到 <ip> 運行的節點 (預設 : 127.0.0.1) + + + + Send trace/debug info to console instead of debug.log file + 在終端機顯示追蹤或除錯資訊,而不是寫到檔案 debug.log 中 + + + + Server certificate file (default: server.cert) + 服務器認證文件 (預設 : server.cert) + + + + Server private key (default: server.pem) + 服務器密鑰 (預設 : server.pem) + + + + Session not complete! + 工作階段沒有完成! + + + + Session timed out (30 seconds), please resubmit. + 工作階段超時 (30秒),請重新提交。 + + + + Set database cache size in megabytes (%d to %d, default: %d) + 設定資料庫快取大小是多少百萬位元組(MB) (%d 到 %d,預設值: %d) + + + + Set key pool size to <n> (default: 100) + 設定密鑰池的大小 <n> (預設值 : 100) + + + + Set maximum block size in bytes (default: %d) + 設定區塊大小上限成多少位元組(預設值: %d) + + + + Set minimum block size in bytes (default: 0) + 設定區塊大小下限成多少位元組(預設值: 0) + + + + Set the masternode private key + 設置主節點密鑰 + + + + Set the number of threads to service RPC calls (default: 4) + 設定處理 RPC 服務請求的執行緒數目 (預設值: 4) + + + + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + 在錢包資料庫環境變數設定 DB_PRIVATE 旗標(預設值: 1) + + + + Show all debugging options (usage: --help -help-debug) + 顯示所有調試選項 (用法 : --help -help-debug) + + + + Show benchmark information (default: 0) + 顯示基準信息 (預設值 : 0) + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + 客戶端軟體啓動時把 debug.log 檔縮小(預設值: 當沒有 -debug 時為 1) + + + + Signing failed. + 簽署失敗。 + + + + Signing timed out, please resubmit. + 簽署逾時,請重新提交。 + + + + Signing transaction failed + 簽署交易失敗 + + + + Specify configuration file (default: dash.conf) + 指定設定檔(預設值: %s) + + + + Specify connection timeout in milliseconds (default: 5000) + 指定連線在幾毫秒後逾時 (預設值: 5000) + + + + Specify data directory + 指定數據目錄 + + + + Specify masternode configuration file (default: masternode.conf) + 指定主節點配置文件 (預設: masternode.conf) + + + + Specify pid file (default: dashd.pid) + 指定 pid 文件 (預設: dashd.pid) + + + + Specify wallet file (within data directory) + 指定錢包文件 (在數據目錄內) + + + + Specify your own public address + 指定自己的公開位址 + + + + Spend unconfirmed change when sending transactions (default: 1) + 發送交易時花費未確認的費用(預設: 1) + + + + Start Dash Core Daemon + 啟動暗黑幣核心後台程序 + + + + System error: + 系統錯誤: + + + + This help message + 幫助信息 + + + + This is intended for regression testing tools and app development. + 這是用於回歸測試工具和應用程序開發。 + + + + This is not a masternode. + 這不是一個主節點。 + + + + Threshold for disconnecting misbehaving peers (default: 100) + 斷開行為不當節點的門檻 (預設值:100) + + + + To use the %s option + 使用%s選項 + + + + Transaction amount too small + 交易金額太小 + + + + Transaction amounts must be positive + 交易金額必須為正數 + + + + Transaction created successfully. + 交易成功創建。 + + + + Transaction fees are too high. + 交易手續費太高。 + + + + Transaction not valid. + 交易無效。 + + + + Transaction too large + 交易太大 + + + + Unable to bind to %s on this computer (bind returned error %s) + 無法和這台電腦上的 %s 繫結(回傳錯誤 %s) + + + + Unable to sign masternode payment winner, wrong key? + 無法簽署主節點費用得主,錯誤的密鑰? + + + + Unable to sign spork message, wrong key? + 無法簽署交叉信息,錯誤的密鑰? + + + + Unknown -socks proxy version requested: %i + 在 -socks 指定了不明的代理伺服器版本: '%i' + + + + Unknown network specified in -onlynet: '%s' + 在 -onlynet 指定了不明的網路別: '%s' + + + + Upgrade wallet to latest format + 把錢包檔案升級成最新的格式 + + + + Usage (deprecated, use dash-cli): + 用法 (不推薦,使用dash-cli): + + + + Usage: + 用法: + + + + Use KeePass 2 integration using KeePassHttp plugin (default: 0) + 使用KeePassHttp插件時利用KeePass 2整合 (預設值 :0) + + + + Use N separate masternodes to anonymize funds (2-8, default: 2) + 使用N個獨立主節點匿名處理資金(2-8,預設:2) + + + + Use OpenSSL (https) for JSON-RPC connections + 在 JSON-RPC 連線使用 OpenSSL (https) + + + + Use UPnP to map the listening port (default: 0) + 使用通用隨插即用 (UPnP) 協定來設定對應的服務連接埠 + + + + Use UPnP to map the listening port (default: 1 when listening) + 是否要使用「通用即插即用」協定(UPnP),來設定聽候連線的通訊埠的對應(預設值: 當有聽候連線時為 1) + + + + Use the test network + 使用測試網路 + + + + Username for JSON-RPC connections + JSON-RPC 連線使用者名稱 + + + + Value more than Darksend pool maximum allows. + 數值超過暗黑發送池所允許的最大數。 + + + + Verifying blocks... + 正在驗證區塊資料... + + + + Verifying wallet... + 正在驗證錢包資料... + + + + Wait for RPC server to start + 等待RPC服務器啟動 + + + + Wallet %s resides outside data directory %s + 錢包檔 %s 沒有在資料目錄 %s 裡面 + + + + Wallet is locked. + 錢包己鎖定。 + + + + Wallet needed to be rewritten: restart Dash to complete + 錢包需要重新改寫:請重啟Dash來完​​成過程 + + + + Wallet options: + 錢包選項: + + + + Warning + 警告 + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + 警告:不建議使用參數-debugnet 被忽略,使用-debug=net + + + + Warning: This version is obsolete, upgrade required! + 警告:這個版本已經過時,需要升級! + + + Wrong state. + + + + + You need to rebuild the database using -reindex to change -txindex + 你需要通過使用-reindex改變-txindex來重新建立數據庫 + + + + Zapping all transactions from wallet... + 從錢包正在展開所有交易記錄... + + + + on startup + 正在啟動 + + + + version + 版本 + + + + wallet.dat corrupt, salvage failed + wallet.dat 損壞,恢復失敗 + + + \ No newline at end of file diff --git a/src/qt/notificator.h b/src/qt/notificator.h index 83de7a6702..7bd64c636c 100644 --- a/src/qt/notificator.h +++ b/src/qt/notificator.h @@ -6,7 +6,7 @@ #define NOTIFICATOR_H #if defined(HAVE_CONFIG_H) -#include "darkcoin-config.h" +#include "dash-config.h" #endif #include diff --git a/src/qt/openuridialog.cpp b/src/qt/openuridialog.cpp index d3b0cf7ad0..08ac80fb24 100644 --- a/src/qt/openuridialog.cpp +++ b/src/qt/openuridialog.cpp @@ -17,7 +17,7 @@ OpenURIDialog::OpenURIDialog(QWidget *parent) : { ui->setupUi(this); #if QT_VERSION >= 0x040700 - ui->uriEdit->setPlaceholderText("darkcoin:"); + ui->uriEdit->setPlaceholderText("dash:"); #endif } @@ -49,5 +49,5 @@ void OpenURIDialog::on_selectFileButton_clicked() if(filename.isEmpty()) return; QUrl fileUri = QUrl::fromLocalFile(filename); - ui->uriEdit->setText("darkcoin:?r=" + QUrl::toPercentEncoding(fileUri.toString())); + ui->uriEdit->setText("dash:?r=" + QUrl::toPercentEncoding(fileUri.toString())); } diff --git a/src/qt/optionsdialog.cpp b/src/qt/optionsdialog.cpp index 6abfd2a5fe..a19e2605b9 100755 --- a/src/qt/optionsdialog.cpp +++ b/src/qt/optionsdialog.cpp @@ -3,7 +3,7 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) -#include "darkcoin-config.h" +#include "dash-config.h" #endif #include "optionsdialog.h" diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp index 1bf126eccb..ee8bc0fa69 100755 --- a/src/qt/optionsmodel.cpp +++ b/src/qt/optionsmodel.cpp @@ -4,7 +4,7 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) -#include "darkcoin-config.h" +#include "dash-config.h" #endif #include "optionsmodel.h" @@ -148,7 +148,7 @@ void OptionsModel::Init() if (settings.contains("nDarksendRounds")) SoftSetArg("-darksendrounds", settings.value("nDarksendRounds").toString().toStdString()); if (settings.contains("nAnonymizeDarkcoinAmount")) - SoftSetArg("-anonymizedarkcoinamount", settings.value("nAnonymizeDarkcoinAmount").toString().toStdString()); + SoftSetArg("-anonymizedashamount", settings.value("nAnonymizeDarkcoinAmount").toString().toStdString()); language = settings.value("language").toString(); } diff --git a/src/qt/paymentserver.cpp b/src/qt/paymentserver.cpp index c8bd3f7775..87fc31563b 100644 --- a/src/qt/paymentserver.cpp +++ b/src/qt/paymentserver.cpp @@ -48,10 +48,10 @@ using namespace boost; const int BITCOIN_IPC_CONNECT_TIMEOUT = 1000; // milliseconds -const QString BITCOIN_IPC_PREFIX("darkcoin:"); -const char* BITCOIN_REQUEST_MIMETYPE = "application/darkcoin-paymentrequest"; -const char* BITCOIN_PAYMENTACK_MIMETYPE = "application/darkcoin-paymentack"; -const char* BITCOIN_PAYMENTACK_CONTENTTYPE = "application/darkcoin-payment"; +const QString BITCOIN_IPC_PREFIX("dash:"); +const char* BITCOIN_REQUEST_MIMETYPE = "application/dash-paymentrequest"; +const char* BITCOIN_PAYMENTACK_MIMETYPE = "application/dash-paymentack"; +const char* BITCOIN_PAYMENTACK_CONTENTTYPE = "application/dash-payment"; X509_STORE* PaymentServer::certStore = NULL; void PaymentServer::freeCertStore() @@ -187,7 +187,7 @@ bool PaymentServer::ipcParseCommandLine(int argc, char* argv[]) if (arg.startsWith("-")) continue; - if (arg.startsWith(BITCOIN_IPC_PREFIX, Qt::CaseInsensitive)) // darkcoin: URI + if (arg.startsWith(BITCOIN_IPC_PREFIX, Qt::CaseInsensitive)) // dash: URI { savedPaymentRequests.append(arg); @@ -274,7 +274,7 @@ PaymentServer::PaymentServer(QObject* parent, bool startLocalServer) : GOOGLE_PROTOBUF_VERIFY_VERSION; // Install global event filter to catch QFileOpenEvents - // on Mac: sent when you click darkcoin: links + // on Mac: sent when you click dash: links // other OSes: helpful when dealing with payment request files (in the future) if (parent) parent->installEventFilter(this); @@ -291,7 +291,7 @@ PaymentServer::PaymentServer(QObject* parent, bool startLocalServer) : if (!uriServer->listen(name)) { // constructor is called early in init, so don't use "emit message()" here QMessageBox::critical(0, tr("Payment request error"), - tr("Cannot start darkcoin: click-to-pay handler")); + tr("Cannot start dash: click-to-pay handler")); } else { connect(uriServer, SIGNAL(newConnection()), this, SLOT(handleURIConnection())); @@ -306,12 +306,12 @@ PaymentServer::~PaymentServer() } // -// OSX-specific way of handling darkcoin: URIs and +// OSX-specific way of handling dash: URIs and // PaymentRequest mime types // bool PaymentServer::eventFilter(QObject *object, QEvent *event) { - // clicking on darkcoin: URIs creates FileOpen events on the Mac + // clicking on dash: URIs creates FileOpen events on the Mac if (event->type() == QEvent::FileOpen) { QFileOpenEvent *fileEvent = static_cast(event); @@ -333,7 +333,7 @@ void PaymentServer::initNetManager() if (netManager != NULL) delete netManager; - // netManager is used to fetch paymentrequests given in darkcoin: URIs + // netManager is used to fetch paymentrequests given in dash: URIs netManager = new QNetworkAccessManager(this); QNetworkProxy proxy; @@ -379,7 +379,7 @@ void PaymentServer::handleURIOrFile(const QString& s) return; } - if (s.startsWith(BITCOIN_IPC_PREFIX, Qt::CaseInsensitive)) // darkcoin: URI + if (s.startsWith(BITCOIN_IPC_PREFIX, Qt::CaseInsensitive)) // dash: URI { #if QT_VERSION < 0x050000 QUrl uri(s); @@ -499,7 +499,7 @@ bool PaymentServer::processPaymentRequest(PaymentRequestPlus& request, SendCoins addresses.append(QString::fromStdString(CBitcoinAddress(dest).ToString())); } else if (!recipient.authenticatedMerchant.isEmpty()){ - // Insecure payments to custom darkcoin addresses are not supported + // Insecure payments to custom dash addresses are not supported // (there is no good way to tell the user where they are paying in a way // they'd have a chance of understanding). emit message(tr("Payment request error"), diff --git a/src/qt/receiverequestdialog.cpp b/src/qt/receiverequestdialog.cpp index b6be756e73..3faff17827 100644 --- a/src/qt/receiverequestdialog.cpp +++ b/src/qt/receiverequestdialog.cpp @@ -22,7 +22,7 @@ #endif #if defined(HAVE_CONFIG_H) -#include "darkcoin-config.h" /* for USE_QRCODE */ +#include "dash-config.h" /* for USE_QRCODE */ #endif #ifdef USE_QRCODE diff --git a/src/qt/res/css/drkblue.css b/src/qt/res/css/drkblue.css index 86661db55b..e8ffb761f4 100755 --- a/src/qt/res/css/drkblue.css +++ b/src/qt/res/css/drkblue.css @@ -859,7 +859,7 @@ background-color:#f2f0f0; QWidget .QFrame#frame_2 { /* Transactions Widget */ margin-right:20px; margin-left:20px; -background-image: url(':/images/darkcoin_logo_horizontal'); +background-image: url(':/images/dash_logo_horizontal'); background-repeat:none; } diff --git a/src/qt/res/darkcoin-qt-res.rc b/src/qt/res/darkcoin-qt-res.rc index 5bf45f9164..e8329f756c 100644 --- a/src/qt/res/darkcoin-qt-res.rc +++ b/src/qt/res/darkcoin-qt-res.rc @@ -23,10 +23,10 @@ BEGIN VALUE "CompanyName", "Dash" VALUE "FileDescription", "Dash Core (OSS GUI client for Dash)" VALUE "FileVersion", VER_FILEVERSION_STR - VALUE "InternalName", "darkcoin-qt" + VALUE "InternalName", "dash-qt" VALUE "LegalCopyright", COPYRIGHT_STR VALUE "LegalTrademarks1", "Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php." - VALUE "OriginalFilename", "darkcoin-qt.exe" + VALUE "OriginalFilename", "dash-qt.exe" VALUE "ProductName", "Dash Core" VALUE "ProductVersion", VER_PRODUCTVERSION_STR END diff --git a/src/qt/res/dash-qt-res.rc b/src/qt/res/dash-qt-res.rc new file mode 100644 index 0000000000..e8329f756c --- /dev/null +++ b/src/qt/res/dash-qt-res.rc @@ -0,0 +1,39 @@ +IDI_ICON1 ICON DISCARDABLE "icons/bitcoin.ico" +IDI_ICON2 ICON DISCARDABLE "icons/bitcoin_testnet.ico" + +#include // needed for VERSIONINFO +#include "../../clientversion.h" // holds the needed client version information + +#define VER_PRODUCTVERSION CLIENT_VERSION_MAJOR,CLIENT_VERSION_MINOR,CLIENT_VERSION_REVISION,CLIENT_VERSION_BUILD +#define VER_PRODUCTVERSION_STR STRINGIZE(CLIENT_VERSION_MAJOR) "." STRINGIZE(CLIENT_VERSION_MINOR) "." STRINGIZE(CLIENT_VERSION_REVISION) "." STRINGIZE(CLIENT_VERSION_BUILD) +#define VER_FILEVERSION VER_PRODUCTVERSION +#define VER_FILEVERSION_STR VER_PRODUCTVERSION_STR +#define COPYRIGHT_STR "2009-" STRINGIZE(COPYRIGHT_YEAR) " The Bitcoin and Dash developers" + +VS_VERSION_INFO VERSIONINFO +FILEVERSION VER_FILEVERSION +PRODUCTVERSION VER_PRODUCTVERSION +FILEOS VOS_NT_WINDOWS32 +FILETYPE VFT_APP +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904E4" // U.S. English - multilingual (hex) + BEGIN + VALUE "CompanyName", "Dash" + VALUE "FileDescription", "Dash Core (OSS GUI client for Dash)" + VALUE "FileVersion", VER_FILEVERSION_STR + VALUE "InternalName", "dash-qt" + VALUE "LegalCopyright", COPYRIGHT_STR + VALUE "LegalTrademarks1", "Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php." + VALUE "OriginalFilename", "dash-qt.exe" + VALUE "ProductName", "Dash Core" + VALUE "ProductVersion", VER_PRODUCTVERSION_STR + END + END + + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x0, 1252 // language neutral - multilingual (decimal) + END +END diff --git a/src/qt/res/icons/darkcoin.icns b/src/qt/res/icons/dash.icns similarity index 100% rename from src/qt/res/icons/darkcoin.icns rename to src/qt/res/icons/dash.icns diff --git a/src/qt/res/images/darkcoin_logo_horizontal.png b/src/qt/res/images/darkcoin_logo_horizontal.png deleted file mode 100644 index 511df681e2..0000000000 Binary files a/src/qt/res/images/darkcoin_logo_horizontal.png and /dev/null differ diff --git a/src/qt/res/images/dash_logo_horizontal.png b/src/qt/res/images/dash_logo_horizontal.png new file mode 100755 index 0000000000..de8df4891d Binary files /dev/null and b/src/qt/res/images/dash_logo_horizontal.png differ diff --git a/src/qt/res/images/splash.png b/src/qt/res/images/splash.png old mode 100644 new mode 100755 index ad5a7d1826..50a25532be Binary files a/src/qt/res/images/splash.png and b/src/qt/res/images/splash.png differ diff --git a/src/qt/res/images/splash_testnet.png b/src/qt/res/images/splash_testnet.png index f6e6e50130..4d72f01712 100755 Binary files a/src/qt/res/images/splash_testnet.png and b/src/qt/res/images/splash_testnet.png differ diff --git a/src/qt/rpcconsole.h b/src/qt/rpcconsole.h index 926497c34f..97b4806e90 100644 --- a/src/qt/rpcconsole.h +++ b/src/qt/rpcconsole.h @@ -65,7 +65,7 @@ public slots: void showConsole(); /** Switch to network tab and show */ void showNetwork(); - /** Open external (default) editor with darkcoin.conf */ + /** Open external (default) editor with dash.conf */ void showConfEditor(); signals: diff --git a/src/qt/sendcoinsentry.cpp b/src/qt/sendcoinsentry.cpp index 50122eedda..f595433d5e 100644 --- a/src/qt/sendcoinsentry.cpp +++ b/src/qt/sendcoinsentry.cpp @@ -31,9 +31,9 @@ SendCoinsEntry::SendCoinsEntry(QWidget *parent) : ui->addAsLabel->setPlaceholderText(tr("Enter a label for this address to add it to your address book")); #endif - // normal darkcoin address field + // normal dash address field GUIUtil::setupAddressWidget(ui->payTo, this); - // just a label for displaying darkcoin address(es) + // just a label for displaying dash address(es) ui->payTo_is->setFont(GUIUtil::bitcoinAddressFont()); } diff --git a/src/qt/test/Makefile.am b/src/qt/test/Makefile.am index 6e7a6321fe..37ce0e474f 100644 --- a/src/qt/test/Makefile.am +++ b/src/qt/test/Makefile.am @@ -5,8 +5,8 @@ AM_CPPFLAGS += -I$(top_srcdir)/src \ -I$(top_builddir)/src/qt \ $(PROTOBUF_CFLAGS) \ $(QR_CFLAGS) -bin_PROGRAMS = test_darkcoin-qt -TESTS = test_darkcoin-qt +bin_PROGRAMS = test_dash-qt +TESTS = test_dash-qt TEST_QT_MOC_CPP = moc_uritests.cpp @@ -21,26 +21,26 @@ TEST_QT_H = \ BUILT_SOURCES = $(TEST_QT_MOC_CPP) -test_darkcoin_qt_CPPFLAGS = $(AM_CPPFLAGS) $(QT_INCLUDES) $(QT_TEST_INCLUDES) +test_dash_qt_CPPFLAGS = $(AM_CPPFLAGS) $(QT_INCLUDES) $(QT_TEST_INCLUDES) -test_darkcoin_qt_SOURCES = \ +test_dash_qt_SOURCES = \ test_main.cpp \ uritests.cpp \ $(TEST_QT_H) if ENABLE_WALLET -test_darkcoin_qt_SOURCES += \ +test_dash_qt_SOURCES += \ paymentservertests.cpp endif -nodist_test_darkcoin_qt_SOURCES = $(TEST_QT_MOC_CPP) +nodist_test_dash_qt_SOURCES = $(TEST_QT_MOC_CPP) -test_darkcoin_qt_LDADD = $(LIBBITCOINQT) $(LIBBITCOIN_SERVER) +test_dash_qt_LDADD = $(LIBBITCOINQT) $(LIBBITCOIN_SERVER) if ENABLE_WALLET -test_darkcoin_qt_LDADD += $(LIBBITCOIN_WALLET) +test_dash_qt_LDADD += $(LIBBITCOIN_WALLET) endif -test_darkcoin_qt_LDADD += $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBLEVELDB) \ +test_dash_qt_LDADD += $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBLEVELDB) \ $(LIBMEMENV) $(BOOST_LIBS) $(QT_DBUS_LIBS) $(QT_TEST_LIBS) $(QT_LIBS) \ $(QR_LIBS) $(PROTOBUF_LIBS) $(BDB_LIBS) -test_darkcoin_qt_LDFLAGS = $(QT_LDFLAGS) +test_dash_qt_LDFLAGS = $(QT_LDFLAGS) CLEANFILES = $(BUILT_SOURCES) *.gcda *.gcno diff --git a/src/qt/test/test_main.cpp b/src/qt/test/test_main.cpp index 6f42c314c5..de7dd98c7d 100644 --- a/src/qt/test/test_main.cpp +++ b/src/qt/test/test_main.cpp @@ -1,6 +1,6 @@ -#include "darkcoin-config.h" +#include "dash-config.h" #if defined(HAVE_CONFIG_H) -#include "darkcoin-config.h" +#include "dash-config.h" #endif #ifdef ENABLE_WALLET diff --git a/src/qt/test/uritests.cpp b/src/qt/test/uritests.cpp index 984f5c169d..e14ff078e9 100644 --- a/src/qt/test/uritests.cpp +++ b/src/qt/test/uritests.cpp @@ -9,54 +9,54 @@ void URITests::uriTests() { SendCoinsRecipient rv; QUrl uri; - uri.setUrl(QString("darkcoin:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?req-dontexist=")); + uri.setUrl(QString("dash:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?req-dontexist=")); QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv)); - uri.setUrl(QString("darkcoin:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?dontexist=")); + uri.setUrl(QString("dash:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?dontexist=")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); QVERIFY(rv.address == QString("XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg")); QVERIFY(rv.label == QString()); QVERIFY(rv.amount == 0); - uri.setUrl(QString("darkcoin:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?label=Some Example Address")); + uri.setUrl(QString("dash:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?label=Some Example Address")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); QVERIFY(rv.address == QString("XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg")); QVERIFY(rv.label == QString("Some Example Address")); QVERIFY(rv.amount == 0); - uri.setUrl(QString("darkcoin:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?amount=0.001")); + uri.setUrl(QString("dash:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?amount=0.001")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); QVERIFY(rv.address == QString("XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg")); QVERIFY(rv.label == QString()); QVERIFY(rv.amount == 100000); - uri.setUrl(QString("darkcoin:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?amount=1.001")); + uri.setUrl(QString("dash:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?amount=1.001")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); QVERIFY(rv.address == QString("XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg")); QVERIFY(rv.label == QString()); QVERIFY(rv.amount == 100100000); - uri.setUrl(QString("darkcoin:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?amount=100&label=Some Example")); + uri.setUrl(QString("dash:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?amount=100&label=Some Example")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); QVERIFY(rv.address == QString("XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg")); QVERIFY(rv.amount == 10000000000LL); QVERIFY(rv.label == QString("Some Example")); - uri.setUrl(QString("darkcoin:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?message=Some Example Address")); + uri.setUrl(QString("dash:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?message=Some Example Address")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); QVERIFY(rv.address == QString("XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg")); QVERIFY(rv.label == QString()); - QVERIFY(GUIUtil::parseBitcoinURI("darkcoin://XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?message=Some Example Address", &rv)); + QVERIFY(GUIUtil::parseBitcoinURI("dash://XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?message=Some Example Address", &rv)); QVERIFY(rv.address == QString("XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg")); QVERIFY(rv.label == QString()); - uri.setUrl(QString("darkcoin:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?req-message=Some Example Address")); + uri.setUrl(QString("dash:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?req-message=Some Example Address")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); - uri.setUrl(QString("darkcoin:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?amount=1,000&label=Some Example")); + uri.setUrl(QString("dash:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?amount=1,000&label=Some Example")); QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv)); - uri.setUrl(QString("darkcoin:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?amount=1,000.0&label=Some Example")); + uri.setUrl(QString("dash:XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg?amount=1,000.0&label=Some Example")); QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv)); } diff --git a/src/qt/transactiondesc.cpp b/src/qt/transactiondesc.cpp index eb6ad84a24..05aa82a970 100644 --- a/src/qt/transactiondesc.cpp +++ b/src/qt/transactiondesc.cpp @@ -266,7 +266,7 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx, int vout, int u strHTML += "" + tr("Transaction ID") + ": " + TransactionRecord::formatSubTxId(wtx.GetHash(), vout) + "
"; - // Message from normal darkcoin:URI (darkcoin:XyZ...?message=example) + // Message from normal dash:URI (dash:XyZ...?message=example) foreach (const PAIRTYPE(string, string)& r, wtx.vOrderForm) if (r.first == "Message") strHTML += "
" + tr("Message") + ":
" + GUIUtil::HtmlEscape(r.second, true) + "
"; diff --git a/src/qt/utilitydialog.cpp b/src/qt/utilitydialog.cpp index 81e0f485ae..616636aef7 100644 --- a/src/qt/utilitydialog.cpp +++ b/src/qt/utilitydialog.cpp @@ -69,7 +69,7 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent) : header = tr("Dash Core") + " " + tr("version") + " " + QString::fromStdString(FormatFullVersion()) + "\n\n" + tr("Usage:") + "\n" + - " darkcoin-qt [" + tr("command-line options") + "] " + "\n"; + " dash-qt [" + tr("command-line options") + "] " + "\n"; coreOptions = QString::fromStdString(HelpMessage(HMM_BITCOIN_QT)); diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index ee36a83389..0dd8db9951 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -218,7 +218,7 @@ WalletModel::SendCoinsReturn WalletModel::prepareTransaction(WalletModelTransact total += subtotal; } else - { // User-entered darkcoin address / amount: + { // User-entered dash address / amount: if(!validateAddress(rcp.address)) { return InvalidAddress; @@ -314,7 +314,7 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(WalletModelTransaction &tran rcp.paymentRequest.SerializeToString(&value); newTx->vOrderForm.push_back(make_pair(key, value)); } - else if (!rcp.message.isEmpty()) // Message from normal darkcoin:URI (darkcoin:XyZ...?message=example) + else if (!rcp.message.isEmpty()) // Message from normal dash:URI (dash:XyZ...?message=example) { newTx->vOrderForm.push_back(make_pair("Message", rcp.message.toStdString())); } diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp index 1a0855c324..a80a0a2136 100644 --- a/src/rpcblockchain.cpp +++ b/src/rpcblockchain.cpp @@ -146,7 +146,7 @@ Value getrawmempool(const Array& params, bool fHelp) "{ (json object)\n" " \"transactionid\" : { (json object)\n" " \"size\" : n, (numeric) transaction size in bytes\n" - " \"fee\" : n, (numeric) transaction fee in darkcoins\n" + " \"fee\" : n, (numeric) transaction fee in dashs\n" " \"time\" : n, (numeric) local time transaction entered pool in seconds since 1 Jan 1970 GMT\n" " \"height\" : n, (numeric) block height when transaction entered pool\n" " \"startingpriority\" : n, (numeric) priority when transaction entered pool\n" @@ -349,8 +349,8 @@ Value gettxout(const Array& params, bool fHelp) " \"hex\" : \"hex\", (string) \n" " \"reqSigs\" : n, (numeric) Number of required signatures\n" " \"type\" : \"pubkeyhash\", (string) The type, eg pubkeyhash\n" - " \"addresses\" : [ (array of string) array of darkcoin addresses\n" - " \"darkcoinaddress\" (string) darkcoin address\n" + " \"addresses\" : [ (array of string) array of dash addresses\n" + " \"dashaddress\" (string) dash address\n" " ,...\n" " ]\n" " },\n" diff --git a/src/rpcclient.cpp b/src/rpcclient.cpp index d4b8d4765e..c8e232cce2 100644 --- a/src/rpcclient.cpp +++ b/src/rpcclient.cpp @@ -256,7 +256,7 @@ std::string HelpMessageCli(bool mainProgram) { strUsage += _("Options:") + "\n"; strUsage += " -? " + _("This help message") + "\n"; - strUsage += " -conf= " + _("Specify configuration file (default: darkcoin.conf)") + "\n"; + strUsage += " -conf= " + _("Specify configuration file (default: dash.conf)") + "\n"; strUsage += " -datadir= " + _("Specify data directory") + "\n"; strUsage += " -testnet " + _("Use the test network") + "\n"; strUsage += " -regtest " + _("Enter regression test mode, which uses a special chain in which blocks can be " diff --git a/src/rpcclient.h b/src/rpcclient.h index 3af87c7ec6..9d79746ce2 100644 --- a/src/rpcclient.h +++ b/src/rpcclient.h @@ -14,11 +14,11 @@ int CommandLineRPC(int argc, char *argv[]); json_spirit::Array RPCConvertValues(const std::string &strMethod, const std::vector &strParams); -/** Show help message for darkcoin-cli. +/** Show help message for dash-cli. * The mainProgram argument is used to determine whether to show this message as main program * (and include some common options) or as sub-header of another help message. * - * @note the argument can be removed once darkcoin-cli functionality is removed from darkcoind + * @note the argument can be removed once dash-cli functionality is removed from dashd */ std::string HelpMessageCli(bool mainProgram); diff --git a/src/rpcdarksend.cpp b/src/rpcdarksend.cpp index 2c6ee6684c..57290eddc4 100644 --- a/src/rpcdarksend.cpp +++ b/src/rpcdarksend.cpp @@ -23,8 +23,8 @@ Value darksend(const Array& params, bool fHelp) { if (fHelp || params.size() == 0) throw runtime_error( - "darksend \n" - "darkcoinaddress, reset, or auto (AutoDenominate)" + "darksend \n" + "dashaddress, reset, or auto (AutoDenominate)" " is a real and is rounded to the nearest 0.00000001" + HelpRequiringPassphrase()); @@ -47,8 +47,8 @@ Value darksend(const Array& params, bool fHelp) if (params.size() != 2) throw runtime_error( - "darksend \n" - "darkcoinaddress, denominate, or auto (AutoDenominate)" + "darksend \n" + "dashaddress, denominate, or auto (AutoDenominate)" " is a real and is rounded to the nearest 0.00000001" + HelpRequiringPassphrase()); @@ -107,10 +107,10 @@ Value masternode(const Array& params, bool fHelp) " genkey - Generate new masternodeprivkey\n" " enforce - Enforce masternode payments\n" " outputs - Print masternode compatible outputs\n" - " start - Start masternode configured in darkcoin.conf\n" + " start - Start masternode configured in dash.conf\n" " start-alias - Start single masternode by assigned alias configured in masternode.conf\n" " start-many - Start all masternodes configured in masternode.conf\n" - " stop - Stop masternode configured in darkcoin.conf\n" + " stop - Stop masternode configured in dash.conf\n" " stop-alias - Stop single masternode by assigned alias configured in masternode.conf\n" " stop-many - Stop all masternodes configured in masternode.conf\n" " list - Print list of all known masternodes (see masternodelist for more info)\n" diff --git a/src/rpcdump.cpp b/src/rpcdump.cpp index 0b5930e821..3f83c38234 100644 --- a/src/rpcdump.cpp +++ b/src/rpcdump.cpp @@ -69,10 +69,10 @@ Value importprivkey(const Array& params, bool fHelp) { if (fHelp || params.size() < 1 || params.size() > 3) throw runtime_error( - "importprivkey \"darkcoinprivkey\" ( \"label\" rescan )\n" + "importprivkey \"dashprivkey\" ( \"label\" rescan )\n" "\nAdds a private key (as returned by dumpprivkey) to your wallet.\n" "\nArguments:\n" - "1. \"darkcoinprivkey\" (string, required) The private key (see dumpprivkey)\n" + "1. \"dashprivkey\" (string, required) The private key (see dumpprivkey)\n" "2. \"label\" (string, optional) an optional label\n" "3. rescan (boolean, optional, default=true) Rescan the wallet for transactions\n" "\nExamples:\n" @@ -236,11 +236,11 @@ Value dumpprivkey(const Array& params, bool fHelp) { if (fHelp || params.size() != 1) throw runtime_error( - "dumpprivkey \"darkcoinaddress\"\n" - "\nReveals the private key corresponding to 'darkcoinaddress'.\n" + "dumpprivkey \"dashaddress\"\n" + "\nReveals the private key corresponding to 'dashaddress'.\n" "Then the importprivkey can be used with this output\n" "\nArguments:\n" - "1. \"darkcoinaddress\" (string, required) The darkcoin address for the private key\n" + "1. \"dashaddress\" (string, required) The dash address for the private key\n" "\nResult:\n" "\"key\" (string) The private key\n" "\nExamples:\n" diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp index 9fdacc4d7a..8608ae9c2e 100644 --- a/src/rpcmining.cpp +++ b/src/rpcmining.cpp @@ -121,7 +121,7 @@ Value getgenerate(const Array& params, bool fHelp) throw runtime_error( "getgenerate\n" "\nReturn if the server is set to generate coins or not. The default is false.\n" - "It is set with the command line argument -gen (or darkcoin.conf setting gen)\n" + "It is set with the command line argument -gen (or dash.conf setting gen)\n" "It can also be set with the setgenerate call.\n" "\nResult\n" "true|false (boolean) If the server is set to generate coins or not\n" diff --git a/src/rpcmisc.cpp b/src/rpcmisc.cpp index 8b9859dc8d..44396e057b 100644 --- a/src/rpcmisc.cpp +++ b/src/rpcmisc.cpp @@ -39,8 +39,8 @@ Value getinfo(const Array& params, bool fHelp) " \"version\": xxxxx, (numeric) the server version\n" " \"protocolversion\": xxxxx, (numeric) the protocol version\n" " \"walletversion\": xxxxx, (numeric) the wallet version\n" - " \"balance\": xxxxxxx, (numeric) the total darkcoin balance of the wallet\n" - " \"darksend_balance\": xxxxxx, (numeric) the anonymized darkcoin balance of the wallet\n" + " \"balance\": xxxxxxx, (numeric) the total dash balance of the wallet\n" + " \"darksend_balance\": xxxxxx, (numeric) the anonymized dash balance of the wallet\n" " \"blocks\": xxxxxx, (numeric) the current number of blocks processed in the server\n" " \"timeoffset\": xxxxx, (numeric) the time offset\n" " \"connections\": xxxxx, (numeric) the number of connections\n" @@ -174,14 +174,14 @@ Value validateaddress(const Array& params, bool fHelp) { if (fHelp || params.size() != 1) throw runtime_error( - "validateaddress \"darkcoinaddress\"\n" - "\nReturn information about the given darkcoin address.\n" + "validateaddress \"dashaddress\"\n" + "\nReturn information about the given dash address.\n" "\nArguments:\n" - "1. \"darkcoinaddress\" (string, required) The darkcoin address to validate\n" + "1. \"dashaddress\" (string, required) The dash address to validate\n" "\nResult:\n" "{\n" " \"isvalid\" : true|false, (boolean) If the address is valid or not. If not, this is the only property returned.\n" - " \"address\" : \"darkcoinaddress\", (string) The darkcoin address validated\n" + " \"address\" : \"dashaddress\", (string) The dash address validated\n" " \"ismine\" : true|false, (boolean) If the address is yours or not\n" " \"isscript\" : true|false, (boolean) If the key is a script\n" " \"pubkey\" : \"publickeyhex\", (string) The hex value of the raw public key\n" @@ -290,9 +290,9 @@ Value createmultisig(const Array& params, bool fHelp) "\nArguments:\n" "1. nrequired (numeric, required) The number of required signatures out of the n keys or addresses.\n" - "2. \"keys\" (string, required) A json array of keys which are darkcoin addresses or hex-encoded public keys\n" + "2. \"keys\" (string, required) A json array of keys which are dash addresses or hex-encoded public keys\n" " [\n" - " \"key\" (string) darkcoin address or hex-encoded public key\n" + " \"key\" (string) dash address or hex-encoded public key\n" " ,...\n" " ]\n" @@ -327,10 +327,10 @@ Value verifymessage(const Array& params, bool fHelp) { if (fHelp || params.size() != 3) throw runtime_error( - "verifymessage \"darkcoinaddress\" \"signature\" \"message\"\n" + "verifymessage \"dashaddress\" \"signature\" \"message\"\n" "\nVerify a signed message\n" "\nArguments:\n" - "1. \"darkcoinaddress\" (string, required) The darkcoin address to use for the signature.\n" + "1. \"dashaddress\" (string, required) The dash address to use for the signature.\n" "2. \"signature\" (string, required) The signature provided by the signer in base 64 encoding (see signmessage).\n" "3. \"message\" (string, required) The message that was signed.\n" "\nResult:\n" diff --git a/src/rpcnet.cpp b/src/rpcnet.cpp index 5e705f5c8e..9507e484ce 100644 --- a/src/rpcnet.cpp +++ b/src/rpcnet.cpp @@ -212,7 +212,7 @@ Value getaddednodeinfo(const Array& params, bool fHelp) " \"connected\" : true|false, (boolean) If connected\n" " \"addresses\" : [\n" " {\n" - " \"address\" : \"192.168.0.201:9999\", (string) The darkcoin server host and port\n" + " \"address\" : \"192.168.0.201:9999\", (string) The dash server host and port\n" " \"connected\" : \"outbound\" (string) connection, inbound or outbound\n" " }\n" " ,...\n" diff --git a/src/rpcprotocol.cpp b/src/rpcprotocol.cpp index 3fcb478d91..a8ceea05cd 100644 --- a/src/rpcprotocol.cpp +++ b/src/rpcprotocol.cpp @@ -37,7 +37,7 @@ string HTTPPost(const string& strMsg, const map& mapRequestHeader { ostringstream s; s << "POST / HTTP/1.1\r\n" - << "User-Agent: darkcoin-json-rpc/" << FormatFullVersion() << "\r\n" + << "User-Agent: dash-json-rpc/" << FormatFullVersion() << "\r\n" << "Host: 127.0.0.1\r\n" << "Content-Type: application/json\r\n" << "Content-Length: " << strMsg.size() << "\r\n" @@ -60,7 +60,7 @@ string HTTPReply(int nStatus, const string& strMsg, bool keepalive) if (nStatus == HTTP_UNAUTHORIZED) return strprintf("HTTP/1.0 401 Authorization Required\r\n" "Date: %s\r\n" - "Server: darkcoin-json-rpc/%s\r\n" + "Server: dash-json-rpc/%s\r\n" "WWW-Authenticate: Basic realm=\"jsonrpc\"\r\n" "Content-Type: text/html\r\n" "Content-Length: 296\r\n" @@ -87,7 +87,7 @@ string HTTPReply(int nStatus, const string& strMsg, bool keepalive) "Connection: %s\r\n" "Content-Length: %u\r\n" "Content-Type: application/json\r\n" - "Server: darkcoin-json-rpc/%s\r\n" + "Server: dash-json-rpc/%s\r\n" "\r\n" "%s", nStatus, diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp index 69941d9113..3db59ae021 100644 --- a/src/rpcrawtransaction.cpp +++ b/src/rpcrawtransaction.cpp @@ -153,7 +153,7 @@ Value getrawtransaction(const Array& params, bool fHelp) " \"reqSigs\" : n, (numeric) The required sigs\n" " \"type\" : \"pubkeyhash\", (string) The type, eg 'pubkeyhash'\n" " \"addresses\" : [ (json array of string)\n" - " \"darkcoinaddress\" (string) darkcoin address\n" + " \"dashaddress\" (string) dash address\n" " ,...\n" " ]\n" " }\n" @@ -210,9 +210,9 @@ Value listunspent(const Array& params, bool fHelp) "\nArguments:\n" "1. minconf (numeric, optional, default=1) The minimum confirmationsi to filter\n" "2. maxconf (numeric, optional, default=9999999) The maximum confirmations to filter\n" - "3. \"addresses\" (string) A json array of darkcoin addresses to filter\n" + "3. \"addresses\" (string) A json array of dash addresses to filter\n" " [\n" - " \"address\" (string) darkcoin address\n" + " \"address\" (string) dash address\n" " ,...\n" " ]\n" "\nResult\n" @@ -220,7 +220,7 @@ Value listunspent(const Array& params, bool fHelp) " {\n" " \"txid\" : \"txid\", (string) the transaction id \n" " \"vout\" : n, (numeric) the vout value\n" - " \"address\" : \"address\", (string) the darkcoin address\n" + " \"address\" : \"address\", (string) the dash address\n" " \"account\" : \"account\", (string) The associated account, or \"\" for the default account\n" " \"scriptPubKey\" : \"key\", (string) the script key\n" " \"amount\" : x.xxx, (numeric) the transaction amount in btc\n" @@ -333,7 +333,7 @@ Value createrawtransaction(const Array& params, bool fHelp) " ]\n" "2. \"addresses\" (string, required) a json object with addresses as keys and amounts as values\n" " {\n" - " \"address\": x.xxx (numeric, required) The key is the darkcoin address, the value is the btc amount\n" + " \"address\": x.xxx (numeric, required) The key is the dash address, the value is the btc amount\n" " ,...\n" " }\n" @@ -430,7 +430,7 @@ Value decoderawtransaction(const Array& params, bool fHelp) " \"reqSigs\" : n, (numeric) The required sigs\n" " \"type\" : \"pubkeyhash\", (string) The type, eg 'pubkeyhash'\n" " \"addresses\" : [ (json array of string)\n" - " \"12tvKAXCxZjSmdNbao16dKXC8tRWfcF5oc\" (string) darkcoin address\n" + " \"12tvKAXCxZjSmdNbao16dKXC8tRWfcF5oc\" (string) dash address\n" " ,...\n" " ]\n" " }\n" @@ -475,7 +475,7 @@ Value decodescript(const Array& params, bool fHelp) " \"type\":\"type\", (string) The output type\n" " \"reqSigs\": n, (numeric) The required signatures\n" " \"addresses\": [ (json array of string)\n" - " \"address\" (string) darkcoin address\n" + " \"address\" (string) dash address\n" " ,...\n" " ],\n" " \"p2sh\",\"address\" (string) script address\n" diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp index d9232bf67b..16787961f9 100644 --- a/src/rpcserver.cpp +++ b/src/rpcserver.cpp @@ -516,7 +516,7 @@ void StartRPCThreads() { unsigned char rand_pwd[32]; RAND_bytes(rand_pwd, 32); - string strWhatAmI = "To use darkcoind"; + string strWhatAmI = "To use dashd"; if (mapArgs.count("-server")) strWhatAmI = strprintf(_("To use the %s option"), "\"-server\""); else if (mapArgs.count("-daemon")) @@ -525,7 +525,7 @@ void StartRPCThreads() _("%s, you must set a rpcpassword in the configuration file:\n" "%s\n" "It is recommended you use the following random password:\n" - "rpcuser=darkcoinrpc\n" + "rpcuser=dashrpc\n" "rpcpassword=%s\n" "(you do not need to remember this password)\n" "The username and password MUST NOT be the same.\n" @@ -897,7 +897,7 @@ json_spirit::Value CRPCTable::execute(const std::string &strMethod, const json_s } std::string HelpExampleCli(string methodname, string args){ - return "> darkcoin-cli " + methodname + " " + args + "\n"; + return "> dash-cli " + methodname + " " + args + "\n"; } std::string HelpExampleRpc(string methodname, string args){ diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp index 86b5f4e191..02ea9b4a06 100644 --- a/src/rpcwallet.cpp +++ b/src/rpcwallet.cpp @@ -84,7 +84,7 @@ Value getnewaddress(const Array& params, bool fHelp) "\nArguments:\n" "1. \"account\" (string, optional) The account name for the address to be linked to. if not provided, the default account \"\" is used. It can also be set to the empty string \"\" to represent the default account. The account does not need to exist, it will be created if there is no account by the given name.\n" "\nResult:\n" - "\"darkcoinaddress\" (string) The new darkcoin address\n" + "\"dashaddress\" (string) The new dash address\n" "\nExamples:\n" + HelpExampleCli("getnewaddress", "") + HelpExampleCli("getnewaddress", "\"\"") @@ -159,7 +159,7 @@ Value getaccountaddress(const Array& params, bool fHelp) "\nArguments:\n" "1. \"account\" (string, required) The account name for the address. It can also be set to the empty string \"\" to represent the default account. The account does not need to exist, it will be created and a new address created if there is no account by the given name.\n" "\nResult:\n" - "\"darkcoinaddress\" (string) The account darkcoin address\n" + "\"dashaddress\" (string) The account dash address\n" "\nExamples:\n" + HelpExampleCli("getaccountaddress", "") + HelpExampleCli("getaccountaddress", "\"\"") @@ -212,10 +212,10 @@ Value setaccount(const Array& params, bool fHelp) { if (fHelp || params.size() < 1 || params.size() > 2) throw runtime_error( - "setaccount \"darkcoinaddress\" \"account\"\n" + "setaccount \"dashaddress\" \"account\"\n" "\nSets the account associated with the given address.\n" "\nArguments:\n" - "1. \"darkcoinaddress\" (string, required) The darkcoin address to be associated with an account.\n" + "1. \"dashaddress\" (string, required) The dash address to be associated with an account.\n" "2. \"account\" (string, required) The account to assign the address to.\n" "\nExamples:\n" + HelpExampleCli("setaccount", "\"XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg\" \"tabby\"") @@ -249,10 +249,10 @@ Value getaccount(const Array& params, bool fHelp) { if (fHelp || params.size() != 1) throw runtime_error( - "getaccount \"darkcoinaddress\"\n" + "getaccount \"dashaddress\"\n" "\nReturns the account associated with the given address.\n" "\nArguments:\n" - "1. \"darkcoinaddress\" (string, required) The darkcoin address for account lookup.\n" + "1. \"dashaddress\" (string, required) The dash address for account lookup.\n" "\nResult:\n" "\"accountname\" (string) the account address\n" "\nExamples:\n" @@ -282,7 +282,7 @@ Value getaddressesbyaccount(const Array& params, bool fHelp) "1. \"account\" (string, required) The account name.\n" "\nResult:\n" "[ (json array of string)\n" - " \"darkcoinaddress\" (string) a darkcoin address associated with the given account\n" + " \"dashaddress\" (string) a dash address associated with the given account\n" " ,...\n" "]\n" "\nExamples:\n" @@ -308,11 +308,11 @@ Value sendtoaddress(const Array& params, bool fHelp) { if (fHelp || params.size() < 2 || params.size() > 4) throw runtime_error( - "sendtoaddress \"darkcoinaddress\" amount ( \"comment\" \"comment-to\" )\n" + "sendtoaddress \"dashaddress\" amount ( \"comment\" \"comment-to\" )\n" "\nSent an amount to a given address. The amount is a real and is rounded to the nearest 0.00000001\n" + HelpRequiringPassphrase() + "\nArguments:\n" - "1. \"darkcoinaddress\" (string, required) The darkcoin address to send to.\n" + "1. \"dashaddress\" (string, required) The dash address to send to.\n" "2. \"amount\" (numeric, required) The amount in btc to send. eg 0.1\n" "3. \"comment\" (string, optional) A comment used to store what the transaction is for. \n" " This is not part of the transaction, just kept in your wallet.\n" @@ -362,7 +362,7 @@ Value listaddressgroupings(const Array& params, bool fHelp) "[\n" " [\n" " [\n" - " \"darkcoinaddress\", (string) The darkcoin address\n" + " \"dashaddress\", (string) The dash address\n" " amount, (numeric) The amount in btc\n" " \"account\" (string, optional) The account\n" " ]\n" @@ -401,11 +401,11 @@ Value signmessage(const Array& params, bool fHelp) { if (fHelp || params.size() != 2) throw runtime_error( - "signmessage \"darkcoinaddress\" \"message\"\n" + "signmessage \"dashaddress\" \"message\"\n" "\nSign a message with the private key of an address" + HelpRequiringPassphrase() + "\n" "\nArguments:\n" - "1. \"darkcoinaddress\" (string, required) The darkcoin address to use for the private key.\n" + "1. \"dashaddress\" (string, required) The dash address to use for the private key.\n" "2. \"message\" (string, required) The message to create a signature of.\n" "\nResult:\n" "\"signature\" (string) The signature of the message encoded in base 64\n" @@ -452,10 +452,10 @@ Value getreceivedbyaddress(const Array& params, bool fHelp) { if (fHelp || params.size() < 1 || params.size() > 2) throw runtime_error( - "getreceivedbyaddress \"darkcoinaddress\" ( minconf )\n" - "\nReturns the total amount received by the given darkcoinaddress in transactions with at least minconf confirmations.\n" + "getreceivedbyaddress \"dashaddress\" ( minconf )\n" + "\nReturns the total amount received by the given dashaddress in transactions with at least minconf confirmations.\n" "\nArguments:\n" - "1. \"darkcoinaddress\" (string, required) The darkcoin address for transactions.\n" + "1. \"dashaddress\" (string, required) The dash address for transactions.\n" "2. minconf (numeric, optional, default=1) Only include transactions confirmed at least this many times.\n" "\nResult:\n" "amount (numeric) The total amount in btc received at this address.\n" @@ -734,13 +734,13 @@ Value sendfrom(const Array& params, bool fHelp) { if (fHelp || params.size() < 3 || params.size() > 6) throw runtime_error( - "sendfrom \"fromaccount\" \"todarkcoinaddress\" amount ( minconf \"comment\" \"comment-to\" )\n" - "\nSent an amount from an account to a darkcoin address.\n" + "sendfrom \"fromaccount\" \"todashaddress\" amount ( minconf \"comment\" \"comment-to\" )\n" + "\nSent an amount from an account to a dash address.\n" "The amount is a real and is rounded to the nearest 0.00000001." + HelpRequiringPassphrase() + "\n" "\nArguments:\n" "1. \"fromaccount\" (string, required) The name of the account to send funds from. May be the default account using \"\".\n" - "2. \"todarkcoinaddress\" (string, required) The darkcoin address to send funds to.\n" + "2. \"todashaddress\" (string, required) The dash address to send funds to.\n" "3. amount (numeric, required) The amount in btc. (transaction fee is added on top).\n" "4. minconf (numeric, optional, default=1) Only use funds with at least this many confirmations.\n" "5. \"comment\" (string, optional) A comment used to store what the transaction is for. \n" @@ -802,7 +802,7 @@ Value sendmany(const Array& params, bool fHelp) "1. \"fromaccount\" (string, required) The account to send the funds from, can be \"\" for the default account\n" "2. \"amounts\" (string, required) A json object with addresses and amounts\n" " {\n" - " \"address\":amount (numeric) The darkcoin address is the key, the numeric amount in btc is the value\n" + " \"address\":amount (numeric) The dash address is the key, the numeric amount in btc is the value\n" " ,...\n" " }\n" "3. minconf (numeric, optional, default=1) Only use the balance confirmed at least this many times.\n" @@ -886,15 +886,15 @@ Value addmultisigaddress(const Array& params, bool fHelp) "\nArguments:\n" "1. nrequired (numeric, required) The number of required signatures out of the n keys or addresses.\n" - "2. \"keysobject\" (string, required) A json array of darkcoin addresses or hex-encoded public keys\n" + "2. \"keysobject\" (string, required) A json array of dash addresses or hex-encoded public keys\n" " [\n" - " \"address\" (string) darkcoin address or hex-encoded public key\n" + " \"address\" (string) dash address or hex-encoded public key\n" " ...,\n" " ]\n" "3. \"account\" (string, optional) An account to assign the addresses to.\n" "\nResult:\n" - "\"darkcoinaddress\" (string) A darkcoin address associated with the keys.\n" + "\"dashaddress\" (string) A dash address associated with the keys.\n" "\nExamples:\n" "\nAdd a multisig address from 2 addresses\n" @@ -1195,7 +1195,7 @@ Value listtransactions(const Array& params, bool fHelp) " {\n" " \"account\":\"accountname\", (string) The account name associated with the transaction. \n" " It will be \"\" for the default account.\n" - " \"address\":\"darkcoinaddress\", (string) The darkcoin address of the transaction. Not present for \n" + " \"address\":\"dashaddress\", (string) The dash address of the transaction. Not present for \n" " move transactions (category = move).\n" " \"category\":\"send|receive|move\", (string) The transaction category. 'move' is a local (off blockchain)\n" " transaction between accounts, and not associated with an address,\n" @@ -1368,7 +1368,7 @@ Value listsinceblock(const Array& params, bool fHelp) "{\n" " \"transactions\": [\n" " \"account\":\"accountname\", (string) The account name associated with the transaction. Will be \"\" for the default account.\n" - " \"address\":\"darkcoinaddress\", (string) The darkcoin address of the transaction. Not present for move transactions (category = move).\n" + " \"address\":\"dashaddress\", (string) The dash address of the transaction. Not present for move transactions (category = move).\n" " \"category\":\"send|receive\", (string) The transaction category. 'send' has negative amounts, 'receive' has positive amounts.\n" " \"amount\": x.xxx, (numeric) The amount in btc. This is negative for the 'send' category, and for the 'move' category for moves \n" " outbound. It is positive for the 'receive' category, and for the 'move' category for inbound funds.\n" @@ -1455,7 +1455,7 @@ Value gettransaction(const Array& params, bool fHelp) " \"details\" : [\n" " {\n" " \"account\" : \"accountname\", (string) The account name involved in the transaction, can be \"\" for the default account.\n" - " \"address\" : \"darkcoinaddress\", (string) The darkcoin address involved in the transaction\n" + " \"address\" : \"dashaddress\", (string) The dash address involved in the transaction\n" " \"category\" : \"send|receive\", (string) The category, either 'send' or 'receive'\n" " \"amount\" : x.xxx (numeric) The amount in btc\n" " }\n" @@ -1567,7 +1567,7 @@ Value walletpassphrase(const Array& params, bool fHelp) throw runtime_error( "walletpassphrase \"passphrase\" timeout ( anonymizeonly )\n" "\nStores the wallet decryption key in memory for 'timeout' seconds.\n" - "This is needed prior to performing transactions related to private keys such as sending darkcoins\n" + "This is needed prior to performing transactions related to private keys such as sending dashs\n" "\nArguments:\n" "1. \"passphrase\" (string, required) The wallet passphrase\n" "2. timeout (numeric, required) The time to keep the decryption key in seconds.\n" @@ -1710,10 +1710,10 @@ Value encryptwallet(const Array& params, bool fHelp) "\nExamples:\n" "\nEncrypt you wallet\n" + HelpExampleCli("encryptwallet", "\"my pass phrase\"") + - "\nNow set the passphrase to use the wallet, such as for signing or sending darkcoin\n" + "\nNow set the passphrase to use the wallet, such as for signing or sending dash\n" + HelpExampleCli("walletpassphrase", "\"my pass phrase\"") + "\nNow we can so something like sign\n" - + HelpExampleCli("signmessage", "\"darkcoinaddress\" \"test message\"") + + + HelpExampleCli("signmessage", "\"dashaddress\" \"test message\"") + "\nNow lock the wallet again by removing the passphrase\n" + HelpExampleCli("walletlock", "") + "\nAs a json rpc call\n" @@ -1743,7 +1743,7 @@ Value encryptwallet(const Array& params, bool fHelp) // slack space in .dat files; that is bad if the old data is // unencrypted private keys. So: StartShutdown(); - return "wallet encrypted; darkcoin server stopping, restart to run with encrypted wallet. The keypool has been flushed, you need to make a new backup."; + return "wallet encrypted; dash server stopping, restart to run with encrypted wallet. The keypool has been flushed, you need to make a new backup."; } Value lockunspent(const Array& params, bool fHelp) @@ -1753,7 +1753,7 @@ Value lockunspent(const Array& params, bool fHelp) "lockunspent unlock [{\"txid\":\"txid\",\"vout\":n},...]\n" "\nUpdates list of temporarily unspendable outputs.\n" "Temporarily lock (unlock=false) or unlock (unlock=true) specified transaction outputs.\n" - "A locked transaction output will not be chosen by automatic coin selection, when spending darkcoins.\n" + "A locked transaction output will not be chosen by automatic coin selection, when spending dashs.\n" "Locks are stored in memory only. Nodes start with zero locked outputs, and the locked output list\n" "is always cleared (by virtue of process exit) when a node stops or fails.\n" "Also see the listunspent call\n" @@ -1902,7 +1902,7 @@ Value getwalletinfo(const Array& params, bool fHelp) "\nResult:\n" "{\n" " \"walletversion\": xxxxx, (numeric) the wallet version\n" - " \"balance\": xxxxxxx, (numeric) the total darkcoin balance of the wallet\n" + " \"balance\": xxxxxxx, (numeric) the total dash balance of the wallet\n" " \"txcount\": xxxxxxx, (numeric) the total number of transactions in the wallet\n" " \"keypoololdest\": xxxxxx, (numeric) the timestamp (seconds since GMT epoch) of the oldest pre-generated key in the key pool\n" " \"keypoolsize\": xxxx, (numeric) how many new keys are pre-generated\n" diff --git a/src/test/Makefile.am b/src/test/Makefile.am index 39ef47a31e..fafd5cbd3b 100644 --- a/src/test/Makefile.am +++ b/src/test/Makefile.am @@ -2,9 +2,9 @@ include $(top_srcdir)/src/Makefile.include AM_CPPFLAGS += -I$(top_srcdir)/src -bin_PROGRAMS = test_darkcoin +bin_PROGRAMS = test_dash -TESTS = test_darkcoin +TESTS = test_dash JSON_TEST_FILES = \ data/script_valid.json \ @@ -22,16 +22,16 @@ RAW_TEST_FILES = data/alertTests.raw BUILT_SOURCES = $(JSON_TEST_FILES:.json=.json.h) $(RAW_TEST_FILES:.raw=.raw.h) -# test_darkcoin binary # -test_darkcoin_CPPFLAGS = $(AM_CPPFLAGS) $(TESTDEFS) -test_darkcoin_LDADD = $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBLEVELDB) $(LIBMEMENV) \ +# test_dash binary # +test_dash_CPPFLAGS = $(AM_CPPFLAGS) $(TESTDEFS) +test_dash_LDADD = $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBLEVELDB) $(LIBMEMENV) \ $(BOOST_LIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIB) if ENABLE_WALLET -test_darkcoin_LDADD += $(LIBBITCOIN_WALLET) +test_dash_LDADD += $(LIBBITCOIN_WALLET) endif -test_darkcoin_LDADD += $(BDB_LIBS) +test_dash_LDADD += $(BDB_LIBS) -test_darkcoin_SOURCES = \ +test_dash_SOURCES = \ alert_tests.cpp \ allocator_tests.cpp \ base32_tests.cpp \ @@ -57,7 +57,7 @@ test_darkcoin_SOURCES = \ script_tests.cpp \ serialize_tests.cpp \ sigopcount_tests.cpp \ - test_darkcoin.cpp \ + test_dash.cpp \ transaction_tests.cpp \ uint256_tests.cpp \ util_tests.cpp \ @@ -66,12 +66,12 @@ test_darkcoin_SOURCES = \ $(JSON_TEST_FILES) $(RAW_TEST_FILES) if ENABLE_WALLET -test_darkcoin_SOURCES += \ +test_dash_SOURCES += \ accounting_tests.cpp \ wallet_tests.cpp \ rpc_wallet_tests.cpp endif -nodist_test_darkcoin_SOURCES = $(BUILT_SOURCES) +nodist_test_dash_SOURCES = $(BUILT_SOURCES) CLEANFILES = *.gcda *.gcno $(BUILT_SOURCES) diff --git a/src/test/README.md b/src/test/README.md index 894a54144f..53f3c42313 100644 --- a/src/test/README.md +++ b/src/test/README.md @@ -5,9 +5,9 @@ sense to simply use this framework rather than require developers to configure some other framework (we want as few impediments to creating unit tests as possible). -The build system is setup to compile an executable called "test_darkcoin" +The build system is setup to compile an executable called "test_dash" that runs all of the unit tests. The main source file is called -test_darkcoin.cpp, which simply includes other files that contain the +test_dash.cpp, which simply includes other files that contain the actual unit tests (outside of a couple required preprocessor directives). The pattern is to create one test file for each class or source file for which you want to create unit tests. The file naming diff --git a/src/test/test_darkcoin.cpp b/src/test/test_darkcoin.cpp index 7c30bfa360..706d6d811d 100644 --- a/src/test/test_darkcoin.cpp +++ b/src/test/test_darkcoin.cpp @@ -36,7 +36,7 @@ struct TestingSetup { #ifdef ENABLE_WALLET bitdb.MakeMock(); #endif - pathTemp = GetTempPath() / strprintf("test_darkcoin_%lu_%i", (unsigned long)GetTime(), (int)(GetRand(100000))); + pathTemp = GetTempPath() / strprintf("test_dash_%lu_%i", (unsigned long)GetTime(), (int)(GetRand(100000))); boost::filesystem::create_directories(pathTemp); mapArgs["-datadir"] = pathTemp.string(); pblocktree = new CBlockTreeDB(1 << 20, true); diff --git a/src/test/test_dash.cpp b/src/test/test_dash.cpp new file mode 100644 index 0000000000..706d6d811d --- /dev/null +++ b/src/test/test_dash.cpp @@ -0,0 +1,92 @@ +// Copyright (c) 2011-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#define BOOST_TEST_MODULE Bitcoin Test Suite + + + +#include "main.h" +#include "txdb.h" +#include "ui_interface.h" +#include "util.h" +#include "activemasternode.h" +#ifdef ENABLE_WALLET +#include "db.h" +#include "wallet.h" +#endif + +#include +#include + + +CWallet* pwalletMain; + +extern bool fPrintToConsole; +extern void noui_connect(); + +struct TestingSetup { + CCoinsViewDB *pcoinsdbview; + boost::filesystem::path pathTemp; + boost::thread_group threadGroup; + + TestingSetup() { + fPrintToDebugLog = false; // don't want to write to debug.log file + noui_connect(); +#ifdef ENABLE_WALLET + bitdb.MakeMock(); +#endif + pathTemp = GetTempPath() / strprintf("test_dash_%lu_%i", (unsigned long)GetTime(), (int)(GetRand(100000))); + boost::filesystem::create_directories(pathTemp); + mapArgs["-datadir"] = pathTemp.string(); + pblocktree = new CBlockTreeDB(1 << 20, true); + pcoinsdbview = new CCoinsViewDB(1 << 23, true); + pcoinsTip = new CCoinsViewCache(*pcoinsdbview); + InitBlockIndex(); +#ifdef ENABLE_WALLET + bool fFirstRun; + pwalletMain = new CWallet("wallet.dat"); + pwalletMain->LoadWallet(fFirstRun); + RegisterWallet(pwalletMain); +#endif + nScriptCheckThreads = 3; + for (int i=0; i < nScriptCheckThreads-1; i++) + threadGroup.create_thread(&ThreadScriptCheck); + RegisterNodeSignals(GetNodeSignals()); + } + ~TestingSetup() + { + threadGroup.interrupt_all(); + threadGroup.join_all(); + UnregisterNodeSignals(GetNodeSignals()); +#ifdef ENABLE_WALLET + delete pwalletMain; + pwalletMain = NULL; +#endif + delete pcoinsTip; + delete pcoinsdbview; + delete pblocktree; +#ifdef ENABLE_WALLET + bitdb.Flush(true); +#endif + boost::filesystem::remove_all(pathTemp); + } +}; + +BOOST_GLOBAL_FIXTURE(TestingSetup); + +void Shutdown(void* parg) +{ + exit(0); +} + +void StartShutdown() +{ + exit(0); +} + +bool ShutdownRequested() +{ + return false; +} + diff --git a/src/util.cpp b/src/util.cpp index b37553c184..9a5fc587ac 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -993,7 +993,7 @@ static std::string FormatException(std::exception* pex, const char* pszThread) char pszModule[MAX_PATH] = ""; GetModuleFileNameA(NULL, pszModule, sizeof(pszModule)); #else - const char* pszModule = "darkcoin"; + const char* pszModule = "dash"; #endif if (pex) return strprintf( @@ -1023,7 +1023,7 @@ boost::filesystem::path GetDefaultDataDir() // Windows < Vista: C:\Documents and Settings\Username\Application Data\Dash // Windows >= Vista: C:\Users\Username\AppData\Roaming\Dash // Mac: ~/Library/Application Support/Dash - // Unix: ~/.darkcoin + // Unix: ~/.dash #ifdef WIN32 // Windows return GetSpecialFolderPath(CSIDL_APPDATA) / "Dash"; @@ -1041,7 +1041,7 @@ boost::filesystem::path GetDefaultDataDir() return pathRet / "Dash"; #else // Unix - return pathRet / ".darkcoin"; + return pathRet / ".dash"; #endif #endif } @@ -1090,7 +1090,7 @@ void ClearDatadirCache() boost::filesystem::path GetConfigFile() { - boost::filesystem::path pathConfigFile(GetArg("-conf", "darkcoin.conf")); + boost::filesystem::path pathConfigFile(GetArg("-conf", "dash.conf")); if (!pathConfigFile.is_complete()) pathConfigFile = GetDataDir(false) / pathConfigFile; return pathConfigFile; } @@ -1107,14 +1107,14 @@ void ReadConfigFile(map& mapSettingsRet, { boost::filesystem::ifstream streamConfig(GetConfigFile()); if (!streamConfig.good()) - return; // No darkcoin.conf file is OK + return; // No dash.conf file is OK set setOptions; setOptions.insert("*"); for (boost::program_options::detail::config_file_iterator it(streamConfig, setOptions), end; it != end; ++it) { - // Don't overwrite existing settings so command line settings override darkcoin.conf + // Don't overwrite existing settings so command line settings override dash.conf string strKey = string("-") + it->string_key; if (mapSettingsRet.count(strKey) == 0) { @@ -1130,7 +1130,7 @@ void ReadConfigFile(map& mapSettingsRet, boost::filesystem::path GetPidFile() { - boost::filesystem::path pathPidFile(GetArg("-pid", "darkcoind.pid")); + boost::filesystem::path pathPidFile(GetArg("-pid", "dashd.pid")); if (!pathPidFile.is_complete()) pathPidFile = GetDataDir() / pathPidFile; return pathPidFile; } diff --git a/src/util.h b/src/util.h index ce437ac435..cdb92b9eda 100644 --- a/src/util.h +++ b/src/util.h @@ -8,7 +8,7 @@ #define BITCOIN_UTIL_H #if defined(HAVE_CONFIG_H) -#include "darkcoin-config.h" +#include "dash-config.h" #endif #include "compat.h" @@ -541,7 +541,7 @@ inline uint32_t ByteReverse(uint32_t value) // threadGroup.create_thread(boost::bind(&LoopForever >, "nothing", f, milliseconds)); template void LoopForever(const char* name, Callable func, int64_t msecs) { - std::string s = strprintf("darkcoin-%s", name); + std::string s = strprintf("dash-%s", name); RenameThread(s.c_str()); LogPrintf("%s thread start\n", name); try @@ -569,7 +569,7 @@ template void LoopForever(const char* name, Callable func, // .. and a wrapper that just calls func once template void TraceThread(const char* name, Callable func) { - std::string s = strprintf("darkcoin-%s", name); + std::string s = strprintf("dash-%s", name); RenameThread(s.c_str()); try { diff --git a/src/version.cpp b/src/version.cpp index 962be83254..d91977e8f0 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -8,7 +8,7 @@ #include // Name of client reported in the 'version' message. Report the same name -// for both darkcoind and darkcoin-qt, to make it harder for attackers to +// for both dashd and dash-qt, to make it harder for attackers to // target servers or GUI users specifically. const std::string CLIENT_NAME("Core"); diff --git a/src/wallet.cpp b/src/wallet.cpp index 63d58f53ed..dfee7747ea 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1904,7 +1904,7 @@ bool CWallet::CreateTransaction(const vector >& vecSend, // The following if statement should be removed once enough miners // have upgraded to the 0.9 GetMinFee() rules. Until then, this avoids // creating free transactions that have change outputs less than - // CENT darkcoins. + // CENT dashs. if (nFeeRet < CTransaction::nMinTxFee && nChange > 0 && nChange < CENT) { int64_t nMoveToFee = min(nChange, CTransaction::nMinTxFee - nFeeRet); @@ -1923,7 +1923,7 @@ bool CWallet::CreateTransaction(const vector >& vecSend, { // Fill a vout to ourself // TODO: pass in scriptChange instead of reservekey so - // change transaction isn't always pay-to-darkcoin-address + // change transaction isn't always pay-to-dash-address CScript scriptChange; // coin control: send change to custom address diff --git a/src/walletdb.cpp b/src/walletdb.cpp index 942923a83c..3329eba121 100644 --- a/src/walletdb.cpp +++ b/src/walletdb.cpp @@ -766,7 +766,7 @@ DBErrors CWalletDB::ZapWalletTx(CWallet* pwallet) void ThreadFlushWalletDB(const string& strFile) { // Make this thread recognisable as the wallet flushing thread - RenameThread("darkcoin-wallet"); + RenameThread("dash-wallet"); static bool fOneThread; if (fOneThread)