diff --git a/.gitignore b/.gitignore index 6b2e13d0a0..8be49ca384 100644 --- a/.gitignore +++ b/.gitignore @@ -13,8 +13,8 @@ autom4te.cache/ config.log config.status configure -src/bitcoin-config.h -src/bitcoin-config.h.in +src/darkcoin-config.h +src/darkcoin-config.h.in src/build-aux/ src/stamp-h1 share/setup.nsi diff --git a/configure.ac b/configure.ac index e169a0859d..c791a603b6 100644 --- a/configure.ac +++ b/configure.ac @@ -2,17 +2,17 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N) AC_PREREQ([2.60]) define(_CLIENT_VERSION_MAJOR, 0) define(_CLIENT_VERSION_MINOR, 11) -define(_CLIENT_VERSION_REVISION, 1) -define(_CLIENT_VERSION_BUILD, 25) +define(_CLIENT_VERSION_REVISION, 2) +define(_CLIENT_VERSION_BUILD, 0) define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2015) AC_INIT([Darkcoin Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[info@darkcoin.io],[darkcoin]) AC_CONFIG_AUX_DIR([src/build-aux]) AC_CONFIG_MACRO_DIR([src/m4]) AC_CANONICAL_HOST -AH_TOP([#ifndef BITCOIN_CONFIG_H]) -AH_TOP([#define BITCOIN_CONFIG_H]) -AH_BOTTOM([#endif //BITCOIN_CONFIG_H]) +AH_TOP([#ifndef DARKCOIN_CONFIG_H]) +AH_TOP([#define DARKCOIN_CONFIG_H]) +AH_BOTTOM([#endif //DARKCOIN_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/bitcoin-config.h]) +AC_CONFIG_HEADERS([src/darkcoin-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 bitcoin-config.h, but +# The following macro will add the necessary defines to darkcoin-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 diff --git a/contrib/darkcoin-qt.pro b/contrib/darkcoin-qt.pro index cc7e5d5517..72de1e4225 100644 --- a/contrib/darkcoin-qt.pro +++ b/contrib/darkcoin-qt.pro @@ -7,7 +7,7 @@ HEADERS += \ ../src/allocators.h \ ../src/base58.h \ ../src/bignum.h \ - ../src/bitcoin-config.h \ + ../src/darkcoin-config.h \ ../src/bloom.h \ ../src/chainparams.h \ ../src/checkpoints.h \ @@ -224,7 +224,7 @@ SOURCES += \ ../src/qt/bitcoinaddressvalidator.cpp \ ../src/qt/bitcoinamountfield.cpp \ ../src/qt/bitcoingui.cpp \ - ../src/qt/bitcoinstrings.cpp \ + ../src/qt/darkcoinstrings.cpp \ ../src/qt/bitcoinunits.cpp \ ../src/qt/clientmodel.cpp \ ../src/qt/coincontroldialog.cpp \ @@ -288,7 +288,7 @@ SOURCES += \ ../src/qt/paymentrequest.pb.cc \ ../src/qt/paymentrequestplus.cpp \ ../src/qt/paymentserver.cpp \ - ../src/qt/qrc_bitcoin.cpp \ + ../src/qt/qrc_darkcoin.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/bitcoin.qrc + ../src/qt/darkcoin.qrc diff --git a/contrib/debian/rules b/contrib/debian/rules index 692d283323..ed9f6a0b9b 100755 --- a/contrib/debian/rules +++ b/contrib/debian/rules @@ -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/bitcoin-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/darkcoin-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/doc/translation_process.md b/doc/translation_process.md index a18a45dd89..f18c5f6688 100644 --- a/doc/translation_process.md +++ b/doc/translation_process.md @@ -12,7 +12,7 @@ Files and Folders This file takes care of generating `.qm` files from `.ts` files. It is mostly automated. -### src/qt/bitcoin.qrc +### src/qt/darkcoin.qrc This file must be updated whenever a new translation is added. Please note that files must end with `.qm`, not `.ts`. @@ -60,7 +60,7 @@ in Transifex and can be translated. To create the pull-request you have to do: - git add src/qt/bitcoinstrings.cpp src/qt/locale/darkcoin_en.ts + git add src/qt/darkcoinstrings.cpp src/qt/locale/darkcoin_en.ts git commit Syncing with Transifex @@ -80,7 +80,7 @@ postprocessing steps before committing the translations. ### Fetching new translations 1. `python contrib/devtools/update-translations.py` -2. update `src/qt/bitcoin.qrc` manually or via +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>/'` 3. update `src/qt/Makefile.am` manually or via `ls src/qt/locale/*ts|xargs -n1 basename|sed 's/\(darkcoin_\(.*\)\).ts/ locale\/\1.ts \\/'` diff --git a/share/qt/extract_strings_qt.py b/share/qt/extract_strings_qt.py index d9cddfffd4..677a63cf75 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/bitcoinstrings.cpp" +OUT_CPP="src/qt/darkcoinstrings.cpp" EMPTY=['""'] def parse_po(text): @@ -72,7 +72,7 @@ f.write(""" #define UNUSED #endif """) -f.write('static const char UNUSED *bitcoin_strings[] = {\n') +f.write('static const char UNUSED *darkcoin_strings[] = {\n') messages.sort(key=operator.itemgetter(0)) for (msgid, msgstr) in messages: if msgid != EMPTY: diff --git a/src/Makefile.am b/src/Makefile.am index 37d62123b6..31c6849e34 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -203,7 +203,7 @@ darkcoind_SOURCES = darkcoind.cpp # if TARGET_WINDOWS -darkcoind_SOURCES += bitcoind-res.rc +darkcoind_SOURCES += darkcoind-res.rc endif AM_CPPFLAGS += $(BDB_CPPFLAGS) @@ -218,7 +218,7 @@ darkcoin_cli_SOURCES = darkcoin-cli.cpp # if TARGET_WINDOWS -darkcoin_cli_SOURCES += bitcoin-cli-res.rc +darkcoin_cli_SOURCES += darkcoin-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 @@ -229,7 +229,7 @@ leveldb/%.a: CC="$(CC)" PLATFORM=$(TARGET_OS) AR="$(AR)" $(LEVELDB_TARGET_FLAGS) \ OPT="$(CXXFLAGS) $(CPPFLAGS)" -qt/bitcoinstrings.cpp: $(libdarkcoin_server_a_SOURCES) $(libdarkcoin_common_a_SOURCES) $(libdarkcoin_cli_a_SOURCES) +qt/darkcoinstrings.cpp: $(libdarkcoin_server_a_SOURCES) $(libdarkcoin_common_a_SOURCES) $(libdarkcoin_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/clientversion.h b/src/clientversion.h index 2d8a7f2f6d..94ee7361c4 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -2,7 +2,7 @@ #define CLIENTVERSION_H #if defined(HAVE_CONFIG_H) -#include "bitcoin-config.h" +#include "darkcoin-config.h" #else // // client versioning and copyright year diff --git a/src/compat/glibc_compat.cpp b/src/compat/glibc_compat.cpp index 5b73e6051a..bc19333544 100644 --- a/src/compat/glibc_compat.cpp +++ b/src/compat/glibc_compat.cpp @@ -1,4 +1,4 @@ -#include "bitcoin-config.h" +#include "darkcoin-config.h" #include #include diff --git a/src/bitcoind-res.rc b/src/darkcoin-cli-res.rc similarity index 79% rename from src/bitcoind-res.rc rename to src/darkcoin-cli-res.rc index dc5c56b797..66ed691a33 100644 --- a/src/bitcoind-res.rc +++ b/src/darkcoin-cli-res.rc @@ -5,7 +5,7 @@ #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 Core developers" +#define COPYRIGHT_STR "2009-" STRINGIZE(COPYRIGHT_YEAR) " The Bitcoin and Darkcoin developers" VS_VERSION_INFO VERSIONINFO FILEVERSION VER_FILEVERSION @@ -17,14 +17,14 @@ BEGIN BEGIN BLOCK "040904E4" // U.S. English - multilingual (hex) BEGIN - VALUE "CompanyName", "Bitcoin" - VALUE "FileDescription", "Bitcoind (OSS daemon/client for Bitcoin)" + VALUE "CompanyName", "Darkcoin" + VALUE "FileDescription", "Darkcoin-cli (OSS RPC client for Darkcoin)" VALUE "FileVersion", VER_FILEVERSION_STR - VALUE "InternalName", "bitcoind" + VALUE "InternalName", "darkcoin-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", "bitcoind.exe" - VALUE "ProductName", "Bitcoind" + VALUE "OriginalFilename", "darkcoin-cli.exe" + VALUE "ProductName", "Darkcoin-cli" VALUE "ProductVersion", VER_PRODUCTVERSION_STR END END diff --git a/src/bitcoin-cli-res.rc b/src/darkcoind-res.rc similarity index 80% rename from src/bitcoin-cli-res.rc rename to src/darkcoind-res.rc index f8bfb3a881..f37ae963e2 100644 --- a/src/bitcoin-cli-res.rc +++ b/src/darkcoind-res.rc @@ -5,7 +5,7 @@ #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 Core developers" +#define COPYRIGHT_STR "2009-" STRINGIZE(COPYRIGHT_YEAR) " The Bitcoin and Darkcoin developers" VS_VERSION_INFO VERSIONINFO FILEVERSION VER_FILEVERSION @@ -17,14 +17,14 @@ BEGIN BEGIN BLOCK "040904E4" // U.S. English - multilingual (hex) BEGIN - VALUE "CompanyName", "Bitcoin" - VALUE "FileDescription", "Bitcoin-cli (OSS RPC client for Bitcoin)" + VALUE "CompanyName", "Darkcoin" + VALUE "FileDescription", "Darkcoind (OSS daemon/client for Darkcoin)" VALUE "FileVersion", VER_FILEVERSION_STR - VALUE "InternalName", "bitcoin-cli" + VALUE "InternalName", "darkcoind" 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", "bitcoin-cli.exe" - VALUE "ProductName", "Bitcoin-cli" + VALUE "OriginalFilename", "darkcoind.exe" + VALUE "ProductName", "Darkcoind" VALUE "ProductVersion", VER_PRODUCTVERSION_STR END END diff --git a/src/darksend.cpp b/src/darksend.cpp index 7b0b1c6ef4..62f48a810c 100644 --- a/src/darksend.cpp +++ b/src/darksend.cpp @@ -3,7 +3,7 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) -#include "bitcoin-config.h" +#include "darkcoin-config.h" #endif #include "darksend.h" diff --git a/src/init.cpp b/src/init.cpp index a6ee27fe9e..b25c6d348b 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 "bitcoin-config.h" +#include "darkcoin-config.h" #endif #include "init.h" diff --git a/src/main.h b/src/main.h index 27bbea8175..bac6488639 100644 --- a/src/main.h +++ b/src/main.h @@ -8,7 +8,7 @@ #define BITCOIN_MAIN_H #if defined(HAVE_CONFIG_H) -#include "bitcoin-config.h" +#include "darkcoin-config.h" #endif #include "bignum.h" diff --git a/src/net.cpp b/src/net.cpp index 30708fc418..c8c36e0b15 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 "bitcoin-config.h" +#include "darkcoin-config.h" #endif #include "net.h" diff --git a/src/netbase.h b/src/netbase.h index c27dd54a1d..c18cdc86f5 100644 --- a/src/netbase.h +++ b/src/netbase.h @@ -6,7 +6,7 @@ #define BITCOIN_NETBASE_H #if defined(HAVE_CONFIG_H) -#include "bitcoin-config.h" +#include "darkcoin-config.h" #endif #include "compat.h" diff --git a/src/qt/Makefile.am b/src/qt/Makefile.am index e7ab1f1e07..63e248983e 100644 --- a/src/qt/Makefile.am +++ b/src/qt/Makefile.am @@ -117,8 +117,8 @@ QT_MOC = \ overviewpage.moc \ rpcconsole.moc -QT_QRC_CPP = qrc_bitcoin.cpp -QT_QRC = bitcoin.qrc +QT_QRC_CPP = qrc_darkcoin.cpp +QT_QRC = darkcoin.qrc PROTOBUF_CC = paymentrequest.pb.cc PROTOBUF_H = paymentrequest.pb.h @@ -281,7 +281,7 @@ RES_IMAGES = \ RES_MOVIES = $(wildcard res/movies/spinner-*.png) -BITCOIN_RC = res/bitcoin-qt-res.rc +DARKCOIN_RC = res/darkcoin-qt-res.rc libdarkcoinqt_a_CPPFLAGS = $(AM_CPPFLAGS) $(QT_INCLUDES) \ -I$(top_srcdir)/src/qt/forms $(QT_DBUS_INCLUDES) @@ -306,7 +306,7 @@ if TARGET_DARWIN darkcoin_qt_SOURCES += $(BITCOIN_MM) endif if TARGET_WINDOWS - darkcoin_qt_SOURCES += $(BITCOIN_RC) + darkcoin_qt_SOURCES += $(DARKCOIN_RC) endif darkcoin_qt_LDADD = libdarkcoinqt.a $(LIBBITCOIN_SERVER) if ENABLE_WALLET @@ -325,10 +325,10 @@ QT_QM=$(QT_TS:.ts=.qm) .PHONY: FORCE .SECONDARY: $(QT_QM) -bitcoinstrings.cpp: FORCE - $(MAKE) -C $(top_srcdir)/src qt/bitcoinstrings.cpp +darkcoinstrings.cpp: FORCE + $(MAKE) -C $(top_srcdir)/src qt/darkcoinstrings.cpp -translate: bitcoinstrings.cpp $(QT_FORMS_UI) $(QT_FORMS_UI) $(BITCOIN_QT_CPP) $(BITCOIN_QT_H) $(BITCOIN_MM) +translate: darkcoinstrings.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 diff --git a/src/qt/addressbookpage.cpp b/src/qt/addressbookpage.cpp index 6915415ac3..b525d0c3bd 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 "bitcoin-config.h" +#include "darkcoin-config.h" #endif #include "addressbookpage.h" diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index b01da9af2d..ece3427d11 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -6,7 +6,7 @@ #define BITCOINGUI_H #if defined(HAVE_CONFIG_H) -#include "bitcoin-config.h" +#include "darkcoin-config.h" #endif #include diff --git a/src/qt/darkcoin.cpp b/src/qt/darkcoin.cpp index abb9f340be..0194645ba7 100644 --- a/src/qt/darkcoin.cpp +++ b/src/qt/darkcoin.cpp @@ -4,7 +4,7 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) -#include "bitcoin-config.h" +#include "darkcoin-config.h" #endif #include "bitcoingui.h" @@ -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 bitcoin.qrc) + // Load e.g. bitcoin_de.qm (shortcut "de" needs to be defined in darkcoin.qrc) if (translatorBase.load(lang, ":/translations/")) QApplication::installTranslator(&translatorBase); - // Load e.g. bitcoin_de_DE.qm (shortcut "de_DE" needs to be defined in bitcoin.qrc) + // Load e.g. bitcoin_de_DE.qm (shortcut "de_DE" needs to be defined in darkcoin.qrc) if (translator.load(lang_territory, ":/translations/")) QApplication::installTranslator(&translator); } diff --git a/src/qt/bitcoin.qrc b/src/qt/darkcoin.qrc similarity index 100% rename from src/qt/bitcoin.qrc rename to src/qt/darkcoin.qrc diff --git a/src/qt/bitcoinstrings.cpp b/src/qt/darkcoinstrings.cpp similarity index 99% rename from src/qt/bitcoinstrings.cpp rename to src/qt/darkcoinstrings.cpp index 2ec0769446..f65e32e9a6 100644 --- a/src/qt/bitcoinstrings.cpp +++ b/src/qt/darkcoinstrings.cpp @@ -12,7 +12,7 @@ #else #define UNUSED #endif -static const char UNUSED *bitcoin_strings[] = { +static const char UNUSED *darkcoin_strings[] = { QT_TRANSLATE_NOOP("darkcoin-core", "" "%s, you must set a rpcpassword in the configuration file:\n" "%s\n" diff --git a/src/qt/forms/aboutdialog.ui b/src/qt/forms/aboutdialog.ui index e7f7b6649f..eb632599cc 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 f40c446050..c9821bab60 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 085a0388b2..da870b8a23 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/receivecoinsdialog.ui b/src/qt/forms/receivecoinsdialog.ui index 56e1e62ca8..e9604e3e66 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 6d03050b3c..28a01e7139 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 45519d82a3..338b643df0 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 d29f07258e..78134b512b 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 @@ -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 a25d8cc18f..1a60d9a2b5 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/locale/darkcoin_bar.ts b/src/qt/locale/darkcoin_bar.ts index 731cd3a65d..6d3adef654 100644 --- a/src/qt/locale/darkcoin_bar.ts +++ b/src/qt/locale/darkcoin_bar.ts @@ -378,383 +378,393 @@ Wenn´d jezzad anfängsch den noin Goidbaild zu nuzzn dann gehd da alde nimma. W - + [testnet] [kindazimma] - + &Overview &Übasicht - + Show general overview of wallet Zaigma ois was zum Goidbaidl k´ört! - + &Send &Übawaisn - + Send coins to a Darkcoin address Di Darkcoins losschicka (A Adressn braichtma) - + &Receive &Kriag´ng - + Request payments (generates QR codes and darkcoin: URIs) Schicktsma Goid! (däs machda an KUH ÄR KOD und a Uri wo da Anda s Goid hischicka koa) - + &Transactions &Übawaisung´n - + Browse transaction history In di oidn Übawaisung´n rumschbuin - + E&xit &Zumaha - + Quit application Zua Und Tschüss - - + + &About Darkcoin Core Üba Darkcoin Koa - + Show information about Darkcoin Zaigma wosd waischd üba den Darkcoin - - + + About &Qt mea´ üba &QT - + Show information about Qt zaigma wasd haschd üba Qt - + &Options... &Opzionän - + Modify configuration options for Darkcoin Di Oischdellunga ändan - - + + &Show / Hide &Zaigsma/Dusweg - + Show or hide the main Window Hauptfenschderl zaign / ned zeign - + &Encrypt Wallet... Goidbaidl midam Zaubaschprücherl schützn - + Encrypt the private keys that belong to your wallet Ole Schlüssl von die Adressn a Kapuzzn aufsezzn - + &Backup Wallet... Goidbaidl sihahaitshoiba noamal hischbaichern - + Backup wallet to another location Goidbaidl sihahaitshoiba noamal woandaschd hischbaichern - + &Change Passphrase... &S´ Zaubaschprücherl ändan - + Change the passphrase used for wallet encryption Zaubaschprücherl wo zum Goidbaidl kört ändan - + &Unlock Wallet... &Goidbaidl aufmaha - + Unlock wallet Goidbaidl aufma´ha - + &Lock Wallet &Goidbaidl zumaha - + Sign &message... An &Servus drunta - + Sign messages with your Darkcoin addresses to prove you own them Dai Adressn konsch wie an Servus verwendn, dann wais da Andre, dos des DAI Adressn i´s. (Muschd di Messidsch fürn Andan mid da Adressn umanandaduan) - + &Verify message... &Messidsch übaprüfn - + Verify messages to ensure they were signed with specified Darkcoin addresses Du kansch schaun ob di Mesidsch vom Andan mid saina Adressn zambast (obs wirklich von iam is) - + &Information &Informäischn - + Show diagnostic information Zeigma olle "Informaischn" ob da Goidbaidl gsund is und so - + &Debug console &Undad Haubm schaun - + Open debugging console Zeigma wos unda da Haubm bassiad - + &Network Monitor &königlich-bayrische Netz-Obachtgeba-Stelln - + Show network monitor Zeigma wosd königlich-bayrische Netz-Obachtgeba-Stelln so sigd + Open &Configuration File + + + + + Open configuration file + + + + &Sending addresses... &Adressn wo was ausgebm woadn is - + Show the list of used sending addresses and labels Zeigma olle Adressn wo was ausgebm woadn is - + &Receiving addresses... &Adressn wo was naikomma is - + Show the list of used receiving addresses and labels Zeigma olle Adressn wo was naikomma is - + Open &URI... &Uri aufma´ha (ZEEEENS) - + Open a darkcoin: URI or payment request So a Darkcoin-Uri oda so aufmaha (damidsch zala kosch) - + &Command-line options &Huifä baim Zailn-Dingsn - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options Zeigma des Gschraibsl wo ois drinnschded wos ma so baim Zailn-Dingsn ma´ha koa - + &File &Datai - + &Settings &Aischdellunga - + &Tools &S´ Werkzaigl - + &Help &Huifä (so huiftsma doch!) - + Tabs toolbar Tabs Tuhlbaa - - + + Darkcoin client Darkcoin Klaiänd - + %n active connection(s) to Darkcoin network %n (Oanen) sehma där au Darkcoin machd%n Laids sehma die au Darkcoin ma´ha - + Synchronizing with network... I schau grad wen i so seh... - + Importing blocks from disk... Überwaisungs-Kischdn von daina Blattn wean eingladn... - + Reindexing blocks on disk... Di aldn Überwaisungs-Kischdn di auf deina Blattn gschbaichad san wern durchgschaud... - + No block source available... Koine alden Überwaisungs-Kischdn gfundn.... - + Processed %1 blocks of transaction history. %1 von di aldn Überwaisungs-Kischdn durchgschaud. - + Up to date Ois ub tu däid! - + %n hour(s) %n Schdunde%n Schdundn - + %n day(s) %n Dog%n Dog - - + + %n week(s) %n Wochn%n Wochn - + %1 and %2 %1 und %2 - + %n year(s) %n ja´r%n ja´re - + %1 behind %1 zrück - + Catching up... i komschono - + Last received block was generated %1 ago. da lezde Blogg deni sig is %1 gmachd woadn - + Transactions after this will not yet be visible. Überwaisungen danach sigschd ned. - + Darkcoin Darkcoin - + Error Nix god. (Weil´d a Depp bischd) - + Warning Obacht - + Information Informäischn - + Sent transaction Nausgsended(e) - + Incoming transaction Naikommen(de) - + Date: %1 Amount: %2 Type: %3 @@ -767,17 +777,17 @@ Addressn: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> D´Goidbaidl hod sai <b>Schprücherl drauf</b> und is <b>aufgschlossn</b> - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only D´Goidbaidl hod sai <b>Schprücherl drauf</b> und is <b>aufgschlossn, aba nua zum Kapuzzngoid maha</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> D´Goidbaidl hod sai <b>Schprücherl drauf</b> und is <b>zuagschlossn</b> @@ -3927,7 +3937,7 @@ Wenn dai Kischdn rechd schiach ausschaugd, dann sagen di Andan "bäh" darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3942,1334 +3952,1334 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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. Darkcoin 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 DRK. - + 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 Darkcoin 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") - + Darkcoin Core Daemon Darkcoin Koa Dämon - + Darkcoin 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 - + 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 Darkcoin - + 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. Darkcoin Core is shutting down. Dai Programmerl schaugsd ungsund aus. Darkcoin 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 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 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 Darkcoin 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 connection timeout in milliseconds (default: 5000) - + Specify data directory - + Specify masternode configuration file (default: masternode.conf) - + Specify pid file (default: darkcoind.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 Darkcoin 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: 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 Darkcoin to complete Dai Darkcoin 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! - + Wrong state. Im foischn Zuschdand. - + 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/darkcoin_bg.ts index 87dbccea08..5420113d1e 100644 --- a/src/qt/locale/darkcoin_bg.ts +++ b/src/qt/locale/darkcoin_bg.ts @@ -366,382 +366,392 @@ This product includes software developed by the OpenSSL Project for use in the O - + [testnet] [testnet] - + &Overview &Баланс - + Show general overview of wallet Обобщена информация за портфейла - + &Send &Изпращане - + Send coins to a Darkcoin address Изпращане на монети към Дарккойн адрес - + &Receive &Получаване - + Request payments (generates QR codes and darkcoin: URIs) Заявка за плащане (генерира QR кодове и Дарккойн: URI) - + &Transactions &Транзакции - + Browse transaction history История на транзакциите - + E&xit Из&ход - + Quit application Изход от приложението - - + + &About Darkcoin Core &За Дарккойн ядрото - + Show information about Darkcoin Информация за Дарккойн - - + + About &Qt За &Qt - + Show information about Qt Покажи информация за Qt - + &Options... &Опции... - + Modify configuration options for Darkcoin Промяна на опции за конфигуриране на Дарккойн - - + + &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 Darkcoin addresses to prove you own them Подпиши съобщения с твоите Дарккойн адреси за да докажеш че ги притежаваш - + &Verify message... &Проверка на съобщение... - + Verify messages to ensure they were signed with specified Darkcoin 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 darkcoin: URI or payment request Отвори Дарккойн: URI или заявка за плащане - + &Command-line options &Опции на командния ред - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options Покажи помощ за Дарккойн ядрото със списък на възможните опции за командрия ред - + &File &Файл - + &Settings &Настройки - + &Tools &Инструменти - + &Help &Помощ - + Tabs toolbar Раздели - - + + Darkcoin client Дарккойн клиент - + %n active connection(s) to Darkcoin network %n активни връзки с Дарккойн мрежата%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 час(а) - + %n day(s) %n ден(а)%n ден(а) - - + + %n week(s) %n седмица(и)%n седмица(и) - + %1 and %2 %1 и %2 - + %n year(s) %n година(и)%n година(и) - + %1 behind %1 назад - + Catching up... Зарежда блокове... - + Last received block was generated %1 ago. Последният получен блок беше генериран преди %1. - + Transactions after this will not yet be visible. Транзакции след това, все още няма да се виждат. - + Darkcoin Дарккойн - + Error Грешка - + Warning Предупреждение - + Information Информация - + Sent transaction Изходяща транзакция - + Incoming transaction Входяща транзакция - + Date: %1 Amount: %2 Type: %3 @@ -754,17 +764,17 @@ Address: %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> @@ -3905,7 +3915,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3920,247 +3930,247 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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. Darkcoin 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 DRK. Не са намерени достатъчно Дарксенд неденоминирани средства за тази транзакция, които не са равни на 1000 DRK. - + 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 Darkcoin 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. @@ -4169,1087 +4179,1087 @@ 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 Открита е повредена блок база данни - + Darkcoin Core Daemon - + Darkcoin 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 Зареждането е завършено - + 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 Darkcoin Грешка при зареждане на 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. Darkcoin 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) Поддържай 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 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 Darkcoin 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 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 wallet file (within data directory) Посочете файла с портфейла (в папката с данни) - + Specify your own public address Въведете Ваш публичен адрес - + Spend unconfirmed change when sending transactions (default: 1) - + Start Darkcoin 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: Използване: - + 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 Darkcoin 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 Необходимо е наново изграждане на базата от данни използвайки -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/darkcoin_ca.ts index b11d268f73..343e4dd762 100644 --- a/src/qt/locale/darkcoin_ca.ts +++ b/src/qt/locale/darkcoin_ca.ts @@ -366,382 +366,392 @@ Aquest producte inclou programari desenvolupat pel projecte OpenSSL per a l&apos - + [testnet] [testnet] - + &Overview &Panorama general - + Show general overview of wallet Mostra el panorama general del moneder - + &Send &Envia - + Send coins to a Darkcoin address Envia monedes a una adreça Darkcoin - + &Receive &Rep - + Request payments (generates QR codes and darkcoin: URIs) - + &Transactions &Transaccions - + Browse transaction history Cerca a l'historial de transaccions - + E&xit S&urt - + Quit application Surt de l'aplicació - - + + &About Darkcoin Core &Sobre Darkcoin Core - + Show information about Darkcoin Mostra informació sobre Darkcoin - - + + About &Qt Quant a &Qt - + Show information about Qt Mostra informació sobre Qt - + &Options... &Opcions... - + Modify configuration options for Darkcoin Modifica les opcions de configuració per Darkcoin - - + + &Show / Hide &Mostra / Amaga - + Show or hide the main Window Mostra o amaga la finestra principal - + &Encrypt Wallet... &Encripta el moneder... - + Encrypt the private keys that belong to your wallet Encripta les claus privades pertanyents al moneder - + &Backup Wallet... &Realitza una còpia de seguretat del moneder... - + Backup wallet to another location Realitza una còpia de seguretat del moneder a una altra ubicació - + &Change Passphrase... &Canvia la contrasenya... - + Change the passphrase used for wallet encryption Canvia la contrasenya d'encriptació del moneder - + &Unlock Wallet... &Desbloqueja el moneder - + Unlock wallet Desbloqueja el moneder - + &Lock Wallet &Bloqueja el moneder - + Sign &message... Signa el &missatge... - + Sign messages with your Darkcoin addresses to prove you own them - + &Verify message... &Verifica el missatge... - + Verify messages to ensure they were signed with specified Darkcoin addresses - + &Information &Informació - + Show diagnostic information Mostra informació de diagnòstic - + &Debug console &Consola de depuració - + Open debugging console Obre la consola de depuració - + &Network Monitor - + Show network monitor + Open &Configuration File + + + + + Open configuration file + + + + &Sending addresses... Adreces d'e&nviament... - + Show the list of used sending addresses and labels Mostra la llista d'adreces d'enviament i etiquetes utilitzades - + &Receiving addresses... Adreces de &recepció - + Show the list of used receiving addresses and labels Mostra la llista d'adreces de recepció i etiquetes utilitzades - + Open &URI... Obre un &URI... - + Open a darkcoin: URI or payment request - + &Command-line options Opcions de la &línia d'ordres - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options - + &File &Fitxer - + &Settings &Configuració - + &Tools &Eines - + &Help &Ajuda - + Tabs toolbar Barra d'eines de les pestanyes - - + + Darkcoin client Client de Darkcoin - + %n active connection(s) to Darkcoin network - + Synchronizing with network... S'està sincronitzant amb la xarxa ... - + Importing blocks from disk... S'estan important els blocs del disc... - + Reindexing blocks on disk... S'estan reindexant els blocs al disc... - + No block source available... No hi ha cap font de bloc disponible... - + Processed %1 blocks of transaction history. Proccessats %1 blocs del històric de transaccions. - + Up to date Al dia - + %n hour(s) %n hora()%n hores() - + %n day(s) %dia()%dies() - - + + %n week(s) %n setmana()%n setmanes() - + %1 and %2 %1 i %2 - + %n year(s) - + %1 behind %1 darrere - + Catching up... S'està posant al dia ... - + Last received block was generated %1 ago. El darrer bloc rebut ha estat generat fa %1. - + Transactions after this will not yet be visible. Les transaccions a partir d'això no seran visibles. - + Darkcoin Darkcoin - + Error Error - + Warning Avís - + Information Informació - + Sent transaction Transacció enviada - + Incoming transaction Transacció entrant - + Date: %1 Amount: %2 Type: %3 @@ -750,17 +760,17 @@ Address: %4 Data: %1\nImport: %2\n Tipus: %3\n Adreça: %4\n - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> El moneder està <b>encriptat</b> i actualment <b>desbloquejat</b> - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only - + Wallet is <b>encrypted</b> and currently <b>locked</b> El moneder està <b>encriptat</b> i actualment <b>bloquejat</b> @@ -3899,7 +3909,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3914,247 +3924,247 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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. Darkcoin 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 DRK. - + 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 Darkcoin 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. @@ -4163,1087 +4173,1087 @@ 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 - + Darkcoin Core Daemon - + Darkcoin 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 - + 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 Darkcoin - + 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. Darkcoin 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 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 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 Darkcoin 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 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 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 Darkcoin 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: Ú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 Darkcoin 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! - + Wrong state. - + 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/darkcoin_cmn.ts index c3d152a674..d56125f873 100644 --- a/src/qt/locale/darkcoin_cmn.ts +++ b/src/qt/locale/darkcoin_cmn.ts @@ -367,382 +367,392 @@ This product includes software developed by the OpenSSL Project for use in the O - + [testnet] [测试网络] - + &Overview 概况(&O) - + Show general overview of wallet 显示钱包概况 - + &Send 发送(&S) - + Send coins to a Darkcoin address 发送币至暗黑币地址 - + &Receive 接收(&R) - + Request payments (generates QR codes and darkcoin: URIs) 要求付款(生成二维码和暗黑币付款协议的URI) - + &Transactions 交易记录(&T) - + Browse transaction history 查看交易历史 - + E&xit 退出(&X) - + Quit application 退出程序 - - + + &About Darkcoin Core 关于暗黑币核心 - + Show information about Darkcoin 显示暗黑币的相关资讯 - - + + About &Qt 关于 &Qt - + Show information about Qt 显示 Qt 相关信息 - + &Options... 选项(&O)... - + Modify configuration options for Darkcoin 修改暗黑币配置选项 - - + + &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... &解锁钱包 - + Unlock wallet 解锁钱包 - + &Lock Wallet &锁定钱包 - + Sign &message... 消息签名(&M)... - + Sign messages with your Darkcoin addresses to prove you own them 用暗黑币位址签署讯息来证明位址是你的 - + &Verify message... 验证消息(&V)... - + Verify messages to ensure they were signed with specified Darkcoin addresses 验证讯息是用来确定讯息是用指定的暗黑币位址签署的 - + &Information 信息(&I) - + 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 darkcoin: URI or payment request 打开暗黑币:网页或付款请求 - + &Command-line options &命令行 选项 - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options 打开Darkcoin Core帮助信息取得可使用的命令行列表 - + &File 文件(&F) - + &Settings 设置(&S) - + &Tools 工具 - + &Help 帮助(&H) - + Tabs toolbar 分页工具栏 - - + + Darkcoin client 暗黑币客户端 - + %n active connection(s) to Darkcoin 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. 在此之后的交易尚未可见 - + Darkcoin 暗黑幣 - + Error 错误 - + Warning 警告 - + Information 信息 - + Sent transaction 发送交易 - + Incoming transaction 流入交易 - + Date: %1 Amount: %2 Type: %3 @@ -755,17 +765,17 @@ Address: %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>状态 @@ -3908,7 +3918,7 @@ XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3923,1334 +3933,1334 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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. Darkcoin 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 DRK. - + 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 Darkcoin 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 已找到损坏的数据块 - + Darkcoin Core Daemon 暗黑币核心后台程序 - + Darkcoin 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 读取完成 - + 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 Darkcoin 读取钱包文件错误:需要较为新版本的暗黑币程序来读取钱包 - + 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. Darkcoin 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 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 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 Darkcoin 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 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 wallet file (within data directory) 指定钱包文件(通过数据目录) - + Specify your own public address 指定你个人公开地址 - + Spend unconfirmed change when sending transactions (default: 1) 发送交易时花费未确认的费用(默认: 1) - + Start Darkcoin 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: 使用: - + 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 Darkcoin to complete 钱包需要重新写入:请重启Darkcoin来完成过程 - + 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 你需要通过使用-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/darkcoin_cs.ts index d29741b334..b613a7b014 100644 --- a/src/qt/locale/darkcoin_cs.ts +++ b/src/qt/locale/darkcoin_cs.ts @@ -366,382 +366,392 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open - + [testnet] [testnet] - + &Overview &Přehled - + Show general overview of wallet Zobraz celkový přehled peněženky - + &Send &Pošli - + Send coins to a Darkcoin address - + &Receive Při&jmi - + Request payments (generates QR codes and darkcoin: URIs) - + &Transactions &Transakce - + Browse transaction history Procházej historii transakcí - + E&xit &Konec - + Quit application Ukonči aplikaci - - + + &About Darkcoin Core - + Show information about Darkcoin - - + + About &Qt O &Qt - + Show information about Qt Zobraz informace o Qt - + &Options... &Možnosti... - + Modify configuration options for Darkcoin - - + + &Show / Hide &Zobraz/Skryj - + Show or hide the main Window Zobraz nebo skryj hlavní okno - + &Encrypt Wallet... Zaši&fruj peněženku... - + Encrypt the private keys that belong to your wallet Zašifruj soukromé klíče ve své peněžence - + &Backup Wallet... &Zazálohuj peněženku... - + Backup wallet to another location Zazálohuj peněženku na jiné místo - + &Change Passphrase... Změň &heslo... - + Change the passphrase used for wallet encryption Změň heslo k šifrování peněženky - + &Unlock Wallet... - + Unlock wallet Odemkni peněženku - + &Lock Wallet - + Sign &message... Po&depiš zprávu... - + Sign messages with your Darkcoin addresses to prove you own them - + &Verify message... &Ověř zprávu... - + Verify messages to ensure they were signed with specified Darkcoin addresses - + &Information &Informace - + Show diagnostic information - + &Debug console - + Open debugging console - + &Network Monitor - + Show network monitor + Open &Configuration File + + + + + Open configuration file + + + + &Sending addresses... Od&esílací adresy... - + Show the list of used sending addresses and labels Ukaž seznam použitých odesílacích adres a jejich označení - + &Receiving addresses... Př&ijímací adresy... - + Show the list of used receiving addresses and labels Ukaž seznam použitých přijímacích adres a jejich označení - + Open &URI... Načíst &URI... - + Open a darkcoin: URI or payment request - + &Command-line options Ar&gumenty z příkazové řádky - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options - + &File &Soubor - + &Settings &Nastavení - + &Tools - + &Help Ná&pověda - + Tabs toolbar Panel s listy - - + + Darkcoin client - + %n active connection(s) to Darkcoin network - + Synchronizing with network... Synchronizuji se se sítí... - + Importing blocks from disk... Importuji bloky z disku... - + Reindexing blocks on disk... Vytvářím nový index bloků na disku... - + No block source available... Není dostupný žádný zdroj bloků... - + Processed %1 blocks of transaction history. Zpracováno %1 bloků transakční historie. - + Up to date Aktuální - + %n hour(s) - + %n day(s) - - + + %n week(s) - + %1 and %2 %1 a %2 - + %n year(s) - + %1 behind Stahuji ještě bloky transakcí za poslední %1 - + Catching up... Stahuji... - + Last received block was generated %1 ago. Poslední stažený blok byl vygenerován %1 zpátky. - + Transactions after this will not yet be visible. Následné transakce ještě nebudou vidět. - + Darkcoin - + Error Chyba - + Warning Upozornění - + Information Informace - + Sent transaction Odeslané transakce - + Incoming transaction Příchozí transakce - + Date: %1 Amount: %2 Type: %3 @@ -754,17 +764,17 @@ Adresa: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Peněženka je <b>zašifrovaná</b> a momentálně <b>odemčená</b> - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only - + Wallet is <b>encrypted</b> and currently <b>locked</b> Peněženka je <b>zašifrovaná</b> a momentálně <b>zamčená</b> @@ -3903,7 +3913,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3918,247 +3928,247 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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. Darkcoin 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 DRK. - + 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 Darkcoin 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. @@ -4167,1087 +4177,1087 @@ 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ů - + Darkcoin Core Daemon - + Darkcoin 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 - + 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 Darkcoin - + 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. Darkcoin 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 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 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 Darkcoin 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 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 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 Darkcoin 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: 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 Darkcoin 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! - + Wrong state. - + 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/darkcoin_da.ts index 0e1df97ad5..fc8f82f670 100644 --- a/src/qt/locale/darkcoin_da.ts +++ b/src/qt/locale/darkcoin_da.ts @@ -366,382 +366,392 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open - + [testnet] [testnetværk] - + &Overview Oversigt - + Show general overview of wallet Vis generel oversigt over tegnebog - + &Send Send - + Send coins to a Darkcoin address - + &Receive Modtag - + Request payments (generates QR codes and darkcoin: URIs) - + &Transactions Transaktioner - + Browse transaction history Gennemse transaktionshistorik - + E&xit Luk - + Quit application Afslut program - - + + &About Darkcoin Core - + Show information about Darkcoin - - + + About &Qt Om Qt - + Show information about Qt Vis informationer om Qt - + &Options... Indstillinger … - + Modify configuration options for Darkcoin - - + + &Show / Hide Vis / skjul - + Show or hide the main Window Vis eller skjul hovedvinduet - + &Encrypt Wallet... Kryptér tegnebog … - + Encrypt the private keys that belong to your wallet Kryptér de private nøgler, der hører til din tegnebog - + &Backup Wallet... Sikkerhedskopiér tegnebog … - + Backup wallet to another location Lav sikkerhedskopi af tegnebogen til et andet sted - + &Change Passphrase... Skift adgangskode … - + Change the passphrase used for wallet encryption Skift adgangskode anvendt til tegnebogskryptering - + &Unlock Wallet... - + Unlock wallet Lås tegnebog op - + &Lock Wallet - + Sign &message... Underskriv besked … - + Sign messages with your Darkcoin addresses to prove you own them - + &Verify message... Verificér besked … - + Verify messages to ensure they were signed with specified Darkcoin addresses - + &Information Information - + Show diagnostic information - + &Debug console - + Open debugging console - + &Network Monitor - + Show network monitor + Open &Configuration File + + + + + Open configuration file + + + + &Sending addresses... Afsendelsesadresser … - + Show the list of used sending addresses and labels Vis listen over brugte afsendelsesadresser og -mærkater - + &Receiving addresses... Modtagelsesadresser … - + Show the list of used receiving addresses and labels Vis listen over brugte modtagelsesadresser og -mærkater - + Open &URI... Åbn URI … - + Open a darkcoin: URI or payment request - + &Command-line options Tilvalg for kommandolinje - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options - + &File Fil - + &Settings Opsætning - + &Tools - + &Help Hjælp - + Tabs toolbar Faneværktøjslinje - - + + Darkcoin client - + %n active connection(s) to Darkcoin network - + Synchronizing with network... Synkroniserer med netværk … - + Importing blocks from disk... Importerer blokke fra disken … - + Reindexing blocks on disk... Genindekserer blokke på disken … - + No block source available... Ingen blokkilde tilgængelig … - + Processed %1 blocks of transaction history. Behandlet %1 blokke af transaktionshistorikken. - + Up to date Opdateret - + %n hour(s) - + %n day(s) - - + + %n week(s) - + %1 and %2 %1 og %2 - + %n year(s) - + %1 behind %1 bagud - + Catching up... Indhenter … - + Last received block was generated %1 ago. Senest modtagne blok blev genereret for %1 siden. - + Transactions after this will not yet be visible. Transaktioner herefter vil endnu ikke være synlige. - + Darkcoin - + Error Fejl - + Warning Advarsel - + Information Information - + Sent transaction Afsendt transaktion - + Incoming transaction Indgående transaktion - + Date: %1 Amount: %2 Type: %3 @@ -754,17 +764,17 @@ Adresse: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Tegnebog er <b>krypteret</b> og i øjeblikket <b>ulåst</b> - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only - + Wallet is <b>encrypted</b> and currently <b>locked</b> Tegnebog er <b>krypteret</b> og i øjeblikket <b>låst</b> @@ -3903,7 +3913,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3918,247 +3928,247 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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. Darkcoin 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 DRK. - + 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 Darkcoin 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. @@ -4167,1087 +4177,1087 @@ 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 - + Darkcoin Core Daemon - + Darkcoin 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 - + 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 Darkcoin - + 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. Darkcoin 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 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 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 Darkcoin 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 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 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 Darkcoin 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: 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 Darkcoin 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! - + Wrong state. - + 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/darkcoin_de.ts index eb21f63b54..e05bc05bb1 100644 --- a/src/qt/locale/darkcoin_de.ts +++ b/src/qt/locale/darkcoin_de.ts @@ -371,382 +371,392 @@ Dieses Produkt enthält zudem folgende Dritt-Software: - + [testnet] [Testnetz] - + &Overview &Übersicht - + Show general overview of wallet Allgemeine Wallet-Übersicht anzeigen - + &Send &Überweisen - + Send coins to a Darkcoin address Darkcoins an eine Darkcoin-Adresse überweisen - + &Receive &Empfangen - + Request payments (generates QR codes and darkcoin: URIs) Zahlungen anfordern (erzeugt QR-Codes und "darkcoin:"-URIs) - + &Transactions &Transaktionen - + Browse transaction history Transaktionsverlauf durchsehen - + E&xit &Beenden - + Quit application Anwendung beenden - - + + &About Darkcoin Core &Über Darkcoin Core - + Show information about Darkcoin Informationen über Darkcoin anzeigen - - + + About &Qt Über &Qt - + Show information about Qt Informationen über Qt anzeigen - + &Options... &Konfiguration... - + Modify configuration options for Darkcoin Die Konfiguration des Clients bearbeiten - - + + &Show / Hide &Anzeigen / Verstecken - + Show or hide the main Window Das Hauptfenster anzeigen oder verstecken - + &Encrypt Wallet... Wallet &verschlüsseln... - + Encrypt the private keys that belong to your wallet Verschlüsselt die zu ihrer Wallet gehörenden privaten Schlüssel - + &Backup Wallet... Wallet &sichern... - + Backup wallet to another location Eine Wallet-Sicherungskopie erstellen und abspeichern - + &Change Passphrase... Passphrase &ändern... - + Change the passphrase used for wallet encryption Ändert die Passphrase, die für die Wallet-Verschlüsselung benutzt wird - + &Unlock Wallet... Wallet &entsperren - + Unlock wallet Wallet entsperren - + &Lock Wallet Wallet &sperren - + Sign &message... Nachricht s&ignieren... - + Sign messages with your Darkcoin addresses to prove you own them Nachrichten signieren, um den Besitz ihrer Darkcoin-Adressen zu beweisen - + &Verify message... Nachricht &verifizieren... - + Verify messages to ensure they were signed with specified Darkcoin addresses Nachrichten verifizieren, um sicherzustellen, dass diese mit den angegebenen Darkcoin-Adressen signiert wurden - + &Information &Information - + Show diagnostic information Diagnoseinformation anzeigen - + &Debug console &Debugkonsole - + Open debugging console Debugkonsole öffnen - + &Network Monitor &Netzwerkmonitor - + Show network monitor Netzwerkmonitor anzeigen + Open &Configuration File + + + + + Open configuration file + + + + &Sending addresses... &Zahlungsadressen... - + Show the list of used sending addresses and labels Liste verwendeter Zahlungsadressen und Bezeichnungen anzeigen - + &Receiving addresses... &Empfangsadressen... - + Show the list of used receiving addresses and labels Liste verwendeter Empfangsadressen und Bezeichnungen anzeigen - + Open &URI... &URI öffnen... - + Open a darkcoin: URI or payment request Eine "darkcoin:"-URI oder Zahlungsanforderung öffnen - + &Command-line options &Kommandozeilenoptionen - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options Zeige den "Darkcoin Core"-Hilfetext, um eine Liste mit möglichen Kommandozeilenoptionen zu erhalten - + &File &Datei - + &Settings &Einstellungen - + &Tools &Werkzeuge - + &Help &Hilfe - + Tabs toolbar Registerkartenleiste - - + + Darkcoin client Darkcoin-Client - + %n active connection(s) to Darkcoin network %n aktive Verbindung zum Darkcoin-Netzwerk%n aktive Verbindungen zum Darkcoin-Netzwerk - + Synchronizing with network... Synchronisiere mit Netzwerk... - + Importing blocks from disk... Importiere Blöcke von Datenträger... - + Reindexing blocks on disk... Reindiziere Blöcke auf Datenträger... - + No block source available... Keine Blockquelle verfügbar... - + Processed %1 blocks of transaction history. %1 Blöcke des Transaktionsverlaufs verarbeitet. - + Up to date Auf aktuellem Stand - + %n hour(s) %n Stunde%n Stunden - + %n day(s) %n Tag%n Tage - - + + %n week(s) %n Woche%n Wochen - + %1 and %2 %1 und %2 - + %n year(s) %n Jahr%n Jahre - + %1 behind %1 im Rückstand - + Catching up... Hole auf... - + Last received block was generated %1 ago. Der letzte empfangene Block ist %1 alt. - + Transactions after this will not yet be visible. Transaktionen hiernach werden noch nicht angezeigt. - + Darkcoin Darkcoin - + Error Fehler - + Warning Warnung - + Information Hinweis - + Sent transaction Gesendete Transaktion - + Incoming transaction Eingehende Transaktion - + Date: %1 Amount: %2 Type: %3 @@ -758,17 +768,17 @@ Typ: %3 Adresse: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Wallet ist <b>verschlüsselt</b> und aktuell <b>entsperrt</b> - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only Wallet ist <b>verschlüsselt</b> und aktuell nur zum Anonymisieren <b>entsperrt</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Wallet ist <b>verschlüsselt</b> und aktuell <b>gesperrt</b> @@ -3912,7 +3922,7 @@ Dies kann passieren, wenn einige Darkcoins aus ihrer Wallet bereits ausgegeben w darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3936,247 +3946,247 @@ Es wird ebenfalls empfohlen alertnotify anzugeben, um im Problemfall benachricht zum Beispiel: alertnotify=echo %%s | mail -s \"Darkcoin 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. Darkcoin 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. Darkcoin Core is probably already running. Darkcoin 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 DRK. Für diese Transaktion konnten nicht genug nicht mit Darksend gestückelte Beträge gefunden werden, die ungleich 1000 DRK 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 Darkcoin will not work properly. Warnung: Bitte überprüfen Sie die Datums- und Uhrzeiteinstellungen ihres Computers, da Darkcoin 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. @@ -4185,1088 +4195,1088 @@ 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 - + Darkcoin Core Daemon Darkcoin-Core Daemon - + Darkcoin Core RPC client version Darkcoin-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 - + 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 Darkcoin Fehler beim Laden von wallet.dat: Wallet benötigt neuere Version von Darkcoin - + 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. Darkcoin Core is shutting down. Fehler beim Initialisieren (Plausibilitätsprüfung fehlgeschlagen). Darkcoin 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) 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 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 Darkcoin Core Befehl an Darkcoin 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 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 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 Darkcoin Core Daemon Darkcoin 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): Benutzung (veraltet, bitte Darkcoin-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 Darkcoin 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! - + Wrong state. Falscher Status. - + 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/darkcoin_el.ts index e4d0425204..960961f0f2 100644 --- a/src/qt/locale/darkcoin_el.ts +++ b/src/qt/locale/darkcoin_el.ts @@ -366,382 +366,392 @@ This product includes software developed by the OpenSSL Project for use in the O - + [testnet] [testnet] - + &Overview &Επισκόπηση - + Show general overview of wallet Εμφάνισε τη γενική εικόνα του πορτοφολιού - + &Send &Αποστολή - + Send coins to a Darkcoin address Στείλε νομίσματα σε μια διεύθυνση Darkcoin - + &Receive &Παραλαβή - + Request payments (generates QR codes and darkcoin: URIs) Αίτηση πληρωμών (δημιουργεί QR codes και διευθύνσεις darkcoin: URls) - + &Transactions &Συναλλαγές - + Browse transaction history Περιήγηση στο ιστορικό συναλλαγών - + E&xit Έ&ξοδος - + Quit application Εξοδος από την εφαρμογή - - + + &About Darkcoin Core &Σχετικά με το Darkcoin Core - + Show information about Darkcoin Εμφάνιση πληροφοριών σχετικά με το Darkcoin - - + + About &Qt Σχετικά με &Qt - + Show information about Qt Εμφάνισε πληροφορίες σχετικά με Qt - + &Options... &Επιλογές... - + Modify configuration options for Darkcoin Επεργασία ρυθμίσεων επιλογών για το Darkcoin - - + + &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 Darkcoin addresses to prove you own them - + &Verify message... &Επιβεβαίωση μηνύματος - + Verify messages to ensure they were signed with specified Darkcoin 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 darkcoin: URI or payment request - + &Command-line options &Επιλογές γραμμής εντολών - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options - + &File &Αρχείο - + &Settings &Ρυθμίσεις - + &Tools - + &Help &Βοήθεια - + Tabs toolbar Εργαλειοθήκη καρτελών - - + + Darkcoin client Πελάτης Darkcoin - + %n active connection(s) to Darkcoin network - + 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 day(s) - - + + %n week(s) - + %1 and %2 %1 και %2 - + %n year(s) - + %1 behind %1 πίσω - + Catching up... Ενημέρωση... - + Last received block was generated %1 ago. Το τελευταίο μπλοκ που ελήφθη δημιουργήθηκε %1 πριν. - + Transactions after this will not yet be visible. Οι συναλλαγές μετά από αυτό δεν θα είναι ακόμη ορατες. - + Darkcoin Darkcoin - + Error Σφάλμα - + Warning Προειδοποίηση - + Information Πληροφορία - + Sent transaction Η συναλλαγή απεστάλη - + Incoming transaction Εισερχόμενη συναλλαγή - + Date: %1 Amount: %2 Type: %3 @@ -754,17 +764,17 @@ Address: %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 - + Wallet is <b>encrypted</b> and currently <b>locked</b> Το πορτοφόλι είναι <b>κρυπτογραφημένο</b> και <b>κλειδωμένο</b> @@ -3906,7 +3916,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3921,248 +3931,248 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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. Darkcoin 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 DRK. - + 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 Darkcoin 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. @@ -4170,1087 +4180,1087 @@ 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 Εντοπισθηκε διεφθαρμενη βαση δεδομενων των μπλοκ - + Darkcoin Core Daemon - + Darkcoin 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 Η φόρτωση ολοκληρώθηκε - + 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 Darkcoin - + 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. Darkcoin 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 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 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 Darkcoin 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 connection timeout in milliseconds (default: 5000) Ορισμός λήξης χρονικού ορίου σε χιλιοστά του δευτερολέπτου(προεπιλογή:5000) - + Specify data directory Ορισμός φακέλου δεδομένων - + Specify masternode configuration file (default: masternode.conf) - + Specify pid file (default: darkcoind.pid) - + Specify wallet file (within data directory) Επιλέξτε αρχείο πορτοφολιού (μέσα απο κατάλογο δεδομένων) - + Specify your own public address Διευκρινίστε τη δικιά σας δημόσια διεύθυνση. - + Spend unconfirmed change when sending transactions (default: 1) - + Start Darkcoin 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: Χρήση: - + 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 Darkcoin to complete Απαιτείται η επανεγγραφή του Πορτοφολιού: Επανεκκινήστε το Darkcoin για ολοκήρωση - + 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 Χρειάζεται να γίνει ανοικοδόμηση της βάσης δεδομένων χρησιμοποιώντας την εντολή -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/darkcoin_en.ts index fa6bf70784..dc330f4997 100644 --- a/src/qt/locale/darkcoin_en.ts +++ b/src/qt/locale/darkcoin_en.ts @@ -368,271 +368,281 @@ This product includes software developed by the OpenSSL Project for use in the O - + [testnet] [testnet] - + &Overview &Overview - + Show general overview of wallet Show general overview of wallet - + &Send &Send - + Send coins to a Darkcoin address Send coins to a Darkcoin address - + &Receive &Receive - + Request payments (generates QR codes and darkcoin: URIs) Request payments (generates QR codes and darkcoin: URIs) - + &Transactions &Transactions - + Browse transaction history Browse transaction history - + E&xit E&xit - + Quit application Quit application - - + + &About Darkcoin Core &About Darkcoin Core - + Show information about Darkcoin Show information about Darkcoin - - + + About &Qt About &Qt - + Show information about Qt Show information about Qt - + &Options... &Options... - + Modify configuration options for Darkcoin Modify configuration options for Darkcoin - - + + &Show / Hide &Show / Hide - + Show or hide the main Window Show or hide the main Window - + &Encrypt Wallet... &Encrypt Wallet... - + Encrypt the private keys that belong to your wallet Encrypt the private keys that belong to your wallet - + &Backup Wallet... &Backup Wallet... - + Backup wallet to another location Backup wallet to another location - + &Change Passphrase... &Change Passphrase... - + Change the passphrase used for wallet encryption Change the passphrase used for wallet encryption - + &Unlock Wallet... &Unlock Wallet... - + Unlock wallet Unlock wallet - + &Lock Wallet &Lock Wallet - + Sign &message... Sign &message... - + Sign messages with your Darkcoin addresses to prove you own them Sign messages with your Darkcoin addresses to prove you own them - + &Verify message... &Verify message... - + Verify messages to ensure they were signed with specified Darkcoin addresses Verify messages to ensure they were signed with specified Darkcoin addresses - + &Information &Information - + Show diagnostic information Show diagnostic information - + &Debug console &Debug console - + Open debugging console Open debugging console - + &Network Monitor &Network Monitor - + Show network monitor Show network monitor + Open &Configuration File + + + + + Open configuration file + + + + &Sending addresses... &Sending addresses... - + Show the list of used sending addresses and labels Show the list of used sending addresses and labels - + &Receiving addresses... &Receiving addresses... - + Show the list of used receiving addresses and labels Show the list of used receiving addresses and labels - + Open &URI... Open &URI... - + Open a darkcoin: URI or payment request Open a darkcoin: URI or payment request - + &Command-line options &Command-line options - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options - + &File &File - + &Settings &Settings - + &Tools &Tools - + &Help &Help - + Tabs toolbar Tabs toolbar - - + + Darkcoin client Darkcoin client - + %n active connection(s) to Darkcoin network %n active connection(s) to Darkcoin network @@ -640,37 +650,37 @@ This product includes software developed by the OpenSSL Project for use in the O - + Synchronizing with network... Synchronizing with network... - + Importing blocks from disk... Importing blocks from disk... - + Reindexing blocks on disk... Reindexing blocks on disk... - + No block source available... No block source available... - + Processed %1 blocks of transaction history. Processed %1 blocks of transaction history. - + Up to date Up to date - + %n hour(s) %n hour(s) @@ -678,7 +688,7 @@ This product includes software developed by the OpenSSL Project for use in the O - + %n day(s) %n day(s) @@ -686,8 +696,8 @@ This product includes software developed by the OpenSSL Project for use in the O - - + + %n week(s) %n week(s) @@ -695,12 +705,12 @@ This product includes software developed by the OpenSSL Project for use in the O - + %1 and %2 %1 and %2 - + %n year(s) %n year(s) @@ -708,57 +718,57 @@ This product includes software developed by the OpenSSL Project for use in the O - + %1 behind %1 behind - + Catching up... Catching up... - + Last received block was generated %1 ago. Last received block was generated %1 ago. - + Transactions after this will not yet be visible. Transactions after this will not yet be visible. - + Darkcoin Darkcoin - + Error Error - + Warning Warning - + Information Information - + Sent transaction Sent transaction - + Incoming transaction Incoming transaction - + Date: %1 Amount: %2 Type: %3 @@ -771,17 +781,17 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Wallet is <b>encrypted</b> and currently <b>unlocked</b> - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only - + Wallet is <b>encrypted</b> and currently <b>locked</b> Wallet is <b>encrypted</b> and currently <b>locked</b> @@ -3936,7 +3946,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3961,247 +3971,247 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin Core is probably already running. Cannot obtain a lock on data directory %s. Darkcoin 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. Darkcoin Core is probably already running. Unable to bind to %s on this computer. Darkcoin 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 DRK. Unable to locate enough Darksend non-denominated funds for this transaction that are not equal 1000 DRK. - + 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 Darkcoin will not work properly. Warning: Please check that your computer's date and time are correct! If your clock is wrong Darkcoin 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. @@ -4210,1087 +4220,1087 @@ 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 - + Darkcoin Core Daemon Darkcoin Core Daemon - + Darkcoin Core RPC client version Darkcoin 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 - + 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 Darkcoin Error loading wallet.dat: Wallet requires newer version of Darkcoin - + 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. Darkcoin Core is shutting down. Initialization sanity check failed. Darkcoin 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 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 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 Darkcoin Core Send command to Darkcoin 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 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 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 Darkcoin Core Daemon Start Darkcoin 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: 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 Darkcoin to complete Wallet needed to be rewritten: restart Darkcoin 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! - + Wrong state. 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/darkcoin_eo.ts index a90644651d..01f5cc3412 100644 --- a/src/qt/locale/darkcoin_eo.ts +++ b/src/qt/locale/darkcoin_eo.ts @@ -366,382 +366,392 @@ Tiu ĉi produkto enhavas erojn kreitajn de la "OpenSSL Project" por uz - + [testnet] [testnet] - + &Overview &Superrigardo - + Show general overview of wallet Vidigi ĝeneralan superrigardon de la monujo - + &Send &Sendi - + Send coins to a Darkcoin address - + &Receive &Ricevi - + Request payments (generates QR codes and darkcoin: URIs) - + &Transactions &Transakcioj - + Browse transaction history Esplori historion de transakcioj - + E&xit &Eliri - + Quit application Eliri la aplikaĵon - - + + &About Darkcoin Core - + Show information about Darkcoin - - + + About &Qt Pri &Qt - + Show information about Qt Vidigi informojn pri Qt - + &Options... &Agordoj... - + Modify configuration options for Darkcoin - - + + &Show / Hide &Montri / Kaŝi - + Show or hide the main Window Montri aŭ kaŝi la ĉefan fenestron - + &Encrypt Wallet... Ĉifri &Monujon... - + Encrypt the private keys that belong to your wallet Ĉifri la privatajn ŝlosilojn de via monujo - + &Backup Wallet... &Krei sekurkopion de la monujo... - + Backup wallet to another location Krei alilokan sekurkopion de monujo - + &Change Passphrase... Ŝanĝi &Pasfrazon... - + Change the passphrase used for wallet encryption Ŝanĝi la pasfrazon por ĉifri la monujon - + &Unlock Wallet... - + Unlock wallet Malŝlosi la monujon - + &Lock Wallet - + Sign &message... Subskribi &mesaĝon... - + Sign messages with your Darkcoin addresses to prove you own them - + &Verify message... &Kontroli mesaĝon... - + Verify messages to ensure they were signed with specified Darkcoin addresses - + &Information &Informoj - + Show diagnostic information - + &Debug console - + Open debugging console - + &Network Monitor - + Show network monitor + Open &Configuration File + + + + + Open configuration file + + + + &Sending addresses... &Sendaj adresoj... - + Show the list of used sending addresses and labels Vidigi la liston de uzitaj sendaj adresoj kaj etikedoj - + &Receiving addresses... &Ricevaj adresoj... - + Show the list of used receiving addresses and labels Vidigi la liston de uzitaj ricevaj adresoj kaj etikedoj - + Open &URI... Malfermi &URI-on... - + Open a darkcoin: URI or payment request - + &Command-line options &Komandliniaj agordaĵoj - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options - + &File &Dosiero - + &Settings &Agordoj - + &Tools - + &Help &Helpo - + Tabs toolbar Langeto-breto - - + + Darkcoin client - + %n active connection(s) to Darkcoin network - + Synchronizing with network... Sinkronigante kun reto... - + Importing blocks from disk... Importado de blokoj el disko... - + Reindexing blocks on disk... Reindeksado de blokoj sur disko... - + No block source available... Neniu fonto de blokoj trovebla... - + Processed %1 blocks of transaction history. Traktis %1 blokoj de la transakcia historio. - + Up to date Ĝisdata - + %n hour(s) - + %n day(s) - - + + %n week(s) - + %1 and %2 %1 kaj %2 - + %n year(s) - + %1 behind mankas %1 - + Catching up... Ĝisdatigante... - + Last received block was generated %1 ago. Lasta ricevita bloko kreiĝis antaŭ %1. - + Transactions after this will not yet be visible. Transakcioj por tio ankoraŭ ne videblas. - + Darkcoin - + Error Eraro - + Warning Averto - + Information Informoj - + Sent transaction Sendita transakcio - + Incoming transaction Envenanta transakcio - + Date: %1 Amount: %2 Type: %3 @@ -754,17 +764,17 @@ Adreso: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Monujo estas <b>ĉifrita</b> kaj aktuale <b>malŝlosita</b> - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only - + Wallet is <b>encrypted</b> and currently <b>locked</b> Monujo estas <b>ĉifrita</b> kaj aktuale <b>ŝlosita</b> @@ -3903,7 +3913,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3918,247 +3928,247 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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. Darkcoin 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 DRK. - + 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 Darkcoin 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. @@ -4167,1087 +4177,1087 @@ 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 - + Darkcoin Core Daemon - + Darkcoin 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 - + 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 Darkcoin - + 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. Darkcoin 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 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 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 Darkcoin 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 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 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 Darkcoin 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: 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 Darkcoin 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! - + Wrong state. - + 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/darkcoin_es.ts index d3bda0066a..1fb20d186a 100644 --- a/src/qt/locale/darkcoin_es.ts +++ b/src/qt/locale/darkcoin_es.ts @@ -370,382 +370,392 @@ Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard. - + [testnet] [testnet] - + &Overview &Vista general - + Show general overview of wallet Mostrar vista general del monedero - + &Send &Enviar - + Send coins to a Darkcoin address Enviar monedas a una dirección Darkcoin - + &Receive &Recibir - + Request payments (generates QR codes and darkcoin: URIs) Solicitar pagos (genera códigos QR y URIs de Darkcoin) - + &Transactions &Transacciones - + Browse transaction history Examinar el historial de transacciones - + E&xit &Salir - + Quit application Salir de la aplicación - - + + &About Darkcoin Core &Acerca de Darkcoin Core - + Show information about Darkcoin Mostrar información acerca de Darkcoin - - + + About &Qt Acerca de &Qt - + Show information about Qt Mostrar información acerca de Qt - + &Options... &Opciones... - + Modify configuration options for Darkcoin Modificar las opciones de configuración de Darkcoin - - + + &Show / Hide Mo&strar/ocultar - + Show or hide the main Window Mostrar u ocultar la ventana principal - + &Encrypt Wallet... Ci&frar monedero… - + Encrypt the private keys that belong to your wallet Cifrar las claves privadas de su monedero - + &Backup Wallet... &Guardar copia del monedero... - + Backup wallet to another location Crear copia de seguridad del monedero en otra ubicación - + &Change Passphrase... &Cambiar la contraseña… - + Change the passphrase used for wallet encryption Cambiar la contraseña utilizada para el cifrado del monedero - + &Unlock Wallet... &Desbloquear el monedero - + Unlock wallet Desbloquear el monedero - + &Lock Wallet &Bloquear el monedero - + Sign &message... Firmar &mensaje... - + Sign messages with your Darkcoin addresses to prove you own them Firmar mensajes con sus direcciones Darkcoin para demostrar su posesión - + &Verify message... &Verificar el mensaje... - + Verify messages to ensure they were signed with specified Darkcoin addresses Verificar mensajes para comprobar que fueron firmados con la dirección Darkcoin indicada - + &Information &Información - + Show diagnostic information Muestra información de diagnóstico - + &Debug console Consola de &Depuración - + Open debugging console Abrir la consola de depuración - + &Network Monitor Monitor de &Red - + Show network monitor Muestra la monitorización de la red + Open &Configuration File + + + + + Open configuration file + + + + &Sending addresses... Direcciones de &envío... - + Show the list of used sending addresses and labels Mostrar la lista de direcciones de envío y etiquetas - + &Receiving addresses... Direcciones de &recepción... - + Show the list of used receiving addresses and labels Mostrar la lista de direcciones de recepción y etiquetas - + Open &URI... Abrir &URI... - + Open a darkcoin: URI or payment request Abrir un darkcoin: URI o petición de pago - + &Command-line options &Opciones de consola de comandos - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options Mostrar el mensaje de ayuda de Darkcoin Core para obtener una lista con las posibles opciones de la consola de comandos - + &File &Archivo - + &Settings &Configuración - + &Tools &Herramientas - + &Help A&yuda - + Tabs toolbar Barra de pestañas - - + + Darkcoin client Cliente Darkcoin - + %n active connection(s) to Darkcoin network %n conexión activa en la red Darkcoin%n conexiones activa(s) en la red Darkcoin - + Synchronizing with network... Sincronizando con la red… - + Importing blocks from disk... Importando bloques de disco... - + Reindexing blocks on disk... Reindexando bloques en disco... - + No block source available... Ninguna fuente de bloques disponible ... - + Processed %1 blocks of transaction history. Procesados %1 bloques del historial de transacciones. - + Up to date Actualizado - + %n hour(s) %n hora%n hora(s) - + %n day(s) %n día%n día(s) - - + + %n week(s) %n semana%n semana(s) - + %1 and %2 %1 y %2 - + %n year(s) %n año%n año(s) - + %1 behind %1 por detrás - + Catching up... Poniendo al día... - + Last received block was generated %1 ago. El último bloque recibido fue generado hace %1. - + Transactions after this will not yet be visible. Las transacciones posteriores aún no están visibles. - + Darkcoin Darkcoin - + Error Error - + Warning Aviso - + Information Información - + Sent transaction Transacción enviada - + Incoming transaction Transacción entrante - + Date: %1 Amount: %2 Type: %3 @@ -758,17 +768,17 @@ Dirección: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> El monedero está <b>cifrado</b> y actualmente <b>desbloqueado</b> - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only El monedero está <b>cifrado</b> y actualmente <b>desbloqueado</b> sólo para anonimización - + Wallet is <b>encrypted</b> and currently <b>locked</b> El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b> @@ -3909,7 +3919,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3934,247 +3944,247 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin Core is probably already running. No se ha podido bloquear el directorio de datos %s. Probablemente ya se está ejecutando Darkcoin 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. - + 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: 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) - + 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. Darkcoin Core is probably already running. No se puede enlazar a% s en este equipo. Darkcoin 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 DRK. No se pueden localizar fondos no denominados de Darksend suficientes para esta transacción que no sean iguales a 1000 DRK. - + 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 Darkcoin will not work properly. Aviso: ¡Verifique que la fecha y hora de su ordenador son correctas! Si su reloj está mal ajustado, Darkcoin 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. @@ -4183,1090 +4193,1090 @@ 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. - + Darkcoin Core Daemon Darkcoin Core Daemon - + Darkcoin Core RPC client version Versión del cliente RPC de Darkcoin 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 - + 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 Darkcoin Error cargando wallet.dat: El monedero requiere la versión más reciente de Darkcoin - + 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) - + 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. Darkcoin Core is shutting down. La comprobación de validez de inicio falló. Darkcoin 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 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 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 Darkcoin Core Enviar orden a Darkcoin 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 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 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 Darkcoin Core Daemon Iniciar Daemon de Darkcoin 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: 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 Darkcoin to complete El monedero necesita ser reescrito: reinicie Darkcoin 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! - + Wrong state. Estado erróneo. - + 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/darkcoin_fi.ts index 80a87953f5..0735b1981f 100644 --- a/src/qt/locale/darkcoin_fi.ts +++ b/src/qt/locale/darkcoin_fi.ts @@ -369,382 +369,392 @@ Tämä ohjelma sisältää OpenSSL projektin OpenSSL työkalupakin (http://www.o - + [testnet] [testiverkko] - + &Overview &Yleisnäkymä - + Show general overview of wallet Lompakon tilanteen yleisnäkymä - + &Send &Lähetä - + Send coins to a Darkcoin address Lähetä kolikoita Darkcoin osoitteeseen - + &Receive &Vastaanota - + Request payments (generates QR codes and darkcoin: URIs) Pyydä maksuja (Luo QR koodit ja Darkcoin: URIt) - + &Transactions &Tapahtumat - + Browse transaction history Selaa tapahtumahistoriaa - + E&xit L&opeta - + Quit application Sulje ohjelma - - + + &About Darkcoin Core &Tietoja Darkcoin Core:sta - + Show information about Darkcoin Näytä tietoja Darkcoin Core:sta - - + + About &Qt Tietoja &Qt - + Show information about Qt Näytä tietoja QT:sta - + &Options... &Asetukset... - + Modify configuration options for Darkcoin Muuta Darkcoin asetuksia - - + + &Show / Hide &Näytä / Piilota - + Show or hide the main Window Näytä tai piilota Darkcoin pääikkuna - + &Encrypt Wallet... &Salaa Lompakko... - + Encrypt the private keys that belong to your wallet Suojaa yksityiset avaimet jotka kuuluvat lompakkoosi - + &Backup Wallet... &Varmuuskopioi Lompakko... - + Backup wallet to another location Varmuuskopioi lompakko toiseen sijaintiin - + &Change Passphrase... &Vaihda Salasana... - + Change the passphrase used for wallet encryption Vaihda lompakon salaukseen käytettävä salasana - + &Unlock Wallet... &Avaa Lompakko... - + Unlock wallet Avaa lompakko - + &Lock Wallet &Lukitse Lompakko - + Sign &message... &Allekirjoita Viesti... - + Sign messages with your Darkcoin addresses to prove you own them Allekirjoita viestit Darkcoin osoitteillasi todistaaksesi että omistat ne - + &Verify message... Varmista &Viesti... - + Verify messages to ensure they were signed with specified Darkcoin addresses Varmista viestit varmistaaksesi että ne ovat allekirjoitettu määritetyillä Darkcoin osoitteilla - + &Information T&ietoa - + Show diagnostic information Näytä diagnostiikka tietoja - + &Debug console &Testausikkuna - + Open debugging console Avaa testausikkuna - + &Network Monitor &Verkkoliikenne - + Show network monitor Näytä verkkoliikenne + Open &Configuration File + + + + + Open configuration file + + + + &Sending addresses... &Lähettävät Osoitteet... - + Show the list of used sending addresses and labels Näytä lähettämiseen käytettyjen osoitteiden ja nimien lista - + &Receiving addresses... &Vastaanottavat Osoitteet... - + Show the list of used receiving addresses and labels Näytä vastaanottamiseen käytettyjen osoitteiden ja nimien lista - + Open &URI... Avaa &URI... - + Open a darkcoin: URI or payment request Avaa Darkcoin: URI tai maksupyyntö - + &Command-line options &Komentorivin valinnat - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options Näytä Darkcoin Core ohjelista komentorivin valinnoista - + &File &Tiedosto - + &Settings &Asetukset - + &Tools &Työkalut - + &Help &Apua - + Tabs toolbar Välilehtipalkki - - + + Darkcoin client Darkcoin asiakasohjelma - + %n active connection(s) to Darkcoin network %n aktiivista yhteyttä Darkcoin verkkoon%n aktiivista yhteyttä Darkcoin verkkoon - + Synchronizing with network... Synkronoidaan verkkoon... - + Importing blocks from disk... Tuodaan lohkoja levyltä... - + Reindexing blocks on disk... Uudelleen indeksoidaan lohkoja... - + No block source available... Lohkojen lähdettä ei saatavilla... - + Processed %1 blocks of transaction history. Käsitelty %1 lohkoa tapahtumahistoriasta. - + Up to date Tapahtumahistoria on ajan tasalla - + %n hour(s) %n tunti(a)%n tunti(a) - + %n day(s) %n päivä(ä)%n päivä(ä) - - + + %n week(s) %n viikko(a)%n viikko(a) - + %1 and %2 %1 ja %2 - + %n year(s) %n vuosi(a)%n vuosi(a) - + %1 behind %1 jäljessä - + Catching up... Saavutetaan verkkoa... - + Last received block was generated %1 ago. Viimeisin vastaanotettu lohko luotu %1 sitten. - + Transactions after this will not yet be visible. Tämän jälkeiset siirtotapahtumat eivät ole vielä näkyvissä. - + Darkcoin Darkcoin - + Error Virhe - + Warning Varoitus - + Information Tietoa - + Sent transaction Lähetetty siirtotapahtuma - + Incoming transaction Saapuva siirtotapahtuma - + Date: %1 Amount: %2 Type: %3 @@ -757,17 +767,17 @@ Osoite: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Lompakko on <b>salattu</b> ja tällä hetkellä <b>avoinna</b> - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only Lompakko on <b>salattu</b> ja tällä hetkellä <b>avoinna</b> vain anonymisointia varten - + Wallet is <b>encrypted</b> and currently <b>locked</b> Lompakko on <b>salattu</b> ja tällä hetkellä <b>lukittu</b> @@ -3909,7 +3919,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3934,247 +3944,247 @@ esimerkiksi: alertnotify=echo %%s | mail -s "Darkcoin Hälytys" admin@ - + 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. Darkcoin Core is probably already running. Ei voida lukita data hakemistoa %s. Darkcoin 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. Darkcoin Core is probably already running. Ei voida yhdistää %s tässä tietokoneessa. Darkcoin 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 DRK. Ei tarpeeksi Darksend ei-anonymisoituja varoja tälle siirtotapahtumalle, joka ei ole 1000 DRK. - + 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 Darkcoin will not work properly. Varoitus: Tarkista että tietokoneesi kellonaika ja päivämäärä ovat ajan tasalla! Darkcoin 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: Darkcoin 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 Darkcoin 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. @@ -4183,1087 +4193,1087 @@ 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 - + Darkcoin Core Daemon Darkcoin Core Palveluprosessi - + Darkcoin Core RPC client version Darkcoin 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 - + 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 Darkcoin 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. Darkcoin Core is shutting down. Alkuperäisyyden tarkistus epäonnistui. Darkcoin 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 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 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 Darkcoin Core Lähetä komento Darkcoin 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 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) 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 Darkcoin Core Daemon Käynnistä Darkcoin 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: 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 Darkcoin to complete Lompakko on kirjoitettava uudelleen, käynnistä Darkcoin 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! - + Wrong state. Väärä tila. - + 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/darkcoin_fr.ts index 385c9caf75..d0e3254359 100644 --- a/src/qt/locale/darkcoin_fr.ts +++ b/src/qt/locale/darkcoin_fr.ts @@ -367,382 +367,392 @@ Ce produit comprend des logiciels développés par le projet OpenSSL afin d&apos - + [testnet] [testnet] - + &Overview &Vue d'ensemble - + Show general overview of wallet Afficher une vue d’ensemble du portefeuille - + &Send &Envoyer - + Send coins to a Darkcoin address Envoyer des pièces sur une adresse Darkcoin - + &Receive &Recevoir - + Request payments (generates QR codes and darkcoin: URIs) Demande de paiements (Générer des QR code et des URIs darkcoin) - + &Transactions &Transactions - + Browse transaction history Parcourir l'historique des transactions - + E&xit Q&uitter - + Quit application Quitter l’application - - + + &About Darkcoin Core À propos du noyau Darkcoin - + Show information about Darkcoin Voir des informations à propos de Darkcoin - - + + About &Qt À propos de &Qt - + Show information about Qt Afficher des informations sur Qt - + &Options... &Options… - + Modify configuration options for Darkcoin Modifier les options de configuration pour Darkcoin - - + + &Show / Hide &Afficher / Cacher - + Show or hide the main Window Afficher ou masquer la fenêtre principale - + &Encrypt Wallet... &Chiffrer le portefeuille... - + Encrypt the private keys that belong to your wallet Chiffrer les clefs privées de votre portefeuille - + &Backup Wallet... Sauvegarder le &portefeuille... - + Backup wallet to another location Sauvegarder le portefeuille vers un autre emplacement - + &Change Passphrase... &Changer la phrase de passe... - + Change the passphrase used for wallet encryption Modifier la phrase de passe utilisée pour le chiffrement du portefeuille - + &Unlock Wallet... &Déverrouiller le portefeuille - + Unlock wallet Déverrouiller le portefeuille - + &Lock Wallet &Vérouiller le portefeuille - + Sign &message... &Signer le message... - + Sign messages with your Darkcoin addresses to prove you own them Signer les messages avec votre adresses Darkcoin pour prouver que vous êtes le propriétaire - + &Verify message... &Vérifier un message... - + Verify messages to ensure they were signed with specified Darkcoin addresses Vérifier les messages pour vous assurer qu'ils ont été signés avec les adresses Darkcoin spécifiées - + &Information &Informations - + Show diagnostic information Voir les informaion de diagnostique - + &Debug console &Console de débogage - + Open debugging console Ouvrir la console de débogage - + &Network Monitor &Moniteur réseau - + Show network monitor Voir le moniteur réseau + Open &Configuration File + + + + + Open configuration file + + + + &Sending addresses... Adresses d'&envoi... - + Show the list of used sending addresses and labels Afficher la liste d'adresses d'envoi et d'étiquettes utilisées - + &Receiving addresses... Adresses de &réception... - + Show the list of used receiving addresses and labels Afficher la liste d'adresses de réception et d'étiquettes utilisées - + Open &URI... Ouvrir un &URI... - + Open a darkcoin: URI or payment request Ouvrir une URI ou demande de paiement darkcoin - + &Command-line options Options de ligne de &commande - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options Afficher le message d'aide de Darkcoin Core pour obtenir une liste des options de ligne de commande Bitcoin possibles. - + &File &Fichier - + &Settings &Réglages - + &Tools &Outils - + &Help &Aide - + Tabs toolbar Barre d'outils des onglets - - + + Darkcoin client Client Darkcoin - + %n active connection(s) to Darkcoin network %n connection(s) active(s) sur le réseau Darkcoin%n connection(s) active sur le réseau Darkcoin - + Synchronizing with network... Synchronisation avec le réseau en cours… - + Importing blocks from disk... Importation des blocs depuis le disque... - + Reindexing blocks on disk... Réindexation des blocs sur le disque... - + No block source available... Aucune source de blocs disponible... - + Processed %1 blocks of transaction history. À traité %1 blocs de l'historique des transactions. - + Up to date À jour - + %n hour(s) %n heure(s)%n heure(s) - + %n day(s) %n jour(s)%n jour(s) - - + + %n week(s) %n semaine(s)%n semaine(s) - + %1 and %2 %1 et %2 - + %n year(s) %n année(s)%n année(s) - + %1 behind %1 en retard - + Catching up... Rattrapage en cours… - + Last received block was generated %1 ago. Le dernier bloc reçu avait été généré il y a %1. - + Transactions after this will not yet be visible. Les transactions après ceci ne sont pas encore visibles. - + Darkcoin Darkcoin - + Error Erreur - + Warning Avertissement - + Information Information - + Sent transaction Transaction envoyée - + Incoming transaction Transaction entrante - + Date: %1 Amount: %2 Type: %3 @@ -755,17 +765,17 @@ Adresse : %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Le portefeuille est <b>chiffré</b> et est actuellement <b>déverrouillé</b> - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only Le portefeuille est <b>chiffré</b> et est actuellement <b>déverrouillé</b> seulement pour l'anonymisation - + Wallet is <b>encrypted</b> and currently <b>locked</b> Le portefeuille est <b>chiffré</b> et actuellement <b>verrouillé</b> @@ -3906,7 +3916,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3931,247 +3941,247 @@ Pour exemple: alertnotify=echo %%s | mail -s "Alerte Darkcoin" admin@f - + 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. Darkcoin Core is probably already running. Impossible d’obtenir un verrou sur le répertoire de données %s. Darkcoin 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. Darkcoin Core is probably already running. Impossible de se lier à %s sur cet ordinateur. Darkcoin 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 DRK. Impossible de localiser suffisamment de fonds non-dénominés Darksend pour cette transaction qui ne sont pas égaux à 1000 DRK. - + 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 Darkcoin 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, Darkcoin 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. @@ -4180,1087 +4190,1087 @@ 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 - + Darkcoin Core Daemon Démon Darkcoin Core - + Darkcoin Core RPC client version Version du client RPC de Darkcoin 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é - + 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 Darkcoin Erreur au chargement de wallet.dat : le Portefeuille nécessite une nouvelle version de Darkcoin - + 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. Darkcoin 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 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 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 Darkcoin Core Envoyer commandes vers Darkcoin 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 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 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 Darkcoin Core Daemon Démarrer le démon Darkcoin 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: 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 Darkcoin to complete Le portefeuille devait être réécrit : redémarrer Darkcoin 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 ! - + Wrong state. État incorrect. - + 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/darkcoin_hu_HU.ts index b5c1afef62..c7c9bc9500 100644 --- a/src/qt/locale/darkcoin_hu_HU.ts +++ b/src/qt/locale/darkcoin_hu_HU.ts @@ -366,382 +366,392 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt - + [testnet] [teszthálózat] - + &Overview &Áttekintés - + Show general overview of wallet Tárca általános áttekintése - + &Send &Küldés - + Send coins to a Darkcoin address Pénz küldése egy Darkcoin címre - + &Receive &Fogadás - + Request payments (generates QR codes and darkcoin: URIs) Fizetési bekérő generálása (QR kód, valamint darkcoin: URI) - + &Transactions &Tranzakciók - + Browse transaction history Tranzakciótörténet megtekintése - + E&xit &Kilépés - + Quit application Kilépés - - + + &About Darkcoin Core Darkcoin Core &névjegye - + Show information about Darkcoin Információ mutatása a Darkcoin-ról - - + + About &Qt A &Qt-ról - + Show information about Qt Információk a Qt ról - + &Options... &Opciók... - + Modify configuration options for Darkcoin Beállítások módosítása - - + + &Show / Hide &Mutat / Elrejt - + Show or hide the main Window Főablakot mutat/elrejt - + &Encrypt Wallet... Tárca &kódolása... - + Encrypt the private keys that belong to your wallet A pénztárcájához tartozó privát kulcsok titkosítása - + &Backup Wallet... &Bisztonsági másolat készítése a Tárcáról - + Backup wallet to another location Biztonsági másolat készítése a Tárcáról egy másik helyre - + &Change Passphrase... Jelszó &megváltoztatása... - + Change the passphrase used for wallet encryption Tárcakódoló jelszó megváltoztatása - + &Unlock Wallet... &Tárca megnyitása.. - + Unlock wallet Tárca megnyitása - + &Lock Wallet Tárca &lezárása - + Sign &message... Üzenet aláírása... - + Sign messages with your Darkcoin addresses to prove you own them - + &Verify message... Üzenet &valódiságának ellenőrzése - + Verify messages to ensure they were signed with specified Darkcoin addresses - + &Information &Információ - + Show diagnostic information Diagnosztikai információk mutatása - + &Debug console &Parancssor - + Open debugging console Parancssor megnyitása - + &Network Monitor &Hálózat figyelő - + Show network monitor Hálózat figyelő megnyitása + Open &Configuration File + + + + + Open configuration file + + + + &Sending addresses... &Küldési címek... - + Show the list of used sending addresses and labels A használt küldési címek és címkék mutatása - + &Receiving addresses... &Fogadó címek... - + Show the list of used receiving addresses and labels A használt fogadó címek és címkék megtekintése - + Open &URI... &URI azonosító megnyitása... - + Open a darkcoin: URI or payment request - + &Command-line options Paran&cssor kapcsolók - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options - + &File &Fájl - + &Settings &Beállítások - + &Tools &Eszközök - + &Help &Súgó - + Tabs toolbar Fül eszköztár - - + + Darkcoin client Darkcoin kliens - + %n active connection(s) to Darkcoin network %n aktív kapcsolat a Darkcoin hálózattal%n aktív kapcsolat a Darkcoin hálózattal - + Synchronizing with network... Szinkronizálás a hálózattal... - + Importing blocks from disk... A blokkok importálása lemezről... - + Reindexing blocks on disk... A blokkok lemezen történő ujraindexelése... - + No block source available... Blokk forrása ismeretlen... - + Processed %1 blocks of transaction history. A tranzakció-történet %1 blokkja feldolgozva. - + Up to date Naprakész - + %n hour(s) %n óra%n óra - + %n day(s) %n nap%n nap - - + + %n week(s) %n hét%n hét - + %1 and %2 %1 és %2 - + %n year(s) %n év%n év - + %1 behind %1 lemaradás - + Catching up... Frissítés... - + Last received block was generated %1 ago. Az utolsóként kapott blokk kora: %1. - + Transactions after this will not yet be visible. Ez utáni tranzakciók még nem lesznek láthatóak. - + Darkcoin Darkcoin - + Error Hiba - + Warning Figyelem - + Information Információ - + Sent transaction Tranzakció elküldve. - + Incoming transaction Beérkező tranzakció - + Date: %1 Amount: %2 Type: %3 @@ -754,17 +764,17 @@ Cím: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Tárca <b>kódolva</b> és jelenleg <b>nyitva</b>. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only Tárca <b>kódolva</b> és jelenleg <b>nyitva</b> kizárólag anonimizáláshoz. - + Wallet is <b>encrypted</b> and currently <b>locked</b> Tárca <b>kódolva</b> és jelenleg <b>zárva</b>. @@ -3906,7 +3916,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3921,1334 +3931,1334 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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. Darkcoin 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 DRK. - + 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 Darkcoin 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 - + Darkcoin Core Daemon - + Darkcoin 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 - + 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 Darkcoin - + 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. Darkcoin 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 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 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 Darkcoin 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 connection timeout in milliseconds (default: 5000) - + Specify data directory - + Specify masternode configuration file (default: masternode.conf) - + Specify pid file (default: darkcoind.pid) - + Specify wallet file (within data directory) - + Specify your own public address - + Spend unconfirmed change when sending transactions (default: 1) - + Start Darkcoin 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: 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 Darkcoin to complete - + Wallet options: - + Warning Figyelem - + 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 verzió - + wallet.dat corrupt, salvage failed diff --git a/src/qt/locale/darkcoin_it.ts b/src/qt/locale/darkcoin_it.ts index cf7a7a1cf3..0ce13c142a 100644 --- a/src/qt/locale/darkcoin_it.ts +++ b/src/qt/locale/darkcoin_it.ts @@ -366,382 +366,392 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso - + [testnet] [testnet] - + &Overview &Sintesi - + Show general overview of wallet Mostra lo stato generale del portafoglio - + &Send &Invia - + Send coins to a Darkcoin address Spedire darkcoin ad un indirizzo Darkcoin - + &Receive &Ricevi - + Request payments (generates QR codes and darkcoin: URIs) Richieste di pagamenti (genera codici QR e darkcoin: URLs) - + &Transactions &Transazioni - + Browse transaction history Mostra la cronologia delle transazioni - + E&xit E&sci - + Quit application Chiudi applicazione - - + + &About Darkcoin Core &Su Darkcoin Core - + Show information about Darkcoin Mostra informazioni su Darkcoin - - + + About &Qt Informazioni su &Qt - + Show information about Qt Mostra informazioni su Qt - + &Options... &Opzioni... - + Modify configuration options for Darkcoin Modifica le opzioni di configurazione di Darkcoin - - + + &Show / Hide &Mostra / Nascondi - + Show or hide the main Window Mostra o nascondi la Finestra principale - + &Encrypt Wallet... &Cifra il portafoglio... - + Encrypt the private keys that belong to your wallet Cifra le chiavi private che appartengono al tuo portafoglio - + &Backup Wallet... &Backup Portafoglio... - + Backup wallet to another location Effettua il backup del portafoglio - + &Change Passphrase... &Cambia la passphrase... - + Change the passphrase used for wallet encryption Cambia la passphrase utilizzata per la cifratura del portafoglio - + &Unlock Wallet... &Sblocca Portafoglio - + Unlock wallet Sblocca il portafoglio - + &Lock Wallet &Blocca Portafoglio - + Sign &message... Firma il &messaggio... - + Sign messages with your Darkcoin addresses to prove you own them Firma i messaggi con il tuo indirizzo Darkcoin per dimostrarne che li possiedi - + &Verify message... &Verifica messaggio... - + Verify messages to ensure they were signed with specified Darkcoin addresses Verificare i messaggi per assicurarsi che sono firmati con gli indirizzi specificati di Darkcoin - + &Information &Informazioni - + Show diagnostic information Mostra l'informazione di diagnostica - + &Debug console &Console di Debug - + Open debugging console Apri la console di Debug - + &Network Monitor &Monitor di rete - + Show network monitor Mostra il monitor di rete + Open &Configuration File + + + + + Open configuration file + + + + &Sending addresses... &Indirizzi d'invio... - + Show the list of used sending addresses and labels Mostra la lista degli indirizzi di invio utilizzati - + &Receiving addresses... Indirizzi di &ricezione... - + Show the list of used receiving addresses and labels Mostra la lista degli indirizzi di ricezione utilizzati - + Open &URI... Apri &URI... - + Open a darkcoin: URI or payment request Apri un darkcoin: URI o una richiesta di pagamento - + &Command-line options Opzioni riga di &comando - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options Mostra il messaggio di aiuto di Darkcoin Core per ottenere una lista con le possibili opzioni di linea di comando di Darkcoin - + &File &File - + &Settings &Impostazioni - + &Tools &Strumenti - + &Help &Aiuto - + Tabs toolbar Barra degli strumenti "Tabs" - - + + Darkcoin client Darkcoin Client - + %n active connection(s) to Darkcoin network %n connessione(i) attive alla rete Darkcoin%n connessione(i) attive alla rete Darkcoin - + Synchronizing with network... Sincronizzazione con la rete in corso... - + Importing blocks from disk... Importazione blocchi dal disco... - + Reindexing blocks on disk... Re-indicizzazione blocchi su disco... - + No block source available... Nessuna fonte di blocchi disponibile - + Processed %1 blocks of transaction history. Processati %1 blocchi della cronologia transazioni. - + Up to date Aggiornato - + %n hour(s) %n ora(e)%n ora(e) - + %n day(s) %n giorno(i)%n giorno(i) - - + + %n week(s) %n settimana(e)%n settimana(e) - + %1 and %2 %1 e %2 - + %n year(s) %n anno(i)%n anno(i) - + %1 behind Indietro di %1 - + Catching up... In aggiornamento... - + Last received block was generated %1 ago. L'ultimo blocco ricevuto è stato generato %1 fa. - + Transactions after this will not yet be visible. Transazioni successive a questa non saranno ancora visibili. - + Darkcoin Darkcoin - + Error Errore - + Warning Attenzione - + Information Informazioni - + Sent transaction Transazione inviata - + Incoming transaction Transazione ricevuta - + Date: %1 Amount: %2 Type: %3 @@ -755,17 +765,17 @@ Indirizzo: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Il portafoglio è <b>cifrato</b> ed attualmente <b>sbloccato</b> - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only Il portafoglio é crittografato e attualmente sbloccato solo per anonimizzare - + Wallet is <b>encrypted</b> and currently <b>locked</b> Il portafoglio è <b>cifrato</b> ed attualmente <b>bloccato</b> @@ -3906,7 +3916,7 @@ Più URL vengono separati da una barra verticale |. darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3921,247 +3931,247 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin Core is probably already running. - + 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. - + 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. Darkcoin 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 DRK. - + 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 Darkcoin will not work properly. Attenzione: Per favore assicurati che la data e l'ora del tuo computer siano corrette, altrimenti Darkcoin 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. @@ -4170,1093 +4180,1093 @@ 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 - + Darkcoin Core Daemon Darkcoin Core Daemon - + Darkcoin Core RPC client version Versione client RPC di Darkcoin 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 - + 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 Darkcoin Errore caricando wallet.dat: Wallet necessita la versione piú recente di Darkcoin - + 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. Darkcoin Core is shutting down. - + 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 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) 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 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. - + No compatible masternode found. - + 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 Darkcoin Core Invia comando a Darkcoin 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 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 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 Darkcoin Core Daemon Avvia il demone Darkcoin 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: 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 Darkcoin to complete Il portafoglio necessita di essere riscritto: riavvare Darkcoin 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! - + Wrong state. Stato non corretto. - + 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/darkcoin_lv_LV.ts index bb81b062fb..2417cb402f 100644 --- a/src/qt/locale/darkcoin_lv_LV.ts +++ b/src/qt/locale/darkcoin_lv_LV.ts @@ -367,382 +367,392 @@ Nesniedz reālu drošību - + [testnet] [testnet] - + &Overview &Pārskats - + Show general overview of wallet Rādīt vispārēju maciņa pārskatu - + &Send &Sūtīt - + Send coins to a Darkcoin address Nosūtīt monētas uz Darkcoin adresi - + &Receive Saņe&mt - + Request payments (generates QR codes and darkcoin: URIs) Pieprasīt maksājumus (izveido QR kodu un darkcoin: URIs) - + &Transactions &Transakcijas - + Browse transaction history Skatīt transakciju vēsturi - + E&xit &Iziet - + Quit application Aizvērt programmu - - + + &About Darkcoin Core Par Darkcoin Core - + Show information about Darkcoin Parādīt informāciju par Darkcoin - - + + About &Qt Par &Qt - + Show information about Qt Parādīt informāciju par Qt - + &Options... &Iespējas... - + Modify configuration options for Darkcoin Mainīt Darkcoin konfigurācijas uzstādījumus - - + + &Show / Hide &Rādīt / Paslēpt - + Show or hide the main Window Parādīt vai paslēpt galveno Logu - + &Encrypt Wallet... Šifrēt &maciņu... - + Encrypt the private keys that belong to your wallet Šifrēt privātās atslēgas kuras pieder tavam maciņam - + &Backup Wallet... &Maciņa Rezerves Kopija... - + Backup wallet to another location Izveidot maciņa rezerves kopiju citur - + &Change Passphrase... Mainīt &Paroli... - + Change the passphrase used for wallet encryption Mainīt maciņa šifrēšanas paroli - + &Unlock Wallet... Atslēgt maciņu - + Unlock wallet Atslēgt maciņu - + &Lock Wallet Aizslēgt maciņu - + Sign &message... Parakstīt &ziņojumu... - + Sign messages with your Darkcoin addresses to prove you own them Parakstīt ziņojumus ar savām Darkcoin adresēm lai pierādītu, ka tās pieder Jums - + &Verify message... &Pārbaudīt ziņojumu... - + Verify messages to ensure they were signed with specified Darkcoin addresses Pārbaudīt ziņojumus lai pārliecinātos, ka tie tika parakstīti ar norādītajām Darkcoin adresēm - + &Information &Informācija - + Show diagnostic information Rādīt diagnostikas informāciju - + &Debug console Atkļūdošanas logs - + Open debugging console Atvērt atkļūdošanas un diagnostikas konsoli - + &Network Monitor Tīkla novērošana - + Show network monitor Rādīt tīklā novērošanu + Open &Configuration File + + + + + Open configuration file + + + + &Sending addresses... &Sūtīšanas adreses... - + Show the list of used sending addresses and labels Rādīt lietoto sūtīšanas adrešu sarakstu un formas - + &Receiving addresses... Saņemšanas &adreses... - + Show the list of used receiving addresses and labels Rādīt lietoto saņemšanas adrešu sarakstu un formas - + Open &URI... Atvērt &URI... - + Open a darkcoin: URI or payment request Atvērt darkcoin URI vai maksājuma pieprasījumu - + &Command-line options &Komandrindas iespējas - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options Rādīt Darkcoin Core palīdzības logu, lai iegūtu sarakstu ar iespējamiem Darkcoin komandjoslas iestatījumiem. - + &File &Fails - + &Settings &Uzstādījumi - + &Tools Rīki - + &Help &Palīdzība - + Tabs toolbar Ciļņu rīkjosla - - + + Darkcoin client Darkcoin klients - + %n active connection(s) to Darkcoin network - + Synchronizing with network... Sinhronizācija ar tīklu... - + Importing blocks from disk... Importē blokus no diska... - + Reindexing blocks on disk... Bloku reindeksēšana no diska... - + No block source available... Nav pieejams neviens bloku avots... - + Processed %1 blocks of transaction history. Apstrādāti %1 bloki no transakciju vēstures. - + Up to date Sinhronizēts - + %n hour(s) - + %n day(s) - - + + %n week(s) - + %1 and %2 %1 un %2 - + %n year(s) - + %1 behind %1 aizmugurē - + Catching up... Sinhronizējos... - + Last received block was generated %1 ago. Pēdējais bloks radīts %1 atpakaļ - + Transactions after this will not yet be visible. Transakcijas pēc šī vēl nebūs redzamas - + Darkcoin Darkcoin - + Error Kļūda - + Warning Brīdinājums - + Information Informācija - + Sent transaction Transakcija nosūtīta - + Incoming transaction Ienākoša transakcija - + Date: %1 Amount: %2 Type: %3 @@ -755,17 +765,17 @@ Adrese: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Maciņš ir <b>šifrēts</b> un pašlaik <b>atslēgts</b> - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> for anonimization only Maciņš ir <b>šifrēts</b> un pašlaik <b>atvērts</b> tikai priekš anonimizācijai - + Wallet is <b>encrypted</b> and currently <b>locked</b> Maciņš ir <b>šifrēts</b> un pašlaik <b>slēgts</b> @@ -3909,7 +3919,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3924,247 +3934,247 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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. Darkcoin 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 DRK. - + 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 Darkcoin 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. @@ -4173,1087 +4183,1087 @@ 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 - + Darkcoin Core Daemon - + Darkcoin 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 - + 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 Darkcoin - + 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. Darkcoin 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 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 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 Darkcoin 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 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) 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 Darkcoin Core Daemon Sākt Darkcoin 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: 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 Darkcoin to complete Maciņš ir jāpārraksta: restartēt Darkcoin, 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! - + Wrong state. - + 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/darkcoin_nb.ts b/src/qt/locale/darkcoin_nb.ts index be21d26b57..252ee37d0b 100644 --- a/src/qt/locale/darkcoin_nb.ts +++ b/src/qt/locale/darkcoin_nb.ts @@ -367,382 +367,392 @@ Dette produktet inneholder programvare utviklet av OpenSSL Projektet for bruk i - + [testnet] [testnett] - + &Overview &Oversikt - + Show general overview of wallet Vis generell oversikt over lommeboka - + &Send &Send - + Send coins to a Darkcoin address Send mynter til en Darkcoin-adresse - + &Receive &Motta - + Request payments (generates QR codes and darkcoin: URIs) Etterspør betalinger (genererer QR-koder og darkcoin: URIer) - + &Transactions &Transaksjoner - + Browse transaction history Vis transaksjonshistorikk - + E&xit &Avslutt - + Quit application Avslutt applikasjonen - - + + &About Darkcoin Core &Om Darkcoin Core - + Show information about Darkcoin Vis informasjon om Darkcoin - - + + About &Qt Om &Qt - + Show information about Qt Vis informasjon om Qt - + &Options... &Innstillinger... - + Modify configuration options for Darkcoin Endre konfigurasjonsinnstillinger for Darkcoin - - + + &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 Darkcoin addresses to prove you own them Signér meldinger med Darkcoin-privatnøklene dine for å bevise at du eier de tilhørende Darkcoin-adressene - + &Verify message... &Verifisér melding... - + Verify messages to ensure they were signed with specified Darkcoin addresses Verifisér meldinger for å forsikre at de ble signert av eieren til de spesifiserte Darkcoin 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 darkcoin: URI or payment request Åpne en darkcoin: URI eller betalingsforespørsel - + &Command-line options &Kommandolinjevalg - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options Vis Darkcoin Core hjelpemelding for å få en liste over alle mulige Darkcoin kommandolinjevalg - + &File &Fil - + &Settings &Innstillinger - + &Tools &Verktøy - + &Help &Hjelp - + Tabs toolbar Verktøylinje for faner - - + + Darkcoin client Darkcoin-klient - + %n active connection(s) to Darkcoin network %n aktiv(e) tilkobling(er) til Darkcoin-nettverket%n aktiv(e) tilkobling(er) til Darkcoin-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å. - + Darkcoin Darkcoin - + Error Feil - + Warning Advarsel - + Information Informasjon - + Sent transaction Sendt transaksjon - + Incoming transaction Innkommende transaksjon - + Date: %1 Amount: %2 Type: %3 @@ -755,17 +765,17 @@ 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> @@ -3905,7 +3915,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3920,1334 +3930,1334 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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. Darkcoin 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 DRK. - + 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 Darkcoin 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 - + Darkcoin Core Daemon - + Darkcoin 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 - + 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 Darkcoin - + 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. Darkcoin 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 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 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 Darkcoin 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 connection timeout in milliseconds (default: 5000) - + Specify data directory - + Specify masternode configuration file (default: masternode.conf) - + Specify pid file (default: darkcoind.pid) - + Specify wallet file (within data directory) - + Specify your own public address - + Spend unconfirmed change when sending transactions (default: 1) - + Start Darkcoin 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: 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 Darkcoin 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 diff --git a/src/qt/locale/darkcoin_nl.ts b/src/qt/locale/darkcoin_nl.ts index 7232bf095f..50fc793383 100644 --- a/src/qt/locale/darkcoin_nl.ts +++ b/src/qt/locale/darkcoin_nl.ts @@ -366,383 +366,393 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d - + [testnet] [testnetwerk] - + &Overview &Overzicht - + Show general overview of wallet Toon algemeen overzicht van de portemonnee - + &Send &Versturen - + Send coins to a Darkcoin address Verzend munten naar een Darkcoin adres - + &Receive &Ontvangen - + Request payments (generates QR codes and darkcoin: URIs) Vraag betaling (genereert QR codes en darkcoin: URIs) - + &Transactions &Transacties - + Browse transaction history Blader door transactieverleden - + E&xit &Afsluiten - + Quit application Programma afsluiten - - + + &About Darkcoin Core &Over Darkcoin Core - + Show information about Darkcoin Toon informatie over Darkcoin - - + + About &Qt Over &Qt - + Show information about Qt Toon informatie over Qt - + &Options... O&pties... - + Modify configuration options for Darkcoin Aanpassen van configuratie opties voor Darkcoin - - + + &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 Darkcoin addresses to prove you own them Onderteken berichten met uw Darkcoin adres om te bewijzen dat u deze bezit - + &Verify message... &Verifiëer bericht... - + Verify messages to ensure they were signed with specified Darkcoin addresses Verifieer berichten om zeket te zijn dat deze werden ondertekend met het specifiek Darkcoin 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 darkcoin: URI or payment request Open een darkcoin: URI of betalingsverzoek - + &Command-line options &Commandoregel-opties - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options Geef het help bericht weer om een lijst te krijgen met alle Darkcoin command-line opties - + &File &Bestand - + &Settings &Instellingen - + &Tools &Gereedschap - + &Help &Hulp - + Tabs toolbar Tab-werkbalk - - + + Darkcoin client Darkcoin cliënt - + %n active connection(s) to Darkcoin 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. - + Darkcoin Darkcoin - + Error Fout - + Warning Waarschuwing - + Information Informatie - + Sent transaction Verzonden transactie - + Incoming transaction Binnenkomende transactie - + Date: %1 Amount: %2 Type: %3 @@ -755,17 +765,17 @@ 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> @@ -3905,7 +3915,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3920,1334 +3930,1334 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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. Darkcoin 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 DRK. - + 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 Darkcoin will not work properly. Waarschuwing: Controleer a.u.b. de datum en tijd van uw computer! Darkcoin 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 - + Darkcoin Core Daemon Darkcoin Core Daemon - + Darkcoin 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 - + 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 Darkcoin - + 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. Darkcoin 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 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 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 Darkcoin 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 connection timeout in milliseconds (default: 5000) - + Specify data directory - + Specify masternode configuration file (default: masternode.conf) - + Specify pid file (default: darkcoind.pid) - + Specify wallet file (within data directory) - + Specify your own public address - + Spend unconfirmed change when sending transactions (default: 1) - + Start Darkcoin 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: 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 Darkcoin 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 diff --git a/src/qt/locale/darkcoin_pl.ts b/src/qt/locale/darkcoin_pl.ts index dd26d868a6..d53ee26fce 100644 --- a/src/qt/locale/darkcoin_pl.ts +++ b/src/qt/locale/darkcoin_pl.ts @@ -367,382 +367,392 @@ Ten produkt zawiera oprogramowanie opracowane przez Projekt OpenSSL do użycia w - + [testnet] [testnet] - + &Overview P&odsumowanie - + Show general overview of wallet Pokazuje ogólny zarys portfela - + &Send Wyślij - + Send coins to a Darkcoin address Wyślij monety na adres Darkcoina - + &Receive Odbie&rz - + Request payments (generates QR codes and darkcoin: URIs) Poproś o płatności (tworzy kod QR oraz darkcoin: link) - + &Transactions &Transakcje - + Browse transaction history Przeglądaj historię transakcji - + E&xit &Zakończ - + Quit application Zamknij program - - + + &About Darkcoin Core &O Darkcoin Core - + Show information about Darkcoin Pokaż informacje na temat Darkcoin - - + + About &Qt O &Qt - + Show information about Qt Pokazuje informacje o Qt - + &Options... &Opcje... - + Modify configuration options for Darkcoin Zmień opcje konfiguracji dla Darkcoin - - + + &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 Darkcoin addresses to prove you own them Podpisz wiadomości swoim adresem Darkcoin aby udowodnić, że jesteś ich właścicielem. - + &Verify message... &Zweryfikuj wiadomość... - + Verify messages to ensure they were signed with specified Darkcoin addresses Zweryfikuj wiadomości aby upewnić się, że zostały one podpisane wybranym adresem Darkcoin - + &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 + + + + + Open configuration file + + + + &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 darkcoin: URI or payment request Otwórz darkcoin: Link lub żądanie zapłaty - + &Command-line options &Opcje konsoli - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options Pokaż wiadomość pomocy Darkcoin 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 - - + + Darkcoin client Klient Darkcoin - + %n active connection(s) to Darkcoin network %n aktywne połączenie do sieci Darkcoin%n aktywne połączenia do sieci Darkcoin%n aktywnych połączeń do sieci Darkcoin - + 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. - + Darkcoin Darkcoin - + Error Błąd - + Warning Ostrzeżenie - + Information Informacja - + Sent transaction Transakcja wysłana - + Incoming transaction Transakcja przychodząca - + Date: %1 Amount: %2 Type: %3 @@ -755,17 +765,17 @@ 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> @@ -3906,7 +3916,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3930,247 +3940,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. Darkcoin Core is probably already running. Nie można zablokować katalogu danych %s. Prawdopodobnie Darkcoin 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. Darkcoin Core is probably already running. Niezdolny do związania z %s na tym komputerze. Prawdopodobnie Darkcoin 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 DRK. Nie znaleziono wystarczającej ilości nie zdenominowanych środków Darksend dla tej transakcji, które nie równają się 1000 DRK - + 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 Darkcoin 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 Darkcoin 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. @@ -4179,1087 +4189,1087 @@ 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 - + Darkcoin Core Daemon Darkcoin Core Daemon - + Darkcoin Core RPC client version Wersja klienta Darkcoin 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 - + 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 Darkcoin Błą wczytywania wallet.dat: Portfel wymaga nowszej wersji Darkcoin - + 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. Darkcoin Core is shutting down. Inicjalizacja kontroli poprawności nie powiodła się. Trwa zamykanie Darkcoin 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 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 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 Darkcoin Core Wyślij polecenie do Darkcoin 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 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 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 Darkcoin Core Daemon Włącz Darkcoin 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: 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 Darkcoin to complete Portfel musi zostać ponownie zapisany: uruchom Darkcoin 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. Niewłaściwy stan. - + 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 27b67eff48..18739de0f8 100644 --- a/src/qt/locale/darkcoin_pt.ts +++ b/src/qt/locale/darkcoin_pt.ts @@ -367,382 +367,392 @@ Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no Open - + [testnet] [testnet] - + &Overview &Global - + Show general overview of wallet Mostrar visão global da carteira - + &Send &Enviar - + Send coins to a Darkcoin address Enviar moedas para um endereço Darkcoin - + &Receive &Receber - + Request payments (generates QR codes and darkcoin: URIs) Solicitar pagamentos (gera códigos QR e darkcoin: URIs) - + &Transactions &Transacções - + Browse transaction history Visualiza histórico de transacções - + E&xit &Sair - + Quit application Sair da aplicação - - + + &About Darkcoin Core &Acerca do Darkcoin Core - + Show information about Darkcoin Mostra informação acerca do Darkcoin - - + + About &Qt Acerca do &Qt - + Show information about Qt Mostra informação acerca do Qt - + &Options... &Opções... - + Modify configuration options for Darkcoin Modificar opções de configuração do Darkcoin - - + + &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 Darkcoin addresses to prove you own them Assine mensagens com os seus endereços Darkcoin para provar que são seus - + &Verify message... &Verificar Mensagem - + Verify messages to ensure they were signed with specified Darkcoin addresses Verifica mensagens para garantir que foram assinadas com um endereço Darkcoin 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 + + + + + Open configuration file + + + + &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 darkcoin: URI or payment request Abre um darkcoin: URI ou solicitação de pagamento - + &Command-line options Opções de linha de &comandos - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options Mostra a mensagem de ajuda do Darkcoin 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 - - + + Darkcoin client Cliente Darkcoin - + %n active connection(s) to Darkcoin network %n ligação activa à rede Darkcoin%n ligações activas à rede Darkcoin - + 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. - + Darkcoin Darkcoin - + Error Erro - + Warning Aviso - + Information Informação - + Sent transaction Transacção enviada - + Incoming transaction Transacção recebida - + Date: %1 Amount: %2 Type: %3 @@ -755,17 +765,17 @@ 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> @@ -2777,13 +2787,13 @@ https://www.transifex.com/projects/p/darkcoin/ using - + a usar anonymous funds - + fundos anónimos @@ -2793,12 +2803,12 @@ https://www.transifex.com/projects/p/darkcoin/ any available funds (not recommended) - + quaisquer fundos disponíveis (não recomendado) and InstantX - + e InstantX @@ -3906,7 +3916,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3930,247 +3940,247 @@ Também é recomendado que configure o sistema de alertas para poder ser avisado exemplo: alertnotify=echo %%s | mail -s "Alerta Darkcoin" 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. Darkcoin Core is probably already running. Não foi possível obter acesso exclusivo à pasta de dados %s. Possivelmente o Darkcoin 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. Darkcoin Core is probably already running. Não foi possível vincular a %s neste computador. Provavelmente o Darkcoin 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 DRK. 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 Darkcoin 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 Darkcoin 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. @@ -4179,1087 +4189,1087 @@ 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 - + Darkcoin Core Daemon Serviço Darkcoin Core - + Darkcoin Core RPC client version Versão do cliente RPC Darkcoin 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 - + 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 Darkcoin Erro ao carregar wallet.dat: A carteira necessita de uma versão Darkcoin 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. Darkcoin Core is shutting down. A verificação de consistência no arranque falhou. O Darkcoin 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 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 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 à Darkcoin 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 Darkcoin 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 Darkcoin Core Enviar comando para o Darkcoin 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 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 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 Darkcoin Core Daemon Iniciar o Serviço Darkcoin 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: 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 Darkcoin to complete A carteira necessita ser rescrita: reinicie o Darkcoin 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. Estado incorrecto. - + 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 1ac93a0dc5..c091883bdf 100644 --- a/src/qt/locale/darkcoin_pt_BR.ts +++ b/src/qt/locale/darkcoin_pt_BR.ts @@ -366,382 +366,392 @@ Este produto inclui software desenvolvido pelo Projeto OpenSSL para uso no OpenS - + [testnet] [testnet] - + &Overview &Visão geral - + Show general overview of wallet Mostrar visão geral da carteira - + &Send &Enviar - + Send coins to a Darkcoin address Envie moedas para um endereço Darkcoin - + &Receive &Receber - + Request payments (generates QR codes and darkcoin: URIs) Solicite pagamentos (gera códigos QR e darkcoin: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 Darkcoin Core &Sobre a Darkcoin Core - + Show information about Darkcoin Exibe informações sobre a Darkcoin - - + + About &Qt Sobre &Qt - + Show information about Qt Mostrar informações sobre o Qt - + &Options... &Opções... - + Modify configuration options for Darkcoin Modifica as opções de configuração para a Darkcoin - - + + &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 Darkcoin addresses to prove you own them Assine mensagens com seus endereços Darkcoin para provar que são de sua propriedade - + &Verify message... &Verificar mensagem... - + Verify messages to ensure they were signed with specified Darkcoin addresses Verifique mensagens para se assegurar de que foram assinadas por endereços Darkcoin 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 - + Show network monitor Exibe o monitor de rede + Open &Configuration File + + + + + Open configuration file + + + + &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 darkcoin: URI or payment request Abre um darkcoin:URI ou solicitação de pagamento - + &Command-line options Opções de linha de &comando - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options Exibe a mensagem de ajuda da Darkcoin core, para se obter uma lista com as opções de linha de comando Darkcoin possíveis - + &File &Arquivo - + &Settings &Configurações - + &Tools &Ferramentas - + &Help &Ajuda - + Tabs toolbar Barra de ferramentas - - + + Darkcoin client Cliente Darkcoin - + %n active connection(s) to Darkcoin 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 day(s) - - + + %n week(s) - + %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. - + Darkcoin Darkcoin - + Error Erro - + Warning Atenção - + Information Informação - + Sent transaction Transação enviada - + Incoming transaction Transação recebida - + Date: %1 Amount: %2 Type: %3 @@ -753,17 +763,17 @@ 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> @@ -3902,7 +3912,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3917,1334 +3927,1334 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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. Darkcoin 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 DRK. - + 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 Darkcoin 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 - + Darkcoin Core Daemon - + Darkcoin 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 - + 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 Darkcoin - + Error opening block database - + Error reading from database, shutting down. - + Error recovering public key. - + Error Erro - + 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 Informação - + Initialization sanity check failed. Darkcoin 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 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 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 Darkcoin 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 connection timeout in milliseconds (default: 5000) - + Specify data directory - + Specify masternode configuration file (default: masternode.conf) - + Specify pid file (default: darkcoind.pid) - + Specify wallet file (within data directory) - + Specify your own public address - + Spend unconfirmed change when sending transactions (default: 1) - + Start Darkcoin 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: 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 - + 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 Darkcoin to complete - + Wallet options: - + 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 diff --git a/src/qt/locale/darkcoin_ru.ts b/src/qt/locale/darkcoin_ru.ts index 286b4b20ce..a555df90d9 100644 --- a/src/qt/locale/darkcoin_ru.ts +++ b/src/qt/locale/darkcoin_ru.ts @@ -367,382 +367,392 @@ This product includes software developed by the OpenSSL Project for use in the O - + [testnet] [тестовая сеть] - + &Overview &Обзор - + Show general overview of wallet Показать общий обзор действий с бумажником - + &Send &Отправить - + Send coins to a Darkcoin address Отправить монеты на указанный адрес Darkcoin - + &Receive &Получить - + Request payments (generates QR codes and darkcoin: URIs) Запросить платежи (создать QR-коды и darkcoin: URI) - + &Transactions &Транзакции - + Browse transaction history Показать историю транзакций - + E&xit В&ыход - + Quit application Закрыть приложение - - + + &About Darkcoin Core О &Darkcoin Core - + Show information about Darkcoin Показать информацию о Darkcoin - - + + About &Qt О &Qt - + Show information about Qt Показать информацию о Qt - + &Options... &Настройки... - + Modify configuration options for Darkcoin Изменить параметры конфигурации Darkcoin - - + + &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 Darkcoin addresses to prove you own them Подписать сообщения вашими адресами Darkcoin, чтобы доказать, что вы ими владеете - + &Verify message... П&роверить сообщение... - + Verify messages to ensure they were signed with specified Darkcoin addresses Проверить сообщения, чтобы удостовериться, что они были подписаны определёнными адресами Darkcoin - + &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 darkcoin: URI or payment request Открыть darkcoin: URI или запрос платежа - + &Command-line options &Параметры командной строки - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options Показать помощь о Darkcoin Core со списком возможных параметров командной строки - + &File &Файл - + &Settings &Настройки - + &Tools &Инструменты - + &Help &Помощь - + Tabs toolbar Панель вкладок - - + + Darkcoin client Клиент Darkcoin - + %n active connection(s) to Darkcoin network %n активное соединение с сетью Darkcoin%n активных соединений с сетью Darkcoin%n активных соединений с сетью Darkcoin - + 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. Транзакции после этого времени пока видны не будут. - + Darkcoin Darkcoin - + Error Ошибка - + Warning Внимание - + Information Информация - + Sent transaction Исходящая транзакция - + Incoming transaction Входящая транзакция - + Date: %1 Amount: %2 Type: %3 @@ -755,17 +765,17 @@ Address: %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> @@ -2777,13 +2787,13 @@ https://www.transifex.com/projects/p/darkcoin/ using - + , используя anonymous funds - + анонимные средства @@ -2793,12 +2803,12 @@ https://www.transifex.com/projects/p/darkcoin/ any available funds (not recommended) - + любые доступные средства (не рекомендуется) and InstantX - + и InstantX @@ -3906,7 +3916,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3931,247 +3941,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. Darkcoin Core is probably already running. Не удалось установить блокировку на каталог данных %s. Возможно, Darkcoin 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. Darkcoin Core is probably already running. Не удалось привязаться к %s на этом компьютере. Возможно, Darkcoin 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 DRK. Не удалось обнаружить достаточных для выполнения этой транзакции неденоминированных средств, отличающихся от 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 Darkcoin will not work properly. Внимание: пожалуйста, убедитесь что дата и время на Вашем компьютере выставлены правильно! Darkcoin будет не сможет работать корректно, если часы настроены неверно. - + 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. @@ -4180,1087 +4190,1087 @@ 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 База данных блоков повреждена - + Darkcoin Core Daemon Демон Darkcoin Core - + Darkcoin Core RPC client version Версия RPC-клиента Darkcoin 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 Загрузка завершена - + 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 Darkcoin Ошибка загрузки wallet.dat: бумажник требует более новой версии Darkcoin - + 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. Darkcoin Core is shutting down. Проверка на непротиворечивость закончилась неудачно. Darkcoin 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) Держать 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 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 Darkcoin Core Отправить команду Darkcoin 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 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 wallet file (within data directory) Укажите файл бумажника (внутри каталога данных) - + Specify your own public address Укажите Ваш собственный публичный адрес - + Spend unconfirmed change when sending transactions (default: 1) Тратить неподтвержденную сдачу при отправке транзакций (по умолчанию: 1) - + Start Darkcoin Core Daemon Запустить демона Darkcoin 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: Использование: - + 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 Darkcoin to complete Необходимо перезаписать бумажник: перезапустите Darkcoin для завершения операции - + 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 повреждён, спасение данных не удалось diff --git a/src/qt/locale/darkcoin_sk.ts b/src/qt/locale/darkcoin_sk.ts index 33218a75de..b71acb6ad1 100644 --- a/src/qt/locale/darkcoin_sk.ts +++ b/src/qt/locale/darkcoin_sk.ts @@ -366,382 +366,392 @@ Tento výrobok obsahuje sofvér, ktorý vyvynul OpenSSL Project pre použitie v - + [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 Darkcoin address Poslať mince na Darkcoin adresu - + &Receive &Prijať - + Request payments (generates QR codes and darkcoin: URIs) - + &Transactions &Transakcie - + Browse transaction history Prechádzať históriu transakcií - + E&xit U&končiť - + Quit application Ukončiť program - - + + &About Darkcoin Core &O Darkcoin Core - + Show information about Darkcoin Zobraziť informácie o Darkcoin - - + + About &Qt O &Qt - + Show information about Qt Zobrazit informácie o Qt - + &Options... &Možnosti... - + Modify configuration options for Darkcoin - - + + &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 Darkcoin addresses to prove you own them - + &Verify message... Overiť správu - + Verify messages to ensure they were signed with specified Darkcoin 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 darkcoin: URI or payment request - + &Command-line options Možnosti príkazového riadku - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options - + &File &Súbor - + &Settings &Nastavenia - + &Tools &Nástroje - + &Help &Pomoc - + Tabs toolbar Lišta záložiek - - + + Darkcoin client - + %n active connection(s) to Darkcoin 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é. - + Darkcoin Darkcoin - + Error Chyba - + Warning Upozornenie - + Information Informácia - + Sent transaction Odoslané transakcie - + Incoming transaction Prijaté transakcie - + Date: %1 Amount: %2 Type: %3 @@ -753,17 +763,17 @@ 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> @@ -3902,7 +3912,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3917,1334 +3927,1334 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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. Darkcoin 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 DRK. - + 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 Darkcoin 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 - + Darkcoin Core Daemon - + Darkcoin 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 - + 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 Darkcoin Chyba pri načítaní wallet.dat: Peňaženka vyžaduje novšiu verziu Darkcoin - + 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. Darkcoin 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 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 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 Darkcoin 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 connection timeout in milliseconds (default: 5000) - + Specify data directory - + Specify masternode configuration file (default: masternode.conf) - + Specify pid file (default: darkcoind.pid) - + Specify wallet file (within data directory) - + Specify your own public address - + Spend unconfirmed change when sending transactions (default: 1) - + Start Darkcoin 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: 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 Darkcoin to complete Peňaženka potrebuje byť prepísaná: k dokončeniu reštartujte Darkcoin - + 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 diff --git a/src/qt/locale/darkcoin_sv.ts b/src/qt/locale/darkcoin_sv.ts index 299e486dbc..aa40d7dcac 100644 --- a/src/qt/locale/darkcoin_sv.ts +++ b/src/qt/locale/darkcoin_sv.ts @@ -367,382 +367,392 @@ Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användni - + [testnet] [testnet] - + &Overview &Översikt - + Show general overview of wallet Visa allmän plånboksöversikt - + &Send &Skicka - + Send coins to a Darkcoin address Skicka mynt till en Darkcoin-adress - + &Receive &Motta - + Request payments (generates QR codes and darkcoin: URIs) Begär betalningar (genererar QR-koder och Darkcoin-URI:s) - + &Transactions &Transaktioner - + Browse transaction history Bläddra i transaktionshistoriken - + E&xit A&vsluta - + Quit application Avsluta applikationen - - + + &About Darkcoin Core &Om Darkcoin Core - + Show information about Darkcoin Visa information om Darkcoin - - + + About &Qt Om &Qt - + Show information about Qt Visa information om Qt - + &Options... &Alternativ... - + Modify configuration options for Darkcoin Anpassa konfigurationsalternatv för Darkcoin - - + + &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 Darkcoin addresses to prove you own them Signera meddelanden med dina Darkcoin-adresser för att bevisa att du äger dem - + &Verify message... &Verifiera meddelande... - + Verify messages to ensure they were signed with specified Darkcoin addresses Verifiera meddelanden för att garantera att de signerades med de angivna Darkcoin-adresserna - + &Information &Information - + Show diagnostic information Visa diagnostisk information - + &Debug console &Avsökningskonsol - + Open debugging console Öpppna avsökningskonsol - + &Network Monitor &Nätverksövervakare - + Show network monitor Visa nätverksövervakare + Open &Configuration File + + + + + Open configuration file + + + + &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 använda mottagaradresser och etiketter - + Open &URI... Öppna &URI... - + Open a darkcoin: URI or payment request Öppna en Darkcoin: URI eller betalningsbegäran - + &Command-line options %Kommandoradalternativ - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options Visa Darkcoin Core-hjälpmeddelandet för att få en lista med möjliga Darkcoin-kommandoradalternativ - + &File &Fil - + &Settings &Inställningar - + &Tools &Verktyg - + &Help &Hjälp - + Tabs toolbar Verktygsfält för tabbar - - + + Darkcoin client Darkcoin-klient - + %n active connection(s) to Darkcoin network %n aktiv anslutning till Darkcoin-nätverket%n aktiva anslutningar till Darkcoin-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 från 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 sen. - + Transactions after this will not yet be visible. Transaktioner efter denna kommer inte ännu vara synliga. - + Darkcoin Darkcoin - + Error Fel - + Warning Varning - + Information Information - + Sent transaction Skickad transaktion - + Incoming transaction Inkommande transaktion - + Date: %1 Amount: %2 Type: %3 @@ -755,17 +765,17 @@ 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> @@ -3908,7 +3918,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3931,248 +3941,248 @@ admin@foo.com - + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Godtagbara chiffers (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 Ett fel inträffad vid inställning av RPC-prt %u för lyssning 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 lyssning 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 lyssna alltid på det. Använd [host]:port notation för IPv6 - + Cannot obtain a lock on data directory %s. Darkcoin Core is probably already running. Kan inte erhålla ett lås på datakatalog %s. Darkcoin 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 butes 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ängdenr för att skicka medel, du kanske måste anonymisera fler mynt. - + Disable all Masternode and Darksend related functionality (0-1, default: 0) Avaktivera alla Masternode och Darksend-relaterade funktioner (0-1, standard: 0) - + Enable instantx, show confirmations for locked transactions (bool, default: true) Aktivera instantx, visa bekräftelser för stängda transaktioner (bool, standard: true) - + Enable use of automated darksend for funds stored in this wallet (0-1, default: 0) Aktivera Darksend automatiskt (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. - + 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) Fel: Lyssnande på inkommande anslutningar misslyckades (lyssna på å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 mottagna belopp. - + Error: Wallet unlocked for anonymization only, unable to create transaction. Fel: Plånbok upplåst för anonymisering endast, kan inte skapa 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 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) Flytta databasaktivitet från minnespoolen för varje disklog <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) Hur genomarbetad blockverifieringen för -checkblocks är (0-4, standard: 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. - + Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998) Lyssna på JSON-RPC-anslutningar på <port> (standard: 9998 eller testnät: 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åliga anslutningar ska vänta före återanslutning (standard: 86400) - + Output debugging information (default: 0, supplying <category> is optional) Skriv felsökningsinformation (standard: 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) - + 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ä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 skriptverifieringstrådar (%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 processorsbegränsning för när generering är på (-1 = obegränsad, 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 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. Darkcoin Core is probably already running. Det går inte att binda till %s på denna dator. Darkcoin Core körs förmodligen redan. - + 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 DRK. - + Unable to locate enough Darksend non-denominated funds for this transaction. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Använd separat SOCKS5-proxy för att nå förbindelser via Tor dolda tjänster (standard: -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 kommer att skicka en transaktion. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Darkcoin will not work properly. Varning: Vänligen kolla så att ditt datum och din tid är korrekt! Om din klocka är fel kommer Darkcoin inte 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 minare 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 noter! Du kanske måste uppgradera, eller så måste andra noter uppgraderas. - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Varning: Fel under läsning av wallet.dat! Alla nycklar måste läsas 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 försörd, data räddad! Den ursprungliga wallet.dat är sparad som wallet.{timestamp}.bak i %; om ditt saldo eller dina transaktioner är inkorrekta bör du återskapa 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. @@ -4183,1087 +4193,1087 @@ 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. - + (default: 1) (standard: 1) - + (default: wallet.dat) (standard: wallet.dat) - + <category> can be: <category> kan vara: - + Accept command line and JSON-RPC commands Acceptera kommandolinje- och JSON-RPC-kommandon - + Accept connections from outside (default: 1 if no -proxy or -connect) Acceptera anslutningar utifrån (standard: 1 om ingen -proxy eller -connect) - + Add a node to connect to and attempt to keep the connection open Lägg till en not för att ansluta till och försök att hålla anslutningen öppen - + Allow DNS lookups for -addnode, -seednode and -connect Tillåt DNS-uppslag 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. - + Always query for peer addresses via DNS lookup (default: 0) - + Attempt to recover private keys from a corrupt wallet.dat Försök att återskapa privata nycklar från en förstörd wallet.dat - + Block creation options: Blockskapandeinställningar: - + 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 - + Darkcoin Core Daemon Darkcoin Core Daemon - + Darkcoin Core RPC client version Darkcoin Core RPC klientversion - + 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 - + 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 Darkcoin - + Error opening block database - + Error reading from database, shutting down. - + Error recovering public key. - + Error Fel - + 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 Information - + Initialization sanity check failed. Darkcoin 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 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 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 Darkcoin 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 connection timeout in milliseconds (default: 5000) - + Specify data directory - + Specify masternode configuration file (default: masternode.conf) - + Specify pid file (default: darkcoind.pid) - + Specify wallet file (within data directory) - + Specify your own public address - + Spend unconfirmed change when sending transactions (default: 1) - + Start Darkcoin 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: Användning: - + 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 Darkcoin to complete - + Wallet options: - + Warning Varning - + 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 version - + wallet.dat corrupt, salvage failed wallet.dat förstörd, återställning misslyckades diff --git a/src/qt/locale/darkcoin_tr.ts b/src/qt/locale/darkcoin_tr.ts index cd997e2f74..2aec94ef05 100644 --- a/src/qt/locale/darkcoin_tr.ts +++ b/src/qt/locale/darkcoin_tr.ts @@ -366,382 +366,392 @@ This product includes software developed by the OpenSSL Project for use in the O - + [testnet] [testnet] - + &Overview &Genel bakış - + Show general overview of wallet Cüzdana genel bakışı göster - + &Send &Gönder - + Send coins to a Darkcoin address Bir Darkcoin adresine para gönder - + &Receive &Al - + Request payments (generates QR codes and darkcoin: URIs) Ödeme iste (QR kodu ve darkcoin: URIs oluşturur) - + &Transactions &Muameleler - + Browse transaction history Muamele tarihçesini tara - + E&xit &Çık - + Quit application Uygulamadan çık - - + + &About Darkcoin Core &Darkcoin Çekirdeği Hakkında - + Show information about Darkcoin Darkcoin 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 Darkcoin Darkcoin 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 Darkcoin addresses to prove you own them Mesajları, adreslerin size ait olduğunu ispatlamak için Darkcoin adresleri ile imzala - + &Verify message... Mesaj &kontrol et... - + Verify messages to ensure they were signed with specified Darkcoin 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 darkcoin: URI or payment request - + &Command-line options &Komut satırı seçenekleri - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options - + &File &Dosya - + &Settings &Ayarlar - + &Tools &Araçlar - + &Help &Yardım - + Tabs toolbar Sekme araç çubuğu - - + + Darkcoin client Darkcoin istemcisi - + %n active connection(s) to Darkcoin 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. - + Darkcoin - + Error Hata - + Warning Uyarı - + Information Bilgi - + Sent transaction Muamele yollandı - + Incoming transaction Gelen muamele - + Date: %1 Amount: %2 Type: %3 @@ -754,17 +764,17 @@ 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> @@ -3903,7 +3913,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3918,247 +3928,247 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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. Darkcoin 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 DRK. - + 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 Darkcoin 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. @@ -4167,1087 +4177,1087 @@ 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 - + Darkcoin Core Daemon - + Darkcoin 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ı - + 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 Darkcoin - + 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. Darkcoin 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 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 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 Darkcoin 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 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 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 Darkcoin 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: 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 Darkcoin 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 diff --git a/src/qt/locale/darkcoin_vi.ts b/src/qt/locale/darkcoin_vi.ts index 97d2556b2f..b44832b725 100644 --- a/src/qt/locale/darkcoin_vi.ts +++ b/src/qt/locale/darkcoin_vi.ts @@ -367,382 +367,392 @@ Sản phẩm này bao gồm phần mềm được phát triển bởi dự án O - + [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 Darkcoin address Gửi tiền vào địa chỉ Darkcoin - + &Receive &Nhận - + Request payments (generates QR codes and darkcoin: URIs) Yêu cầu thanh toán (sinh mã QR và darkcoin: 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 Darkcoin Core &Về Darkcoin Core - + Show information about Darkcoin Hiển thị thông tin giới thiệu về Darkcoin - - + + 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 Darkcoin Thay đổi tuỳ chọn cấu hình cho Darkcoin - - + + &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 Darkcoin addresses to prove you own them Ký vào thông điệp với địa chỉ Darkcoin để 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 Darkcoin addresses Kiểm tra thông điệp để đảm bảo rằng nó đã được ký bằng địa chỉ Darkcoin 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 + + + + + Open configuration file + + + + &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 darkcoin: URI or payment request Mở một darkcoin: 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 Darkcoin Core help message to get a list with possible Darkcoin command-line options Hiển thị hướng dẫn của Darkcoin Core để có danh sách đầy đủ các tuỳ chọn dòng lệnh của Darkcoin. - + &File &Tệp - + &Settings &Thiết đặt - + &Tools &Công cụ - + &Help &Trợ giúp - + Tabs toolbar Bảng Thanh công cụ - - + + Darkcoin client Phần mềm Darkcoin - + %n active connection(s) to Darkcoin network %n (các) kết nối hoạt động tới mạng lưới Darkcoin - + 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. - + Darkcoin Darkcoin - + 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 @@ -755,17 +765,17 @@ Kiểu: %3 - + 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> @@ -2777,13 +2787,13 @@ https://www.transifex.com/projects/p/darkcoin/ using - + sử dụng anonymous funds - + các khoản tiền ẩn danh @@ -2793,12 +2803,12 @@ https://www.transifex.com/projects/p/darkcoin/ 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 @@ -3906,7 +3916,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3931,247 +3941,247 @@ ví dụ: alertnotify=echo %%s | mail -s "Cảnh báo Darkcoin" admin@ - + 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. Darkcoin Core is probably already running. Không nhận được một khoá trong thư mục %s. Darkcoin 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. Darkcoin Core is probably already running. Không thể để ràng buộc vào %s trên máy tính này. Darkcoin 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 DRK. Không tìm đủ ngân sách Darksend denominated cho giao dịch mà nó không bằng 1000 DRK - + 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 Darkcoin 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 Darkcoin 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. @@ -4180,1087 +4190,1087 @@ 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 - + Darkcoin Core Daemon Darkcoin Core Daemon - + Darkcoin Core RPC client version Phiên bản phần mềm Darkcoin 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 - + 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 Darkcoin Lỗi nạp wallet.dat: Ví cần một phiên bản mới hơn của Darkcoin - + 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. Darkcoin Core is shutting down. Khởi tạo việc kiểm tra tính đúng đắn thất bại. Darkcoin 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 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 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 Darkcoin Core Gửi lệnh đến Darkcoin 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 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 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 Darkcoin Core Daemon Khởi động Darkcoin 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: 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 Darkcoin to complete Ví cần được ghi lại: khởi động lại Darkcoin để 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. Tình trạng sai. - + 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 c98a555b05..595e868edb 100644 --- a/src/qt/locale/darkcoin_zh_CN.ts +++ b/src/qt/locale/darkcoin_zh_CN.ts @@ -366,382 +366,392 @@ This product includes software developed by the OpenSSL Project for use in the O - + [testnet] [测试网络] - + &Overview 概况(&O) - + Show general overview of wallet 显示钱包概况 - + &Send 发送(&S) - + Send coins to a Darkcoin address 向暗黑币地址发送 - + &Receive 接收(&R) - + Request payments (generates QR codes and darkcoin: URIs) 请求付款(产生QR码以及暗黑币:URIs) - + &Transactions 交易记录(&T) - + Browse transaction history 查看交易历史 - + E&xit 退出(&X) - + Quit application 退出程序 - - + + &About Darkcoin Core 关于暗黑币内核(&A) - + Show information about Darkcoin 显示关于暗黑币的信息 - - + + About &Qt 关于 &Qt - + Show information about Qt 显示 Qt 相关信息 - + &Options... 选项(&O)... - + Modify configuration options for Darkcoin 更改暗黑币设置 - - + + &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 Darkcoin addresses to prove you own them 使用您的暗黑币地址进行消息签名以证明对此地址的所有权 - + &Verify message... 验证消息(&V)... - + Verify messages to ensure they were signed with specified Darkcoin 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 darkcoin: URI or payment request 打开一个暗黑币:URI或者付款请求 - + &Command-line options &命令行 选项 - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options 显示暗黑币内核帮助信息并以列表形式展示可用的暗黑币命令行选项 - + &File 文件(&F) - + &Settings 设置(&S) - + &Tools 工具(&T) - + &Help 帮助(&H) - + Tabs toolbar 分页工具栏 - - + + Darkcoin client 暗黑币客户端 - + %n active connection(s) to Darkcoin 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. 在此之后的交易尚未可见 - + Darkcoin 暗黑币 - + Error 错误 - + Warning 警告 - + Information 信息 - + Sent transaction 发送交易 - + Incoming transaction 流入交易 - + Date: %1 Amount: %2 Type: %3 @@ -754,17 +764,17 @@ Address: %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>状态 @@ -3905,7 +3915,7 @@ https://www.transifex.com/projects/p/darkcoin/ darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3920,1334 +3930,1334 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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. Darkcoin 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 DRK. - + 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 Darkcoin 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 - + Darkcoin Core Daemon - + Darkcoin 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 - + 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 Darkcoin - + 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. Darkcoin 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 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 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 Darkcoin 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 connection timeout in milliseconds (default: 5000) - + Specify data directory - + Specify masternode configuration file (default: masternode.conf) - + Specify pid file (default: darkcoind.pid) - + Specify wallet file (within data directory) - + Specify your own public address - + Spend unconfirmed change when sending transactions (default: 1) - + Start Darkcoin 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: 使用: - + 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 Darkcoin 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 diff --git a/src/qt/locale/darkcoin_zh_HK.ts b/src/qt/locale/darkcoin_zh_HK.ts index 09644fdd1e..de87bb2339 100644 --- a/src/qt/locale/darkcoin_zh_HK.ts +++ b/src/qt/locale/darkcoin_zh_HK.ts @@ -369,382 +369,392 @@ This product includes software developed by the OpenSSL Project for use in the O - + [testnet] [testnet] - + &Overview 總覽 - + Show general overview of wallet 顯示錢包一般總覽 - + &Send 付款 - + Send coins to a Darkcoin address 發送幣至暗黑幣地址 - + &Receive 收款 - + Request payments (generates QR codes and darkcoin: URIs) 要求付款(生成二維碼和暗黑幣付款協議的 URI) - + &Transactions 交易 - + Browse transaction history 瀏覽交易紀錄 - + E&xit 結束 - + Quit application 結束應用程式 - - + + &About Darkcoin Core 關於暗黑幣核心 - + Show information about Darkcoin 顯示暗黑幣的相關資訊 - - + + About &Qt 關於 &Qt - + Show information about Qt 顯示 Qt 相關資訊 - + &Options... 選項... - + Modify configuration options for Darkcoin 修改暗黑幣配置選項 - - + + &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 Darkcoin addresses to prove you own them 用暗黑幣位址簽署訊息來證明位址是你的 - + &Verify message... 驗證訊息... - + Verify messages to ensure they were signed with specified Darkcoin 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 darkcoin: URI or payment request 打開暗黑幣:網頁或付款請求 - + &Command-line options 命令列選項 - + Show the Darkcoin Core help message to get a list with possible Darkcoin command-line options 打開暗黑幣核心的幫助信息以取得可使用的命令行列表 - + &File 檔案 - + &Settings 設定 - + &Tools 工具 - + &Help 說明 - + Tabs toolbar 分頁工具列 - - + + Darkcoin client 暗黑幣客戶端 - + %n active connection(s) to Darkcoin 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. 暫時會看不到在這之後的交易。 - + Darkcoin 暗黑幣 - + Error 錯誤 - + Warning 警告 - + Information 資訊 - + Sent transaction 付款交易 - + Incoming transaction 收款交易 - + Date: %1 Amount: %2 Type: %3 @@ -757,17 +767,17 @@ Address: %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> @@ -3910,7 +3920,7 @@ XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg) darkcoin-core - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3925,1334 +3935,1334 @@ for example: alertnotify=echo %%s | mail -s "Darkcoin Alert" admin@foo - + 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. Darkcoin 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) - + 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) - + 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. Darkcoin 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 DRK. - + 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. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Darkcoin 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. - + 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) - + 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 發現區塊資料庫壞掉了 - + Darkcoin Core Daemon - + Darkcoin Core RPC client version 暗黑幣核心RPC客戶端版本 - + 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) 找出自己的網際網路位址(預設值: 當有聽候連線且沒有 -externalip 時為 1) - + Do not load the wallet and disable wallet RPC calls 不要載入錢包,並且拿掉錢包相關的 RPC 功能請求。 - + Do you want to rebuild the block database now? 你想要現在重建區塊資料庫嗎? - + Done loading 載入完成 - + 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 Darkcoin 載入檔案 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. - + 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. Darkcoin 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 key for AES encrypted communication with KeePass - + Keep N darkcoin 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) 在通訊埠 <port> 聽候連線(預設值: 9999, 或若為測試網路: 19999) - + Loading addresses... 正在載入位址資料... - + Loading block index... 正在載入區塊索引... - + 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或 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) - + 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 Darkcoin 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) 設定區塊大小上限成多少位元組(預設值: %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) 顯示基準信息 (預設值 : 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) 指定設定檔(預設值: %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 wallet file (within data directory) 指定錢包文件 (在數據目錄內) - + Specify your own public address 指定自己的公開位址 - + Spend unconfirmed change when sending transactions (default: 1) 發送交易時花費未確認的費用(預設: 1) - + Start Darkcoin 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: 用法: - + 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) 協定來設定對應的服務連接埠 - + 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 Darkcoin to complete 錢包需要重新改寫:請重啟Darkcoin來完​​成過程 - + 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 損壞,恢復失敗 diff --git a/src/qt/notificator.h b/src/qt/notificator.h index abab986992..83de7a6702 100644 --- a/src/qt/notificator.h +++ b/src/qt/notificator.h @@ -6,7 +6,7 @@ #define NOTIFICATOR_H #if defined(HAVE_CONFIG_H) -#include "bitcoin-config.h" +#include "darkcoin-config.h" #endif #include diff --git a/src/qt/optionsdialog.cpp b/src/qt/optionsdialog.cpp index 46e60c372d..5ee033921a 100644 --- 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 "bitcoin-config.h" +#include "darkcoin-config.h" #endif #include "optionsdialog.h" diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp index e82b6e8849..96276d3b4f 100644 --- 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 "bitcoin-config.h" +#include "darkcoin-config.h" #endif #include "optionsmodel.h" diff --git a/src/qt/receiverequestdialog.cpp b/src/qt/receiverequestdialog.cpp index 062638f2bc..b6be756e73 100644 --- a/src/qt/receiverequestdialog.cpp +++ b/src/qt/receiverequestdialog.cpp @@ -22,7 +22,7 @@ #endif #if defined(HAVE_CONFIG_H) -#include "bitcoin-config.h" /* for USE_QRCODE */ +#include "darkcoin-config.h" /* for USE_QRCODE */ #endif #ifdef USE_QRCODE diff --git a/src/qt/res/bitcoin-qt-res.rc b/src/qt/res/darkcoin-qt-res.rc similarity index 97% rename from src/qt/res/bitcoin-qt-res.rc rename to src/qt/res/darkcoin-qt-res.rc index cbbfac1a2e..da8535eff2 100644 --- a/src/qt/res/bitcoin-qt-res.rc +++ b/src/qt/res/darkcoin-qt-res.rc @@ -8,7 +8,7 @@ IDI_ICON2 ICON DISCARDABLE "icons/bitcoin_testnet.ico" #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 developers" +#define COPYRIGHT_STR "2009-" STRINGIZE(COPYRIGHT_YEAR) " The Bitcoin and Darkcoin developers" VS_VERSION_INFO VERSIONINFO FILEVERSION VER_FILEVERSION diff --git a/src/qt/test/test_main.cpp b/src/qt/test/test_main.cpp index a2adb00327..6f42c314c5 100644 --- a/src/qt/test/test_main.cpp +++ b/src/qt/test/test_main.cpp @@ -1,6 +1,6 @@ -#include "bitcoin-config.h" +#include "darkcoin-config.h" #if defined(HAVE_CONFIG_H) -#include "bitcoin-config.h" +#include "darkcoin-config.h" #endif #ifdef ENABLE_WALLET diff --git a/src/util.h b/src/util.h index 72f1f76a83..c11176911d 100644 --- a/src/util.h +++ b/src/util.h @@ -8,7 +8,7 @@ #define BITCOIN_UTIL_H #if defined(HAVE_CONFIG_H) -#include "bitcoin-config.h" +#include "darkcoin-config.h" #endif #include "compat.h"