diff --git a/.gitignore b/.gitignore index fc21fc9bd..93c5516fd 100644 --- a/.gitignore +++ b/.gitignore @@ -34,6 +34,7 @@ src/qt/test/moc*.cpp *.rej *.orig *.o +*.o-* *.patch .dogecoin *.a diff --git a/.travis.yml b/.travis.yml index 0dc3e5473..7b6adc0db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,7 @@ before_install: - sudo apt-get update -qq - sudo apt-get install build-essential libtool autotools-dev autoconf libssl-dev pkg-config ccache - sudo apt-get install libboost1.48-dev libboost-chrono1.48-dev libboost-filesystem1.48-dev libboost-program-options1.48-dev libboost-system1.48-dev libboost-test1.48-dev libboost-thread1.48-dev - - sudo apt-get install libdb++-dev + - sudo apt-get install libdb++-dev bc dc - sudo apt-get install libqt4-dev - sudo apt-get install libprotobuf-dev protobuf-compiler - mkdir $HOME/.ccache @@ -17,6 +17,10 @@ script: - CFLAGS="-O1" CXXFLAGS="-O1" ./configure - make -j 2 - make check + - qa/rpc-tests/conflictedbalance.sh src + - qa/rpc-tests/txnmall.sh src + - qa/rpc-tests/wallet.sh src + - qa/rpc-tests/walletbackup.sh src - make clean - CFLAGS="-O1" CXXFLAGS="-O1" ./configure --disable-wallet - make -j 2 diff --git a/.tx/config b/.tx/config new file mode 100644 index 000000000..655379de7 --- /dev/null +++ b/.tx/config @@ -0,0 +1,7 @@ +[main] +host = https://www.transifex.com + +[bitcoin.tx] +file_filter = src/qt/locale/bitcoin_.ts +source_file = src/qt/locale/bitcoin_en.ts +source_lang = en diff --git a/COPYING b/COPYING index c410baa6a..8dfcea81a 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,5 @@ Copyright (c) 2009-2013 Bitcoin Developers +Copyright (c) 2013-2014 Dogecoin Developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/INSTALL b/INSTALL index 07ee48427..57b52af46 100644 --- a/INSTALL +++ b/INSTALL @@ -1,5 +1,5 @@ -Building Bitcoin +Building Dogecoin -See doc/build-*.md for instructions on building bitcoind, +See doc/build-*.md for instructions on building dogecoind, the intended-for-services, no-graphical-interface, reference -implementation of Bitcoin. \ No newline at end of file +implementation of Dogecoin. diff --git a/Makefile.am b/Makefile.am index 21813ce95..c4a00f630 100644 --- a/Makefile.am +++ b/Makefile.am @@ -25,7 +25,8 @@ WINDOWS_PACKAGING = $(top_srcdir)/share/pixmaps/bitcoin.ico \ $(top_srcdir)/doc/README_windows.txt OSX_PACKAGING = $(OSX_DEPLOY_SCRIPT) $(OSX_FANCY_PLIST) $(OSX_INSTALLER_ICONS) \ - $(top_srcdir)/contrib/macdeploy/background.png + $(top_srcdir)/contrib/macdeploy/background.png \ + $(top_srcdir)/contrib/macdeploy/DS_Store COVERAGE_INFO = baseline_filtered_combined.info baseline.info block_test.info \ leveldb_baseline.info test_bitcoin_filtered.info total_coverage.info \ @@ -46,9 +47,9 @@ distcleancheck: $(BITCOIN_WIN_INSTALLER): $(BITCOIND_BIN) $(BITCOIN_QT_BIN) $(BITCOIN_CLI_BIN) $(MKDIR_P) $(top_builddir)/release - $(INSTALL_STRIP_PROGRAM) $(BITCOIND_BIN) $(top_builddir)/release - $(INSTALL_STRIP_PROGRAM) $(BITCOIN_QT_BIN) $(top_builddir)/release - $(INSTALL_STRIP_PROGRAM) $(BITCOIN_CLI_BIN) $(top_builddir)/release + STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIND_BIN) $(top_builddir)/release + STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIN_QT_BIN) $(top_builddir)/release + STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIN_CLI_BIN) $(top_builddir)/release @test -f $(MAKENSIS) && $(MAKENSIS) $(top_builddir)/share/setup.nsi || \ echo error: could not build $@ @@ -65,23 +66,33 @@ $(OSX_APP)/Contents/Resources/empty.lproj: $(OSX_APP)/Contents/Info.plist: $(OSX_PLIST) $(MKDIR_P) $(@D) - $(INSTALL) $< $@ + $(INSTALL_DATA) $< $@ $(OSX_APP)/Contents/Resources/bitcoin.icns: $(OSX_INSTALLER_ICONS) $(MKDIR_P) $(@D) - $(INSTALL) $< $@ + $(INSTALL_DATA) $< $@ $(OSX_APP)/Contents/MacOS/Dogecoin-Qt: $(BITCOIN_QT_BIN) $(MKDIR_P) $(@D) - $(INSTALL_STRIP_PROGRAM) $< $@ + STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $< $@ OSX_APP_BUILT=$(OSX_APP)/Contents/PkgInfo $(OSX_APP)/Contents/Resources/empty.lproj \ $(OSX_APP)/Contents/Resources/bitcoin.icns $(OSX_APP)/Contents/Info.plist \ $(OSX_APP)/Contents/MacOS/Dogecoin-Qt +if BUILD_DARWIN $(OSX_DMG): $(OSX_APP_BUILT) $(OSX_PACKAGING) $(OSX_DEPLOY_SCRIPT) $(OSX_APP) -add-qt-tr $(OSX_QT_TRANSLATIONS) -dmg -fancy $(OSX_FANCY_PLIST) -verbose 2 +else +$(OSX_DMG): $(OSX_APP_BUILT) $(OSX_PACKAGING) + INSTALLNAMETOOL=$(INSTALLNAMETOOL) OTOOL=$(OTOOL) STRIP=$(STRIP) $(OSX_DEPLOY_SCRIPT) $(OSX_APP) -add-qt-tr $(OSX_QT_TRANSLATIONS) -verbose 2 + $(MKDIR_P) dist/.background + $(INSTALL) contrib/macdeploy/background.png dist/.background + $(INSTALL) contrib/macdeploy/DS_Store dist/.DS_Store + cd dist; $(LN_S) /Applications Applications + $(GENISOIMAGE) -no-cache-inodes -l -probe -V "Dogecoin-Qt" -no-pad -r -apple -o $@ dist +endif if TARGET_DARWIN appbundle: $(OSX_APP_BUILT) @@ -158,11 +169,11 @@ check-local: @qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool $(COMPARISON_TOOL_REORG_TESTS) endif -EXTRA_DIST = $(top_srcdir)/share/genbuild.sh qa/pull-tester/pull-tester.sh $(DIST_DOCS) $(WINDOWS_PACKAGING) $(OSX_PACKAGING) +EXTRA_DIST = $(top_srcdir)/share/genbuild.sh qa/pull-tester/pull-tester.sh qa/rpc-tests $(DIST_DOCS) $(WINDOWS_PACKAGING) $(OSX_PACKAGING) -CLEANFILES = $(OSX_DMG) $(OSX_APP) $(BITCOIN_WIN_INSTALLER) +CLEANFILES = $(OSX_DMG) $(BITCOIN_WIN_INSTALLER) .INTERMEDIATE: $(COVERAGE_INFO) clean-local: - rm -rf test_bitcoin.coverage/ total.coverage/ + rm -rf test_bitcoin.coverage/ total.coverage/ $(OSX_APP) diff --git a/README.md b/README.md index ebdb1583d..1bd7f930d 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ![Dogecoin](http://static.tumblr.com/ppdj5y9/Ae9mxmxtp/300coin.png) -[![Build Status](https://travis-ci.org/dogecoin/dogecoin.svg?branch=1.7-dev)](https://travis-ci.org/dogecoin/dogecoin) +[![Build Status](https://travis-ci.org/dogecoin/dogecoin.svg?branch=1.7-dev)](https://travis-ci.org/dogecoin/dogecoin) [![tip for next commit](https://tip4commit.com/projects/702.svg)](https://tip4commit.com/github/dogecoin/dogecoin) ## What is Dogecoin? – Such coin Dogecoin is a cryptocurrency like Bitcoin, although it does not use SHA256 as its proof of work (POW). Taking development cues from Tenebrix and Litecoin, Dogecoin currently employs a simplified variant of scrypt. @@ -17,6 +17,18 @@ for more information or see http://opensource.org/licenses/MIT. ## Development and contributions – omg developers Development is ongoing and the development team as well as other volunteers can freely work in their own trees and submit pull requests when features or bug fixes are ready. +#### Version strategy +Version numbers are following ```major.minor.patch``` semantics. + +#### Branches +There are 3 types of branches in this repository: + +- **master:** Stable, contains the latest version of the latest *major.minor* release. +- **maintenance:** Stable, contains the latest version of previous releases, which are still under active maintenance. Format: ```-maint``` +- **development:** Unstable, contains new code for planned releases. Format: ```-dev``` + +*Master and maintenance branches are exclusively mutable by release. Planned releases will always have a development branch and pull requests should be submitted against those. Maintenance branches are there for* ***bug fixes only,*** *please submit new features against the development branch with the highest version.* + ## Very Much Frequently Asked Questions ### How much doge can exist? – So many puppies! @@ -75,3 +87,50 @@ RPC 22555 P2P 22556 ![](http://dogesay.com/wow//////such/coin) + +Translations +------------ + +Changes to translations as well as new translations can be submitted to +[Bitcoin Core's Transifex page](https://www.transifex.com/projects/p/bitcoin/). + +Periodically the translations are pulled from Transifex and merged into the git repository. See the +[translation process](doc/translation_process.md) for details on how this works. + +If the changes are Dogecoin specific, they can be submitted as pull request against this repository. +If it is a general translation, consider submitting it through upstream, as we will pull these changes later on. + +Development tips and tricks +--------------------------- + +**compiling for debugging** + +Run configure with the --enable-debug option, then make. Or run configure with +CXXFLAGS="-g -ggdb -O0" or whatever debug flags you need. + +**debug.log** + +If the code is behaving strangely, take a look in the debug.log file in the data directory; +error and debugging message are written there. + +The -debug=... command-line option controls debugging; running with just -debug will turn +on all categories (and give you a very large debug.log file). + +The Qt code routes qDebug() output to debug.log under category "qt": run with -debug=qt +to see it. + +**testnet and regtest modes** + +Run with the -testnet option to run with "play dogecoins" on the test network, if you +are testing multi-machine code that needs to operate across the internet. + +If you are testing something that can run on one machine, run with the -regtest option. +In regression test mode blocks can be created on-demand; see qa/rpc-tests/ for tests +that run in -regest mode. + +**DEBUG_LOCKORDER** + +Dogecoin Core is a multithreaded application, and deadlocks or other multithreading bugs +can be very difficult to track down. Compiling with -DDEBUG_LOCKORDER (configure +CXXFLAGS="-DDEBUG_LOCKORDER -g") inserts run-time checks to keep track of what locks +are held, and adds warning to the debug.log file if inconsistencies are detected. diff --git a/RELEASE_NOTES_1_8.md b/RELEASE_NOTES_1_8.md new file mode 100644 index 000000000..a54efd0cd --- /dev/null +++ b/RELEASE_NOTES_1_8.md @@ -0,0 +1,99 @@ +# Dogecoin Core 1.8 +=================== + +Dogecoin Core 1.8 introduces AuxPoW from block 371,337. AuxPoW is a technology +which enables miners to submit work done while mining other coins, as work +on the Dogecoin block chain. Dogecoin Core 1.8 also enables payment protocol +support for Dogecoin (note that Dogecoin's implementation of payment protocol is +not compatible with Bitcoin's protocol). Lastly, 1.8 also includes all fixes +from Bitcoin Core 0.9.2, whose release notes you can read at +https://bitcoin.org/en/release/v0.9.2 (this is a summary, and the release includes +around 150 bugfixes from Bitcoin Core). + +Note that all users MUST upgrade to 1.8. If you're unable to update before the +switchover block (371,337, expected around 12 September 2014), you MUST update +as soon as possible afterwards in order to be able to continue to use Dogecoin. +Users remaining on the previous client **will not** be able to receive or spend +Dogecoin (with the exception of with other nodes who have not upgraded). + +## Upgrading + +Before upgrading, back up your wallet.dat file just in case of any problems; you +can back up the wallet.dat file by using the "Backup Wallet" option from the "File" +menu. Ensure your existing wallet software is closed before upgrading. + +Note that a full reindex is required as part of the upgrade to 1.8, and this +will typically take around an hour to complete. If you are running the Qt client +you will be prompted to reindex when first running the software, while if you +use "dogecoind" you must run it the first time with the "-reindex" command line +option. + +To ensure a smooth switchover to AuxPoW, 1.8 has safe mode disabled 1 hour before +until 24 hours after the switch block. This ensures the actually legit fork will not +trigger safe mode and halt mining. If you don't want to have this behavior, then +refer to the 1.8-safemode branch. This one doesn't include the patch to disable safe mode. + +## Downgrading + +As 1.8 includes a substantial change to the mining protocol, downgrading to previous +clients is not possible. + +## AuxPoW + +AuxPoW is enabled from block 371,337. Until that block the RPC commands for using AuxPoW +will not function, and AuxPoW blocks will be rejected. + +AuxPoW benefits Dogecoin in two ways; firstly, the effective hashrate of the coin is +increased by these additional miners, making it harder to perform a 51% attack against +the coin, and secondly it reduces conflict for resources (Scrypt miners), demotivating +multipools from switching between Dogecoin and other Scrypt coins. + +AuxPoW blocks are mined using the "getauxblock" and "getworkaux" RPC commands. Support +for AuxPoW mining is included in Powerpool ( https://github.com/simplecrypto/powerpool/ ) +and p2pool ( http://p2pool.in/ ). + +In comparison to the AuxPoW implementation in United Scrypt Coin, Dogecoin uses a +different coinbase transaction input script format which includes block height in +compliance with BIP0034. + +## Payment Protocol + +Dogecoin Core 1.8 adds payment protocol support, which is used to streamline payments +being made to merchants. + +This protocol is defined in DIP0070-DIP0072, based on the BIP standards with the same +assigned numbers. DIP standards can be found at https://github.com/dogecoin/dips/ . +The key differencs between the Bitcoin and Dogecoin payment protocols are that +the Dogecoin payment request uses a "genesis" field containing the hash of the network's +genesis block to identify networks instead of the "network" field. Further, MIME types +for the request, payment and response are modified to identify the files as distinct +types from the Bitcoin files. + +## Transaction Fees + +As of 1.8 all transactions have fees applied by defaults, with no exemptions made for +"old" coins. This ensures fees are consistent, while remaining extremely competitive +(typically 1 Doge, or around $0.00012 per transaction). + +## RPC Allow IP + +The format of IP masks supplied to the "rpcallowip" command line option has changed. +It no longer accepts subnets like '192.168.*.*', and the format '192.168/16" should +be used instead. + +## Other Changes + +The Chinese and Korean translations have been updated. + +Protocol version has been updated to 70003, meaning that a later release of the client +can block access to all old clients (70002 and below). + +In case of an error reading the block database from disk, the database cursor could be +left open, which caused an assertion error later. The database cursor is now correctly +disposed of in all cases. + +Tweaked trigger conditions for safe mode to take into account the much faster block time +of Dogecoin compared to Bitcoin. This should lead to less false positives. + +A problem in parsing mangled dogecoin: URIs under Windows has been resolved, and as +part of this work network detection for dogecoin: URIs is now more robust. diff --git a/configure.ac b/configure.ac index 2e1d4bbc3..6704f16cf 100644 --- a/configure.ac +++ b/configure.ac @@ -1,8 +1,8 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N) AC_PREREQ([2.60]) define(_CLIENT_VERSION_MAJOR, 1) -define(_CLIENT_VERSION_MINOR, 7) -define(_CLIENT_VERSION_REVISION, 1) +define(_CLIENT_VERSION_MINOR, 8) +define(_CLIENT_VERSION_REVISION, 0) define(_CLIENT_VERSION_BUILD, 0) define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2014) @@ -62,13 +62,6 @@ AC_ARG_ENABLE([upnp-default], [use_upnp_default=$enableval], [use_upnp_default=no]) -dnl enable ipv6 support -AC_ARG_ENABLE([ipv6], - [AS_HELP_STRING([--enable-ipv6], - [enable ipv6 (default is yes)])], - [use_ipv6=$enableval], - [use_ipv6=yes]) - AC_ARG_ENABLE(tests, AS_HELP_STRING([--enable-tests],[compile tests (default is yes)]), [use_tests=$enableval], @@ -108,6 +101,12 @@ AC_ARG_ENABLE([lcov], [use_lcov=yes], [use_lcov=no]) +AC_ARG_ENABLE([glibc-back-compat], + [AS_HELP_STRING([--enable-glibc-back-compat], + [enable backwards compatibility with glibc and libstdc++])], + [use_glibc_compat=$enableval], + [use_glibc_compat=no]) + AC_ARG_WITH([protoc-bindir],[AS_HELP_STRING([--with-protoc-bindir=BIN_DIR],[specify protoc bin path])], [protoc_bin_path=$withval], []) @@ -121,6 +120,7 @@ AC_PROG_CPP AC_PROG_CXXCPP AC_PROG_INSTALL AC_PROG_OBJC +AC_PROG_LN_S m4_ifdef([AC_PROG_OBJCXX],[AC_PROG_OBJCXX]) AC_PROG_MKDIR_P AC_PROG_SED @@ -222,6 +222,7 @@ case $host in TARGET_OS=darwin LEVELDB_TARGET_FLAGS="TARGET_OS=Darwin" if test x$cross_compiling != xyes; then + BUILD_OS=darwin AC_CHECK_PROG([PORT],port, port) if test x$PORT = xport; then dnl add default macports paths @@ -238,6 +239,17 @@ case $host in CPPFLAGS="$CPPFLAGS -I$bdb_prefix/include" LIBS="$LIBS -L$bdb_prefix/lib" fi + else + case $build_os in + *darwin*) + BUILD_OS=darwin + ;; + *) + AC_PATH_TOOL([INSTALLNAMETOOL], [install_name_tool], install_name_tool) + AC_PATH_TOOL([OTOOL], [otool], otool) + AC_PATH_PROGS([GENISOIMAGE], [genisoimage mkisofs],genisoimage) + ;; + esac fi CPPFLAGS="$CPPFLAGS -DMAC_OSX" @@ -291,6 +303,8 @@ INCLUDES="$INCLUDES $PTHREAD_CFLAGS" # 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 +# detect POSIX or GNU variant of strerror_r +AC_FUNC_STRERROR_R if test x$ac_cv_sys_file_offset_bits != x && test x$ac_cv_sys_file_offset_bits != xno && @@ -306,6 +320,21 @@ fi AX_CHECK_LINK_FLAG([[-Wl,--large-address-aware]], [LDFLAGS="$LDFLAGS -Wl,--large-address-aware"]) +if test x$use_glibc_compat != xno; then + + #__fdelt_chk's params and return type have changed from long unsigned int to long int. + # See which one is present here. + AC_MSG_CHECKING(__fdelt_chk type) + AC_TRY_COMPILE([#define __USE_FORTIFY_LEVEL 2 + #include + extern "C" long unsigned int __fdelt_warn(long unsigned int);],[], + [ fdelt_type="long unsigned int"], + [ fdelt_type="long int"]) + AC_MSG_RESULT($fdelt_type) + AC_DEFINE_UNQUOTED(FDELT_TYPE, $fdelt_type,[parameter and return value type for __fdelt_chk]) + +fi + if test x$use_hardening != xno; then AX_CHECK_COMPILE_FLAG([-Wstack-protector],[HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -Wstack-protector"]) AX_CHECK_COMPILE_FLAG([-fstack-protector-all],[HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fstack-protector-all"]) @@ -526,27 +555,6 @@ AC_MSG_RESULT($build_bitcoin_cli) dnl sets $bitcoin_enable_qt, $bitcoin_enable_qt_test, $bitcoin_enable_qt_dbus BITCOIN_QT_CONFIGURE([$use_pkgconfig], [qt4]) - -if test x$use_ipv6 = xyes; then - dnl Check for ipv6 build requirements - AC_MSG_CHECKING(for operating system IPv6 support) - AC_TRY_LINK([ - #if defined(_WINDOWS) - #include - #else - #include - #include - #include - #endif - ],[ - #if !defined(_WINDOWS) - struct in6_addr ipv6Addr; - struct sockaddr_in6 addr; - #endif - int temp = socket(AF_INET6, SOCK_STREAM, 0);], - [AC_MSG_RESULT(yes); have_ipv6=yes; AC_DEFINE(HAVE_IPV6, 1, [Define this symbol if you have operating system IPv6 support])], - [AC_MSG_RESULT(no)]; have_ipv6=no) -fi AC_LANG_POP if test "x$use_ccache" != "xno"; then @@ -575,22 +583,6 @@ else AC_MSG_RESULT(no) fi -dnl enable ipv6 support -AC_MSG_CHECKING([whether to build with support for IPv6]) -if test x$have_ipv6 = xno; then - if test x$use_ipv6 = xyes; then - AC_MSG_ERROR([IPv6 requested, but cannot be built. use --disable-ipv6]) - fi - AC_MSG_RESULT(no) -else - if test x$use_ipv6 = xyes; then - AC_MSG_RESULT(yes) - AC_DEFINE([USE_IPV6],[1],[Define if IPv6 support should be compiled in]) - else - AC_MSG_RESULT(no) - fi -fi - dnl enable upnp support AC_MSG_CHECKING([whether to build with support for UPnP]) if test x$have_miniupnpc = xno; then @@ -671,12 +663,14 @@ if test "x$use_tests$build_dogecoind$use_qt" = "xnonono"; then fi AM_CONDITIONAL([TARGET_DARWIN], [test x$TARGET_OS = xdarwin]) +AM_CONDITIONAL([BUILD_DARWIN], [test x$BUILD_OS = xdarwin]) AM_CONDITIONAL([TARGET_WINDOWS], [test x$TARGET_OS = xwindows]) AM_CONDITIONAL([ENABLE_WALLET],[test x$enable_wallet == xyes]) AM_CONDITIONAL([USE_QRCODE], [test x$use_qr = xyes]) AM_CONDITIONAL([USE_LCOV],[test x$use_lcov == xyes]) AM_CONDITIONAL([USE_COMPARISON_TOOL],[test x$use_comparison_tool != xno]) AM_CONDITIONAL([USE_COMPARISON_TOOL_REORG_TESTS],[test x$use_comparison_tool_reorg_test != xno]) +AM_CONDITIONAL([GLIBC_BACK_COMPAT],[test x$use_glibc_compat = xyes]) AC_DEFINE(CLIENT_VERSION_MAJOR, _CLIENT_VERSION_MAJOR, [Major version]) AC_DEFINE(CLIENT_VERSION_MINOR, _CLIENT_VERSION_MINOR, [Minor version]) @@ -694,7 +688,6 @@ AC_SUBST(COPYRIGHT_YEAR, _COPYRIGHT_YEAR) AC_SUBST(USE_UPNP) AC_SUBST(USE_QRCODE) -AC_SUBST(USE_IPV6) AC_SUBST(INCLUDES) AC_SUBST(BOOST_LIBS) AC_SUBST(TESTDEFS) diff --git a/contrib/README.md b/contrib/README.md index cd0dd3b02..bfc3a6498 100644 --- a/contrib/README.md +++ b/contrib/README.md @@ -1,27 +1,41 @@ -Python Tools +Wallet Tools --------------------- ### [BitRPC](/contrib/bitrpc) ### -Allows for sending of all standard Bitcoin commands via RPC rather than as command line args. - -### [PyMiner](/contrib/pyminer) ### - -This is a 'getwork' CPU mining client for Bitcoin. It is pure-python, and therefore very, very slow. The purpose is to provide a reference implementation of a miner, for study. +Allows for sending of all standard Dogecoin commands via RPC rather than as command line args. ### [SpendFrom](/contrib/spendfrom) ### Use the raw transactions API to send coins received on a particular address (or addresses). -### WalletTools -Removed. Please see [/contrib/bitrpc](/contrib/bitrpc). - Repository Tools --------------------- +### [Developer tools](/contrib/devtools) ### +Specific tools for developers working on this repository. +Contains the script `github-merge.sh` for merging github pull requests securely and signing them using GPG. + +### [Linearize](/contrib/linearize) ### +Construct a linear, no-fork, best version of the blockchain. + +### [PyMiner](/contrib/pyminer) ### + +This is a 'getwork' CPU mining client for Dogecoin. It is pure-python, and therefore very, very slow. The purpose is to provide a reference implementation of a miner, for study. + +### [Qos](/contrib/qos) ### + +A Linux bash script that will set up tc to limit the outgoing bandwidth for connections to the Dogecoin network. This means one can have an always-on bitcoind instance running, and another local dogecoind/dogecoin-qt instance which connects to this node and receives blocks from it. + +### [Seeds](/contrib/seeds) ### +Utility to generate the pnSeed[] array that is compiled into the client. + +Build Tools and Keys +--------------------- + ### [Debian](/contrib/debian) ### -Contains files used to package bitcoind/bitcoin-qt -for Debian-based Linux systems. If you compile bitcoind/bitcoin-qt yourself, there are some useful files here. +Contains files used to package dogecoind/dogecoin-qt +for Debian-based Linux systems. If you compile dogecoind/dogecoin-qt yourself, there are some useful files here. ### [Gitian-descriptors](/contrib/gitian-descriptors) ### Gavin's notes on getting gitian builds up and running using KVM. @@ -29,18 +43,11 @@ Gavin's notes on getting gitian builds up and running using KVM. ### [Gitian-downloader](/contrib/gitian-downloader) Various PGP files of core developers. -### [Linearize](/contrib/linearize) ### -Construct a linear, no-fork, best version of the blockchain. - ### [MacDeploy](/contrib/macdeploy) ### Scripts and notes for Mac builds. -### [Qos](/contrib/qos) ### - -A Linux bash script that will set up tc to limit the outgoing bandwidth for connections to the Bitcoin network. This means one can have an always-on bitcoind instance running, and another local bitcoind/bitcoin-qt instance which connects to this node and receives blocks from it. - -### [Seeds](/contrib/seeds) ### -Utility to generate the pnSeed[] array that is compiled into the client. +Test and Verify Tools +--------------------- ### [TestGen](/contrib/testgen) ### Utilities to generate test vectors for the data-driven Bitcoin tests. @@ -51,8 +58,3 @@ tests each pull and when master is tested using jenkins. ### [Verify SF Binaries](/contrib/verifysfbinaries) ### This script attempts to download and verify the signature file SHA256SUMS.asc from SourceForge. - -### [Developer tools](/contrib/devtools) ### -Specific tools for developers working on this repository. -Contains the script `github-merge.sh` for merging github pull requests securely and signing them using GPG. - diff --git a/contrib/bitrpc/bitrpc.py b/contrib/bitrpc/bitrpc.py index b02b29917..b2b4e2952 100644 --- a/contrib/bitrpc/bitrpc.py +++ b/contrib/bitrpc/bitrpc.py @@ -1,6 +1,7 @@ from jsonrpc import ServiceProxy import sys import string +import getpass # ===== BEGIN USER SETTINGS ===== # if you do not set these you will be prompted for a password for every command @@ -301,24 +302,24 @@ elif cmd == "validateaddress": print "\n---An error occurred---\n" elif cmd == "walletpassphrase": - try: - pwd = raw_input("Enter wallet passphrase: ") - access.walletpassphrase(pwd, 60) - print "\n---Wallet unlocked---\n" - except: - print "\n---An error occurred---\n" + try: + pwd = getpass.getpass(prompt="Enter wallet passphrase: ") + access.walletpassphrase(pwd, 60) + print "\n---Wallet unlocked---\n" + except: + print "\n---An error occurred---\n" elif cmd == "walletpassphrasechange": - try: - pwd = raw_input("Enter old wallet passphrase: ") - pwd2 = raw_input("Enter new wallet passphrase: ") - access.walletpassphrasechange(pwd, pwd2) - print - print "\n---Passphrase changed---\n" - except: - print - print "\n---An error occurred---\n" - print + try: + pwd = getpass.getpass(prompt="Enter old wallet passphrase: ") + pwd2 = getpass.getpass(prompt="Enter new wallet passphrase: ") + access.walletpassphrasechange(pwd, pwd2) + print + print "\n---Passphrase changed---\n" + except: + print + print "\n---An error occurred---\n" + print else: print "Command not found or not supported" \ No newline at end of file diff --git a/contrib/debian/changelog b/contrib/debian/changelog index 95b9ad31a..4f22567f8 100644 --- a/contrib/debian/changelog +++ b/contrib/debian/changelog @@ -1,3 +1,16 @@ +bitcoin (0.9.1-precise1) precise; urgency=medium + + * New upstream release. + * Backport pull #4019 + + -- Matt Corallo Sat, 19 Apr 2014 17:29:00 -0400 + +bitcoin (0.9.0-precise1) precise; urgency=medium + + * New upstream release. + + -- Matt Corallo Thu, 20 Mar 2014 13:10:00 -0400 + bitcoin (0.8.6-precise1) precise; urgency=medium * New upstream release. diff --git a/contrib/debian/control b/contrib/debian/control index b35a7d84d..5ebe6682a 100644 --- a/contrib/debian/control +++ b/contrib/debian/control @@ -5,6 +5,7 @@ Maintainer: Jonas Smedegaard Uploaders: Micah Anderson Build-Depends: debhelper, devscripts, + automake, bash-completion, libboost-system-dev (>> 1.35) | libboost-system1.35-dev, libdb4.8++-dev, @@ -17,7 +18,8 @@ Build-Depends: debhelper, libboost-test-dev (>> 1.35) | libboost-test1.35-dev, qt4-qmake, libqt4-dev, - libqrencode-dev + libqrencode-dev, + libprotobuf-dev, protobuf-compiler Standards-Version: 3.9.2 Homepage: http://www.dogecoin.com/ Vcs-Git: git://github.com/dogecoin/dogecoin.git @@ -34,7 +36,7 @@ Description: peer-to-peer network based digital currency - daemon check for double-spending. . Full transaction history is stored locally at each client. This - requires 2+ GB of space, slowly growing. + requires 20+ GB of space, slowly growing. . This package provides dogecoind, a combined daemon and CLI tool to interact with the daemon. @@ -50,6 +52,6 @@ Description: peer-to-peer network based digital currency - Qt GUI check for double-spending. . Full transaction history is stored locally at each client. This - requires 2+ GB of space, slowly growing. + requires 20+ GB of space, slowly growing. . This package provides Dogecoin-Qt, a GUI for Dogecoin based on Qt. diff --git a/contrib/debian/dogecoin-qt.install b/contrib/debian/dogecoin-qt.install index e076d409a..df105e235 100644 --- a/contrib/debian/dogecoin-qt.install +++ b/contrib/debian/dogecoin-qt.install @@ -1,6 +1,6 @@ -dogecoin-qt usr/bin -share/pixmaps/dogecoin32.xpm usr/share/pixmaps -share/pixmaps/dogecoin16.xpm usr/share/pixmaps -share/pixmaps/dogecoin128.png usr/share/pixmaps +usr/local/bin/dogecoin-qt usr/bin +share/pixmaps/bitcoin32.xpm usr/share/pixmaps +share/pixmaps/bitcoin16.xpm usr/share/pixmaps +share/pixmaps/bitcoin128.png usr/share/pixmaps debian/dogecoin-qt.desktop usr/share/applications debian/dogecoin-qt.protocol usr/share/kde4/services/ diff --git a/contrib/debian/dogecoind.install b/contrib/debian/dogecoind.install index ed8216d08..5dc610b9c 100644 --- a/contrib/debian/dogecoind.install +++ b/contrib/debian/dogecoind.install @@ -1 +1,2 @@ -src/dogecoind usr/bin +usr/local/bin/dogecoind usr/bin +usr/local/bin/dogecoin-cli usr/bin diff --git a/contrib/debian/manpages/bitcoin.conf.5 b/contrib/debian/manpages/bitcoin.conf.5 index 5c961c6b1..cca88228c 100644 --- a/contrib/debian/manpages/bitcoin.conf.5 +++ b/contrib/debian/manpages/bitcoin.conf.5 @@ -37,9 +37,6 @@ You must set *rpcuser* to secure the JSON-RPC api. \fBrpcpassword=\fR\fI'password'\fR You must set *rpcpassword* to secure the JSON-RPC api. .TP -\fBrpctimeout=\fR\fI'30'\fR -How many seconds *dogecoin* will wait for a complete RPC HTTP request, after the HTTP connection is established. -.TP \fBrpcallowip=\fR\fI'192.168.1.*'\fR By default, only RPC connections from localhost are allowed. Specify as many *rpcallowip=* settings as you like to allow connections from other hosts (and you may use * as a wildcard character). .TP diff --git a/contrib/debian/rules b/contrib/debian/rules index 82eca7964..9c79b745c 100755 --- a/contrib/debian/rules +++ b/contrib/debian/rules @@ -11,23 +11,14 @@ DEB_INSTALL_MANPAGES_dogecoind += debian/manpages/* %: dh --with bash-completion $@ -override_dh_auto_build: - cd src; $(MAKE) -f makefile.unix dogecoind - $(MAKE) - override_dh_auto_clean: - if [ -f Makefile ]; then $(MAKE) clean; else rm -rf build/; rm -f dogecoin-qt; fi - cd src; $(MAKE) -f makefile.unix 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 +# Yea, autogen should be run on the source archive, but I like doing git archive override_dh_auto_configure: - qmake dogecoin-qt.pro USE_QRCODE=1 + ./autogen.sh + ./configure override_dh_auto_test: - cd src; $(MAKE) -f makefile.unix test_dogecoin - src/test_dogecoin - -# Ensure wrapper is set executable -binary-post-install/dogecoind: - chmod +x $(cdbs_curdestdir)usr/bin/dogecoind -binary-post-install/dogecoin-qt: - chmod +x $(cdbs_curdestdir)usr/bin/dogecoin-qt + make check diff --git a/contrib/devtools/README.md b/contrib/devtools/README.md index f0d25fd7a..411518049 100644 --- a/contrib/devtools/README.md +++ b/contrib/devtools/README.md @@ -3,16 +3,16 @@ Contents This directory contains tools for developers working on this repository. github-merge.sh ----------------- +================== A small script to automate merging pull-requests securely and sign them with GPG. For example: - ./github-merge.sh bitcoin/bitcoin 3077 + ./github-merge.sh dogecoin/dogecoin 3077 (in any git repository) will help you merge pull request #3077 for the -bitcoin/bitcoin repository. +dogecoin/dogecoin repository. What it does: * Fetch master and the pull request. @@ -32,11 +32,12 @@ Setup --------- Configuring the github-merge tool for the bitcoin repository is done in the following way: - git config githubmerge.repository bitcoin/bitcoin + git config githubmerge.repository dogecoin/dogecoin git config githubmerge.testcmd "make -j4 check" (adapt to whatever you want to use for testing) git config --global user.signingkey mykeyid (if you want to GPG sign) -## fix-copyright-headers.py +fix-copyright-headers.py +=========================== Every year newly updated files need to have its copyright headers updated to reflect the current year. If you run this script from src/ it will automatically update the year on the copyright header for all @@ -44,6 +45,41 @@ If you run this script from src/ it will automatically update the year on the co For example a file changed in 2014 (with 2014 being the current year): ```// Copyright (c) 2009-2013 The Bitcoin developers``` +```// Copyright (c) 2013-2014 The Dogecoin developers``` would be changed to: -```// Copyright (c) 2009-2014 The Bitcoin developers``` \ No newline at end of file +```// Copyright (c) 2009-2013 The Bitcoin developers``` +```// Copyright (c) 2013-2014 The Dogecoin developers``` + +symbol-check.py +================== + +A script to check that the (Linux) executables produced by gitian only contain +allowed gcc, glibc and libstdc++ version symbols. This makes sure they are +still compatible with the minimum supported Linux distribution versions. + +Example usage after a gitian build: + + find ../gitian-builder/build -type f -executable | xargs python contrib/devtools/symbol-check.py + +If only supported symbols are used the return value will be 0 and the output will be empty. + +If there are 'unsupported' symbols, the return value will be 1 a list like this will be printed: + + .../64/test_bitcoin: symbol memcpy from unsupported version GLIBC_2.14 + .../64/test_bitcoin: symbol __fdelt_chk from unsupported version GLIBC_2.15 + .../64/test_bitcoin: symbol std::out_of_range::~out_of_range() from unsupported version GLIBCXX_3.4.15 + .../64/test_bitcoin: symbol _ZNSt8__detail15_List_nod from unsupported version GLIBCXX_3.4.15 + +update-translations.py +======================= + +Run this script from the root of the repository to update all translations from transifex. +It will do the following automatically: + +- fetch all translations +- post-process them into valid and committable format +- add missing translations to the build system (TODO) + +See doc/translation-process.md for more information. + diff --git a/contrib/devtools/symbol-check.py b/contrib/devtools/symbol-check.py new file mode 100755 index 000000000..8dd6d8f03 --- /dev/null +++ b/contrib/devtools/symbol-check.py @@ -0,0 +1,113 @@ +#!/usr/bin/python +# Copyright (c) 2014 Wladimir J. van der Laan +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. +''' +A script to check that the (Linux) executables produced by gitian only contain +allowed gcc, glibc and libstdc++ version symbols. This makes sure they are +still compatible with the minimum supported Linux distribution versions. + +Example usage: + + find ../gitian-builder/build -type f -executable | xargs python contrib/devtools/symbol-check.py +''' +from __future__ import division, print_function +import subprocess +import re +import sys + +# Debian 6.0.9 (Squeeze) has: +# +# - g++ version 4.4.5 (https://packages.debian.org/search?suite=default§ion=all&arch=any&searchon=names&keywords=g%2B%2B) +# - libc version 2.11.3 (https://packages.debian.org/search?suite=default§ion=all&arch=any&searchon=names&keywords=libc6) +# - libstdc++ version 4.4.5 (https://packages.debian.org/search?suite=default§ion=all&arch=any&searchon=names&keywords=libstdc%2B%2B6) +# +# Ubuntu 10.04.4 (Lucid Lynx) has: +# +# - g++ version 4.4.3 (http://packages.ubuntu.com/search?keywords=g%2B%2B&searchon=names&suite=lucid§ion=all) +# - libc version 2.11.1 (http://packages.ubuntu.com/search?keywords=libc6&searchon=names&suite=lucid§ion=all) +# - libstdc++ version 4.4.3 (http://packages.ubuntu.com/search?suite=lucid§ion=all&arch=any&keywords=libstdc%2B%2B&searchon=names) +# +# Taking the minimum of these as our target. +# +# According to GNU ABI document (http://gcc.gnu.org/onlinedocs/libstdc++/manual/abi.html) this corresponds to: +# GCC 4.4.0: GCC_4.4.0 +# GCC 4.4.2: GLIBCXX_3.4.13, CXXABI_1.3.3 +# (glibc) GLIBC_2_11 +# +MAX_VERSIONS = { +'GCC': (4,4,0), +'CXXABI': (1,3,3), +'GLIBCXX': (3,4,13), +'GLIBC': (2,11) +} +READELF_CMD = '/usr/bin/readelf' +CPPFILT_CMD = '/usr/bin/c++filt' + +class CPPFilt(object): + ''' + Demangle C++ symbol names. + + Use a pipe to the 'c++filt' command. + ''' + def __init__(self): + self.proc = subprocess.Popen(CPPFILT_CMD, stdin=subprocess.PIPE, stdout=subprocess.PIPE) + + def __call__(self, mangled): + self.proc.stdin.write(mangled + '\n') + return self.proc.stdout.readline().rstrip() + + def close(self): + self.proc.stdin.close() + self.proc.stdout.close() + self.proc.wait() + +def read_symbols(executable, imports=True): + ''' + Parse an ELF executable and return a list of (symbol,version) tuples + for dynamic, imported symbols. + ''' + p = subprocess.Popen([READELF_CMD, '--dyn-syms', '-W', executable], stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE) + (stdout, stderr) = p.communicate() + if p.returncode: + raise IOError('Could not read symbols for %s: %s' % (executable, stderr.strip())) + syms = [] + for line in stdout.split('\n'): + line = line.split() + if len(line)>7 and re.match('[0-9]+:$', line[0]): + (sym, _, version) = line[7].partition('@') + is_import = line[6] == 'UND' + if version.startswith('@'): + version = version[1:] + if is_import == imports: + syms.append((sym, version)) + return syms + +def check_version(max_versions, version): + if '_' in version: + (lib, _, ver) = version.rpartition('_') + else: + lib = version + ver = '0' + ver = tuple([int(x) for x in ver.split('.')]) + if not lib in max_versions: + return False + return ver <= max_versions[lib] + +if __name__ == '__main__': + cppfilt = CPPFilt() + retval = 0 + for filename in sys.argv[1:]: + # Check imported symbols + for sym,version in read_symbols(filename, True): + if version and not check_version(MAX_VERSIONS, version): + print('%s: symbol %s from unsupported version %s' % (filename, cppfilt(sym), version)) + retval = 1 + # Check exported symbols + for sym,version in read_symbols(filename, False): + print('%s: export of symbol %s not allowed' % (filename, cppfilt(sym))) + retval = 1 + + exit(retval) + + diff --git a/contrib/devtools/update-translations.py b/contrib/devtools/update-translations.py new file mode 100755 index 000000000..1950a4267 --- /dev/null +++ b/contrib/devtools/update-translations.py @@ -0,0 +1,66 @@ +#!/usr/bin/python +# Copyright (c) 2014 Wladimir J. van der Laan +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. +''' +Run this script from the root of the repository to update all translations from +transifex. +It will do the following automatically: + +- fetch all translations using the tx tool +- post-process them into valid and committable format + - remove invalid control characters + - remove location tags (makes diffs less noisy) + +TODO: +- auto-add new translations to the build system according to the translation process +- remove 'unfinished' translation items +''' +from __future__ import division, print_function +import subprocess +import re +import sys +import os + +# Name of transifex tool +TX = 'tx' +# Name of source language file +SOURCE_LANG = 'bitcoin_en.ts' +# Directory with locale files +LOCALE_DIR = 'src/qt/locale' + +def check_at_repository_root(): + if not os.path.exists('.git'): + print('No .git directory found') + print('Execute this script at the root of the repository', file=sys.stderr) + exit(1) + +def fetch_all_translations(): + if subprocess.call([TX, 'pull', '-f']): + print('Error while fetching translations', file=sys.stderr) + exit(1) + +def postprocess_translations(): + print('Postprocessing...') + for filename in os.listdir(LOCALE_DIR): + # process only language files, and do not process source language + if not filename.endswith('.ts') or filename == SOURCE_LANG: + continue + filepath = os.path.join(LOCALE_DIR, filename) + with open(filepath, 'rb') as f: + data = f.read() + # remove non-allowed control characters + data = re.sub('[\x00-\x09\x0b\x0c\x0e-\x1f]', '', data) + data = data.split('\n') + # strip locations from non-origin translation + # location tags are used to guide translators, they are not necessary for compilation + # TODO: actually process XML instead of relying on Transifex's one-tag-per-line output format + data = [line for line in data if not ' $LINKER_SCRIPT function do_configure { - ./configure "$@" --enable-upnp-default --prefix=$STAGING --with-protoc-bindir=$STAGING/host/bin --with-boost=$STAGING --disable-maintainer-mode --disable-dependency-tracking PKG_CONFIG_PATH="$STAGING/lib/pkgconfig" CPPFLAGS="-I$STAGING/include ${OPTFLAGS}" LDFLAGS="-L$STAGING/lib ${OPTFLAGS}" CXXFLAGS="-frandom-seed=dogecoin ${OPTFLAGS}" BOOST_CHRONO_EXTRALIBS="-lrt" + ./configure "$@" --enable-upnp-default --prefix=$STAGING --with-protoc-bindir=$STAGING/host/bin --with-qt-bindir=$STAGING/bin --with-boost=$STAGING --disable-maintainer-mode --disable-dependency-tracking PKG_CONFIG_PATH="$STAGING/lib/pkgconfig" CPPFLAGS="-I$STAGING/include ${OPTFLAGS}" LDFLAGS="-L$STAGING/lib -Wl,--version-script=$LINKER_SCRIPT ${OPTFLAGS}" CXXFLAGS="-frandom-seed=dogecoin ${OPTFLAGS}" BOOST_CHRONO_EXTRALIBS="-lrt" --enable-glibc-back-compat } # cd dogecoin @@ -60,19 +78,6 @@ script: | make $MAKEOPTS install-strip make $MAKEOPTS clean - # Build fully static versions of dogecoind and dogecoin-cli for older Linux distros - STATIC_BINDIR="$HOME/bindir.static" - mkdir -p $STATIC_BINDIR - # For 32-bit, -pie cannot be used with -static, as invalid executables are generated - # For 64-bit, -pie with -static causes a link error - # Disable hardening in configure and manually pass 'static-safe' hardening flags - OPTFLAGS='-O2 -static -Wstack-protector -fstack-protector-all -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -Wl,-z,relro -Wl,-z,now' - do_configure --bindir=$STATIC_BINDIR --disable-tests --enable-upnp-default --without-gui --disable-hardening - make $MAKEOPTS - make $MAKEOPTS install-strip - cp $STATIC_BINDIR/dogecoind $BINDIR/dogecoin.static - cp $STATIC_BINDIR/dogecoin-cli $BINDIR/dogecoin-cli.static - # sort distribution tar file and normalize user/group/mtime information for deterministic output mkdir -p $OUTDIR/src rm -rf $TEMPDIR diff --git a/contrib/gitian-descriptors/gitian-win.yml b/contrib/gitian-descriptors/gitian-win.yml index 0f713961e..61abe9f6c 100644 --- a/contrib/gitian-descriptors/gitian-win.yml +++ b/contrib/gitian-descriptors/gitian-win.yml @@ -26,8 +26,8 @@ files: - "qt-win64-5.2.0-gitian-r3.zip" - "boost-win32-1.55.0-gitian-r6.zip" - "boost-win64-1.55.0-gitian-r6.zip" -- "dogecoin-deps-win32-gitian-r11a.zip" -- "dogecoin-deps-win64-gitian-r11a.zip" +- "dogecoin-deps-win32-gitian-r13.zip" +- "dogecoin-deps-win64-gitian-r13.zip" - "protobuf-win32-2.5.0-gitian-r4.zip" - "protobuf-win64-2.5.0-gitian-r4.zip" script: | @@ -61,7 +61,7 @@ script: | cd $STAGING unzip $INDIR/qt-win${BITS}-5.2.0-gitian-r3.zip unzip $INDIR/boost-win${BITS}-1.55.0-gitian-r6.zip - unzip $INDIR/dogecoin-deps-win${BITS}-gitian-r11a.zip + unzip $INDIR/dogecoin-deps-win${BITS}-gitian-r13.zip unzip $INDIR/protobuf-win${BITS}-2.5.0-gitian-r4.zip if [ "$NEEDDIST" == "1" ]; then # Make source code archive which is architecture independent so it only needs to be done once diff --git a/contrib/gitian-descriptors/qt-linux.yml b/contrib/gitian-descriptors/qt-linux.yml new file mode 100644 index 000000000..b163b4bb8 --- /dev/null +++ b/contrib/gitian-descriptors/qt-linux.yml @@ -0,0 +1,264 @@ +--- +name: "qt-linux" +suites: +- "precise" +architectures: +- "i386" +- "amd64" +packages: +- "zip" +- "unzip" +- "faketime" +- "unzip" +- "libxext-dev" +reference_datetime: "2011-01-30 00:00:00" +remotes: [] +files: +- "qt-everywhere-opensource-src-4.6.4.tar.gz" +script: | + export FAKETIME=$REFERENCE_DATETIME + export TZ=UTC + if [ "$GBUILD_BITS" == "32" ]; then + ARCH='i386-linux-gnu' + else + ARCH='x86_64-linux-gnu' + fi + # The purpose of this gitian build is not to actually build Qt, but to export + # the headers as well as pkgconfig files in a useable format so that we can + # pretend to link against an older version. The goal is to link to the + # system version of Qt 4. + # Also build development tools. + INSTALLPREFIX="$HOME/install" + # Integrity Check + echo "9ad4d46c721b53a429ed5a2eecfd3c239a9ab566562f183f99d3125f1a234250 qt-everywhere-opensource-src-4.6.4.tar.gz" | sha256sum -c + # Make install directories + mkdir -p $INSTALLPREFIX + mkdir -p $INSTALLPREFIX/include + PKGCONFIGDIR=$INSTALLPREFIX/lib/pkgconfig + mkdir -p $PKGCONFIGDIR + # + tar xzf qt-everywhere-opensource-src-4.6.4.tar.gz + cd qt-everywhere-opensource-src-4.6.4 + QTBUILDDIR=$(pwd) + sed 's/TODAY=`date +%Y-%m-%d`/TODAY=2011-01-30/' -i configure + + # Need to build 4.6-versioned host utilities as well (lrelease/qrc/lupdate/...) + ./configure -prefix $INSTALLPREFIX -confirm-license -release -opensource -no-qt3support -no-multimedia -no-audio-backend -no-phonon -no-phonon-backend -no-declarative -no-script -no-scripttools -no-javascript-jit -no-webkit -no-svg -no-xmlpatterns -no-sql-sqlite -no-nis -no-cups -no-iconv -no-dbus -no-gif -no-libtiff -no-opengl -nomake examples -nomake demos -nomake docs + # + make $MAKEOPTS -C src/tools install # (rcc, uic, moc) + make $MAKEOPTS -C tools/linguist/lrelease install # (lrelease) + # install includes and pkgconfig files + for DIR in src/corelib src/gui src/testlib src/dbus src/network; do + ( + cd $DIR + # extract module (QtCore/QtNetwork/...) from Makefile + MODULE=$(grep "QMAKE_TARGET *=" Makefile | cut -d = -f 2 | xargs) + # patch makefile so that not everything is build first + sed -i 's/first: all/first:/g' Makefile + make install_flat_headers install_class_headers install_targ_headers + # create and install pkgconfig descriptor + make ../../lib/pkgconfig/$MODULE.pc + sed -e "s,$QTBUILDDIR,$INSTALLPREFIX,g" ../../lib/pkgconfig/$MODULE.pc > $PKGCONFIGDIR/$MODULE.pc + # create links to existing Qt libraries + ln -sf /usr/lib/${ARCH}/lib${MODULE}.so.4 ${INSTALLPREFIX}/lib/lib${MODULE}.so + ) + done + + # Write our own configuration header, same as Ubuntu + # When we don't do this, the configuration will be without STL support (the QString from/to stdString methods) + QCONFIG=$INSTALLPREFIX/include/Qt/qconfig.h + echo ' + /* Qt Edition */ + #ifndef QT_EDITION + # define QT_EDITION QT_EDITION_OPENSOURCE + #endif + ' > $QCONFIG + + if [ "$GBUILD_BITS" == "32" ]; then + echo ' + /* Machine byte-order */ + #define Q_BIG_ENDIAN 4321 + #define Q_LITTLE_ENDIAN 1234 + #define QT_BUILD_KEY "i386 linux g++-4 full-config" + #define QT_BUILD_KEY_COMPAT "i686 Linux g++-4 full-config" + + #ifdef QT_BOOTSTRAPPED + #define Q_BYTE_ORDER Q_LITTLE_ENDIAN + #else + #define Q_BYTE_ORDER Q_LITTLE_ENDIAN + #endif + /* Machine Architecture */ + #ifndef QT_BOOTSTRAPPED + # define QT_ARCH_I386 + #else + # define QT_ARCH_I386 + #endif + /* Compile time features */ + #define QT_LARGEFILE_SUPPORT 64 + #define QT_POINTER_SIZE 4 + ' >> $QCONFIG + else + echo ' + /* Machine byte-order */ + #define Q_BIG_ENDIAN 4321 + #define Q_LITTLE_ENDIAN 1234 + #define QT_BUILD_KEY "x86_64 linux g++-4 full-config" + #define QT_BUILD_KEY_COMPAT "x86_64 Linux g++-4 full-config" + + #ifdef QT_BOOTSTRAPPED + #define Q_BYTE_ORDER Q_LITTLE_ENDIAN + #else + #define Q_BYTE_ORDER Q_LITTLE_ENDIAN + #endif + /* Machine Architecture */ + #ifndef QT_BOOTSTRAPPED + # define QT_ARCH_X86_64 + #else + # define QT_ARCH_X86_64 + #endif + /* Compile time features */ + #define QT_LARGEFILE_SUPPORT 64 + #define QT_POINTER_SIZE 8 + ' >> $QCONFIG + fi + + echo ' + #ifndef QT_BOOTSTRAPPED + + #if defined(QT_NO_EGL) && defined(QT_EGL) + # undef QT_NO_EGL + #elif !defined(QT_NO_EGL) && !defined(QT_EGL) + # define QT_NO_EGL + #endif + + #if defined(QT_NO_GSTREAMER) && defined(QT_GSTREAMER) + # undef QT_NO_GSTREAMER + #elif !defined(QT_NO_GSTREAMER) && !defined(QT_GSTREAMER) + # define QT_NO_GSTREAMER + #endif + + #if defined(QT_NO_ICD) && defined(QT_ICD) + # undef QT_NO_ICD + #elif !defined(QT_NO_ICD) && !defined(QT_ICD) + # define QT_NO_ICD + #endif + + #if defined(QT_NO_IMAGEFORMAT_JPEG) && defined(QT_IMAGEFORMAT_JPEG) + # undef QT_NO_IMAGEFORMAT_JPEG + #elif !defined(QT_NO_IMAGEFORMAT_JPEG) && !defined(QT_IMAGEFORMAT_JPEG) + # define QT_NO_IMAGEFORMAT_JPEG + #endif + + #if defined(QT_NO_IMAGEFORMAT_MNG) && defined(QT_IMAGEFORMAT_MNG) + # undef QT_NO_IMAGEFORMAT_MNG + #elif !defined(QT_NO_IMAGEFORMAT_MNG) && !defined(QT_IMAGEFORMAT_MNG) + # define QT_NO_IMAGEFORMAT_MNG + #endif + + #if defined(QT_NO_IMAGEFORMAT_TIFF) && defined(QT_IMAGEFORMAT_TIFF) + # undef QT_NO_IMAGEFORMAT_TIFF + #elif !defined(QT_NO_IMAGEFORMAT_TIFF) && !defined(QT_IMAGEFORMAT_TIFF) + # define QT_NO_IMAGEFORMAT_TIFF + #endif + + #if defined(QT_NO_MULTIMEDIA) && defined(QT_MULTIMEDIA) + # undef QT_NO_MULTIMEDIA + #elif !defined(QT_NO_MULTIMEDIA) && !defined(QT_MULTIMEDIA) + # define QT_NO_MULTIMEDIA + #endif + + #if defined(QT_NO_OPENVG) && defined(QT_OPENVG) + # undef QT_NO_OPENVG + #elif !defined(QT_NO_OPENVG) && !defined(QT_OPENVG) + # define QT_NO_OPENVG + #endif + + #if defined(QT_NO_PHONON) && defined(QT_PHONON) + # undef QT_NO_PHONON + #elif !defined(QT_NO_PHONON) && !defined(QT_PHONON) + # define QT_NO_PHONON + #endif + + #if defined(QT_NO_PULSEAUDIO) && defined(QT_PULSEAUDIO) + # undef QT_NO_PULSEAUDIO + #elif !defined(QT_NO_PULSEAUDIO) && !defined(QT_PULSEAUDIO) + # define QT_NO_PULSEAUDIO + #endif + + #if defined(QT_NO_S60) && defined(QT_S60) + # undef QT_NO_S60 + #elif !defined(QT_NO_S60) && !defined(QT_S60) + # define QT_NO_S60 + #endif + + #if defined(QT_NO_STYLE_S60) && defined(QT_STYLE_S60) + # undef QT_NO_STYLE_S60 + #elif !defined(QT_NO_STYLE_S60) && !defined(QT_STYLE_S60) + # define QT_NO_STYLE_S60 + #endif + + #if defined(QT_NO_SXE) && defined(QT_SXE) + # undef QT_NO_SXE + #elif !defined(QT_NO_SXE) && !defined(QT_SXE) + # define QT_NO_SXE + #endif + + #if defined(QT_NO_WEBKIT) && defined(QT_WEBKIT) + # undef QT_NO_WEBKIT + #elif !defined(QT_NO_WEBKIT) && !defined(QT_WEBKIT) + # define QT_NO_WEBKIT + #endif + + #if defined(QT_NO_ZLIB) && defined(QT_ZLIB) + # undef QT_NO_ZLIB + #elif !defined(QT_NO_ZLIB) && !defined(QT_ZLIB) + # define QT_NO_ZLIB + #endif + + #if defined(QT_RUNTIME_XCURSOR) && defined(QT_NO_RUNTIME_XCURSOR) + # undef QT_RUNTIME_XCURSOR + #elif !defined(QT_RUNTIME_XCURSOR) && !defined(QT_NO_RUNTIME_XCURSOR) + # define QT_RUNTIME_XCURSOR + #endif + + #if defined(QT_RUNTIME_XFIXES) && defined(QT_NO_RUNTIME_XFIXES) + # undef QT_RUNTIME_XFIXES + #elif !defined(QT_RUNTIME_XFIXES) && !defined(QT_NO_RUNTIME_XFIXES) + # define QT_RUNTIME_XFIXES + #endif + + #if defined(QT_RUNTIME_XINERAMA) && defined(QT_NO_RUNTIME_XINERAMA) + # undef QT_RUNTIME_XINERAMA + #elif !defined(QT_RUNTIME_XINERAMA) && !defined(QT_NO_RUNTIME_XINERAMA) + # define QT_RUNTIME_XINERAMA + #endif + + #if defined(QT_RUNTIME_XINPUT) && defined(QT_NO_RUNTIME_XINPUT) + # undef QT_RUNTIME_XINPUT + #elif !defined(QT_RUNTIME_XINPUT) && !defined(QT_NO_RUNTIME_XINPUT) + # define QT_RUNTIME_XINPUT + #endif + + #if defined(QT_RUNTIME_XRANDR) && defined(QT_NO_RUNTIME_XRANDR) + # undef QT_RUNTIME_XRANDR + #elif !defined(QT_RUNTIME_XRANDR) && !defined(QT_NO_RUNTIME_XRANDR) + # define QT_RUNTIME_XRANDR + #endif + + #if defined(QT_USE_MATH_H_FLOATS) && defined(QT_NO_USE_MATH_H_FLOATS) + # undef QT_USE_MATH_H_FLOATS + #elif !defined(QT_USE_MATH_H_FLOATS) && !defined(QT_NO_USE_MATH_H_FLOATS) + # define QT_USE_MATH_H_FLOATS + #endif + + #endif // QT_BOOTSTRAPPED + + #define QT_VISIBILITY_AVAILABLE + ' >> $QCONFIG + cp $QCONFIG $INSTALLPREFIX/include/QtCore/qconfig.h + + cd $INSTALLPREFIX + # as zip stores file timestamps, use faketime to intercept stat calls to set dates for all files to reference date + export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1 + # Create a .tar.gz because .zip has problems with symbolic links + find | sort | tar --no-recursion -cT /dev/stdin --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 --mtime="$REFERENCE_DATETIME" | gzip -n > $OUTDIR/qt-linux${GBUILD_BITS}-4.6.4-gitian-r1.tar.gz diff --git a/contrib/gitian-descriptors/qt-win.yml b/contrib/gitian-descriptors/qt-win.yml index fd375e11e..eba6f3413 100644 --- a/contrib/gitian-descriptors/qt-win.yml +++ b/contrib/gitian-descriptors/qt-win.yml @@ -15,8 +15,8 @@ reference_datetime: "2011-01-30 00:00:00" remotes: [] files: - "qt-everywhere-opensource-src-5.2.0.tar.gz" -- "dogecoin-deps-win32-gitian-r11a.zip" -- "dogecoin-deps-win64-gitian-r11a.zip" +- "dogecoin-deps-win32-gitian-r13.zip" +- "dogecoin-deps-win64-gitian-r13.zip" script: | # Defines export TZ=UTC @@ -48,7 +48,7 @@ script: | # # Need mingw-compiled openssl from dogecoin-deps: cd $DEPSDIR - unzip $INDIR/dogecoin-deps-win${BITS}-gitian-r11a.zip + unzip $INDIR/dogecoin-deps-win${BITS}-gitian-r13.zip # cd $BUILDDIR # diff --git a/contrib/gitian-downloader/linux-download-config b/contrib/gitian-downloader/linux-download-config index fa57fbea8..544708ef4 100644 --- a/contrib/gitian-downloader/linux-download-config +++ b/contrib/gitian-downloader/linux-download-config @@ -3,7 +3,7 @@ name: dogecoin urls: - http://example.org/dogecoin-latest-linux-gitian.zip rss: -- url: http://sourceforge.net/api/file/index/project-id/244765/mtime/desc/limit/100/rss +- url: http://sourceforge.net/projects/dogecoin/rss xpath: //item/link/text() pattern: dogecoin-\d+.\d+.\d+-linux-gitian.zip signers: @@ -15,8 +15,16 @@ signers: weight: 40 name: langerhans key: langerhans - 86601A39AEE177B1D1F0F7971AEF9F73ECA11726 - weight: 40 + 86601A39AEE177B1D1F0F7971AEF9F73ECA11726: + weight: 20 name: leofidus-ger key: leofidus-key + 6E9C3630F63C1541054C9503B1C60A65E5E64D7B: + weight: 20 + name: "Patrick Lodder" + key: patricklodder-key + B8273C8A55820B19C2152407279566AD6D852A36: + weight: 20 + name: stapler117 + key: stapler117 minimum_weight: 120 diff --git a/contrib/gitian-downloader/patricklodder-key.pgp b/contrib/gitian-downloader/patricklodder-key.pgp new file mode 100644 index 000000000..af8af88d5 --- /dev/null +++ b/contrib/gitian-downloader/patricklodder-key.pgp @@ -0,0 +1,38 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v1 + +mQENBFObDPcBCADjZ5or5/p72Scw8n2znFaZT5W9vz9IcCT13fZGlN3QpNnHu772 +obv6OrDpiLA7ltshD0RjebSYGlSWYG0UXiN13KM/BPiFdZx/lkS6NPEm78t9NQ36 +IuqVXL8A4K+A2ihB92mfS+oaim8HmO/GmJm6dDgQlwadNBaPnLezBHNf5msoym0a +1x8hfY+3Fi7Kwz4hf8njO7cUze/av/7fGFzMCUc5aQpD2SNGNDt20EBjW8z3MCeL +6rCn2NYmDHrHgY3yBHQBkOWmZli6NEENCmbyr9Ab20GTeom4yq7enJ7lN/vmM3Cm +e060xH6/R2iEXrapQ8s90OtsoocZBtbc8v2NABEBAAG0QWdpdGh1Yi5jb20vcGF0 +cmlja2xvZGRlciA8cGF0cmlja2xvZGRlckB1c2Vycy5ub3JlcGx5LmdpdGh1Yi5j +b20+iQE+BBMBAgAoBQJTnUu7AhsjBQkJZgGABgsJCAcDAgYVCAIJCgsEFgIDAQIe +AQIXgAAKCRCxxgpl5eZNe1PZB/sGobt+xHMIj5yBFUesSjNHrJL/cnuQAN+2cl2Z +Y/zBo2iuVLfoC3TQohICVZjd4rh98yeim2ODZekb1HE9muXBblLSIK2QV1zwWNCX +beEJlXh7tNqjDpLSrhoyjPRBKuqYqnZJpdMLr/4CiT3Cit0AenCYH+rpHEcQVcYj +NWc92lCux7TPn9QYEdUO00hhQwh3SlSFMItGRkhplPuWwHbm4JEBw5Wah4tac+f8 +MR4MEfwwY9Q4MbJNzYgtou2dIJrtIYrQz9NxKYM0MvBNpk8IdZ7T7aLKBC32e02r +243Mz/nTq75Ks0+lnqjoH3ihTIUoJhBFcVFJ9Nt21nRSLFtNtB1QYXRyaWNrIExv +ZGRlciA8cGF0QHBsZGRyLmV1PokBQQQTAQIAKwIbIwUJCWYBgAYLCQgHAwIGFQgC +CQoLBBYCAwECHgECF4AFAlOdS8oCGQEACgkQscYKZeXmTXue+wf5AQgW7rAO/0UO +1b+8CJIpmOdnAcTetR+1x3xTwnAIfrMIzKelLq4ddEy/dyRcTeYcHJENBztKqi+S +oGbE+FzwMabPdl3XerdU9l9mhjN6xO62NIjD/lrpv4i8Ce32mswYFCcQn0SgAw66 +zisBTEff3XGcZgTZreEUdIIBijlRR5okbuOKmtLSSyc7mZ+2PsGnZ3x6sutWpPFb +xg/TY56JXOVG4pVXPmZ2SF2CYPFmK2hoGX17WCpU39HCKE0GdLGcTw2bmO3loE6y +Jlvmpaa/jjmGuWvTvGd571KFYsbW5nD32shoq1ejZqhvQLmFgAUC4YfyZ6MsiXO/ +DWpOOa7zR7kBDQRTmwz3AQgA7E2xHtwG4oCWy1b1pDGrwn1NlyBSXq68pNGE3rsX +N7os84mzikBQFyLKJg1pjoTSkab/zXL6JC6YNO9/2mmTytsR57ICP0vCJ9Hm/dBp +plngVPS7Q1CbaNz6zAsOl61gb5lsYUIiqr0AZ7YcJy1rb9cg3b8q81OiRPlsFu0E +DejmKifvr2re59EuM61lHUQgeI8pJaja6wcY0lIJZqR/OHwWe7+/hr1zfEx2V7P6 +J3/52RYmK6F6hkknHdh9aJwADa8XM+w9iDSXha95isg4Oe14TWMbE6bBwuqnOYR8 +l5FfWrb5/KQrSiA0ngSAndkeX7K13GuuMqmKqQXlPpEBFQARAQABiQElBBgBAgAP +BQJTmwz3AhsMBQkJZgGAAAoJELHGCmXl5k17L2MIANjbWb2K+81Uganw/Iwp4Mgt +dtCXlw6F+fISFybGzvBOiKuHUyclcpzydsUqRb7yWGOkNvpTrtdFigU7wbqg5+Hr +xfJYjECjFmOIZjoLu0zAMtKcIEwj2B1GaU34xLgM6BaCj3NUSB8MFeXmkXfbF8Zd +iysI5sheancm/qbODka9wVeCdHxiGMpaZdOAoSP9IHIN5dcNiaaWCghT/jwnFlUR +UXUePECFVgVhHugLPsYwzF7YlObck7rRZoRUD6F8LRmgG3ORB+x1Tcml0oLySm9/ +vH10auHHAmPGB2TPF2hSB/zlyblt/XQKj6pKdqWZN7AKACAbjc+uLw1tcF39Cyk= +=MdkT +-----END PGP PUBLIC KEY BLOCK----- diff --git a/contrib/gitian-downloader/stapler117.pgp b/contrib/gitian-downloader/stapler117.pgp new file mode 100644 index 000000000..7f6531919 --- /dev/null +++ b/contrib/gitian-downloader/stapler117.pgp @@ -0,0 +1,52 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v1 + +mQINBFPGnoIBEADNoGdVYoYnaslupt6xSIpziZRzW3EhwAZ4p5XYzUuvzu20ucpr +nyS34dnd6R/2SczeC6c3P/y52Xl/p98av39ZBKeYtHIP+xlm+mnb5eIEVKv2UDSH +ClqW+rI+fhGUw8zIyOKpLgCj2BKrOGu5Sx0mUgOYdQgu8XoFlFoMwgOZOkVxVz19 +iJX8vdcbfuSuQg73XgygzzzqXpVYaLKWgzEbrLEyDYorRyuYENexftTiTTQ6GhIn +MpovPsMYxY2lkAiEoKSSjM6/mqVwVCkIQbY0BLfYo9mWioQzIsxZW8wDgMp6BnLQ +vo/Nf83D6t3b8kbSmpC+eoR25CZYFjMIQJoHpIDCGVyJzWwkPxPqHTd0u2TNKa76 +Zimr4Oqitz9qQJwtAgj3OVZjjQB4GO4Z5kZftOg51IaFBgWwV6+6d9qsxVLERs+C +UUuuBXEHSnlRh+kgwXSn5vMr9lf4Em0+Mxkxdg/jTiSkKVX1kLGFalq2Zo5NYs4Y +L/urW2CosQLer3B+h46C6dLRME9OF9oeQjgvtlKAWSI6DCJg70S4a9bqCcV0EoB5 +aqAAgdxhGuvaF3gqDnXydSlXwgymDzxUywJwB3EPzbrp5FRsYM2Sz3yu3CKLKL/J +uzhyRkAsXZNBx0xWUgYu+AR4xzw9Kfh9Ws4Ukpmq6JDq7XEmhSD5eGRcQwARAQAB +tDtnaXRodWIuY29tL3N0YXBsZXIxMTcgPHN0YXBsZXIxMTdAdXNlcnMubm9yZXBs +eS5naXRodWIuY29tPokCOAQTAQIAIgUCU8aeggIbAwYLCQgHAwIGFQgCCQoLBBYC +AwECHgECF4AACgkQJ5VmrW2FKjYnRg/9FUrOMemFuYhKkVK3ntCKfb4p1cElBSzf +DVpQu8ropEYxYPPTpdV+LXcJp5xJVGrPPShsu/a9ERknBfQENx5IxDz8Tz35KbnE +xaxyD90HNQfb/Nllp5jWPisyDRAJT3b2cd0QKjVNWiWSS6IaTDyud65pfsKDw/rs +hJ828sY5GVdugG5On2uY7VKiRdGLJhfxSLBkokMNNub2XXAyk+j91UUhES9zc21i +CFeE1iTrPH1pV37OhlshD0ewdvGxKZl2nDqVm5DhrQ6TO1daKQLWHijjGhzfXlRD +NqLUOluRmkpi4fvkbtFEusMdTfvi8v9aue+xEdDOdurcRVQQamhIsQVy4D8c9c5t +VE+JuelOtIvRkrMHbMvIAqtP11as29z6SshI9LRQoSTP6Vg4lzOgQcMpWpj7WMuB +2en9wvsug5F/HWMtgRFP0kD9ojt5JOp3qoxgl8uHWYpG8AOdF23CRt8dNFXC8ueq +gtaiE/CVwWuJe+uAJKszqjMpwNJQPz8lQuW8DuNFItDDxY0pnIKJZ+XcNZZmnG9L +Vx8ccuGY1tkiL4pCYQuiQxP9Ivs0a6/fJ7szycPI2efdoZxmbEXIAhm1HzrRGvgv +kxyVATf1VKg3xvYJWS03Pr2RicKjMGVUdwUEgyL5pSUAYIqz/zXGqkal0Vynwwft +08gtpiQb9vW5Ag0EU8aeggEQAKNQ4Xr3dMxYHQ8lOGPlX/7MpNmGLjZ8oCbtQzWp +xgvBDNYapoKnoE30/1Bm2uRmRzq6AyM4RimE3RlBHDW/K/9JlOA0K8xyqime7W4B +bJsvEzUPObWbpaIbvgA1tB6foRpTb5H/NQjY+s9feCY0RcpQYDcDPTj3lv+t9uIc +Gp5eP2hIJBpcyCFBjvj3Y5dAJ6cN9xdLtA5ISFY7wsWZnEtWxgf5OX7+W0LZHz8k +F0dr6vVuEEzhznmOlVv4jSOHT9XLDI8CTnLJ8JRp5/NK/mxuMc93wOsjD6Ryshs0 +v5WMzQ9JKZZ0pA3WzIWoCR1/PEDhht9EFw/yQT1XX5YmdE3NN9lbdXc5nzW0SLcM +SEmffhNd8cYgMSZHHrddhOLaE7A86oV3mIcZ3LgH00J1vuD2ye/zfniK1blvGsUk +E9uFvn7Kr2F8wo2cVziG2vFAW4HNR1kOOxcbDD0V2xdDmcDPnHnotwGaQGnzEOlq +6vnQHVtQNFrdL8iz69wcdw/9pwjYyvqciWl3ljQPKENtRD7TAEIvZQYeKwPa0Oxc +uUhCXQcVYFvDvxfo0kgo5eoMVa/rGqzWCCpB7oxT5nhY6++tUChrd2xhCwWkhDLw +NpIPiIOxQ+Z6k/q+pzEwOpEp0dz4qOuJqSDv8VF5yHrzWwUJR6NnkVbP25hJx70N +kvhZABEBAAGJAh8EGAECAAkFAlPGnoICGwwACgkQJ5VmrW2FKjb1qQ//fA5oHKAs +La29agIvpxPkyO/bSBpMZDDU1J3Y9f5lzZvIlkIHsZeUXchUvx69NMbD5R2zkrN0 +a8H+jjZR4i3WJpUvlPTTo8aum8S8hO/nIByF11MfHzjdN6zNQ+hM0L6vkGxsnJWw +HrrX/oP7Ai/jHplmwgmvRyz5bdFMOjLOocRKn3CSoPn1E8ZQKiL49mau8anawER7 +NCYr1d9nbiBrZxdOIffle/hANV8yCLYyRbBsROdWFN8TR3fiiHQSN+OTRRBLx08y +1s4xrnAdI4hHaQ9Zqsr9xhAvRG+GoQSGSRSP6KVCTG/gclF3I3XAIErnmHJKtcL1 +jIzIK3DuwzPFEaZCpwFUTd8ePhRtWHKT9Z028ATv+YrsXgmlC6vvvxHQLFBo6j72 +xbnfWL31thaTcvFldIGgYyVUKnbqLS5X3ko0p8rA7os0QIEXnHddcLf9Y6+UfGCw +Cttv0jVLJ/ssAN63dHnw2HNhwjQxTeELvcN/djw0kLU4lPMdBGGB1t8UTptjIVaf +jRBDvwAyMWQE+jDbd44zR14Yx4e+aAhYrFxBdDRT1wnTIiY3lW82dSeRp1nGMwlw +EUi32PGaYjitqAVwjTylGjqiHV8E9c8lO4LgNYuOXnyXuFjKWl3oRLh50cpKxKt7 +x1EJOrYptKMjGmc/0/cx1nRQpWywMos9rJQ= +=33UY +-----END PGP PUBLIC KEY BLOCK----- diff --git a/contrib/gitian-downloader/win32-download-config b/contrib/gitian-downloader/win32-download-config index 8b686f68b..fff06cbc1 100644 --- a/contrib/gitian-downloader/win32-download-config +++ b/contrib/gitian-downloader/win32-download-config @@ -3,7 +3,7 @@ name: dogecoin urls: - http://example.org/dogecoin-latest-win32-gitian.zip rss: -- url: http://sourceforge.net/api/file/index/project-id/244765/mtime/desc/limit/100/rss +- url: http://sourceforge.net/projects/dogecoin/rss xpath: //item/link/text() pattern: dogecoin-\d+.\d+.\d+-win32-gitian.zip signers: @@ -15,8 +15,16 @@ signers: weight: 40 name: langerhans key: langerhans - 86601A39AEE177B1D1F0F7971AEF9F73ECA11726 - weight: 40 + 86601A39AEE177B1D1F0F7971AEF9F73ECA11726: + weight: 20 name: leofidus-ger key: leofidus-key + 6E9C3630F63C1541054C9503B1C60A65E5E64D7B: + weight: 20 + name: "Patrick Lodder" + key: patricklodder-key + B8273C8A55820B19C2152407279566AD6D852A36: + weight: 20 + name: stapler117 + key: stapler117 minimum_weight: 120 diff --git a/contrib/macdeploy/DS_Store b/contrib/macdeploy/DS_Store new file mode 100644 index 000000000..a07d4f5db Binary files /dev/null and b/contrib/macdeploy/DS_Store differ diff --git a/contrib/macdeploy/macdeployqtplus b/contrib/macdeploy/macdeployqtplus index 3c7af8c98..d4eea4dd0 100755 --- a/contrib/macdeploy/macdeployqtplus +++ b/contrib/macdeploy/macdeployqtplus @@ -196,7 +196,8 @@ class DeploymentInfo(object): def getFrameworks(binaryPath, verbose): if verbose >= 3: print "Inspecting with otool: " + binaryPath - otool = subprocess.Popen(["otool", "-L", binaryPath], stdout=subprocess.PIPE, stderr=subprocess.PIPE) + otoolbin=os.getenv("OTOOL", "otool") + otool = subprocess.Popen([otoolbin, "-L", binaryPath], stdout=subprocess.PIPE, stderr=subprocess.PIPE) o_stdout, o_stderr = otool.communicate() if otool.returncode != 0: if verbose >= 1: @@ -221,7 +222,8 @@ def getFrameworks(binaryPath, verbose): return libraries def runInstallNameTool(action, *args): - subprocess.check_call(["install_name_tool", "-"+action] + list(args)) + installnametoolbin=os.getenv("INSTALLNAMETOOL", "install_name_tool") + subprocess.check_call([installnametoolbin, "-"+action] + list(args)) def changeInstallName(oldName, newName, binaryPath, verbose): if verbose >= 3: @@ -239,10 +241,11 @@ def changeIdentification(id, binaryPath, verbose): runInstallNameTool("id", id, binaryPath) def runStrip(binaryPath, verbose): + stripbin=os.getenv("STRIP", "strip") if verbose >= 3: print "Using strip:" print " stripped", binaryPath - subprocess.check_call(["strip", "-x", binaryPath]) + subprocess.check_call([stripbin, "-x", binaryPath]) def copyFramework(framework, path, verbose): if framework.sourceFilePath.startswith("Qt"): @@ -347,6 +350,8 @@ def deployFrameworksForAppBundle(applicationBundle, strip, verbose): def deployPlugins(appBundleInfo, deploymentInfo, strip, verbose): # Lookup available plugins, exclude unneeded plugins = [] + if deploymentInfo.pluginPath is None: + return for dirpath, dirnames, filenames in os.walk(deploymentInfo.pluginPath): pluginDirectory = os.path.relpath(dirpath, deploymentInfo.pluginPath) if pluginDirectory == "designer": @@ -421,8 +426,8 @@ def deployPlugins(appBundleInfo, deploymentInfo, strip, verbose): deployFrameworks([dependency], appBundleInfo.path, destinationPath, strip, verbose, deploymentInfo) qt_conf="""[Paths] -translations=Resources -plugins=PlugIns +Translations=Resources +Plugins=PlugIns """ ap = ArgumentParser(description="""Improved version of macdeployqt. diff --git a/contrib/qos/README.md b/contrib/qos/README.md index 5e0a975fc..d707d3616 100644 --- a/contrib/qos/README.md +++ b/contrib/qos/README.md @@ -1,5 +1,5 @@ ### Qos ### -This is a Linux bash script that will set up tc to limit the outgoing bandwidth for connections to the Bitcoin network. It limits outbound TCP traffic with a source or destination port of 8333, but not if the destination IP is within a LAN (defined as 192.168.x.x). +This is a Linux bash script that will set up tc to limit the outgoing bandwidth for connections to the Dogecoin network. It limits outbound TCP traffic with a source or destination port of 8333, but not if the destination IP is within a LAN (defined as 192.168.x.x). -This means one can have an always-on bitcoind instance running, and another local bitcoind/bitcoin-qt instance which connects to this node and receives blocks from it. +This means one can have an always-on dogecoind instance running, and another local dogecoind/dogecoin-qt instance which connects to this node and receives blocks from it. diff --git a/doc/Doxyfile b/doc/Doxyfile index 6f9f470b5..0312e697b 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -34,7 +34,7 @@ PROJECT_NAME = Dogecoin # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.7.0 +PROJECT_NUMBER = 1.7.2 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer @@ -683,7 +683,7 @@ RECURSIVE = YES # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. -EXCLUDE = +EXCLUDE = src/leveldb src/json src/test /src/qt/test # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded @@ -705,7 +705,7 @@ EXCLUDE_PATTERNS = # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test -EXCLUDE_SYMBOLS = +EXCLUDE_SYMBOLS = boost google # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see @@ -1577,7 +1577,7 @@ HIDE_UNDOC_RELATIONS = YES # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) -HAVE_DOT = NO +HAVE_DOT = YES # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is # allowed to run in parallel. When set to 0 (the default) doxygen will @@ -1659,7 +1659,7 @@ INCLUDED_BY_GRAPH = YES # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. -CALL_GRAPH = NO +CALL_GRAPH = YES # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function @@ -1667,7 +1667,7 @@ CALL_GRAPH = NO # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. -CALLER_GRAPH = NO +CALLER_GRAPH = YES # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will generate a graphical hierarchy of all classes instead of a textual one. @@ -1685,7 +1685,7 @@ DIRECTORY_GRAPH = YES # generated by dot. Possible values are svg, png, jpg, or gif. # If left blank png will be used. -DOT_IMAGE_FORMAT = png +DOT_IMAGE_FORMAT = svg # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. diff --git a/doc/README.md b/doc/README.md index 38f9b8501..d2dd2ba37 100644 --- a/doc/README.md +++ b/doc/README.md @@ -1,5 +1,5 @@ -Dogecoin 1.7 -===================== +Dogecoin 1.7.2 ALPHA +==================== * Copyright (c) 2009-2014 Bitcoin Developers * Copyright (c) 2011-2013 Litecoin Developers @@ -8,7 +8,7 @@ Dogecoin 1.7 Setup --------------------- -[Dogecoin Core](http://dogecoin.com/en/download) is the original Dogecoin client and it builds the backbone of the network. However, it downloads and stores the entire history of Dogecoin transactions (which is currently several GBs); depending on the speed of your computer and network connection, the synchronization process can take anywhere from a few hours to a day or more. Thankfully you only have to do this once. +[Dogecoin Core](http://dogecoin.com/en/download) is the original Dogecoin client and it builds the backbone of the network. However, it downloads and stores the entire history of Dogecoin transactions (which is currently several GBs); depending on the speed of your computer and network connection, the synchronization process can take anywhere from a few hours to a day or more. Thankfully you only have to do this once. If you would like the process to go faster you can [download the blockchain directly](bootstrap.md) Running --------------------- diff --git a/doc/README_windows.txt b/doc/README_windows.txt index 5775a38ea..5d25cd03e 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,6 +1,8 @@ -Dogecoin 0.9.0rc1 BETA +Dogecoin 1.7.2 ALPHA -Copyright (c) 2009-2014 Bitcoin Core Developers +* Copyright (c) 2009-2014 Bitcoin Developers +* Copyright (c) 2011-2013 Litecoin Developers +* Copyright (c) 2013-2014 Dogecoin Developers Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/doc/assets-attribution.md b/doc/assets-attribution.md index 6f4bec44a..c70562a87 100644 --- a/doc/assets-attribution.md +++ b/doc/assets-attribution.md @@ -78,13 +78,13 @@ Everaldo (Everaldo Coelho) ### Assets Used scripts/img/reload.xcf (modified), src/qt/res/movies/*.png -[Vignoni David](http://www.oxygen-icons.org) +[Vignoni David](http://techbase.kde.org/Projects/Oxygen) ----------------------- ### Info * Designer: Vignoni David * License: Oxygen icon theme is dual licensed. You may copy it under the Creative Common Attribution-ShareAlike 3.0 License or the GNU Library General Public License. -* Site: [http://www.oxygen-icons.org](http://www.oxygen-icons.org) +* Site: [http://techbase.kde.org/Projects/Oxygen](http://techbase.kde.org/Projects/Oxygen) ### Assets Used src/qt/res/icons/debugwindow.png diff --git a/doc/bootstrap.md b/doc/bootstrap.md new file mode 100644 index 000000000..d66903188 --- /dev/null +++ b/doc/bootstrap.md @@ -0,0 +1,58 @@ +### Bootstrap the Blockchain Synchronization + +Normally the Dogecoin Core client will download the transaction and network information, called the blockchain, from network by syncing with the other clients. This can be a process that can take multiple days as the Dogecoin block chain has grown to more than 3 gigabytes, and is growing almost half a gigabyte every month. Luckily there is a safe and fast way to speed up this process. We’ll show you how to bootstrap your blockchain to bring your client up to speed in just a few simple steps. + +You only need to do this when first syncing Dogecoin Core; after that, updates are relatively small and shouldn't take too long. + +### Requirements + +- A fresh install of the Dogecoin Core client software. + +### Download the block chain +Be sure to only use the official repositories listed below. + +#### US Mirror + +*Updated once per day, hosted by SoChain* + +Click [here](https://bootstrap.chain.so/bootstrap.dat) to download, or use the URL below. + + https://bootstrap.chain.so/bootstrap.dat + +#### EU Mirror + +*Updated once per month, hosted by Moolah* + +Click [here](http://bootstrap.moolah.io/dogecoin/bootstrap.dat) to download, or use the URL below. + + http://bootstrap.moolah.io/dogecoin/bootstrap.dat + +### Importing the blockchain +Launch the Dogecoin Core client once before continuing the process and then exit the Dogecoin Core software. Be sure not to have an actively used wallet in use. Now we are going to copy the download of the blockchain to the Dogecoin Core data directory. You should run the client software at least once so it can generate the data directory. Copy the downloaded bootstrap.dat file into the Dogecoin data folder. + +**For Windows users:** +Open explorer, and type into the address bar: + + %APPDATA%\Roaming\DogeCoin + +This will open up the data folder. It should look like the image below. Copy over the bootstrap.dat from your download folder to this directory. +![Fig4](img/dogestrap1.png) + +**For OSX users:** +Open Finder by pressing Press [shift] + [cmd] + [g] and enter: + + ~/Library/Application Support/DogeCoin/ + +**For Linux users:** +The directory is hidden in your User folder. Go to: + + ~/.dogecoin/ + +### Importing the blockchain +Now start the Dogecoin Core client software. It should show "Importing blocks from disk" like the image below. +![Fig5](img/dogestrap2.png) +Wait until the import finishes. The client will download the last days not covered by the import. Congratulations you have successfully imported the blockchain! + +### Is this safe? + +Yes, the above method is safe. The download contains only raw block chain data and the client verifies this on import. Do not download the blockchain from unofficial sources, especially if they provide `*.rev` and `*.sst` files. These files are not verified and can contain malicious edits. diff --git a/doc/build-osx.md b/doc/build-osx.md index fb64882e1..659ac9750 100644 --- a/doc/build-osx.md +++ b/doc/build-osx.md @@ -86,7 +86,9 @@ If not, you can ensure that the Homebrew OpenSSL is correctly linked by running brew link openssl --force -Rerunning "openssl version" should now return the correct version. +Rerunning "openssl version" should now return the correct version. If it +doesn't, make sure `/usr/local/bin` comes before `/usr/bin` in your +PATH. ### Building `dogecoind` diff --git a/doc/build-unix.md b/doc/build-unix.md index 636fa0b3b..2cced890c 100644 --- a/doc/build-unix.md +++ b/doc/build-unix.md @@ -32,32 +32,27 @@ turned off by default. See the configure options for upnp behavior desired: --disable-upnp-default (the default) UPnP support turned off by default at runtime --enable-upnp-default UPnP support turned on by default at runtime -IPv6 support may be disabled by setting: - - --disable-ipv6 Disable IPv6 support - Licenses of statically linked libraries: Berkeley DB New BSD license with additional requirement that linked software must be free open source Boost MIT-like license miniupnpc New (3-clause) BSD license -- Versions used in this release: -- GCC 4.3.3 -- OpenSSL 1.0.1c -- Berkeley DB 5.1.29.NC -- Boost 1.55 -- miniupnpc 1.6 -- qt 4.8.3 -- protobuf 2.5.0 -- libqrencode 3.2.0 +- For the versions used in the release, see doc/release-process.md under *Fetch and build inputs*. + +System requirements +-------------------- + +C++ compilers are memory-hungry. It is recommended to have at least 1 GB of +memory available when compiling Dogecoin Core. With 512MB of memory or less +compilation will take much longer due to swap thrashing. Dependency Build Instructions: Ubuntu & Debian ---------------------------------------------- Build requirements: sudo apt-get install build-essential pkg-config - sudo apt-get install libtool autotools-dev autoconf + sudo apt-get install libtool autotools-dev autoconf automake sudo apt-get install libssl-dev for Ubuntu 12.04 and later: @@ -72,7 +67,6 @@ for other Ubuntu & Debian: sudo apt-get install libdb5.1-dev sudo apt-get install libdb5.1++-dev - sudo apt-get install libboost1.55-all-dev Optional: @@ -118,13 +112,33 @@ miniupnpc Berkeley DB ----------- -You need Berkeley DB 5.1. If you have to build Berkeley DB yourself: +It is recommended to use Berkeley DB 5.1. If you have to build it yourself: - cd build_unix/ - ../dist/configure --enable-cxx - make - sudo make install +```bash +BITCOIN_ROOT=$(pwd) +# Pick some path to install BDB to, here we create a directory within the dogecoin directory +BDB_PREFIX="${BITCOIN_ROOT}/db5" +mkdir -p $BDB_PREFIX + +# Fetch the source and verify that it is not tampered with +wget 'http://download.oracle.com/berkeley-db/db-5.1.29.NC.tar.gz' +echo '08238e59736d1aacdd47cfb8e68684c695516c37f4fbe1b8267dde58dc3a576c db-5.1.29.NC.tar.gz' | sha256sum -c +# -> db-5.1.29.NC.tar.gz: OK +tar -xzvf db-5.1.29.NC.tar.gz + +# Build the library and install to our prefix +cd db-5.1.29.NC/build_unix/ +# Note: Do a static build so that it can be embedded into the exectuable, instead of having to find a .so at runtime +../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX +make install + +# Configure Dogecoin Core to use our own-built instance of BDB +cd $BITCOIN_ROOT +./configure (other args...) LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/" +``` + +**Note**: You only need Berkeley DB if the wallet is enabled (see the section *Disable-Wallet mode* below). Boost ----- @@ -156,7 +170,7 @@ Optional: Security -------- -To help make your bitcoin installation more secure by making certain attacks impossible to +To help make your dogecoin installation more secure by making certain attacks impossible to exploit even if a vulnerability is found, binaries are hardened by default. This can be disabled with: @@ -188,7 +202,7 @@ Hardening enables the following features: * Non-executable Stack If the stack is executable then trivial stack based buffer overflow exploits are possible if - vulnerable buffers are found. By default, bitcoin should be built with a non-executable stack + vulnerable buffers are found. By default, dogecoin should be built with a non-executable stack but if one of the libraries it uses asks for an executable stack or someone makes a mistake and uses a compiler extension which requires an executable stack, it will silently build an executable without the non-executable stack protection. @@ -204,7 +218,7 @@ Hardening enables the following features: Disable-wallet mode -------------------- -When the intention is to run only a P2P node without a wallet, bitcoin may be compiled in +When the intention is to run only a P2P node without a wallet, dogecoin may be compiled in disable-wallet mode with: ./configure --disable-wallet diff --git a/doc/coding.md b/doc/coding.md index 4cffb4608..ee30de011 100644 --- a/doc/coding.md +++ b/doc/coding.md @@ -43,8 +43,61 @@ Common types: set set or multiset bn CBigNum -------------------------- +Doxygen comments +----------------- + +To facilitate the generation of documentation, use doxygen-compatible comment blocks for functions, methods and fields. + +For example, to describe a function use: +```c++ +/** + * ... text ... + * @param[in] arg1 A description + * @param[in] arg2 Another argument description + * @pre Precondition for function... + */ +bool function(int arg1, const char *arg2) +``` +A complete list of `@xxx` commands can be found at http://www.stack.nl/~dimitri/doxygen/manual/commands.html. +As Doxygen recognizes the comments by the delimiters (`/**` and `*/` in this case), you don't +*need* to provide any commands for a comment to be valid, just a description text is fine. + +To describe a class use the same construct above the class definition: +```c++ +/** + * Alerts are for notifying old versions if they become too obsolete and + * need to upgrade. The message is displayed in the status bar. + * @see GetWarnings() + */ +class CAlert +{ +``` + +To describe a member or variable use: +```c++ +int var; //!< Detailed description after the member +``` + +Also OK: +```c++ +/// +/// ... text ... +/// +bool function2(int arg1, const char *arg2) +``` + +Not OK (used plenty in the current source, but not picked up): +```c++ +// +// ... text ... +// +``` + +A full list of comment syntaxes picked up by doxygen can be found at http://www.stack.nl/~dimitri/doxygen/manual/docblocks.html, +but if possible use one of the above styles. + Locking/mutex usage notes +------------------------- The code is multi-threaded, and uses mutexes and the LOCK/TRY_LOCK macros to protect data structures. @@ -60,8 +113,8 @@ between the various components is a goal, with any necessary locking done by the components (e.g. see the self-contained CKeyStore class and its cs_KeyStore lock for example). -------- Threads +------- - ThreadScriptCheck : Verifies block scripts. @@ -89,6 +142,6 @@ Threads - ThreadRPCServer : Remote procedure call handler, listens on port 22555 for connections and services them. -- BitcoinMiner : Generates bitcoins (if wallet is enabled). +- DogecoinMiner : Generates dogecoin (if wallet is enabled). - Shutdown : Does an orderly shutdown of everything. diff --git a/doc/gitian-building.md b/doc/gitian-building.md new file mode 100644 index 000000000..11fff3c61 --- /dev/null +++ b/doc/gitian-building.md @@ -0,0 +1,409 @@ +Gitian building +================ + +*Setup instructions for a gitian build of Dogecoin using a Debian VM or physical system.* + +Gitian is the deterministic build process that is used to build the Dogecoin +Core executables [1]. It provides a way to be reasonably sure that the +executables are really built from source on github. It also makes sure that +the same, tested dependencies are used and statically built into the executable. + +Multiple developers build the source code by following a specific descriptor +("recipe"), cryptographically sign the result, and upload the resulting signature. +These results are compared and only if they match, the build is accepted and uploaded +to dogecoin.com. + +More independent gitian builders are needed, which is why I wrote this +guide. It is preferred to follow these steps yourself instead of using someone else's +VM image to avoid 'contaminating' the build. + +[1] For all platforms except for MacOSX, at this point. Work for deterministic +builds for Mac is under way here: https://github.com/theuni/osx-cross-depends . + +Table of Contents +------------------ + +- [Create a new VirtualBox VM](#create-a-new-virtualbox-vm) +- [Connecting to the VM](#connecting-to-the-vm) +- [Setting up Debian for gitian building](#setting-up-debian-for-gitian-building) +- [Installing gitian](#installing-gitian) +- [Setting up gitian images](#setting-up-gitian-images) +- [Getting and building the inputs](#getting-and-building-the-inputs) +- [Building Dogecoin](#building-dogecoin) +- [Building an alternative repository](#building-an-alternative-repository) +- [Signing externally](#signing-externally) +- [Uploading signatures](#uploading-signatures) + +Create a new VirtualBox VM +--------------------------- + +The first step is to create a new Virtual Machine, which will be explained in +this section. This VM will be used to do the Gitian builds. In this guide it +will be explained how to set up the environment, and how to get the builds +started. + +Debian Linux was chosen as the host distribution because it has a lightweight install (in +contrast to Ubuntu) and is readily available. We here show the steps for +VirtualBox [1], but any kind of virtualization can be used. You can also install +on actual hardware instead of using a VM, in this case you can skip this section. + +In the VirtualBox GUI click "Create" and choose the following parameters in the wizard: + +![](gitian-building/create_vm_page1.png) + +- Type: Linux, Debian (64 bit) + +![](gitian-building/create_vm_memsize.png) + +- Memory Size: at least 1024MB, anything lower will really slow the build down + +![](gitian-building/create_vm_hard_drive.png) + +- Hard Drive: Create a virtual hard drive now + +![](gitian-building/create_vm_hard_drive_file_type.png) + +- Hard Drive file type: Use the default, VDI (VirtualBox Disk Image) + +![](gitian-building/create_vm_storage_physical_hard_drive.png) + +- Storage on Physical hard drive: Dynamically Allocated + +![](gitian-building/create_vm_file_location_size.png) + +- Disk size: at least 40GB; as low as 20GB *may* be possible, but better to err on the safe side +- Push the `Create` button + +Get the [Debian 7.4 net installer](http://cdimage.debian.org/debian-cd/7.4.0/amd64/iso-cd/debian-7.4.0-amd64-netinst.iso). +This DVD image can be validated using a SHA256 hashing tool, for example on +Unixy OSes by entering the following in a terminal: + + echo "b712a141bc60269db217d3b3e456179bd6b181645f90e4aac9c42ed63de492e9 /home/orion/Downloads/debian-7.4.0-amd64-netinst.iso" | sha256sum -c + # (must return OK) + +After creating the VM, we need to configure it. + +- Click the `Settings` button, then go to the `Network` tab. Adapter 1 should be attacked to `NAT`. + +![](gitian-building/network_settings.png) + +- Click `Advanced`, then `Port Forwarding`. We want to set up a port through where we can reach the VM to get files in and out. +- Create a new rule by clicking the plus icon. + +![](gitian-building/port_forwarding_rules.png) + +- Set up the new rule the following way: + - Name: `SSH` + - Protocol: `TCP` + - Leave Host IP empty + - Host Port: `22222` + - Leave Guest IP empty + - Guest Port: `22` + +- Click `Ok` twice to save. + +Then start the VM. On the first launch you will be asked for a CD or DVD image. Choose the downloaded iso. + +![](gitian-building/select_startup_disk.png) + +[1] https://www.virtualbox.org/ + +Installing Debian +------------------ + +In this section it will be explained how to install Debian on the newly created VM. + +- Choose the non-graphical installer. We do not need the graphical environment, it will only increase installation time and disk usage. + +![](gitian-building/debian_install_1_boot_menu.png) + +**Note**: Navigation in the Debian installer: To keep a setting at the default +and proceed, just press `Enter`. To select a different button, press `Tab`. + +- Choose locale and keyboard settings (doesn't matter, you can just go with the defaults or select your own information) + +![](gitian-building/debian_install_2_select_a_language.png) +![](gitian-building/debian_install_3_select_location.png) +![](gitian-building/debian_install_4_configure_keyboard.png) + +- The VM will detect network settings using DHCP, this should all proceed automatically +- Configure the network: + - System name `debian`. + - Leave domain name empty. + +![](gitian-building/debian_install_5_configure_the_network.png) + +- Choose a root password and enter it twice (and remember it for later) + +![](gitian-building/debian_install_6a_set_up_root_password.png) + +- Name the new user `debian` (the full name doesn't matter, you can leave it empty) + +![](gitian-building/debian_install_7_set_up_user_fullname.png) +![](gitian-building/debian_install_8_set_up_username.png) + +- Choose a user password and enter it twice (and remember it for later) + +![](gitian-building/debian_install_9_user_password.png) + +- The installer will set up the clock using a time server, this process should be automatic +- Set up the clock: choose a time zone (depends on the locale settings that you picked earlier; specifics don't matter) + +![](gitian-building/debian_install_10_configure_clock.png) + +- Disk setup + - Partitioning method: Guided - Use the entire disk + +![](gitian-building/debian_install_11_partition_disks.png) + + - Select disk to partition: SCSI1 (0,0,0) + +![](gitian-building/debian_install_12_choose_disk.png) + + - Partitioning scheme: All files in one partition + +![](gitian-building/debian_install_13_partition_scheme.png) + + - Finish partitioning and write changes to disk -> *Yes* (`Tab`, `Enter` to select the `Yes` button) + +![](gitian-building/debian_install_14_finish.png) +![](gitian-building/debian_install_15_write_changes.png) + +- The base system will be installed, this will take a minute or so +- Choose a mirror (any will do) + +![](gitian-building/debian_install_16_choose_a_mirror.png) + +- Enter proxy information (unless you are on an intranet, you can leave this empty) + +![](gitian-building/debian_install_18_proxy_settings.png) + +- Wait a bit while 'Select and install software' runs +- Participate in popularity contest -> *No* +- Choose software to install. We need just the base system. + +![](gitian-building/debian_install_19_software_selection.png) + +- Make sure only 'SSH server' and 'Standard System Utilities' are checked +- Uncheck 'Debian Desktop Environment' and 'Print Server' + +![](gitian-building/debian_install_20_install_grub.png) + +- Install the GRUB boot loader to the master boot record? -> Yes + +![](gitian-building/debian_install_21_finish_installation.png) + +- Installation Complete -> *Continue* +- After installation, the VM will reboot and you will have a working Debian VM. Congratulations! + +Connecting to the VM +---------------------- + +After the VM has booted you can connect to it using SSH, and files can be copied from and to the VM using a SFTP utility. +Connect to `localhost`, port `22222` (or the port configured when installing the VM). +On Windows you can use putty[1] and WinSCP[2]. + +For example to connect as `root` from a Linux command prompt use + + $ ssh root@localhost -p 22222 + The authenticity of host '[localhost]:22222 ([127.0.0.1]:22222)' can't be established. + ECDSA key fingerprint is 8e:71:f9:5b:62:46:de:44:01:da:fb:5f:34:b5:f2:18. + Are you sure you want to continue connecting (yes/no)? yes + Warning: Permanently added '[localhost]:22222' (ECDSA) to the list of known hosts. + root@localhost's password: (enter root password configured during install) + Linux debian 3.2.0-4-amd64 #1 SMP Debian 3.2.54-2 x86_64 + root@debian:~# + +Replace `root` with `debian` to log in as user. + +[1] http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html +[2] http://winscp.net/eng/index.php + +Setting up Debian for gitian building +-------------------------------------- + +In this section we will be setting up the Debian installation for Gitian building. + +First we need to log in as `root` to set up dependencies and make sure that our +user can use the sudo command. Type/paste the following in the terminal: + +```bash +apt-get install git ruby sudo apt-cacher-ng qemu-utils debootstrap lxc python-cheetah parted kpartx bridge-utils +adduser debian sudo +``` + +When you get a colorful screen with a question about the 'LXC directory', just +go with the default (`/var/lib/lxc`). + +Then set up LXC and the rest with the following is a complex jumble of settings and workarounds: + +```bash +# the version of lxc-start in Debian 7.4 needs to run as root, so make sure +# that the build script can exectute it without providing a password +echo "%sudo ALL=NOPASSWD: /usr/bin/lxc-start" > /etc/sudoers.d/gitian-lxc +# add cgroup for LXC +echo "cgroup /sys/fs/cgroup cgroup defaults 0 0" >> /etc/fstab +# make /etc/rc.local script that sets up bridge between guest and host +echo '#!/bin/sh -e' > /etc/rc.local +echo 'brctl addbr br0' >> /etc/rc.local +echo 'ifconfig br0 10.0.3.2/24 up' >> /etc/rc.local +echo 'exit 0' >> /etc/rc.local +# make sure that USE_LXC is always set when logging in as debian, +# and configure LXC IP addresses +echo 'export USE_LXC=1' >> /home/debian/.profile +echo 'export GITIAN_HOST_IP=10.0.3.2' >> /home/debian/.profile +echo 'export LXC_GUEST_IP=10.0.3.5' >> /home/debian/.profile +reboot +``` + +At the end the VM is rebooted to make sure that the changes take effect. The steps in this +section need only to be performed once. + +Installing gitian +------------------ + +Re-login as the user `debian` that was created during installation. +The rest of the steps in this guide will be performed as that user. + +There is no `python-vm-builder` package in Debian, so we need to install it from source ourselves, + +```bash +wget http://archive.ubuntu.com/ubuntu/pool/universe/v/vm-builder/vm-builder_0.12.4+bzr489.orig.tar.gz +echo "ec12e0070a007989561bfee5862c89a32c301992dd2771c4d5078ef1b3014f03 vm-builder_0.12.4+bzr489.orig.tar.gz" | sha256sum -c +# (verification -- must return OK) +tar -zxvf vm-builder_0.12.4+bzr489.orig.tar.gz +cd vm-builder-0.12.4+bzr489 +sudo python setup.py install +cd .. +``` + +**Note**: When sudo asks for a password, enter the password for the user *debian* not for *root*. + +Clone the git repositories for dogecoin and gitian, + +```bash +git clone https://github.com/devrandom/gitian-builder.git +git clone https://github.com/dogecoin/dogecoin +``` + +Setting up gitian images +------------------------- + +Gitian needs virtual images of the operating system to build in. +Currently this is Ubuntu Precise for both x86 architectures. +These images will be copied and used every time that a build is started to +make sure that the build is deterministic. +Creating the images will take a while, but only has to be done once. + +Execute the following as user `debian`: + +```bash +cd gitian-builder +bin/make-base-vm --lxc --arch i386 --suite precise +bin/make-base-vm --lxc --arch amd64 --suite precise +``` + +There will be a lot of warnings printed during build of the images. These can be ignored. + +**Note**: When sudo asks for a password, enter the password for the user *debian* not for *root*. + +Getting and building the inputs +-------------------------------- + +In [doc/release-process.md](release-process.md) in the dogecoin repository under 'Fetch and build inputs'. +you will find a list of `wget` commands that can be executed to get the dependencies. + +I needed to add `--no-check-certificate` to the OpenSSL wget line to make it work. +Likely this is because the ca-certificates in Debian 7.4 is fairly old. This does not create a +security issue as the gitian descriptors check integrity of the input archives and refuse to work +if any one is corrupted. + +After downloading the archives, execute the `gbuild` commends to build the dependencies. +This can take a long time, but only has to be done when the dependencies change, for example +to upgrade the used version. + +**Note**: Do not forget to copy the result from `build/out` to `inputs` after every gbuild command! This will save +you a lot of time. + +At any time you can check the package installation and build progress with + +```bash +tail -f var/install.log +tail -f var/build.log +``` + +Building Dogecoin +---------------- + +To build Dogecoin (for Linux and/or Windows) just follow the steps under 'perform +gitian builds' in [doc/release-process.md](release-process.md) in the dogecoin repository. + +Output from `gbuild` will look something like + + Initialized empty Git repository in /home/debian/gitian-builder/inputs/dogecoin/.git/ + remote: Reusing existing pack: 35606, done. + remote: Total 35606 (delta 0), reused 0 (delta 0) + Receiving objects: 100% (35606/35606), 26.52 MiB | 4.28 MiB/s, done. + Resolving deltas: 100% (25724/25724), done. + From https://github.com/dogecoin/dogecoin + ... (new tags, new branch etc) + --- Building for precise i386 --- + Stopping target if it is up + Making a new image copy + stdin: is not a tty + Starting target + Checking if target is up + Preparing build environment + Updating apt-get repository (log in var/install.log) + Installing additional packages (log in var/install.log) + Grabbing package manifest + stdin: is not a tty + Creating build script (var/build-script) + lxc-start: Connection refused - inotify event with no name (mask 32768) + Running build script (log in var/build.log) + +As when building the dependencies, the progress of package installation and building +can be inspected in `var/install.log` and `var/build.log`. + +Building an alternative repository +----------------------------------- + +If you want to do a test build of a pull on github it can be useful to point +the gitian builder at an alternative repository, using the same descriptors +and inputs. + +For example: +```bash +URL=https://github.com/langerhans/dogecoin.git +COMMIT=2014_03_windows_unicode_path +./bin/gbuild --commit dogecoin=${COMMIT} --url dogecoin=${URL} ../dogecoin/contrib/gitian-descriptors/gitian-linux.yml +./bin/gbuild --commit dogecoin=${COMMIT} --url dogecoin=${URL} ../dogecoin/contrib/gitian-descriptors/gitian-win.yml +``` + +Signing externally +------------------- + +If you want to do the PGP signing on another device that's possible too; just define `SIGNER` as mentioned +and follow the steps in the build process as normally. + + gpg: skipped "laanwj": secret key not available + +When you execute `gsign` you will get an error from GPG, which can be ignored. Copy the resulting `.assert` files +in `gitian.sigs` to your signing machine and do + +```bash + gpg --detach-sign ${VERSION}/${SIGNER}/dogecoin-build.assert + gpg --detach-sign ${VERSION}-win/${SIGNER}/dogecoin-build.assert +``` + +This will create the `.sig` files that can be committed together with the `.assert` files to assert your +gitian build. + +Uploading signatures +--------------------- + +After building and signing you can push your signatures (both the `.assert` and +`.assert.sig` files) to the +[dogecoin/gitian.sigs](https://github.com/dogecoin/gitian.sigs/) repository, or +if not possible create a pull request. + diff --git a/doc/gitian-building/create_vm_file_location_size.png b/doc/gitian-building/create_vm_file_location_size.png new file mode 100644 index 000000000..14aef5aba Binary files /dev/null and b/doc/gitian-building/create_vm_file_location_size.png differ diff --git a/doc/gitian-building/create_vm_hard_drive.png b/doc/gitian-building/create_vm_hard_drive.png new file mode 100644 index 000000000..a1706e14f Binary files /dev/null and b/doc/gitian-building/create_vm_hard_drive.png differ diff --git a/doc/gitian-building/create_vm_hard_drive_file_type.png b/doc/gitian-building/create_vm_hard_drive_file_type.png new file mode 100644 index 000000000..251b8ee3e Binary files /dev/null and b/doc/gitian-building/create_vm_hard_drive_file_type.png differ diff --git a/doc/gitian-building/create_vm_memsize.png b/doc/gitian-building/create_vm_memsize.png new file mode 100644 index 000000000..33717867a Binary files /dev/null and b/doc/gitian-building/create_vm_memsize.png differ diff --git a/doc/gitian-building/create_vm_page1.png b/doc/gitian-building/create_vm_page1.png new file mode 100644 index 000000000..edaebc622 Binary files /dev/null and b/doc/gitian-building/create_vm_page1.png differ diff --git a/doc/gitian-building/create_vm_storage_physical_hard_drive.png b/doc/gitian-building/create_vm_storage_physical_hard_drive.png new file mode 100644 index 000000000..987efaa40 Binary files /dev/null and b/doc/gitian-building/create_vm_storage_physical_hard_drive.png differ diff --git a/doc/gitian-building/debian_install_10_configure_clock.png b/doc/gitian-building/debian_install_10_configure_clock.png new file mode 100644 index 000000000..467c79018 Binary files /dev/null and b/doc/gitian-building/debian_install_10_configure_clock.png differ diff --git a/doc/gitian-building/debian_install_11_partition_disks.png b/doc/gitian-building/debian_install_11_partition_disks.png new file mode 100644 index 000000000..18110734d Binary files /dev/null and b/doc/gitian-building/debian_install_11_partition_disks.png differ diff --git a/doc/gitian-building/debian_install_12_choose_disk.png b/doc/gitian-building/debian_install_12_choose_disk.png new file mode 100644 index 000000000..a00d4abf1 Binary files /dev/null and b/doc/gitian-building/debian_install_12_choose_disk.png differ diff --git a/doc/gitian-building/debian_install_13_partition_scheme.png b/doc/gitian-building/debian_install_13_partition_scheme.png new file mode 100644 index 000000000..2f80f19b6 Binary files /dev/null and b/doc/gitian-building/debian_install_13_partition_scheme.png differ diff --git a/doc/gitian-building/debian_install_14_finish.png b/doc/gitian-building/debian_install_14_finish.png new file mode 100644 index 000000000..411d457e9 Binary files /dev/null and b/doc/gitian-building/debian_install_14_finish.png differ diff --git a/doc/gitian-building/debian_install_15_write_changes.png b/doc/gitian-building/debian_install_15_write_changes.png new file mode 100644 index 000000000..f26093982 Binary files /dev/null and b/doc/gitian-building/debian_install_15_write_changes.png differ diff --git a/doc/gitian-building/debian_install_16_choose_a_mirror.png b/doc/gitian-building/debian_install_16_choose_a_mirror.png new file mode 100644 index 000000000..d2c2e9523 Binary files /dev/null and b/doc/gitian-building/debian_install_16_choose_a_mirror.png differ diff --git a/doc/gitian-building/debian_install_17_choose_a_mirror2.png b/doc/gitian-building/debian_install_17_choose_a_mirror2.png new file mode 100644 index 000000000..cef2db078 Binary files /dev/null and b/doc/gitian-building/debian_install_17_choose_a_mirror2.png differ diff --git a/doc/gitian-building/debian_install_18_proxy_settings.png b/doc/gitian-building/debian_install_18_proxy_settings.png new file mode 100644 index 000000000..24ba25c10 Binary files /dev/null and b/doc/gitian-building/debian_install_18_proxy_settings.png differ diff --git a/doc/gitian-building/debian_install_19_software_selection.png b/doc/gitian-building/debian_install_19_software_selection.png new file mode 100644 index 000000000..d462757af Binary files /dev/null and b/doc/gitian-building/debian_install_19_software_selection.png differ diff --git a/doc/gitian-building/debian_install_1_boot_menu.png b/doc/gitian-building/debian_install_1_boot_menu.png new file mode 100644 index 000000000..27fd849b4 Binary files /dev/null and b/doc/gitian-building/debian_install_1_boot_menu.png differ diff --git a/doc/gitian-building/debian_install_20_install_grub.png b/doc/gitian-building/debian_install_20_install_grub.png new file mode 100644 index 000000000..de4f9be0c Binary files /dev/null and b/doc/gitian-building/debian_install_20_install_grub.png differ diff --git a/doc/gitian-building/debian_install_21_finish_installation.png b/doc/gitian-building/debian_install_21_finish_installation.png new file mode 100644 index 000000000..b967c3550 Binary files /dev/null and b/doc/gitian-building/debian_install_21_finish_installation.png differ diff --git a/doc/gitian-building/debian_install_2_select_a_language.png b/doc/gitian-building/debian_install_2_select_a_language.png new file mode 100644 index 000000000..1c9e0bcfc Binary files /dev/null and b/doc/gitian-building/debian_install_2_select_a_language.png differ diff --git a/doc/gitian-building/debian_install_3_select_location.png b/doc/gitian-building/debian_install_3_select_location.png new file mode 100644 index 000000000..005c39565 Binary files /dev/null and b/doc/gitian-building/debian_install_3_select_location.png differ diff --git a/doc/gitian-building/debian_install_4_configure_keyboard.png b/doc/gitian-building/debian_install_4_configure_keyboard.png new file mode 100644 index 000000000..580c8af7c Binary files /dev/null and b/doc/gitian-building/debian_install_4_configure_keyboard.png differ diff --git a/doc/gitian-building/debian_install_5_configure_the_network.png b/doc/gitian-building/debian_install_5_configure_the_network.png new file mode 100644 index 000000000..a7fdffc66 Binary files /dev/null and b/doc/gitian-building/debian_install_5_configure_the_network.png differ diff --git a/doc/gitian-building/debian_install_6_domain_name.png b/doc/gitian-building/debian_install_6_domain_name.png new file mode 100644 index 000000000..7a986d92f Binary files /dev/null and b/doc/gitian-building/debian_install_6_domain_name.png differ diff --git a/doc/gitian-building/debian_install_6a_set_up_root_password.png b/doc/gitian-building/debian_install_6a_set_up_root_password.png new file mode 100644 index 000000000..31bd210f3 Binary files /dev/null and b/doc/gitian-building/debian_install_6a_set_up_root_password.png differ diff --git a/doc/gitian-building/debian_install_7_set_up_user_fullname.png b/doc/gitian-building/debian_install_7_set_up_user_fullname.png new file mode 100644 index 000000000..bffc6ccd7 Binary files /dev/null and b/doc/gitian-building/debian_install_7_set_up_user_fullname.png differ diff --git a/doc/gitian-building/debian_install_8_set_up_username.png b/doc/gitian-building/debian_install_8_set_up_username.png new file mode 100644 index 000000000..9e2750ad4 Binary files /dev/null and b/doc/gitian-building/debian_install_8_set_up_username.png differ diff --git a/doc/gitian-building/debian_install_9_user_password.png b/doc/gitian-building/debian_install_9_user_password.png new file mode 100644 index 000000000..a26d30cba Binary files /dev/null and b/doc/gitian-building/debian_install_9_user_password.png differ diff --git a/doc/gitian-building/network_settings.png b/doc/gitian-building/network_settings.png new file mode 100644 index 000000000..1d9b6428a Binary files /dev/null and b/doc/gitian-building/network_settings.png differ diff --git a/doc/gitian-building/port_forwarding_rules.png b/doc/gitian-building/port_forwarding_rules.png new file mode 100644 index 000000000..e45c9efff Binary files /dev/null and b/doc/gitian-building/port_forwarding_rules.png differ diff --git a/doc/gitian-building/select_startup_disk.png b/doc/gitian-building/select_startup_disk.png new file mode 100644 index 000000000..729b368fd Binary files /dev/null and b/doc/gitian-building/select_startup_disk.png differ diff --git a/doc/img/dogestrap1.png b/doc/img/dogestrap1.png new file mode 100644 index 000000000..9b05d946f Binary files /dev/null and b/doc/img/dogestrap1.png differ diff --git a/doc/img/dogestrap2.png b/doc/img/dogestrap2.png new file mode 100644 index 000000000..21cc230f6 Binary files /dev/null and b/doc/img/dogestrap2.png differ diff --git a/doc/release-notes.md b/doc/release-notes.md deleted file mode 100644 index dab87ebda..000000000 --- a/doc/release-notes.md +++ /dev/null @@ -1,397 +0,0 @@ -Bitcoin Core version 0.9.0rc3 is now available from: - - https://bitcoin.org/bin/0.9.0/test/ - -This is a release candidate for a new major version. A major version brings -both new features and bug fixes. - -Please report bugs using the issue tracker at github: - - https://github.com/bitcoin/bitcoin/issues - -How to Upgrade --------------- - -If you are running an older version, shut it down. Wait until it has completely -shut down (which might take a few minutes for older versions), uninstall all -earlier versions of Bitcoin, then run the installer (on Windows) or just copy -over /Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux). - -If you are upgrading from version 0.7.2 or earlier, the first time you run -0.9.0 your blockchain files will be re-indexed, which will take anywhere from -30 minutes to several hours, depending on the speed of your machine. - -On Windows, do not forget to uninstall all earlier versions of the Bitcoin -client first, especially if you are switching to the 64-bit version. - -Windows 64-bit installer -------------------------- - -New in 0.9.0 is the Windows 64-bit version of the client. There have been -frequent reports of users running out of virtual memory on 32-bit systems -during the initial sync. Because of this it is recommended to install the -64-bit version if your system supports it. - -NOTE: Release candidate 2 Windows binaries are not code-signed; use PGP -and the SHA256SUMS.asc file to make sure your binaries are correct. -In the final 0.9.0 release, Windows setup.exe binaries will be code-signed. - -OSX 10.5 / 32-bit no longer supported -------------------------------------- - -0.9.0 drops support for older Macs. The minimum requirements are now: -* A 64-bit-capable CPU (see http://support.apple.com/kb/ht3696); -* Mac OS 10.6 or later (see https://support.apple.com/kb/ht1633). - -Downgrading warnings --------------------- - -The 'chainstate' for this release is not always compatible with previous -releases, so if you run 0.9 and then decide to switch back to a -0.8.x release you might get a blockchain validation error when starting the -old release (due to 'pruned outputs' being omitted from the index of -unspent transaction outputs). - -Running the old release with the -reindex option will rebuild the chainstate -data structures and correct the problem. - -Also, the first time you run a 0.8.x release on a 0.9 wallet it will rescan -the blockchain for missing spent coins, which will take a long time (tens -of minutes on a typical machine). - -Rebranding to Bitcoin Core ---------------------------- - -To reduce confusion between Bitcoin-the-network and Bitcoin-the-software we -have renamed the reference client to Bitcoin Core. - -Autotools build system ------------------------ - -For 0.9.0 we switched to an autotools-based build system instead of individual -(q)makefiles. - -Using the standard "./autogen.sh; ./configure; make" to build Bitcoin-Qt and -bitcoind makes it easier for experienced open source developers to contribute -to the project. - -Be sure to check doc/build-*.md for your platform before building from source. - -Bitcoin-cli -------------- - -Another change in the 0.9 release is moving away from the bitcoind executable -functioning both as a server and as a RPC client. The RPC client functionality -("tell the running bitcoin daemon to do THIS") was split into a separate -executable, 'bitcoin-cli'. The RPC client code will eventually be removed from -bitcoind, but will be kept for backwards compatibility for a release or two. - -`walletpassphrase` RPC ------------------------ - -The behavior of the `walletpassphrase` RPC when the wallet is already unlocked -has changed between 0.8 and 0.9. - -The 0.8 behavior of `walletpassphrase` is to fail when the wallet is already unlocked: - - > walletpassphrase 1000 - walletunlocktime = now + 1000 - > walletpassphrase 10 - Error: Wallet is already unlocked (old unlock time stays) - -The new behavior of `walletpassphrase` is to set a new unlock time overriding -the old one: - - > walletpassphrase 1000 - walletunlocktime = now + 1000 - > walletpassphrase 10 - walletunlocktime = now + 10 (overriding the old unlock time) - -Transaction malleability-related fixes --------------------------------------- - -This release contains a few fixes for transaction ID (TXID) malleability -issues: - -- -spendzeroconfchange=0 command-line option, to avoid spending - zero-confirmation change -- IsStandard() transaction rules tightened to prevent relaying and mining of - mutated transactions -- Additional information in listtransactions/gettransaction output to - report wallet transactions that conflict with each other because - they spend the same outputs. -- Bug fixes to the getbalance/listaccounts RPC commands, which would report - incorrect balances for double-spent (or mutated) transactions. -- New option: -zapwallettxes to rebuild the wallet's transaction information - -Transaction Fees ----------------- - -This release drops the default fee required to relay transactions across the -network and for miners to consider the transaction in their blocks to -0.01mBTC per kilobyte. - -Note that getting a transaction relayed across the network does NOT guarantee -that the transaction will be accepted by a miner; by default, miners fill -their blocks with 50 kilobytes of high-priority transactions, and then with -700 kilobytes of the highest-fee-per-kilobyte transactions. - -The minimum relay/mining fee-per-kilobyte may be changed with the -minrelaytxfee option. Note that previous releases incorrectly used -the mintxfee setting to determine which low-priority transactions should -be considered for inclusion in blocks. - -The wallet code still uses a default fee for low-priority transactions of -0.1mBTC per kilobyte. During periods of heavy transaction volume, even this -fee may not be enough to get transactions confirmed quickly; the mintxfee -option may be used to override the default. - -0.9.0rc3 Release notes -======================= - -RPC: - -- New notion of 'conflicted' transactions, reported as confirmations: -1 -- 'listreceivedbyaddress' now provides tx ids -- Add raw transaction hex to 'gettransaction' output -- Updated help and tests for 'getreceivedby(account|address)' -- In 'getblock', accept 2nd 'verbose' parameter, similar to getrawtransaction, - but defaulting to 1 for backward compatibility -- Add 'verifychain', to verify chain database at runtime -- Add 'dumpwallet' and 'importwallet' RPCs -- 'keypoolrefill' gains optional size parameter -- Add 'getbestblockhash', to return tip of best chain -- Add 'chainwork' (the total work done by all blocks since the genesis block) - to 'getblock' output -- Make RPC password resistant to timing attacks -- Clarify help messages and add examples -- Add 'getrawchangeaddress' call for raw transaction change destinations -- Reject insanely high fees by default in 'sendrawtransaction' -- Add RPC call 'decodescript' to decode a hex-encoded transaction script -- Make 'validateaddress' provide redeemScript -- Add 'getnetworkhashps' to get the calculated network hashrate -- New RPC 'ping' command to request ping, new 'pingtime' and 'pingwait' fields - in 'getpeerinfo' output -- Adding new 'addrlocal' field to 'getpeerinfo' output -- Add verbose boolean to 'getrawmempool' -- Add rpc command 'getunconfirmedbalance' to obtain total unconfirmed balance -- Explicitly ensure that wallet is unlocked in `importprivkey` -- Add check for valid keys in `importprivkey` - -Command-line options: - -- New option: -nospendzeroconfchange to never spend unconfirmed change outputs -- New option: -zapwallettxes to rebuild the wallet's transaction information -- Rename option '-tor' to '-onion' to better reflect what it does -- Add '-disablewallet' mode to let bitcoind run entirely without wallet (when - built with wallet) -- Update default '-rpcsslciphers' to include TLSv1.2 -- make '-logtimestamps' default on and rework help-message -- RPC client option: '-rpcwait', to wait for server start -- Remove '-logtodebugger' -- Allow `-noserver` with bitcoind - -Block-chain handling and storage: - -- Update leveldb to 1.15 -- Check for correct genesis (prevent cases where a datadir from the wrong - network is accidentally loaded) -- Allow txindex to be removed and add a reindex dialog -- Log aborted block database rebuilds -- Store orphan blocks in serialized form, to save memory -- Limit the number of orphan blocks in memory to 750 -- Fix non-standard disconnected transactions causing mempool orphans -- Add a new checkpoint at block 279,000 - -Wallet: - -- Bug fixes and new regression tests to correctly compute - the balance of wallets containing double-spent (or mutated) transactions -- Store key creation time. Calculate whole-wallet birthday. -- Optimize rescan to skip blocks prior to birthday -- Let user select wallet file with -wallet=foo.dat -- Consider generated coins mature at 101 instead of 120 blocks -- Improve wallet load time -- Don't count txins for priority to encourage sweeping -- Don't create empty transactions when reading a corrupted wallet -- Fix rescan to start from beginning after importprivkey -- Only create signatures with low S values - -Mining: - -- Increase default -blockmaxsize/prioritysize to 750K/50K -- 'getblocktemplate' does not require a key to create a block template -- Mining code fee policy now matches relay fee policy - -Protocol and network: - -- Drop the fee required to relay a transaction to 0.01mBTC per kilobyte -- Send tx relay flag with version -- New 'reject' P2P message (BIP 0061, see - https://gist.github.com/gavinandresen/7079034 for draft) -- Dump addresses every 15 minutes instead of 10 seconds -- Relay OP_RETURN data TxOut as standard transaction type -- Remove CENT-output free transaction rule when relaying -- Lower maximum size for free transaction creation -- Send multiple inv messages if mempool.size > MAX_INV_SZ -- Split MIN_PROTO_VERSION into INIT_PROTO_VERSION and MIN_PEER_PROTO_VERSION -- Do not treat fFromMe transaction differently when broadcasting -- Process received messages one at a time without sleeping between messages -- Improve logging of failed connections -- Bump protocol version to 70002 -- Add some additional logging to give extra network insight -- Added new DNS seed from bitcoinstats.com - -Validation: - -- Log reason for non-standard transaction rejection -- Prune provably-unspendable outputs, and adapt consistency check for it. -- Detect any sufficiently long fork and add a warning -- Call the -alertnotify script when we see a long or invalid fork -- Fix multi-block reorg transaction resurrection -- Reject non-canonically-encoded serialization sizes -- Reject dust amounts during validation -- Accept nLockTime transactions that finalize in the next block - -Build system: - -- Switch to autotools-based build system -- Build without wallet by passing `--disable-wallet` to configure, this - removes the BerkeleyDB dependency -- Upgrade gitian dependencies (libpng, libz, libupnpc, boost, openssl) to more - recent versions -- Windows 64-bit build support -- Solaris compatibility fixes -- Check integrity of gitian input source tarballs -- Enable full GCC Stack-smashing protection for all OSes - -GUI: - -- Switch to Qt 5.2.0 for Windows build -- Add payment request (BIP 0070) support -- Improve options dialog -- Show transaction fee in new send confirmation dialog -- Add total balance in overview page -- Allow user to choose data directory on first start, when data directory is - missing, or when the -choosedatadir option is passed -- Save and restore window positions -- Add vout index to transaction id in transactions details dialog -- Add network traffic graph in debug window -- Add open URI dialog -- Add Coin Control Features -- Improve receive coins workflow: make the 'Receive' tab into a form to request - payments, and move historical address list functionality to File menu. -- Rebrand to `Bitcoin Core` -- Move initialization/shutdown to a thread. This prevents "Not responding" - messages during startup. Also show a window during shutdown. -- Don't regenerate autostart link on every client startup -- Show and store message of normal bitcoin:URI -- Fix richtext detection hang issue on very old Qt versions -- OS X: Make use of the 10.8+ user notification center to display Growl-like - notifications -- OS X: Added NSHighResolutionCapable flag to Info.plist for better font - rendering on Retina displays. -- OS X: Fix bitcoin-qt startup crash when clicking dock icon -- Linux: Fix Gnome bitcoin: URI handler - -Miscellaneous: - -- Add Linux script (contrib/qos/tc.sh) to limit outgoing bandwidth -- Add '-regtest' mode, similar to testnet but private with instant block - generation with 'setgenerate' RPC. -- Add 'linearize.py' script to contrib, for creating bootstrap.dat -- Add separate bitcoin-cli client - -Credits --------- - -Thanks to everyone who contributed to this release: - -- Andrey -- Ashley Holman -- b6393ce9-d324-4fe1-996b-acf82dbc3d53 -- bitsofproof -- Brandon Dahler -- Calvin Tam -- Christian Decker -- Christian von Roques -- Christopher Latham -- Chuck -- coblee -- constantined -- Cory Fields -- Cozz Lovan -- daniel -- Daniel Larimer -- David Hill -- Dmitry Smirnov -- Drak -- Eric Lombrozo -- fanquake -- fcicq -- Florin -- frewil -- Gavin Andresen -- Gregory Maxwell -- gubatron -- Guillermo Céspedes Tabárez -- Haakon Nilsen -- HaltingState -- Han Lin Yap -- harry -- Ian Kelling -- Jeff Garzik -- Johnathan Corgan -- Jonas Schnelli -- Josh Lehan -- Josh Triplett -- Julian Langschaedel -- Kangmo -- Lake Denman -- Luke Dashjr -- Mark Friedenbach -- Matt Corallo -- Michael Bauer -- Michael Ford -- Michagogo -- Midnight Magic -- Mike Hearn -- Nils Schneider -- Noel Tiernan -- Olivier Langlois -- patrick s -- Patrick Strateman -- paveljanik -- Peter Todd -- phantomcircuit -- phelixbtc -- Philip Kaufmann -- Pieter Wuille -- Rav3nPL -- R E Broadley -- regergregregerrge -- Robert Backhaus -- Roman Mindalev -- Rune K. Svendsen -- Ryan Niebur -- Scott Ellis -- Scott Willeke -- Sergey Kazenyuk -- Shawn Wilkinson -- Sined -- sje -- Subo1978 -- super3 -- Tamas Blummer -- theuni -- Thomas Holenstein -- Timon Rapp -- Timothy Stranex -- Tom Geller -- Torstein Husebø -- Vaclav Vobornik -- vhf / victor felder -- Vinnie Falco -- Warren Togami -- Wil Bown -- Wladimir J. van der Laan diff --git a/doc/release-notes/release-notes-0.6.0.md b/doc/release-notes/bitcoin/release-notes-0.6.0.md similarity index 100% rename from doc/release-notes/release-notes-0.6.0.md rename to doc/release-notes/bitcoin/release-notes-0.6.0.md diff --git a/doc/release-notes/release-notes-0.6.1.md b/doc/release-notes/bitcoin/release-notes-0.6.1.md similarity index 100% rename from doc/release-notes/release-notes-0.6.1.md rename to doc/release-notes/bitcoin/release-notes-0.6.1.md diff --git a/doc/release-notes/release-notes-0.6.2.md b/doc/release-notes/bitcoin/release-notes-0.6.2.md similarity index 100% rename from doc/release-notes/release-notes-0.6.2.md rename to doc/release-notes/bitcoin/release-notes-0.6.2.md diff --git a/doc/release-notes/release-notes-0.6.3.md b/doc/release-notes/bitcoin/release-notes-0.6.3.md similarity index 100% rename from doc/release-notes/release-notes-0.6.3.md rename to doc/release-notes/bitcoin/release-notes-0.6.3.md diff --git a/doc/release-notes/release-notes-0.7.0.md b/doc/release-notes/bitcoin/release-notes-0.7.0.md similarity index 100% rename from doc/release-notes/release-notes-0.7.0.md rename to doc/release-notes/bitcoin/release-notes-0.7.0.md diff --git a/doc/release-notes/release-notes-0.7.1.md b/doc/release-notes/bitcoin/release-notes-0.7.1.md similarity index 100% rename from doc/release-notes/release-notes-0.7.1.md rename to doc/release-notes/bitcoin/release-notes-0.7.1.md diff --git a/doc/release-notes/release-notes-0.7.2.md b/doc/release-notes/bitcoin/release-notes-0.7.2.md similarity index 100% rename from doc/release-notes/release-notes-0.7.2.md rename to doc/release-notes/bitcoin/release-notes-0.7.2.md diff --git a/doc/release-notes/release-notes-0.8.0.md b/doc/release-notes/bitcoin/release-notes-0.8.0.md similarity index 100% rename from doc/release-notes/release-notes-0.8.0.md rename to doc/release-notes/bitcoin/release-notes-0.8.0.md diff --git a/doc/release-notes/release-notes-0.8.1.md b/doc/release-notes/bitcoin/release-notes-0.8.1.md similarity index 100% rename from doc/release-notes/release-notes-0.8.1.md rename to doc/release-notes/bitcoin/release-notes-0.8.1.md diff --git a/doc/release-notes/release-notes-0.8.2.md b/doc/release-notes/bitcoin/release-notes-0.8.2.md similarity index 100% rename from doc/release-notes/release-notes-0.8.2.md rename to doc/release-notes/bitcoin/release-notes-0.8.2.md diff --git a/doc/release-notes/release-notes-0.8.3.md b/doc/release-notes/bitcoin/release-notes-0.8.3.md similarity index 100% rename from doc/release-notes/release-notes-0.8.3.md rename to doc/release-notes/bitcoin/release-notes-0.8.3.md diff --git a/doc/release-notes/release-notes-0.8.4.md b/doc/release-notes/bitcoin/release-notes-0.8.4.md similarity index 100% rename from doc/release-notes/release-notes-0.8.4.md rename to doc/release-notes/bitcoin/release-notes-0.8.4.md diff --git a/doc/release-notes/release-notes-0.8.5.md b/doc/release-notes/bitcoin/release-notes-0.8.5.md similarity index 100% rename from doc/release-notes/release-notes-0.8.5.md rename to doc/release-notes/bitcoin/release-notes-0.8.5.md diff --git a/doc/release-notes/release-notes-0.8.6.md b/doc/release-notes/bitcoin/release-notes-0.8.6.md similarity index 100% rename from doc/release-notes/release-notes-0.8.6.md rename to doc/release-notes/bitcoin/release-notes-0.8.6.md diff --git a/doc/release-notes/bitcoin/release-notes-0.9.0.md b/doc/release-notes/bitcoin/release-notes-0.9.0.md new file mode 100644 index 000000000..bd76f4499 --- /dev/null +++ b/doc/release-notes/bitcoin/release-notes-0.9.0.md @@ -0,0 +1,204 @@ +Bitcoin Core version 0.9.2 is now available from: + + https://bitcoin.org/bin/0.9.2/ + +This is a new minor version release, bringing mostly bug fixes and some minor +improvements. OpenSSL has been updated because of a security issue (CVE-2014-0224). +Upgrading to this release is recommended. + +Please report bugs using the issue tracker at github: + + https://github.com/bitcoin/bitcoin/issues + +Upgrading and downgrading +========================== + +How to Upgrade +-------------- + +If you are running an older version, shut it down. Wait until it has completely +shut down (which might take a few minutes for older versions), then run the +installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). + +If you are upgrading from version 0.7.2 or earlier, the first time you run +0.9.0 your blockchain files will be re-indexed, which will take anywhere from +30 minutes to several hours, depending on the speed of your machine. + +Downgrading warnings +-------------------- + +The 'chainstate' for this release is not always compatible with previous +releases, so if you run 0.9.x and then decide to switch back to a +0.8.x release you might get a blockchain validation error when starting the +old release (due to 'pruned outputs' being omitted from the index of +unspent transaction outputs). + +Running the old release with the -reindex option will rebuild the chainstate +data structures and correct the problem. + +Also, the first time you run a 0.8.x release on a 0.9 wallet it will rescan +the blockchain for missing spent coins, which will take a long time (tens +of minutes on a typical machine). + +Important changes +================== + +Gitian OSX build +----------------- + +The deterministic build system that was already used for Windows and Linux +builds is now used for OSX as well. Although the resulting executables have +been tested quite a bit, there could be possible regressions. Be sure to report +these on the Github bug tracker mentioned above. + +Compatibility of Linux build +----------------------------- + +For Linux we now build against Qt 4.6, and filter the symbols for libstdc++ and glibc. +This brings back compatibility with + +- Debian 6+ / Tails +- Ubuntu 10.04 +- CentOS 6.5 + +0.9.2 Release notes +======================= + +The OpenSSL dependency in the gitian builds has been upgraded to 1.0.1h because of CVE-2014-0224. + +RPC: +- Add `getwalletinfo`, `getblockchaininfo` and `getnetworkinfo` calls (will replace hodge-podge `getinfo` at some point) +- Add a `relayfee` field to `getnetworkinfo` +- Fix RPC related shutdown hangs and leaks +- Always show syncnode in `getpeerinfo` +- `sendrawtransaction`: report the reject code and reason, and make it possible to re-send transactions that are already in the mempool +- `getmininginfo` show right genproclimit + +Command-line options: +- Fix `-printblocktree` output +- Show error message if ReadConfigFile fails + +Block-chain handling and storage: +- Fix for GetBlockValue() after block 13,440,000 (BIP42) +- Upgrade leveldb to 1.17 + +Protocol and network code: +- Per-peer block download tracking and stalled download detection +- Add new DNS seed from bitnodes.io +- Prevent socket leak in ThreadSocketHandler and correct some proxy related socket leaks +- Use pnode->nLastRecv as sync score (was the wrong way around) + +Wallet: +- Make GetAvailableCredit run GetHash() only once per transaction (performance improvement) +- Lower paytxfee warning threshold from 0.25 BTC to 0.01 BTC +- Fix importwallet nTimeFirstKey (trigger necessary rescans) +- Log BerkeleyDB version at startup +- CWallet init fix + +Build system: +- Add OSX build descriptors to gitian +- Fix explicit --disable-qt-dbus +- Don't require db_cxx.h when compiling with wallet disabled and GUI enabled +- Improve missing boost error reporting +- Upgrade miniupnpc version to 1.9 +- gitian-linux: --enable-glibc-back-compat for binary compatibility with old distributions +- gitian: don't export any symbols from executable +- gitian: build against Qt 4.6 +- devtools: add script to check symbols from Linux gitian executables +- Remove build-time no-IPv6 setting + +GUI: +- Fix various coin control visual issues +- Show number of in/out connections in debug console +- Show weeks as well as years behind for long timespans behind +- Enable and disable the Show and Remove buttons for requested payments history based on whether any entry is selected. +- Show also value for options overridden on command line in options dialog +- Fill in label from address book also for URIs +- Fixes feel when resizing the last column on tables (issue #2862) +- Fix ESC in disablewallet mode +- Add expert section to wallet tab in optionsdialog +- Do proper boost::path conversion (fixes unicode in datadir) +- Only override -datadir if different from the default (fixes -datadir in config file) +- Show rescan progress at start-up +- Show importwallet progress +- Get required locks upfront in polling functions (avoids hanging on locks) +- Catch Windows shutdown events while client is running +- Optionally add third party links to transaction context menu +- Check for !pixmap() before trying to export QR code (avoids crashes when no QR code could be generated) +- Fix "Start bitcoin on system login" + +Miscellaneous: + +- Replace non-threadsafe C functions (gmtime, strerror and setlocale) +- Add missing cs_main and wallet locks +- Avoid exception at startup when system locale not recognized +- Changed bitrpc.py's raw_input to getpass for passwords to conceal characters during command line input +- devtools: add a script to fetch and postprocess translations + +Credits +-------- + +Thanks to everyone who contributed to this release: + +- Addy Yeow +- Altoidnerd +- Andrea D'Amore +- Andreas Schildbach +- Bardi Harborow +- Brandon Dahler +- Bryan Bishop +- Chris Beams +- Christian von Roques +- Cory Fields +- Cozz Lovan +- daniel +- Daniel Newton +- David A. Harding +- ditto-b +- duanemoody +- Eric S. Bullington +- Fabian Raetz +- Gavin Andresen +- Gregory Maxwell +- gubatron +- Haakon Nilsen +- harry +- Hector Jusforgues +- Isidoro Ghezzi +- Jeff Garzik +- Johnathan Corgan +- jtimon +- Kamil Domanski +- langerhans +- Luke Dashjr +- Manuel Araoz +- Mark Friedenbach +- Matt Corallo +- Matthew Bogosian +- Meeh +- Michael Ford +- Michagogo +- Mikael Wikman +- Mike Hearn +- olalonde +- paveljanik +- peryaudo +- Philip Kaufmann +- philsong +- Pieter Wuille +- R E Broadley +- richierichrawr +- Rune K. Svendsen +- rxl +- shshshsh +- Simon de la Rouviere +- Stuart Cardall +- super3 +- Telepatheic +- Thomas Zander +- Torstein Husebø +- Warren Togami +- Wladimir J. van der Laan +- Yoichi Hirai + diff --git a/doc/release-notes/release-notes-0.3.12.md b/doc/release-notes/release-notes-0.3.12.md deleted file mode 100644 index 38715bc75..000000000 --- a/doc/release-notes/release-notes-0.3.12.md +++ /dev/null @@ -1,13 +0,0 @@ -Version 0.3.12 is now available. - -Features: -* json-rpc errors return a more standard error object. (thanks to Gavin Andresen) -* json-rpc command line returns exit codes. -* json-rpc "backupwallet" command. -* Recovers and continues if an exception is caused by a message you received. Other nodes shouldn't be able to cause an exception, and it hasn't happened before, but if a way is found to cause an exception, this would keep it from being used to stop network nodes. - -If you have json-rpc code that checks the contents of the error string, you need to change it to expect error objects of the form {"code":,"message":}, which is the standard. See this thread: -http://www.bitcoin.org/smf/index.php?topic=969.0 - -Download: -http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.12/ diff --git a/doc/release-notes/release-notes-0.3.13.md b/doc/release-notes/release-notes-0.3.13.md deleted file mode 100644 index 2b95ff233..000000000 --- a/doc/release-notes/release-notes-0.3.13.md +++ /dev/null @@ -1,26 +0,0 @@ -Version 0.3.13 is now available. You should upgrade to prevent potential problems with 0/unconfirmed transactions. Note: 0.3.13 prevents problems if you haven't already spent a 0/unconfirmed transaction, but if that already happened, you need 0.3.13.2. - -Changes: -* Don't count or spend payments until they have 1 confirmation. -* Internal version number from 312 to 31300. -* Only accept transactions sent by IP address if -allowreceivebyip is specified. -* Dropped DB_PRIVATE Berkeley DB flag. -* Fix problem sending the last cent with sub-cent fractional change. -* Auto-detect whether to use 128-bit 4-way SSE2 on Linux. -Gavin Andresen: -* Option -rpcallowip= to accept json-rpc connections from another machine. -* Clean shutdown on SIGTERM on Linux. - -Download: -http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.13/ - -(Thanks Laszlo for the Mac OSX build!) - -Note: -The SSE2 auto-detect in the Linux 64-bit version doesn't work with AMD in 64-bit mode. Please try this instead and let me know if it gets it right: -http://www.bitcoin.org/download/bitcoin-0.3.13.1-specialbuild-linux64.tar.gz - -You can still control the SSE2 use manually with -4way and -4way=0. - -Version 0.3.13.2 (SVN rev 161) has improvements for the case where you already had 0/unconfirmed transactions that you might have already spent. Here's a Windows build of it: -http://www.bitcoin.org/download/bitcoin-0.3.13.2-win32-setup.exe diff --git a/doc/release-notes/release-notes-0.3.14.md b/doc/release-notes/release-notes-0.3.14.md deleted file mode 100644 index e73052ed9..000000000 --- a/doc/release-notes/release-notes-0.3.14.md +++ /dev/null @@ -1,11 +0,0 @@ -Version 0.3.14 is now available -http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.14/ - -Changes: -* Key pool feature for safer wallet backup -Gavin Andresen: -* TEST network mode with switch -testnet -* Option to use SSL for JSON-RPC connections on unix/osx -* validateaddress RPC command -eurekafag: -* Russian translation diff --git a/doc/release-notes/release-notes-0.3.15.md b/doc/release-notes/release-notes-0.3.15.md deleted file mode 100644 index b98052ef5..000000000 --- a/doc/release-notes/release-notes-0.3.15.md +++ /dev/null @@ -1,6 +0,0 @@ -* paytxfee switch is now per KB, so it adds the correct fee for large transactions -* sending avoids using coins with less than 6 confirmations if it can -* BitcoinMiner processes transactions in priority order based on age of dependencies -* make sure generation doesn't start before block 74000 downloaded -* bugfixes by Dean Gores -* testnet, keypoololdest and paytxfee added to getinfo diff --git a/doc/release-notes/release-notes-0.3.16.md b/doc/release-notes/release-notes-0.3.16.md deleted file mode 100644 index 743f84f30..000000000 --- a/doc/release-notes/release-notes-0.3.16.md +++ /dev/null @@ -1 +0,0 @@ -Never released. diff --git a/doc/release-notes/release-notes-0.3.17.md b/doc/release-notes/release-notes-0.3.17.md deleted file mode 100644 index d3604b8f8..000000000 --- a/doc/release-notes/release-notes-0.3.17.md +++ /dev/null @@ -1,12 +0,0 @@ -Version 0.3.17 is now available. - -Changes: -* new getwork, thanks m0mchil -* added transaction fee setting in UI options menu -* free transaction limits -* sendtoaddress returns transaction id instead of "sent" -* getaccountaddress - -The UI transaction fee setting was easy since it was still there from 0.1.5 and all I had to do was re-enable it. - -The accounts-based commands: move, sendfrom and getbalance will be in the next release. We still have some more changes to make first. diff --git a/doc/release-notes/release-notes-0.3.18.md b/doc/release-notes/release-notes-0.3.18.md deleted file mode 100644 index ab1c2e069..000000000 --- a/doc/release-notes/release-notes-0.3.18.md +++ /dev/null @@ -1,11 +0,0 @@ -Changes: -* Fixed a wallet.dat compatibility problem if you downgraded from 0.3.17 and then upgraded again -* IsStandard() check to only include known transaction types in blocks -* Jgarzik's optimisation to speed up the initial block download a little - -The main addition in this release is the Accounts-Based JSON-RPC commands that Gavin's been working on (more details at http://www.bitcoin.org/smf/index.php?topic=1886.0). -* getaccountaddress -* sendfrom -* move -* getbalance -* listtransactions diff --git a/doc/release-notes/release-notes-0.3.19.md b/doc/release-notes/release-notes-0.3.19.md deleted file mode 100644 index fcd867561..000000000 --- a/doc/release-notes/release-notes-0.3.19.md +++ /dev/null @@ -1,9 +0,0 @@ -There's more work to do on DoS, but I'm doing a quick build of what I have so far in case it's needed, before venturing into more complex ideas. The build for this is version 0.3.19. - -- Added some DoS controls -As Gavin and I have said clearly before, the software is not at all resistant to DoS attack. This is one improvement, but there are still more ways to attack than I can count. - -I'm leaving the -limitfreerelay part as a switch for now and it's there if you need it. - -- Removed "safe mode" alerts -"safe mode" alerts was a temporary measure after the 0.3.9 overflow bug. We can say all we want that users can just run with "-disablesafemode", but it's better just not to have it for the sake of appearances. It was never intended as a long term feature. Safe mode can still be triggered by seeing a longer (greater total PoW) invalid block chain. diff --git a/doc/release-notes/release-notes-0.3.20.1.md b/doc/release-notes/release-notes-0.3.20.1.md deleted file mode 100644 index 6c5682ea4..000000000 --- a/doc/release-notes/release-notes-0.3.20.1.md +++ /dev/null @@ -1 +0,0 @@ -Never released or release notes were lost. diff --git a/doc/release-notes/release-notes-0.3.20.2.md b/doc/release-notes/release-notes-0.3.20.2.md deleted file mode 100644 index 09ecb736b..000000000 --- a/doc/release-notes/release-notes-0.3.20.2.md +++ /dev/null @@ -1,17 +0,0 @@ -The maxsendbuffer bug (0.3.20.1 clients not being able to download the block chain from other 0.3.20.1 clients) was only going to get -worse as people upgraded, so I cherry-picked the bug fix and created a minor release yesterday. - -The Amazon Machine Images I used to do the builds are available: - - ami-38a05251 Bitcoin-v0.3.20.2 Mingw (Windows; Administrator password 'bitcoin development') - ami-30a05259 Bitcoin_0.3.20.2 Linux32 - ami-8abc4ee3 Bitcoin_0.3.20.2 Linux64 - -(mac build will be done soon) - -If you have already downloaded version 0.3.20.1, please either add this to your bitcoin.conf file: - - maxsendbuffer=10000 - maxreceivebuffer=10000 - -... or download the new version. diff --git a/doc/release-notes/release-notes-0.3.20.md b/doc/release-notes/release-notes-0.3.20.md deleted file mode 100644 index 9ae21802e..000000000 --- a/doc/release-notes/release-notes-0.3.20.md +++ /dev/null @@ -1,22 +0,0 @@ -Please checkout the git integration branch from: - -https://github.com/bitcoin/bitcoin - -... and help test. The new features that need testing are: - -* -nolisten : https://github.com/bitcoin/bitcoin/pull/11 -* -rescan : scan block chain for missing wallet transactions -* -printtoconsole : https://github.com/bitcoin/bitcoin/pull/37 -* RPC gettransaction details : https://github.com/bitcoin/bitcoin/pull/24 -* listtransactions new features : https://github.com/bitcoin/bitcoin/pull/10 - -Bug fixes that also need testing: - -* -maxconnections= : https://github.com/bitcoin/bitcoin/pull/42 -* RPC listaccounts minconf : https://github.com/bitcoin/bitcoin/pull/27 -* RPC move, add time to output : https://github.com/bitcoin/bitcoin/pull/21 -* ...and several improvements to --help output. - -This needs more testing on Windows! Please drop me a quick private message, email, or IRC message if you are able to do some testing. If you find bugs, please open an issue at: - -https://github.com/bitcoin/bitcoin/issues diff --git a/doc/release-notes/release-notes-0.3.21.md b/doc/release-notes/release-notes-0.3.21.md deleted file mode 100644 index f3b6bc426..000000000 --- a/doc/release-notes/release-notes-0.3.21.md +++ /dev/null @@ -1,20 +0,0 @@ -Binaries for Bitcoin version 0.3.21 are available at: - https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.21/ - -Changes and new features from the 0.3.20 release include: - -* Universal Plug and Play support. Enable automatic opening of a port for incoming connections by running bitcoin or bitcoind with the - -upnp=1 command line switch or using the Options dialog box. - -* Support for full-precision bitcoin amounts. You can now send, and bitcoin will display, bitcoin amounts smaller than 0.01. However, sending fewer than 0.01 bitcoins still requires a 0.01 bitcoin fee (so you can send 1.0001 bitcoins without a fee, but you will be asked to pay a fee if you try to send 0.0001). - -* A new method of finding bitcoin nodes to connect with, via DNS A records. Use the -dnsseed option to enable. - -For developers, changes to bitcoin's remote-procedure-call API: - -* New rpc command "sendmany" to send bitcoins to more than one address in a single transaction. - -* Several bug fixes, including a serious intermittent bug that would sometimes cause bitcoind to stop accepting rpc requests. - -* -logtimestamps option, to add a timestamp to each line in debug.log. - -* Immature blocks (newly generated, under 120 confirmations) are now shown in listtransactions. diff --git a/doc/release-notes/release-notes-0.3.22.md b/doc/release-notes/release-notes-0.3.22.md deleted file mode 100644 index 4c05e3e5e..000000000 --- a/doc/release-notes/release-notes-0.3.22.md +++ /dev/null @@ -1,16 +0,0 @@ -Download URL: https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.22/ - -This is largely a bugfix and TX fee schedule release. We also hope to make 0.3.23 a quick release, to fix problems that the network has seen due to explosive growth in the past week. - -Notable changes: -* Client will accept and relay TX's with 0.0005 BTC fee schedule (users still pay 0.01 BTC per kb, until next version) -* Non-standard transactions accepted on testnet -* Source code tree reorganized (prep for autotools build) -* Remove "Generate Coins" option from GUI, and remove 4way SSE miner. Internal reference CPU miner remains available, but users are directed to external miners for best hash production. -* IRC is overflowing. Client now bootstraps to channels #bitcoin00 - #bitcoin99 -* DNS names now may be used with -addnode, -connect (requires -dns to enable) - -RPC changes: -* 'listtransactions' adds 'from' param, for range queries -* 'move' may take account balances negative -* 'settxfee' added, to manually set TX fee diff --git a/doc/release-notes/release-notes-0.3.23.md b/doc/release-notes/release-notes-0.3.23.md deleted file mode 100644 index c1d520e49..000000000 --- a/doc/release-notes/release-notes-0.3.23.md +++ /dev/null @@ -1,10 +0,0 @@ -Win32, Linux, MacOSX and source releases for bitcoin v0.3.23 have been uploaded to -https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.23/ - -This is another quick bugfix release, trying to deal with the influx of new bitcoin users. - -Main items of note: - -* P2P connect-to-node logic changed to reduce timeout a bit. The network saw a huge influx of new users, who do not permit incoming connections. This change is a short-term hack, to more quickly hunt for useful P2P connections. Better "leaf node" logic is in the works, but this should let us limp along until then. One may use -upnp to properly forward ports, and help the network. -* Transaction fee reduced to 0.0005 for new transactions -* Client will relay transactions with fees as low as 0.0001 BTC diff --git a/doc/release-notes/release-notes-0.3.24.md b/doc/release-notes/release-notes-0.3.24.md deleted file mode 100644 index d35ac66f2..000000000 --- a/doc/release-notes/release-notes-0.3.24.md +++ /dev/null @@ -1,20 +0,0 @@ -Bitcoin v0.3.24 is now available for download at -https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.24/ - -This is another bug fix release. We had hoped to have wallet encryption ready for release, but more urgent fixes for existing clients were needed -- most notably block download problems were getting severe. Wallet encryption is ready for testing at https://github.com/bitcoin/bitcoin/pull/352 for the git-savvy, and hopefully will follow shortly in the next release, v0.4. - -Notable fixes in v0.3.24, and the main reasons for this release: - -F1) Block downloads were failing or taking unreasonable amounts of time to complete, because the increased size of the block chain was bumping up against some earlier buffer-size DoS limits. - -F2) Fix crash caused by loss/lack of network connection. - -Notable changes in v0.3.24: - -C1) DNS seeding enabled by default. - -C2) UPNP enabled by default in the GUI client. The percentage of bitcoin clients that accept incoming connections is quite small, and that is a problem. This should help. bitcoind, and unofficial builds, are unchanged (though we encourage use of "-upnp" to help the network!) - -C3) Initial unit testing framework. Bitcoin sorely needs automated tests, and this is a beginning. Contributions welcome. - -C4) Internal wallet code cleanup. While invisible to an end user, this change provides the basis for v0.4's wallet encryption. diff --git a/doc/release-notes/release-notes-0.4.0.md b/doc/release-notes/release-notes-0.4.0.md deleted file mode 100644 index 145072a36..000000000 --- a/doc/release-notes/release-notes-0.4.0.md +++ /dev/null @@ -1,70 +0,0 @@ -Bitcoin version 0.4.0 is now available for download at: -http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.4.0/ - -The main feature in this release is wallet private key encryption; -you can set a passphrase that must be entered before sending coins. -See below for more information; if you decide to encrypt your wallet, -WRITE DOWN YOUR PASSPHRASE AND PUT IT IN A SECURE LOCATION. If you -forget or lose your wallet passphrase, you lose your bitcoins. -Previous versions of bitcoin are unable to read encrypted wallets, -and will crash on startup if the wallet is encrypted. - -Also note: bitcoin version 0.4 uses a newer version of Berkeley DB -(bdb version 4.8) than previous versions (bdb 4.7). If you upgrade -to version 0.4 and then revert back to an earlier version of bitcoin -the it may be unable to start because bdb 4.7 cannot read bdb 4.8 -"log" files. - - -Notable bug fixes from version 0.3.24: - -Fix several bitcoin-becomes-unresponsive bugs due to multithreading -deadlocks. - -Optimize database writes for large (lots of inputs) transactions -(fixes a potential denial-of-service attack) - - -Wallet Encryption - -Bitcoin supports native wallet encryption so that people who steal your -wallet file don't automatically get access to all of your Bitcoins. -In order to enable this feature, choose "Encrypt Wallet" from the -Options menu. You will be prompted to enter a passphrase, which -will be used as the key to encrypt your wallet and will be needed -every time you wish to send Bitcoins. If you lose this passphrase, -you will lose access to spend all of the bitcoins in your wallet, -no one, not even the Bitcoin developers can recover your Bitcoins. -This means you are responsible for your own security, store your -passphrase in a secure location and do not forget it. - -Remember that the encryption built into bitcoin only encrypts the -actual keys which are required to send your bitcoins, not the full -wallet. This means that someone who steals your wallet file will -be able to see all the addresses which belong to you, as well as the -relevant transactions, you are only protected from someone spending -your coins. - -It is recommended that you backup your wallet file before you -encrypt your wallet. To do this, close the Bitcoin client and -copy the wallet.dat file from ~/.bitcoin/ on Linux, /Users/(user -name)/Application Support/Bitcoin/ on Mac OSX, and %APPDATA%/Bitcoin/ -on Windows (that is /Users/(user name)/AppData/Roaming/Bitcoin on -Windows Vista and 7 and /Documents and Settings/(user name)/Application -Data/Bitcoin on Windows XP). Once you have copied that file to a -safe location, reopen the Bitcoin client and Encrypt your wallet. -If everything goes fine, delete the backup and enjoy your encrypted -wallet. Note that once you encrypt your wallet, you will never be -able to go back to a version of the Bitcoin client older than 0.4. - -Keep in mind that you are always responsible for your own security. -All it takes is a slightly more advanced wallet-stealing trojan which -installs a keylogger to steal your wallet passphrase as you enter it -in addition to your wallet file and you have lost all your Bitcoins. -Wallet encryption cannot keep you safe if you do not practice -good security, such as running up-to-date antivirus software, only -entering your wallet passphrase in the Bitcoin client and using the -same passphrase only as your wallet passphrase. - -See the doc/README file in the bitcoin source for technical details -of wallet encryption. diff --git a/doc/release-notes/release-notes-0.4.1.md b/doc/release-notes/release-notes-0.4.1.md deleted file mode 100644 index ac471a8d7..000000000 --- a/doc/release-notes/release-notes-0.4.1.md +++ /dev/null @@ -1,38 +0,0 @@ -Bitcoin version 0.4.1 is now available for download at: -http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.4.1/ - -This is a bugfix only release based on 0.4.0. - -Please report bugs by replying to this forum thread. - -MAJOR BUG FIX (CVE-2011-4447) - -The wallet encryption feature introduced in Bitcoin version 0.4.0 did not sufficiently secure the private keys. An attacker who -managed to get a copy of your encrypted wallet.dat file might be able to recover some or all of the unencrypted keys and steal the -associated coins. - -If you have a previously encrypted wallet.dat, the first time you run wxbitcoin or bitcoind the wallet will be rewritten, Bitcoin will -shut down, and you will be prompted to restart it to run with the new, properly encrypted file. - -If you had a previously encrypted wallet.dat that might have been copied or stolen (for example, you backed it up to a public -location) you should send all of your bitcoins to yourself using a new bitcoin address and stop using any previously generated addresses. - -Wallets encrypted with this version of Bitcoin are written properly. - -Technical note: the encrypted wallet's 'keypool' will be regenerated the first time you request a new bitcoin address; to be certain that the -new private keys are properly backed up you should: - -1. Run Bitcoin and let it rewrite the wallet.dat file - -2. Run it again, then ask it for a new bitcoin address. -wxBitcoin: new address visible on main window -bitcoind: run the 'walletpassphrase' RPC command to unlock the wallet, then run the 'getnewaddress' RPC command. - -3. If your encrypted wallet.dat may have been copied or stolen, send all of your bitcoins to the new bitcoin address. - -4. Shut down Bitcoin, then backup the wallet.dat file. -IMPORTANT: be sure to request a new bitcoin address before backing up, so that the 'keypool' is regenerated and backed up. - -"Security in depth" is always a good idea, so choosing a secure location for the backup and/or encrypting the backup before uploading it is recommended. And as in previous releases, if your machine is infected by malware there are several ways an attacker might steal your bitcoins. - -Thanks to Alan Reiner (etotheipi) for finding and reporting this bug. diff --git a/doc/release-notes/release-notes-0.4.2.md b/doc/release-notes/release-notes-0.4.2.md deleted file mode 100644 index 6c5682ea4..000000000 --- a/doc/release-notes/release-notes-0.4.2.md +++ /dev/null @@ -1 +0,0 @@ -Never released or release notes were lost. diff --git a/doc/release-notes/release-notes-0.4.3.md b/doc/release-notes/release-notes-0.4.3.md deleted file mode 100644 index fea1ae75b..000000000 --- a/doc/release-notes/release-notes-0.4.3.md +++ /dev/null @@ -1,21 +0,0 @@ -bitcoind version 0.4.3 is now available for download at: -http://luke.dashjr.org/programs/bitcoin/files/bitcoind-0.4.3/ (until Gavin uploads to SourceForge) - -This is a bugfix-only release based on 0.4.0. - -Please note that the wxBitcoin GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr. - -Please report bugs for the daemon only using the issue tracker at github: -https://github.com/bitcoin/bitcoin/issues - -Stable source code is hosted at Gitorious: -http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v0.4.3#.tar.gz - -BUG FIXES - -Cease locking memory used by non-sensitive information (this caused a huge performance hit on some platforms, especially noticable during initial blockchain download). -Fixed some address-handling deadlocks (client freezes). -No longer accept inbound connections over the internet when Bitcoin is being used with Tor (identity leak). -Use the correct base transaction fee of 0.0005 BTC for accepting transactions into mined blocks (since 0.4.0, it was incorrectly accepting 0.0001 BTC which was only meant to be relayed). -Add new DNS seeds (maintained by Pieter Wuille and Luke Dashjr). - diff --git a/doc/release-notes/release-notes-0.4.4.md b/doc/release-notes/release-notes-0.4.4.md deleted file mode 100644 index f435ba716..000000000 --- a/doc/release-notes/release-notes-0.4.4.md +++ /dev/null @@ -1,30 +0,0 @@ -Bitcoin version 0.4.4 is now available for download at: -http://luke.dashjr.org/programs/bitcoin/files/bitcoind-0.4.4/ - -This is a bugfix-only release based on 0.4.0. - -Please note that the wxBitcoin GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr. - -Please report bugs for the daemon only using the issue tracker at github: -https://github.com/bitcoin/bitcoin/issues - -Stable source code is hosted at Gitorious: -http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v0.4.4#.tar.gz - -BUG FIXES - -Limit the number of orphan transactions stored in memory, to prevent a potential denial-of-service attack by flooding orphan transactions. Also never store invalid transactions at all. -Fix possible buffer overflow on systems with very long application data paths. This is not exploitable. -Resolved multiple bugs preventing long-term unlocking of encrypted wallets (issue #922). -Only send local IP in "version" messages if it is globally routable (ie, not private), and try to get such an IP from UPnP if applicable. -Reannounce UPnP port forwards every 20 minutes, to workaround routers expiring old entries, and allow the -upnp option to override any stored setting. -Various memory leaks and potential null pointer deferences have been -fixed. -Several shutdown issues have been fixed. -Check that keys stored in the wallet are valid at startup, and if not, -report corruption. -Various build fixes. -If no password is specified to bitcoind, recommend a secure password. -Update hard-coded fallback seed nodes, choosing recent ones with long uptime and versions at least 0.4.0. -Add checkpoint at block 168,000. - diff --git a/doc/release-notes/release-notes-0.4.5.md b/doc/release-notes/release-notes-0.4.5.md deleted file mode 100644 index 6c5682ea4..000000000 --- a/doc/release-notes/release-notes-0.4.5.md +++ /dev/null @@ -1 +0,0 @@ -Never released or release notes were lost. diff --git a/doc/release-notes/release-notes-0.4.6.md b/doc/release-notes/release-notes-0.4.6.md deleted file mode 100644 index 07c5e4b69..000000000 --- a/doc/release-notes/release-notes-0.4.6.md +++ /dev/null @@ -1,37 +0,0 @@ -bitcoind version 0.4.6 is now available for download at: -Windows: installer | zip (sig) -Source: tar.gz -bitcoind and Bitcoin-Qt version 0.6.0.7 are also tagged in git, but it is recommended to upgrade to 0.6.1. - -These are bugfix-only releases. - -Please report bugs by replying to this forum thread. Note that the 0.4.x wxBitcoin GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr. - -BUG FIXES - -Version 0.6.0 allowed importing invalid "private keys", which would be unspendable; 0.6.0.7 will now verify the private key is valid, and refuse to import an invalid one -Verify status of encrypt/decrypt calls to detect failed padding -Check blocks for duplicate transactions earlier. Fixes #1167 -Upgrade Windows builds to OpenSSL 1.0.1b -Set label when selecting an address that already has a label. Fixes #1080 (Bitcoin-Qt) -JSON-RPC listtransactions's from/count handling is now fixed -Optimize and fix multithreaded access, when checking whether we already know about transactions -Fix potential networking deadlock -Proper support for Growl 1.3 notifications -Display an error, rather than crashing, if encoding a QR Code failed (0.6.0.7) -Don't erroneously set "Display addresses" for users who haven't explicitly enabled it (Bitcoin-Qt) -Some non-ASCII input in JSON-RPC expecting hexadecimal may have been misinterpreted rather than rejected -Missing error condition checking added -Do not show green tick unless all known blocks are downloaded. Fixes #921 (Bitcoin-Qt) -Increase time ago of last block for "up to date" status from 30 to 90 minutes -Show a message box when runaway exception happens (Bitcoin-Qt) -Use a messagebox to display the error when -server is provided without providing a rpc password -Show error message instead of exception crash when unable to bind RPC port (Bitcoin-Qt) -Correct sign message bitcoin address tooltip. Fixes #1050 (Bitcoin-Qt) -Removed "(no label)" from QR Code dialog titlebar if we have no label (0.6.0.7) -Removed an ugly line break in tooltip for mature transactions (0.6.0.7) -Add missing tooltip and key shortcut in settings dialog (part of #1088) (Bitcoin-Qt) -Work around issue in boost::program_options that prevents from compiling in clang -Fixed bugs occurring only on platforms with unsigned characters (such as ARM). -Rename make_windows_icon.py to .sh as it is a shell script. Fixes #1099 (Bitcoin-Qt) -Various trivial internal corrections to types used for counting/size loops and warnings diff --git a/doc/release-notes/release-notes-0.5.0.md b/doc/release-notes/release-notes-0.5.0.md deleted file mode 100644 index baa409b5f..000000000 --- a/doc/release-notes/release-notes-0.5.0.md +++ /dev/null @@ -1,70 +0,0 @@ -Bitcoin version 0.5.0 is now available for download at: -http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.5.0/ - -The major change for this release is a completely new graphical interface that uses the Qt user interface toolkit. - -This release include German, Spanish, Spanish-Castilian, Norwegian and Dutch translations. More translations are welcome; join the project at Transifex if you can help: -https://www.transifex.net/projects/p/bitcoin/ - -Please report bugs using the issue tracker at github: -https://github.com/bitcoin/bitcoin/issues - -For Ubuntu users, there is a new ppa maintained by Matt Corallo which you can add to your system so that it will automatically keep bitcoin up-to-date. Just type "sudo apt-add-repository ppa:bitcoin/bitcoin" in your terminal, then install the bitcoin-qt package. - -MAJOR BUG FIX (CVE-2011-4447) - -The wallet encryption feature introduced in Bitcoin version 0.4.0 did not sufficiently secure the private keys. An attacker who -managed to get a copy of your encrypted wallet.dat file might be able to recover some or all of the unencrypted keys and steal the -associated coins. - -If you have a previously encrypted wallet.dat, the first time you run bitcoin-qt or bitcoind the wallet will be rewritten, Bitcoin will -shut down, and you will be prompted to restart it to run with the new, properly encrypted file. - -If you had a previously encrypted wallet.dat that might have been copied or stolen (for example, you backed it up to a public -location) you should send all of your bitcoins to yourself using a new bitcoin address and stop using any previously generated addresses. - -Wallets encrypted with this version of Bitcoin are written properly. - -Technical note: the encrypted wallet's 'keypool' will be regenerated the first time you request a new bitcoin address; to be certain that the -new private keys are properly backed up you should: - -1. Run Bitcoin and let it rewrite the wallet.dat file - -2. Run it again, then ask it for a new bitcoin address. -Bitcoin-Qt: Address Book, then New Address... -bitcoind: run the 'walletpassphrase' RPC command to unlock the wallet, then run the 'getnewaddress' RPC command. - -3. If your encrypted wallet.dat may have been copied or stolen, send all of your bitcoins to the new bitcoin address. - -4. Shut down Bitcoin, then backup the wallet.dat file. -IMPORTANT: be sure to request a new bitcoin address before backing up, so that the 'keypool' is regenerated and backed up. - -"Security in depth" is always a good idea, so choosing a secure location for the backup and/or encrypting the backup before uploading it is recommended. And as in previous releases, if your machine is infected by malware there are several ways an attacker might steal your bitcoins. - -Thanks to Alan Reiner (etotheipi) for finding and reporting this bug. - -MAJOR GUI CHANGES - -"Splash" graphics at startup that show address/wallet/blockchain loading progress. - -"Synchronizing with network" progress bar to show block-chain download progress. - -Icons at the bottom of the window that show how well connected you are to the network, with tooltips to display details. - -Drag and drop support for bitcoin: URIs on web pages. - -Export transactions as a .csv file. - -Many other GUI improvements, large and small. - -RPC CHANGES - -getmemorypool : new RPC command, provides everything needed to construct a block with a custom generation transaction and submit a solution - -listsinceblock : new RPC command, list transactions since given block - -signmessage/verifymessage : new RPC commands to sign a message with one of your private keys or verify that a message signed by the private key associated with a bitcoin address. - -GENERAL CHANGES - -Faster initial block download. diff --git a/doc/release-notes/release-notes-0.5.1.md b/doc/release-notes/release-notes-0.5.1.md deleted file mode 100644 index d56bff6d9..000000000 --- a/doc/release-notes/release-notes-0.5.1.md +++ /dev/null @@ -1,43 +0,0 @@ -Bitcoin version 0.5.1 is now available for download at: -http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.5.1/ - -This is a bugfix-only release. - -This release includes 13 translations, including 5 new translations: -Italian, Hungarian, Ukranian, Portuguese (Brazilian) and Simplified Chinese. -More translations are welcome; join the project at Transifex if you can help: -https://www.transifex.net/projects/p/bitcoin/ - -Please report bugs using the issue tracker at github: -https://github.com/bitcoin/bitcoin/issues - -Project source code is hosted at github; we are no longer -distributing .tar.gz files here, you can get them -directly from github: -https://github.com/bitcoin/bitcoin/tarball/v0.5.1 # .tar.gz -https://github.com/bitcoin/bitcoin/zipball/v0.5.1 # .zip - -For Ubuntu users, there is a new ppa maintained by Matt Corallo which -you can add to your system so that it will automatically keep -bitcoin up-to-date. Just type -sudo apt-add-repository ppa:bitcoin/bitcoin -in your terminal, then install the bitcoin-qt package. - - -BUG FIXES - -Re-enable SSL support for the JSON-RPC interface (it was unintentionally -disabled for the 0.5.0 release binaries). - -The code that finds peers via "dns seeds" no longer stops bitcoin startup -if one of the dns seed machines is down. - -Tooltips on the transaction list view were rendering incorrectly (as black boxes -or with a transparent background). - -Prevent a denial-of-service attack involving flooding a bitcoin node with -orphan blocks. - -The wallet passphrase dialog now warns you if the caps lock key was pressed. - -Improved searching in addresses and labels in bitcoin-qt. diff --git a/doc/release-notes/release-notes-0.5.2.md b/doc/release-notes/release-notes-0.5.2.md deleted file mode 100644 index f79816668..000000000 --- a/doc/release-notes/release-notes-0.5.2.md +++ /dev/null @@ -1,22 +0,0 @@ -Bitcoin version 0.5.2 is now available for download at: -http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.5.2/ - -This is a bugfix-only release based on 0.5.1. - -Please report bugs using the issue tracker at github: -https://github.com/bitcoin/bitcoin/issues - -Stable source code is hosted at Gitorious: -http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v0.5.2#.tar.gz - -BUG FIXES - -Check all transactions in blocks after the last checkpoint (0.5.0 and 0.5.1 skipped checking ECDSA signatures during initial blockchain download). -Cease locking memory used by non-sensitive information (this caused a huge performance hit on some platforms, especially noticable during initial blockchain download; this was -not a security vulnerability). -Fixed some address-handling deadlocks (client freezes). -No longer accept inbound connections over the internet when Bitcoin is being used with Tor (identity leak). -Re-enable SSL support for the JSON-RPC interface (it was unintentionally disabled for the 0.5.0 and 0.5.1 release Linux binaries). -Use the correct base transaction fee of 0.0005 BTC for accepting transactions into mined blocks (since 0.4.0, it was incorrectly accepting 0.0001 BTC which was only meant to be relayed). -Don't show "IP" for transactions which are not necessarily IP transactions. -Add new DNS seeds (maintained by Pieter Wuille and Luke Dashjr). diff --git a/doc/release-notes/release-notes-0.5.3.md b/doc/release-notes/release-notes-0.5.3.md deleted file mode 100644 index 7c84c5332..000000000 --- a/doc/release-notes/release-notes-0.5.3.md +++ /dev/null @@ -1,42 +0,0 @@ -Bitcoin version 0.5.3 is now available for download at: -http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.5.3/ - -This is a bugfix-only release based on 0.5.1. -It also includes a few protocol updates. - -Please report bugs using the issue tracker at github: -https://github.com/bitcoin/bitcoin/issues - -Stable source code is hosted at Gitorious: -http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v0.5.3#.tar.gz - -PROTOCOL UPDATES - -BIP 30: Introduce a new network rule: "a block is not valid if it contains a transaction whose hash already exists in the block chain, unless all that transaction's outputs were already spent before said block" beginning on March 15, 2012, 00:00 UTC. -On testnet, allow mining of min-difficulty blocks if 20 minutes have gone by without mining a regular-difficulty block. This is to make testing Bitcoin easier, and will not affect normal mode. - -BUG FIXES - -Limit the number of orphan transactions stored in memory, to prevent a potential denial-of-service attack by flooding orphan transactions. Also never store invalid transactions at all. -Fix possible buffer overflow on systems with very long application data paths. This is not exploitable. -Resolved multiple bugs preventing long-term unlocking of encrypted wallets -(issue #922). -Only send local IP in "version" messages if it is globally routable (ie, not private), and try to get such an IP from UPnP if applicable. -Reannounce UPnP port forwards every 20 minutes, to workaround routers expiring old entries, and allow the -upnp option to override any stored setting. -Skip splash screen when -min is used, and fix Minimize to Tray function. -Do not blank "label" in Bitcoin-Qt "Send" tab, if the user has already entered something. -Correct various labels and messages. -Various memory leaks and potential null pointer deferences have been fixed. -Handle invalid Bitcoin URIs using "bitcoin://" instead of "bitcoin:". -Several shutdown issues have been fixed. -Revert to "global progress indication", as starting from zero every time was considered too confusing for many users. -Check that keys stored in the wallet are valid at startup, and if not, report corruption. -Enable accessible widgets on Windows, so that people with screen readers such as NVDA can make sense of it. -Various build fixes. -If no password is specified to bitcoind, recommend a secure password. -Automatically focus and scroll to new "Send coins" entries in Bitcoin-Qt. -Show a message box for --help on Windows, for Bitcoin-Qt. -Add missing "About Qt" menu option to show built-in Qt About dialog. -Don't show "-daemon" as an option for Bitcoin-Qt, since it isn't available. -Update hard-coded fallback seed nodes, choosing recent ones with long uptime and versions at least 0.4.0. -Add checkpoint at block 168,000. diff --git a/doc/release-notes/release-notes-0.5.4.md b/doc/release-notes/release-notes-0.5.4.md deleted file mode 100644 index fcde3ac4e..000000000 --- a/doc/release-notes/release-notes-0.5.4.md +++ /dev/null @@ -1,39 +0,0 @@ -Bitcoin version 0.5.4 is now available for download at: -http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.5.4/ -NOTE: 0.5.4rc3 is being renamed to 0.5.4 final with no changes. - -This is a bugfix-only release in the 0.5.x series, plus a few protocol updates. - -Please report bugs using the issue tracker at github: -https://github.com/bitcoin/bitcoin/issues - -Stable source code is hosted at Gitorious: -http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v0.5.4#.tar.gz - -PROTOCOL UPDATES - -BIP 16: Special-case "pay to script hash" logic to enable minimal validation of new transactions. -Support for validating message signatures produced with compressed public keys. - -BUG FIXES - -Build with thread-safe MingW libraries for Windows, fixing a dangerous memory corruption scenario when exceptions are thrown. -Fix broken testnet mining. -Stop excess inventory relay during initial block download. -When disconnecting a node, clear the received buffer so that we do not process any already received messages. -Yet another attempt at implementing "minimize to tray" that works on all operating systems. -Fix Bitcoin-Qt notifications under Growl 1.3. -Increase required age of Bitcoin-Qt's "not up to date" status from 30 to 90 minutes. -Implemented missing verifications that led to crash on entering some wrong passphrases for encrypted wallets. -Fix default filename suffixes in GNOME save dialog. -Make the "Send coins" tab use the configured unit type, even on the first attempt. -Print detailed wallet loading errors to debug.log when it is corrupt. -Allocate exactly the amount of space needed for signing transactions, instead of a fixed 10k buffer. -Workaround for improbable memory access violation. -Check wallet's minimum version before trying to load it. -Remove wxBitcoin properly when installing Bitcoin-Qt over it. (Windows) -Detail reorganization information better in debug log. -Use a messagebox to display the error when -server is provided without configuring a RPC password. -Testing suite build now honours provided CXXFLAGS. -Removed an extraneous line-break in mature transaction tooltips. -Fix some grammatical errors in translation process documentation. diff --git a/doc/release-notes/release-notes-0.5.5.md b/doc/release-notes/release-notes-0.5.5.md deleted file mode 100644 index 75ebc3e6b..000000000 --- a/doc/release-notes/release-notes-0.5.5.md +++ /dev/null @@ -1,37 +0,0 @@ -bitcoind and Bitcoin-Qt version 0.5.5 are now available for download at: -Windows: installer | zip (sig) -Source: tar.gz -bitcoind and Bitcoin-Qt version 0.6.0.7 are also tagged in git, but it is recommended to upgrade to 0.6.1. - -These are bugfix-only releases. - -Please report bugs by replying to this forum thread. Note that the 0.4.x wxBitcoin GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr. - -BUG FIXES - -Version 0.6.0 allowed importing invalid "private keys", which would be unspendable; 0.6.0.7 will now verify the private key is valid, and refuse to import an invalid one -Verify status of encrypt/decrypt calls to detect failed padding -Check blocks for duplicate transactions earlier. Fixes #1167 -Upgrade Windows builds to OpenSSL 1.0.1b -Set label when selecting an address that already has a label. Fixes #1080 (Bitcoin-Qt) -JSON-RPC listtransactions's from/count handling is now fixed -Optimize and fix multithreaded access, when checking whether we already know about transactions -Fix potential networking deadlock -Proper support for Growl 1.3 notifications -Display an error, rather than crashing, if encoding a QR Code failed (0.6.0.7) -Don't erroneously set "Display addresses" for users who haven't explicitly enabled it (Bitcoin-Qt) -Some non-ASCII input in JSON-RPC expecting hexadecimal may have been misinterpreted rather than rejected -Missing error condition checking added -Do not show green tick unless all known blocks are downloaded. Fixes #921 (Bitcoin-Qt) -Increase time ago of last block for "up to date" status from 30 to 90 minutes -Show a message box when runaway exception happens (Bitcoin-Qt) -Use a messagebox to display the error when -server is provided without providing a rpc password -Show error message instead of exception crash when unable to bind RPC port (Bitcoin-Qt) -Correct sign message bitcoin address tooltip. Fixes #1050 (Bitcoin-Qt) -Removed "(no label)" from QR Code dialog titlebar if we have no label (0.6.0.7) -Removed an ugly line break in tooltip for mature transactions (0.6.0.7) -Add missing tooltip and key shortcut in settings dialog (part of #1088) (Bitcoin-Qt) -Work around issue in boost::program_options that prevents from compiling in clang -Fixed bugs occurring only on platforms with unsigned characters (such as ARM). -Rename make_windows_icon.py to .sh as it is a shell script. Fixes #1099 (Bitcoin-Qt) -Various trivial internal corrections to types used for counting/size loops and warnings diff --git a/RELEASE_NOTES_1_7.md b/doc/release-notes/release-notes-1.7.0.md similarity index 100% rename from RELEASE_NOTES_1_7.md rename to doc/release-notes/release-notes-1.7.0.md diff --git a/doc/release-process.md b/doc/release-process.md index f436655f3..b38187d05 100644 --- a/doc/release-process.md +++ b/doc/release-process.md @@ -8,8 +8,6 @@ Release Process ###update (commit) version in sources - - dogecoin-qt.pro contrib/verifysfbinaries/verify.sh doc/README* share/setup.nsi @@ -39,22 +37,25 @@ Release Process Fetch and build inputs: (first time, or when dependency versions change) mkdir -p inputs; cd inputs/ - wget 'http://miniupnp.free.fr/files/download.php?file=miniupnpc-1.8.tar.gz' -O miniupnpc-1.8.tar.gz + wget 'http://miniupnp.free.fr/files/download.php?file=miniupnpc-1.9.tar.gz' -O miniupnpc-1.9.tar.gz wget 'https://www.openssl.org/source/openssl-1.0.1h.tar.gz' wget 'http://download.oracle.com/berkeley-db/db-5.1.29.NC.tar.gz' wget 'http://zlib.net/zlib-1.2.8.tar.gz' - wget 'ftp://ftp.simplesystems.org/pub/png/src/history/libpng16/libpng-1.6.8.tar.gz' + wget 'https://downloads.sourceforge.net/project/libpng/libpng16/older-releases/1.6.8/libpng-1.6.8.tar.gz' wget 'https://fukuchi.org/works/qrencode/qrencode-3.4.3.tar.bz2' wget 'https://downloads.sourceforge.net/project/boost/boost/1.55.0/boost_1_55_0.tar.bz2' wget 'https://svn.boost.org/trac/boost/raw-attachment/ticket/7262/boost-mingw.patch' -O \ boost-mingw-gas-cross-compile-2013-03-03.patch wget 'https://download.qt-project.org/official_releases/qt/5.2/5.2.0/single/qt-everywhere-opensource-src-5.2.0.tar.gz' + wget 'https://download.qt-project.org/archive/qt/4.6/qt-everywhere-opensource-src-4.6.4.tar.gz' wget 'https://protobuf.googlecode.com/files/protobuf-2.5.0.tar.bz2' cd .. ./bin/gbuild ../dogecoin/contrib/gitian-descriptors/boost-linux.yml mv build/out/boost-*.zip inputs/ ./bin/gbuild ../dogecoin/contrib/gitian-descriptors/deps-linux.yml mv build/out/dogecoin-deps-*.zip inputs/ + ./bin/gbuild ../dogecoin/contrib/gitian-descriptors/qt-linux.yml + mv build/out/qt-*.tar.gz inputs/ ./bin/gbuild ../dogecoin/contrib/gitian-descriptors/boost-win.yml mv build/out/boost-*.zip inputs/ ./bin/gbuild ../dogecoin/contrib/gitian-descriptors/deps-win.yml @@ -64,6 +65,23 @@ Release Process ./bin/gbuild ../dogecoin/contrib/gitian-descriptors/protobuf-win.yml mv build/out/protobuf-*.zip inputs/ + The expected SHA256 hashes of the intermediate inputs are: + + d517e84a79fdcdebfdb3405aa91fb2e53bce9fb760d34b9dda611db8813ae7a3 dogecoin-deps-linux32-gitian-r6.zip + 2c275eecbe11b4b29620fac523ccc30c35c45dbac096ed7d0a117467c95b1b13 dogecoin-deps-linux64-gitian-r6.zip + f29b7d9577417333fb56e023c2977f5726a7c297f320b175a4108cf7cd4c2d29 boost-linux32-1.55.0-gitian-r1.zip + 88232451c4104f7eb16e469ac6474fd1231bd485687253f7b2bdf46c0781d535 boost-linux64-1.55.0-gitian-r1.zip + 57e57dbdadc818cd270e7e00500a5e1085b3bcbdef69a885f0fb7573a8d987e1 qt-linux32-4.6.4-gitian-r1.tar.gz + 60eb4b9c5779580b7d66529efa5b2836ba1a70edde2a0f3f696d647906a826be qt-linux64-4.6.4-gitian-r1.tar.gz + 60dc2d3b61e9c7d5dbe2f90d5955772ad748a47918ff2d8b74e8db9b1b91c909 boost-win32-1.55.0-gitian-r6.zip + f65fcaf346bc7b73bc8db3a8614f4f6bee2f61fcbe495e9881133a7c2612a167 boost-win64-1.55.0-gitian-r6.zip + 2d9d16006c61a23ecb82e3d440599aa324d2b48ada58a2c017b5ca0d74a1bab3 dogecoin-deps-win32-gitian-r13.zip + 0fea0b372c2586713d3c277e4a36d1ca518591f59097a1f23ed095124505b71b dogecoin-deps-win64-gitian-r13.zip + 963e3e5e85879010a91143c90a711a5d1d5aba992e38672cdf7b54e42c56b2f1 qt-win32-5.2.0-gitian-r3.zip + 751c579830d173ef3e6f194e83d18b92ebef6df03289db13ab77a52b6bc86ef0 qt-win64-5.2.0-gitian-r3.zip + e2e403e1a08869c7eed4d4293bce13d51ec6a63592918b90ae215a0eceb44cb4 protobuf-win32-2.5.0-gitian-r4.zip + a0999037e8b0ef9ade13efd88fee261ba401f5ca910068b7e0cd3262ba667db0 protobuf-win64-2.5.0-gitian-r4.zip + Build dogecoind and dogecoin-qt on Linux32, Linux64, and Win32: ./bin/gbuild --commit dogecoin=v${VERSION} ../dogecoin/contrib/gitian-descriptors/gitian-linux.yml diff --git a/doc/tor.md b/doc/tor.md index a3a52056b..adeda0af3 100644 --- a/doc/tor.md +++ b/doc/tor.md @@ -7,7 +7,7 @@ The following directions assume you have a Tor proxy running on port 9050. Many configure Tor. -1. Run bitcoin behind a Tor proxy +1. Run dogecoin behind a Tor proxy --------------------------------- The first step is running Dogecoin behind a Tor proxy. This will already make all @@ -39,7 +39,7 @@ In a typical situation, this suffices to run behind a Tor proxy: ./dogecoin -proxy=127.0.0.1:9050 -2. Run a bitcoin hidden server +2. Run a dogecoin hidden server ------------------------------ If you configure your Tor system accordingly, it is possible to make your node also @@ -53,7 +53,7 @@ config file): The directory can be different of course, but (both) port numbers should be equal to your dogecoind's P2P listen port (22556 by default). - -externalip=X You can tell bitcoin about its publicly reachable address using + -externalip=X You can tell dogecoin about its publicly reachable address using this option, and this can be a .onion address. Given the above configuration, you can find your onion address in /var/lib/tor/dogecoin-service/hostname. Onion addresses are given diff --git a/doc/translation_process.md b/doc/translation_process.md index 1e1b0215f..912c1af27 100644 --- a/doc/translation_process.md +++ b/doc/translation_process.md @@ -70,35 +70,16 @@ We are using https://transifex.com as a frontend for translating the client. https://www.transifex.com/projects/p/bitcoin/resource/tx/ -The "Transifex client" (see: http://help.transifex.com/features/client/) -will help with fetching new translations from Transifex. Use the following -config to be able to connect with the client: +The "Transifex client" (see: http://support.transifex.com/customer/portal/topics/440187-transifex-client/articles) +is used to fetch new translations from Transifex. The configuration for this client (`.tx/config`) +is part of the repository. -### .tx/config - - [main] - host = https://www.transifex.com - - [bitcoin.tx] - file_filter = src/qt/locale/bitcoin_.ts - source_file = src/qt/locale/bitcoin_en.ts - source_lang = en - -### .tx/config (for Windows) - - [main] - host = https://www.transifex.com - - [bitcoin.tx] - file_filter = src\qt\locale\bitcoin_.ts - source_file = src\qt\locale\bitcoin_en.ts - source_lang = en - -It is also possible to directly download new translations one by one from the Transifex website. +Do not directly download translations one by one from the Transifex website, as we do a few +postprocessing steps before committing the translations. ### Fetching new translations -1. `tx pull -a` +1. `python contrib/devtools/update-translations.py` 2. update `src/qt/bitcoin.qrc` manually or via `ls src/qt/locale/*ts|xargs -n1 basename|sed 's/\(bitcoin_\(.*\)\).ts/locale\/\1.qm<\/file>/'` 3. update `src/qt/Makefile.am` manually or via diff --git a/qa/pull-tester/build-tests.sh.in b/qa/pull-tester/build-tests.sh.in index 86d4d9d0e..ebf377a48 100755 --- a/qa/pull-tester/build-tests.sh.in +++ b/qa/pull-tester/build-tests.sh.in @@ -1,4 +1,8 @@ #!/bin/bash +# Copyright (c) 2013 The Bitcoin Core developers +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. +# # Param1: The prefix to mingw staging # Param2: Path to java comparison tool # Param3: Number of make jobs. Defaults to 1. @@ -70,6 +74,9 @@ make check # Run RPC integration test on Linux: @abs_top_srcdir@/qa/rpc-tests/wallet.sh @abs_top_srcdir@/linux-build/src +@abs_top_srcdir@/qa/rpc-tests/listtransactions.py --srcdir @abs_top_srcdir@/linux-build/src +# Clean up cache/ directory that the python regression tests create +rm -rf cache if [ $RUN_EXPENSIVE_TESTS = 1 ]; then # Run unit tests and blockchain-tester on Windows: diff --git a/qa/pull-tester/pull-tester.py b/qa/pull-tester/pull-tester.py index b05ac2c52..61ce813d8 100755 --- a/qa/pull-tester/pull-tester.py +++ b/qa/pull-tester/pull-tester.py @@ -1,4 +1,8 @@ #!/usr/bin/python +# Copyright (c) 2013 The Bitcoin Core developers +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. +# import json from urllib import urlopen import requests diff --git a/qa/pull-tester/pull-tester.sh b/qa/pull-tester/pull-tester.sh index 13c800c16..d3356f736 100755 --- a/qa/pull-tester/pull-tester.sh +++ b/qa/pull-tester/pull-tester.sh @@ -1,4 +1,8 @@ #!/bin/sh +# Copyright (c) 2013 The Bitcoin Core developers +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. +# # Helper script for pull-tester. #Param 1: path to bitcoin srcroot #Param ...: arguments for build-test.sh @@ -7,6 +11,9 @@ if [ $# -lt 1 ]; then echo "usage: $0 [bitcoin srcroot] build-test arguments..." fi +killall -q bitcoin-cli +killall -q bitcoind + cd $1 shift diff --git a/qa/pull-tester/run-bitcoind-for-test.sh.in b/qa/pull-tester/run-bitcoind-for-test.sh.in index 25faf9c42..391046ab8 100755 --- a/qa/pull-tester/run-bitcoind-for-test.sh.in +++ b/qa/pull-tester/run-bitcoind-for-test.sh.in @@ -1,4 +1,8 @@ #!/bin/bash +# Copyright (c) 2013 The Bitcoin Core developers +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. +# DATADIR="@abs_top_builddir@/.bitcoin" rm -rf "$DATADIR" mkdir -p "$DATADIR"/regtest diff --git a/qa/rpc-tests/README.md b/qa/rpc-tests/README.md index 835ff1105..616c0525f 100644 --- a/qa/rpc-tests/README.md +++ b/qa/rpc-tests/README.md @@ -1,22 +1,26 @@ Regression tests of RPC interface ================================= -python-bitcoinrpc: git subtree of https://github.com/jgarzik/python-bitcoinrpc +### [python-bitcoinrpc](https://github.com/jgarzik/python-bitcoinrpc) +Git subtree of [https://github.com/jgarzik/python-bitcoinrpc](https://github.com/jgarzik/python-bitcoinrpc). Changes to python-bitcoinrpc should be made upstream, and then -pulled here using git subtree +pulled here using git subtree. -skeleton.py : Copy this to create new regression tests. +### [skeleton.py](skeleton.py) +Copy this to create new regression tests. -listtransactions.py : Tests for the listtransactions RPC call +### [listtransactions.py](listtransactions.py) +Tests for the listtransactions RPC call. -util.py : generally useful functions +### [util.py](util.sh) +Generally useful functions. Bash-based tests, to be ported to Python: ----------------------------------------- -wallet.sh : Exercise wallet send/receive code. -walletbackup.sh : Exercise wallet backup / dump / import -txnmall.sh : Test proper accounting of malleable transactions -conflictedbalance.sh : More testing of malleable transaction handling +- wallet.sh : Exercise wallet send/receive code. +- walletbackup.sh : Exercise wallet backup / dump / import +- txnmall.sh : Test proper accounting of malleable transactions +- conflictedbalance.sh : More testing of malleable transaction handling Notes ===== @@ -32,5 +36,8 @@ test state. If you get into a bad state, you should be able to recover with: - rm -rf cache - killall bitcoind + +```bash +rm -rf cache +killall bitcoind +``` diff --git a/qa/rpc-tests/conflictedbalance.sh b/qa/rpc-tests/conflictedbalance.sh index 9d854d2d8..ae6d7cbb2 100755 --- a/qa/rpc-tests/conflictedbalance.sh +++ b/qa/rpc-tests/conflictedbalance.sh @@ -1,4 +1,8 @@ #!/usr/bin/env bash +# Copyright (c) 2014 The Bitcoin Core developers +# Copyright (c) 2014 The Dogecoin Core developers +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # Test marking of spent outputs @@ -20,8 +24,8 @@ fi set -f -BITCOIND=${1}/bitcoind -CLI=${1}/bitcoin-cli +BITCOIND=${1}/dogecoind +CLI=${1}/dogecoin-cli DIR="${BASH_SOURCE%/*}" SENDANDWAIT="${DIR}/send.sh" @@ -78,16 +82,16 @@ echo "Generating test blockchain..." $CLI $B2ARGS addnode 127.0.0.1:11000 onetry WaitPeers "$B1ARGS" 1 -# 2 block, 50 XBT each == 100 XBT +# 2 block, 500000 XDG each == 1000000 XDG # These will be transactions "A" and "B" $CLI $B1ARGS setgenerate true 2 WaitBlocks -# 100 blocks, 0 mature == 0 XBT -$CLI $B2ARGS setgenerate true 100 +# 49 blocks, 0 mature == 0 XDG +$CLI $B2ARGS setgenerate true 49 WaitBlocks -CheckBalance "$B1ARGS" 100 +CheckBalance "$B1ARGS" 1000000 CheckBalance "$B2ARGS" 0 # restart B2 with no connection @@ -100,10 +104,10 @@ B1ADDRESS=$( $CLI $B1ARGS getnewaddress ) B2ADDRESS=$( $CLI $B2ARGS getnewaddress ) # Transaction C: send-to-self, spend A -TXID_C=$( $CLI $B1ARGS sendtoaddress $B1ADDRESS 50.0) +TXID_C=$( $CLI $B1ARGS sendtoaddress $B1ADDRESS 500000.0) # Transaction D: spends B and C -TXID_D=$( $CLI $B1ARGS sendtoaddress $B2ADDRESS 100.0) +TXID_D=$( $CLI $B1ARGS sendtoaddress $B2ADDRESS 999998.0) CheckBalance "$B1ARGS" 0 @@ -129,9 +133,9 @@ WaitPeers "$B1ARGS" 1 $CLI $B2ARGS setgenerate true 1 WaitBlocks -# B1 should still be able to spend 100, because D is conflicted +# B1 should still be able to spend 1000000 (-1 DOGE fee for the successful transaction), because D is conflicted # so does not count as a spend of B -CheckBalance "$B1ARGS" 100 +CheckBalance "$B1ARGS" "1000000-1" $CLI $B2ARGS stop > /dev/null 2>&1 wait $B2PID diff --git a/qa/rpc-tests/listtransactions.py b/qa/rpc-tests/listtransactions.py index fec3acfbb..f16095c12 100755 --- a/qa/rpc-tests/listtransactions.py +++ b/qa/rpc-tests/listtransactions.py @@ -1,4 +1,7 @@ #!/usr/bin/env python +# Copyright (c) 2014 The Bitcoin Core developers +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # Exercise the listtransactions API @@ -115,6 +118,7 @@ def main(): check_json_precision() success = False + nodes = [] try: print("Initializing test directory "+options.tmpdir) if not os.path.isdir(options.tmpdir): @@ -124,6 +128,7 @@ def main(): nodes = start_nodes(2, options.tmpdir) connect_nodes(nodes[1], 0) sync_blocks(nodes) + run_test(nodes) success = True @@ -132,12 +137,12 @@ def main(): print("Assertion failed: "+e.message) except Exception as e: print("Unexpected exception caught during testing: "+str(e)) - stack = traceback.extract_tb(sys.exc_info()[2]) - print(stack[-1]) + traceback.print_tb(sys.exc_info()[2]) if not options.nocleanup: print("Cleaning up") - stop_nodes() + stop_nodes(nodes) + wait_bitcoinds() shutil.rmtree(options.tmpdir) if success: diff --git a/qa/rpc-tests/python-bitcoinrpc/bitcoinrpc/.gitignore b/qa/rpc-tests/python-bitcoinrpc/bitcoinrpc/.gitignore new file mode 100644 index 000000000..0d20b6487 --- /dev/null +++ b/qa/rpc-tests/python-bitcoinrpc/bitcoinrpc/.gitignore @@ -0,0 +1 @@ +*.pyc diff --git a/qa/rpc-tests/python-bitcoinrpc/bitcoinrpc/__init__.py b/qa/rpc-tests/python-bitcoinrpc/bitcoinrpc/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/qa/rpc-tests/python-bitcoinrpc/bitcoinrpc/authproxy.py b/qa/rpc-tests/python-bitcoinrpc/bitcoinrpc/authproxy.py new file mode 100644 index 000000000..c2e5406c2 --- /dev/null +++ b/qa/rpc-tests/python-bitcoinrpc/bitcoinrpc/authproxy.py @@ -0,0 +1,140 @@ + +""" + Copyright 2011 Jeff Garzik + + AuthServiceProxy has the following improvements over python-jsonrpc's + ServiceProxy class: + + - HTTP connections persist for the life of the AuthServiceProxy object + (if server supports HTTP/1.1) + - sends protocol 'version', per JSON-RPC 1.1 + - sends proper, incrementing 'id' + - sends Basic HTTP authentication headers + - parses all JSON numbers that look like floats as Decimal + - uses standard Python json lib + + Previous copyright, from python-jsonrpc/jsonrpc/proxy.py: + + Copyright (c) 2007 Jan-Klaas Kollhof + + This file is part of jsonrpc. + + jsonrpc is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2.1 of the License, or + (at your option) any later version. + + This software is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this software; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +""" + +try: + import http.client as httplib +except ImportError: + import httplib +import base64 +import json +import decimal +try: + import urllib.parse as urlparse +except ImportError: + import urlparse + +USER_AGENT = "AuthServiceProxy/0.1" + +HTTP_TIMEOUT = 30 + + +class JSONRPCException(Exception): + def __init__(self, rpc_error): + Exception.__init__(self) + self.error = rpc_error + + +class AuthServiceProxy(object): + def __init__(self, service_url, service_name=None, timeout=HTTP_TIMEOUT, connection=None): + self.__service_url = service_url + self.__service_name = service_name + self.__url = urlparse.urlparse(service_url) + if self.__url.port is None: + port = 80 + else: + port = self.__url.port + self.__id_count = 0 + (user, passwd) = (self.__url.username, self.__url.password) + try: + user = user.encode('utf8') + except AttributeError: + pass + try: + passwd = passwd.encode('utf8') + except AttributeError: + pass + authpair = user + b':' + passwd + self.__auth_header = b'Basic ' + base64.b64encode(authpair) + + if connection: + # Callables re-use the connection of the original proxy + self.__conn = connection + elif self.__url.scheme == 'https': + self.__conn = httplib.HTTPSConnection(self.__url.hostname, port, + None, None, False, + timeout) + else: + self.__conn = httplib.HTTPConnection(self.__url.hostname, port, + False, timeout) + + def __getattr__(self, name): + if name.startswith('__') and name.endswith('__'): + # Python internal stuff + raise AttributeError + if self.__service_name is not None: + name = "%s.%s" % (self.__service_name, name) + return AuthServiceProxy(self.__service_url, name, connection=self.__conn) + + def __call__(self, *args): + self.__id_count += 1 + + postdata = json.dumps({'version': '1.1', + 'method': self.__service_name, + 'params': args, + 'id': self.__id_count}) + self.__conn.request('POST', self.__url.path, postdata, + {'Host': self.__url.hostname, + 'User-Agent': USER_AGENT, + 'Authorization': self.__auth_header, + 'Content-type': 'application/json'}) + + response = self._get_response() + if response['error'] is not None: + raise JSONRPCException(response['error']) + elif 'result' not in response: + raise JSONRPCException({ + 'code': -343, 'message': 'missing JSON-RPC result'}) + else: + return response['result'] + + def _batch(self, rpc_call_list): + postdata = json.dumps(list(rpc_call_list)) + self.__conn.request('POST', self.__url.path, postdata, + {'Host': self.__url.hostname, + 'User-Agent': USER_AGENT, + 'Authorization': self.__auth_header, + 'Content-type': 'application/json'}) + + return self._get_response() + + def _get_response(self): + http_response = self.__conn.getresponse() + if http_response is None: + raise JSONRPCException({ + 'code': -342, 'message': 'missing HTTP response from server'}) + + return json.loads(http_response.read().decode('utf8'), + parse_float=decimal.Decimal) diff --git a/qa/rpc-tests/python-bitcoinrpc/setup.py b/qa/rpc-tests/python-bitcoinrpc/setup.py new file mode 100644 index 000000000..b5a217bf9 --- /dev/null +++ b/qa/rpc-tests/python-bitcoinrpc/setup.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup(name='python-bitcoinrpc', + version='0.1', + description='Enhanced version of python-jsonrpc for use with Bitcoin', + long_description=open('README').read(), + author='Jeff Garzik', + author_email='', + maintainer='Jeff Garzik', + maintainer_email='', + url='http://www.github.com/jgarzik/python-bitcoinrpc', + packages=['bitcoinrpc'], + classifiers=['License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 'Operating System :: OS Independent']) diff --git a/qa/rpc-tests/send.sh b/qa/rpc-tests/send.sh index 2c0d5375c..bfbf791d0 100755 --- a/qa/rpc-tests/send.sh +++ b/qa/rpc-tests/send.sh @@ -1,4 +1,7 @@ #!/bin/bash +# Copyright (c) 2014 The Bitcoin Core developers +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. TIMEOUT=10 SIGNAL=HUP PIDFILE=.send.pid diff --git a/qa/rpc-tests/skeleton.py b/qa/rpc-tests/skeleton.py index 0bace6f4e..126b6bfaf 100755 --- a/qa/rpc-tests/skeleton.py +++ b/qa/rpc-tests/skeleton.py @@ -1,4 +1,7 @@ #!/usr/bin/env python +# Copyright (c) 2014 The Bitcoin Core developers +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # Skeleton for python-based regression tests using # JSON-RPC @@ -42,6 +45,7 @@ def main(): check_json_precision() success = False + nodes = [] try: print("Initializing test directory "+options.tmpdir) if not os.path.isdir(options.tmpdir): @@ -60,12 +64,12 @@ def main(): print("Assertion failed: "+e.message) except Exception as e: print("Unexpected exception caught during testing: "+str(e)) - stack = traceback.extract_tb(sys.exc_info()[2]) - print(stack[-1]) + traceback.print_tb(sys.exc_info()[2]) if not options.nocleanup: print("Cleaning up") - stop_nodes() + stop_nodes(nodes) + wait_bitcoinds() shutil.rmtree(options.tmpdir) if success: diff --git a/qa/rpc-tests/txnmall.sh b/qa/rpc-tests/txnmall.sh index 11e027649..65cd35781 100755 --- a/qa/rpc-tests/txnmall.sh +++ b/qa/rpc-tests/txnmall.sh @@ -1,4 +1,8 @@ #!/usr/bin/env bash +# Copyright (c) 2014 The Bitcoin Core developers +# Copyright (c) 2014 The Dogecoin Core developers +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # Test proper accounting with malleable transactions @@ -10,8 +14,8 @@ fi set -f -BITCOIND=${1}/bitcoind -CLI=${1}/bitcoin-cli +BITCOIND=${1}/dogecoind +CLI=${1}/dogecoin-cli DIR="${BASH_SOURCE%/*}" SENDANDWAIT="${DIR}/send.sh" @@ -68,15 +72,15 @@ echo "Generating test blockchain..." $CLI $B2ARGS addnode 127.0.0.1:11000 onetry WaitPeers "$B1ARGS" 1 -# 1 block, 50 XBT each == 50 XBT +# 1 block, 500000 XDG each == 50 XDG $CLI $B1ARGS setgenerate true 1 WaitBlocks -# 100 blocks, 0 mature == 0 XBT -$CLI $B2ARGS setgenerate true 100 +# 49 blocks, 0 mature == 0 XDG +$CLI $B2ARGS setgenerate true 49 WaitBlocks -CheckBalance "$B1ARGS" 50 +CheckBalance "$B1ARGS" 500000 CheckBalance "$B2ARGS" 0 # restart B2 with no connection @@ -89,11 +93,11 @@ B2ADDRESS=$( $CLI $B2ARGS getaccountaddress "from1" ) # Have B1 create two transactions; second will # spend change from first, since B1 starts with only a single -# 50 bitcoin output: +# 500000 dogecoin output: $CLI $B1ARGS move "" "foo" 10.0 > /dev/null $CLI $B1ARGS move "" "bar" 10.0 > /dev/null TXID1=$( $CLI $B1ARGS sendfrom foo $B2ADDRESS 1.0 0) -TXID2=$( $CLI $B1ARGS sendfrom bar $B2ADDRESS 2.0 0) +TXID2=$( $CLI $B1ARGS sendfrom bar $B2ADDRESS 5.0 0) # Mutate TXID1 and add it to B2's memory pool: RAWTX1=$( $CLI $B1ARGS getrawtransaction $TXID1 ) @@ -126,16 +130,16 @@ $CLI $B2ARGS addnode 127.0.0.1:11000 onetry $CLI $B2ARGS setgenerate true 1 WaitBlocks -# B1 should have 49 BTC; the 2 BTC send is +# B1 should have 499998 DOGE; the 5 DOGE send is # conflicted, and should not count in # balances. -CheckBalance "$B1ARGS" 49 -CheckBalance "$B1ARGS" 49 "*" -CheckBalance "$B1ARGS" 9 "foo" +CheckBalance "$B1ARGS" 499998 +CheckBalance "$B1ARGS" 499998 "*" +CheckBalance "$B1ARGS" 8 "foo" CheckBalance "$B1ARGS" 10 "bar" -# B2 should have 51 BTC -CheckBalance "$B2ARGS" 51 +# B2 should have 500001 DOGE +CheckBalance "$B2ARGS" 500001 CheckBalance "$B2ARGS" 1 "from1" $CLI $B2ARGS stop > /dev/null 2>&1 diff --git a/qa/rpc-tests/util.py b/qa/rpc-tests/util.py index fbb27ae2d..1d0896a3f 100644 --- a/qa/rpc-tests/util.py +++ b/qa/rpc-tests/util.py @@ -1,3 +1,6 @@ +# Copyright (c) 2014 The Bitcoin Core developers +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # # Helpful routines for regression testing # @@ -52,6 +55,8 @@ def sync_mempools(rpc_connections): time.sleep(1) +bitcoind_processes = [] + def initialize_chain(test_dir): """ Create (or copy from cache) a 200-block-long chain and @@ -60,8 +65,8 @@ def initialize_chain(test_dir): """ if not os.path.isdir(os.path.join("cache", "node0")): + devnull = open("/dev/null", "w+") # Create cache directories, run bitcoinds: - bitcoinds = [] for i in range(4): datadir = os.path.join("cache", "node"+str(i)) os.makedirs(datadir) @@ -74,10 +79,10 @@ def initialize_chain(test_dir): args = [ "bitcoind", "-keypool=1", "-datadir="+datadir ] if i > 0: args.append("-connect=127.0.0.1:"+str(START_P2P_PORT)) - bitcoinds.append(subprocess.Popen(args)) - subprocess.check_output([ "bitcoin-cli", "-datadir="+datadir, - "-rpcwait", "getblockcount"]) - + bitcoind_processes.append(subprocess.Popen(args)) + subprocess.check_call([ "bitcoin-cli", "-datadir="+datadir, + "-rpcwait", "getblockcount"], stdout=devnull) + devnull.close() rpcs = [] for i in range(4): try: @@ -87,8 +92,6 @@ def initialize_chain(test_dir): sys.stderr.write("Error connecting to "+url+"\n") sys.exit(1) - import pdb; pdb.set_trace() - # Create a 200-block-long chain; each of the 4 nodes # gets 25 mature blocks and 25 immature. for i in range(4): @@ -97,25 +100,28 @@ def initialize_chain(test_dir): for i in range(4): rpcs[i].setgenerate(True, 25) sync_blocks(rpcs) - # Shut them down + + # Shut them down, and remove debug.logs: + stop_nodes(rpcs) + wait_bitcoinds() for i in range(4): - rpcs[i].stop() + os.remove(debug_log("cache", i)) for i in range(4): from_dir = os.path.join("cache", "node"+str(i)) to_dir = os.path.join(test_dir, "node"+str(i)) shutil.copytree(from_dir, to_dir) -bitcoind_processes = [] - def start_nodes(num_nodes, dir): # Start bitcoinds, and wait for RPC interface to be up and running: + devnull = open("/dev/null", "w+") for i in range(num_nodes): datadir = os.path.join(dir, "node"+str(i)) args = [ "bitcoind", "-datadir="+datadir ] bitcoind_processes.append(subprocess.Popen(args)) - subprocess.check_output([ "bitcoin-cli", "-datadir="+datadir, - "-rpcwait", "getblockcount"]) + subprocess.check_call([ "bitcoin-cli", "-datadir="+datadir, + "-rpcwait", "getblockcount"], stdout=devnull) + devnull.close() # Create&return JSON-RPC connections rpc_connections = [] for i in range(num_nodes): @@ -123,9 +129,19 @@ def start_nodes(num_nodes, dir): rpc_connections.append(AuthServiceProxy(url)) return rpc_connections -def stop_nodes(): - for process in bitcoind_processes: - process.kill() +def debug_log(dir, n_node): + return os.path.join(dir, "node"+str(n_node), "regtest", "debug.log") + +def stop_nodes(nodes): + for i in range(len(nodes)): + nodes[i].stop() + del nodes[:] # Emptying array closes connections as a side effect + +def wait_bitcoinds(): + # Wait for all bitcoinds to cleanly exit + for bitcoind in bitcoind_processes: + bitcoind.wait() + del bitcoind_processes[:] def connect_nodes(from_connection, node_num): ip_port = "127.0.0.1:"+str(START_P2P_PORT+node_num) diff --git a/qa/rpc-tests/util.sh b/qa/rpc-tests/util.sh index 9001c42fb..6b327050e 100644 --- a/qa/rpc-tests/util.sh +++ b/qa/rpc-tests/util.sh @@ -1,4 +1,8 @@ #!/usr/bin/env bash +# Copyright (c) 2014 The Bitcoin Core developers +# Copyright (c) 2014 The Dogecoin Core developers +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # Functions used by more than one test @@ -17,7 +21,7 @@ function ExtractKey { function CreateDataDir { DIR=$1 mkdir -p $DIR - CONF=$DIR/bitcoin.conf + CONF=$DIR/dogecoin.conf echo "regtest=1" >> $CONF echo "keypool=2" >> $CONF echo "rpcuser=rt" >> $CONF diff --git a/qa/rpc-tests/wallet.sh b/qa/rpc-tests/wallet.sh index 2940566af..a4caf0dab 100755 --- a/qa/rpc-tests/wallet.sh +++ b/qa/rpc-tests/wallet.sh @@ -1,4 +1,8 @@ #!/usr/bin/env bash +# Copyright (c) 2013-2014 The Bitcoin Core developers +# Copyright (c) 2014 The Dogecoin Core developers +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # Test block generation and basic wallet sending @@ -10,8 +14,8 @@ fi set -f -BITCOIND=${1}/bitcoind -CLI=${1}/bitcoin-cli +BITCOIND=${1}/dogecoind +CLI=${1}/dogecoin-cli DIR="${BASH_SOURCE%/*}" SENDANDWAIT="${DIR}/send.sh" @@ -55,21 +59,21 @@ function WaitBlocks { echo "Generating test blockchain..." -# 1 block, 50 XBT each == 50 XBT +# 1 block, 500000 XDG each == 500000 XDG $CLI $B1ARGS setgenerate true 1 WaitBlocks -# 101 blocks, 1 mature == 50 XBT -$CLI $B2ARGS setgenerate true 101 +# 50 blocks, 1 mature == 500000 XDG +$CLI $B2ARGS setgenerate true 50 WaitBlocks -CheckBalance "$B1ARGS" 50 -CheckBalance "$B2ARGS" 50 +CheckBalance "$B1ARGS" 500000 +CheckBalance "$B2ARGS" 500000 -# Send 21 XBT from 1 to 3. Second +# Send 210000 XDG from 1 to 3. Second # transaction will be child of first, and # will require a fee -Send $B1ARGS $B3ARGS 11 -Send $B1ARGS $B3ARGS 10 +Send $B1ARGS $B3ARGS 110000 +Send $B1ARGS $B3ARGS 100000 # Have B1 mine a new block, and mature it # to recover transaction fees @@ -77,13 +81,13 @@ $CLI $B1ARGS setgenerate true 1 WaitBlocks # Have B2 mine 100 blocks so B1's block is mature: -$CLI $B2ARGS setgenerate true 100 +$CLI $B2ARGS setgenerate true 49 WaitBlocks -# B1 should end up with 100 XBT in block rewards plus fees, -# minus the 21 XBT sent to B3: -CheckBalance "$B1ARGS" "100-21" -CheckBalance "$B3ARGS" "21" +# B1 should end up with 1000k XDG in block rewards plus fees, +# minus the 210k XDG sent to B3: +CheckBalance "$B1ARGS" "1000000-210000" +CheckBalance "$B3ARGS" "210000" # B1 should have two unspent outputs; create a couple # of raw transactions to send them to B3, submit them through @@ -99,8 +103,8 @@ WaitBlocks # Check balances after confirmation CheckBalance "$B1ARGS" 0 -CheckBalance "$B3ARGS" 100 -CheckBalance "$B3ARGS" "100-21" "from1" +CheckBalance "$B3ARGS" 1000000 +CheckBalance "$B3ARGS" "1000000-210000" "from1" $CLI $B3ARGS stop > /dev/null 2>&1 wait $B3PID diff --git a/qa/rpc-tests/walletbackup.sh b/qa/rpc-tests/walletbackup.sh index 9207243b6..25c584102 100755 --- a/qa/rpc-tests/walletbackup.sh +++ b/qa/rpc-tests/walletbackup.sh @@ -1,4 +1,8 @@ #!/usr/bin/env bash +# Copyright (c) 2014 The Bitcoin Core developers +# Copyright (c) 2014 The Dogecoin Core developers +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # Test wallet backup / dump / restore functionality @@ -6,7 +10,7 @@ # 4 nodes. 1 2 3 and send transactions between each other, # fourth node is a miner. # 1 2 3 and each mine a block to start, then -# miner creates 100 blocks so 1 2 3 each have 50 mature +# miner creates 49 blocks so 1 2 3 each have 500k mature # coins to spend. # Then 5 iterations of 1/2/3 sending coins amongst # themselves to get transactions in the wallets, @@ -15,13 +19,9 @@ # Wallets are backed up using dumpwallet/backupwallet. # Then 5 more iterations of transactions, then block. # -# Miner then generates 101 more blocks, so any +# Miner then generates 50 more blocks, so any # transaction fees paid mature. # -# Sanity checks done: -# Miner balance >= 150*50 -# Sum(1,2,3,4 balances) == 153*150 -# # 1/2/3 are shutdown, and their wallets erased. # Then restore using wallet.dat backup. And # confirm 1/2/3/4 balances are same as before. @@ -36,8 +36,8 @@ if [ $# -lt 1 ]; then exit 1 fi -BITCOIND=${1}/bitcoind -CLI=${1}/bitcoin-cli +BITCOIND=${1}/dogecoind +CLI=${1}/dogecoin-cli DIR="${BASH_SOURCE%/*}" SENDANDWAIT="${DIR}/send.sh" @@ -61,7 +61,7 @@ B4PID=$! function CreateConfDir { DIR=$1 mkdir -p $DIR - CONF=$DIR/bitcoin.conf + CONF=$DIR/dogecoin.conf echo "regtest=1" >> $CONF echo "rpcuser=rt" >> $CONF echo "rpcpassword=rt" >> $CONF @@ -125,7 +125,7 @@ function WaitMemPools { echo "Generating initial blockchain..." -# 1 block, 50 XBT each == 50 BTC +# 1 block, 500000 XDG each == 500000 DOGE $CLI $B1ARGS setgenerate true 1 WaitBlocks $CLI $B2ARGS setgenerate true 1 @@ -133,13 +133,13 @@ WaitBlocks $CLI $B3ARGS setgenerate true 1 WaitBlocks -# 100 blocks, 0 mature -$CLI $B4ARGS setgenerate true 100 +# 49 blocks, 0 mature +$CLI $B4ARGS setgenerate true 49 WaitBlocks -CheckBalance "$B1ARGS" 50 -CheckBalance "$B2ARGS" 50 -CheckBalance "$B3ARGS" 50 +CheckBalance "$B1ARGS" 500000 +CheckBalance "$B2ARGS" 500000 +CheckBalance "$B3ARGS" 500000 CheckBalance "$B4ARGS" 0 echo "Creating transactions..." @@ -147,7 +147,7 @@ echo "Creating transactions..." function S { TXID=$( $CLI -datadir=${D}/node${1} sendtoaddress ${2} "${3}" 0 ) if [[ $TXID == "" ]] ; then - echoerr "node${1}: error sending ${3} btc" + echoerr "node${1}: error sending ${3} doge" echo -n "node${1} balance: " $CLI -datadir=${D}/node${1} getbalance "*" 0 exit 1 @@ -201,9 +201,9 @@ for i in {1..5}; do OneRound ; done WaitMemPools -# Generate 101 more blocks, so any fees paid +# Generate 50 more blocks, so any fees paid # mature -$CLI "$B4ARGS" setgenerate true 101 +$CLI "$B4ARGS" setgenerate true 50 BALANCE1=$( $CLI "$B1ARGS" getbalance ) BALANCE2=$( $CLI "$B2ARGS" getbalance ) @@ -212,7 +212,8 @@ BALANCE4=$( $CLI "$B4ARGS" getbalance ) TOTAL=$( dc -e "$BALANCE1 $BALANCE2 $BALANCE3 $BALANCE4 + + + p" ) -AssertEqual $TOTAL 5700.00000000 +#500000 * (3 + 49 + 5 + 5 + 1 (+49 unmature)) +AssertEqual $TOTAL 31500000.00000000 function StopThree { $CLI $B1ARGS stop > /dev/null 2>&1 diff --git a/share/genbuild.sh b/share/genbuild.sh index afa4b4ccb..0800b3122 100755 --- a/share/genbuild.sh +++ b/share/genbuild.sh @@ -14,13 +14,21 @@ else fi DESC="" +SUFFIX="" LAST_COMMIT_DATE="" -if [ -e "$(which git)" -a -d ".git" ]; then +if [ -e "$(which git 2>/dev/null)" -a -d ".git" ]; then # clean 'dirty' status of touched files that haven't been modified git diff >/dev/null 2>/dev/null - # get a string like "v0.6.0-66-g59887e8-dirty" - DESC="$(git describe --dirty 2>/dev/null)" + # if latest commit is tagged and not dirty, then override using the tag name + RAWDESC=$(git describe --abbrev=0 2>/dev/null) + if [ "$(git rev-parse HEAD)" = "$(git rev-list -1 $RAWDESC)" ]; then + git diff-index --quiet HEAD -- && DESC=$RAWDESC + fi + + # otherwise generate suffix from git, i.e. string like "59887e8-dirty" + SUFFIX=$(git rev-parse --short HEAD) + git diff-index --quiet HEAD -- || SUFFIX="$SUFFIX-dirty" # get a string like "2012-04-10 16:27:19 +0200" LAST_COMMIT_DATE="$(git log -n 1 --format="%ci")" @@ -28,6 +36,8 @@ fi if [ -n "$DESC" ]; then NEWINFO="#define BUILD_DESC \"$DESC\"" +elif [ -n "$SUFFIX" ]; then + NEWINFO="#define BUILD_SUFFIX $SUFFIX" else NEWINFO="// No build information available" fi diff --git a/share/pixmaps/bitcoin.ico b/share/pixmaps/bitcoin.ico index e72c78cdd..256d81070 100644 Binary files a/share/pixmaps/bitcoin.ico and b/share/pixmaps/bitcoin.ico differ diff --git a/share/qt/Info.plist.in b/share/qt/Info.plist.in index c51b3f861..4ec14008f 100644 --- a/share/qt/Info.plist.in +++ b/share/qt/Info.plist.in @@ -17,13 +17,13 @@ APPL CFBundleGetInfoString - @CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@, Copyright © 2013-@COPYRIGHT_YEAR@ Dogecoin Core developers, 2009-@COPYRIGHT_YEAR@ The Bitcoin Core developers + @CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@, Copyright © 2013-@COPYRIGHT_YEAR@ Dogecoin Core developers, 2009-@COPYRIGHT_YEAR@ The Bitcoin Core developers CFBundleShortVersionString - @CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@ + @CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@ CFBundleVersion - @CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@ + @CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@ CFBundleSignature ???? diff --git a/src/.gitignore b/src/.gitignore deleted file mode 100644 index ef96252e6..000000000 --- a/src/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ - -test_dogecoin - diff --git a/src/Makefile.am b/src/Makefile.am index 995dfebce..ab6743bc5 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -29,6 +29,7 @@ DIST_SUBDIRS = . qt test BITCOIN_CORE_H = \ addrman.h \ alert.h \ + auxpow.h \ allocators.h \ base58.h bignum.h \ bloom.h \ @@ -93,9 +94,8 @@ version.o: obj/build.h libbitcoin_server_a_SOURCES = \ addrman.cpp \ alert.cpp \ - rpcserver.cpp \ + auxpow.cpp \ bloom.cpp \ - chainparams.cpp \ checkpoints.cpp \ coins.cpp \ init.cpp \ @@ -110,6 +110,7 @@ libbitcoin_server_a_SOURCES = \ rpcmisc.cpp \ rpcnet.cpp \ rpcrawtransaction.cpp \ + rpcserver.cpp \ txdb.cpp \ txmempool.cpp \ $(JSON_H) \ @@ -128,6 +129,7 @@ libbitcoin_server_wallet_a_SOURCES = \ $(BITCOIN_CORE_H) libbitcoin_common_a_SOURCES = \ + base58.cpp \ allocators.cpp \ chainparams.cpp \ core.cpp \ @@ -143,6 +145,11 @@ libbitcoin_common_a_SOURCES = \ version.cpp \ $(BITCOIN_CORE_H) +if GLIBC_BACK_COMPAT +libbitcoin_common_a_SOURCES += compat/glibc_compat.cpp +libbitcoin_common_a_SOURCES += compat/glibcxx_compat.cpp +endif + libbitcoin_cli_a_SOURCES = \ rpcclient.cpp \ $(BITCOIN_CORE_H) diff --git a/src/Makefile.include b/src/Makefile.include index 5723415e3..f0badd33c 100644 --- a/src/Makefile.include +++ b/src/Makefile.include @@ -41,18 +41,18 @@ $(LIBBITCOINQT): ui_%.h: %.ui @test -d $(abs_builddir)/$(@D) || $(MKDIR_P) $(abs_builddir)/$(@D) @test -f $(UIC) && QT_SELECT=$(QT_SELECT) $(UIC) -o $(abs_builddir)/$@ $(abs_srcdir)/$< || echo error: could not build $(abs_builddir)/$@ - $(SED) -i.bak -e '/^\*\*.*Created:/d' $(abs_builddir)/$@ && rm -f $(abs_builddir)/$@.bak - $(SED) -i.bak -e '/^\*\*.*by:/d' $(abs_builddir)/$@ && rm -f $(abs_builddir)/$@.bak + $(SED) -e '/^\*\*.*Created:/d' $(abs_builddir)/$@ > $(abs_builddir)/$@.n && mv $(abs_builddir)/$@{.n,} + $(SED) -e '/^\*\*.*by:/d' $(abs_builddir)/$@ > $(abs_builddir)/$@.n && mv $(abs_builddir)/$@{.n,} %.moc: %.cpp QT_SELECT=$(QT_SELECT) $(MOC) $(QT_INCLUDES) $(MOC_DEFS) -o $@ $< - $(SED) -i.bak -e '/^\*\*.*Created:/d' $@ && rm -f $@.bak - $(SED) -i.bak -e '/^\*\*.*by:/d' $@ && rm -f $@.bak + $(SED) -e '/^\*\*.*Created:/d' $@ > $@.n && mv $@{.n,} + $(SED) -e '/^\*\*.*by:/d' $@ > $@.n && mv $@{.n,} moc_%.cpp: %.h QT_SELECT=$(QT_SELECT) $(MOC) $(QT_INCLUDES) $(MOC_DEFS) -o $@ $< - $(SED) -i.bak -e '/^\*\*.*Created:/d' $@ && rm -f $@.bak - $(SED) -i.bak -e '/^\*\*.*by:/d' $@ && rm -f $@.bak + $(SED) -e '/^\*\*.*Created:/d' $@ > $@.n && mv $@{.n,} + $(SED) -e '/^\*\*.*by:/d' $@ > $@.n && mv $@{.n,} %.qm: %.ts @test -d $(abs_builddir)/$(@D) || $(MKDIR_P) $(abs_builddir)/$(@D) diff --git a/src/alert.cpp b/src/alert.cpp index 46e861be9..99164d63e 100644 --- a/src/alert.cpp +++ b/src/alert.cpp @@ -10,6 +10,7 @@ #include "ui_interface.h" #include "util.h" +#include #include #include diff --git a/src/auxpow.cpp b/src/auxpow.cpp new file mode 100644 index 000000000..daebfa7f0 --- /dev/null +++ b/src/auxpow.cpp @@ -0,0 +1,137 @@ +// Copyright (c) 2011 Vince Durham +// Distributed under the MIT/X11 software license, see the accompanying +// file license.txt or http://www.opensource.org/licenses/mit-license.php. +#include "script.h" +#include "auxpow.h" +#include "init.h" + +using namespace std; +using namespace boost; + +unsigned char pchMergedMiningHeader[] = { 0xfa, 0xbe, 'm', 'm' } ; + +void RemoveMergedMiningHeader(vector& vchAux) +{ + if (vchAux.begin() != std::search(vchAux.begin(), vchAux.end(), UBEGIN(pchMergedMiningHeader), UEND(pchMergedMiningHeader))) + throw runtime_error("merged mining aux too short"); + vchAux.erase(vchAux.begin(), vchAux.begin() + sizeof(pchMergedMiningHeader)); +} + +bool CAuxPow::Check(uint256 hashAuxBlock, int nChainID) +{ + if (nIndex != 0) + return error("AuxPow is not a generate"); + + if (!TestNet() && parentBlockHeader.GetChainID() == nChainID) + return error("Aux POW parent has our chain ID"); + + if (vChainMerkleBranch.size() > 30) + return error("Aux POW chain merkle branch too long"); + + // Check that the chain merkle root is in the coinbase + uint256 nRootHash = CBlock::CheckMerkleBranch(hashAuxBlock, vChainMerkleBranch, nChainIndex); + vector vchRootHash(nRootHash.begin(), nRootHash.end()); + std::reverse(vchRootHash.begin(), vchRootHash.end()); // correct endian + + // Check that we are in the parent block merkle tree + if (CBlock::CheckMerkleBranch(GetHash(), vMerkleBranch, nIndex) != parentBlockHeader.hashMerkleRoot) + return error("Aux POW merkle root incorrect"); + + const CScript script = vin[0].scriptSig; + + // Check that the same work is not submitted twice to our chain. + // + + CScript::const_iterator pcHead = + std::search(script.begin(), script.end(), UBEGIN(pchMergedMiningHeader), UEND(pchMergedMiningHeader)); + + CScript::const_iterator pc = + std::search(script.begin(), script.end(), vchRootHash.begin(), vchRootHash.end()); + + if (pcHead == script.end()) + return error("MergedMiningHeader missing from parent coinbase"); + + if (pc == script.end()) + return error("Aux POW missing chain merkle root in parent coinbase"); + + if (pcHead != script.end()) + { + // Enforce only one chain merkle root by checking that a single instance of the merged + // mining header exists just before. + if (script.end() != std::search(pcHead + 1, script.end(), UBEGIN(pchMergedMiningHeader), UEND(pchMergedMiningHeader))) + return error("Multiple merged mining headers in coinbase"); + if (pcHead + sizeof(pchMergedMiningHeader) != pc) + return error("Merged mining header is not just before chain merkle root"); + } + else + { + // For backward compatibility. + // Enforce only one chain merkle root by checking that it starts early in the coinbase. + // 8-12 bytes are enough to encode extraNonce and nBits. + if (pc - script.begin() > 20) + return error("Aux POW chain merkle root must start in the first 20 bytes of the parent coinbase"); + } + + + // Ensure we are at a deterministic point in the merkle leaves by hashing + // a nonce and our chain ID and comparing to the index. + pc += vchRootHash.size(); + if (script.end() - pc < 8) + return error("Aux POW missing chain merkle tree size and nonce in parent coinbase"); + + int nSize; + memcpy(&nSize, &pc[0], 4); + if (nSize != (1 << vChainMerkleBranch.size())) + return error("Aux POW merkle branch size does not match parent coinbase"); + + int nNonce; + memcpy(&nNonce, &pc[4], 4); + + // Choose a pseudo-random slot in the chain merkle tree + // but have it be fixed for a size/nonce/chain combination. + // + // This prevents the same work from being used twice for the + // same chain while reducing the chance that two chains clash + // for the same slot. + unsigned int rand = nNonce; + rand = rand * 1103515245 + 12345; + rand += nChainID; + rand = rand * 1103515245 + 12345; + + if (nChainIndex != (rand % nSize)) + return error("Aux POW wrong index"); + + return true; +} + +CScript MakeCoinbaseWithAux(unsigned int nHeight, unsigned int nExtraNonce, vector& vchAux) +{ + vector vchAuxWithHeader(UBEGIN(pchMergedMiningHeader), UEND(pchMergedMiningHeader)); + vchAuxWithHeader.insert(vchAuxWithHeader.end(), vchAux.begin(), vchAux.end()); + + CScript script = (CScript() << nHeight << CScriptNum(nExtraNonce)) + COINBASE_FLAGS; + + // Push OP_2 just in case we want versioning later + script = script << OP_2 << vchAuxWithHeader; + + return script; +} + + +void IncrementExtraNonceWithAux(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce, vector& vchAux) +{ + // Update nExtraNonce + static uint256 hashPrevBlock; + if (hashPrevBlock != pblock->hashPrevBlock) + { + nExtraNonce = 0; + hashPrevBlock = pblock->hashPrevBlock; + } + ++nExtraNonce; + + unsigned int nHeight = pindexPrev->nHeight+1; // Height first in coinbase required for block.version=2 + pblock->vtx[0].vin[0].scriptSig = MakeCoinbaseWithAux(nHeight, nExtraNonce, vchAux); + pblock->hashMerkleRoot = pblock->BuildMerkleTree(); +} + + diff --git a/src/auxpow.h b/src/auxpow.h new file mode 100644 index 000000000..aec5cd4de --- /dev/null +++ b/src/auxpow.h @@ -0,0 +1,84 @@ +// Copyright (c) 2009-2010 Satoshi Nakamoto +// Distributed under the MIT/X11 software license, see the accompanying +// file license.txt or http://www.opensource.org/licenses/mit-license.php. +#ifndef BITCOIN_AUXPOW_H +#define BITCOIN_AUXPOW_H + +#include "main.h" + +class CAuxPow : public CMerkleTx +{ +public: + CAuxPow(const CTransaction& txIn) : CMerkleTx(txIn) + { + } + + CAuxPow() :CMerkleTx() + { + } + + // Merkle branch with root vchAux + // root must be present inside the coinbase + std::vector vChainMerkleBranch; + // Index of chain in chains merkle tree + unsigned int nChainIndex; + CBlockHeader parentBlockHeader; + + IMPLEMENT_SERIALIZE + ( + nSerSize += SerReadWrite(s, *(CMerkleTx*)this, nType, nVersion, ser_action); + nVersion = this->nVersion; + READWRITE(vChainMerkleBranch); + READWRITE(nChainIndex); + + // Always serialize the saved parent block as header so that the size of CAuxPow + // is consistent. + nSerSize += SerReadWrite(s, parentBlockHeader, nType, nVersion, ser_action); + ) + + bool Check(uint256 hashAuxBlock, int nChainID); + + uint256 GetParentBlockHash() + { + return parentBlockHeader.GetPoWHash(); + } +}; + +template +int ReadWriteAuxPow(Stream& s, const boost::shared_ptr& auxpow, int nType, int nVersion, CSerActionGetSerializeSize ser_action) +{ + if (nVersion & BLOCK_VERSION_AUXPOW) + { + return ::GetSerializeSize(*auxpow, nType, nVersion); + } + return 0; +} + +template +int ReadWriteAuxPow(Stream& s, const boost::shared_ptr& auxpow, int nType, int nVersion, CSerActionSerialize ser_action) +{ + if (nVersion & BLOCK_VERSION_AUXPOW) + { + return SerReadWrite(s, *auxpow, nType, nVersion, ser_action); + } + return 0; +} + +template +int ReadWriteAuxPow(Stream& s, boost::shared_ptr& auxpow, int nType, int nVersion, CSerActionUnserialize ser_action) +{ + if (nVersion & BLOCK_VERSION_AUXPOW) + { + auxpow.reset(new CAuxPow()); + return SerReadWrite(s, *auxpow, nType, nVersion, ser_action); + } + else + { + auxpow.reset(); + return 0; + } +} + +extern void RemoveMergedMiningHeader(std::vector& vchAux); +extern CScript MakeCoinbaseWithAux(unsigned int nBits, unsigned int nExtraNonce, std::vector& vchAux); +#endif diff --git a/src/base58.cpp b/src/base58.cpp new file mode 100644 index 000000000..597570388 --- /dev/null +++ b/src/base58.cpp @@ -0,0 +1,274 @@ +// Copyright (c) 2014 The Bitcoin developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#include "base58.h" + +#include "hash.h" +#include "uint256.h" + +#include +#include +#include +#include +#include +#include +#include + +/* All alphanumeric characters except for "0", "I", "O", and "l" */ +static const char* pszBase58 = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"; + +bool DecodeBase58(const char *psz, std::vector& vch) { + // Skip leading spaces. + while (*psz && isspace(*psz)) + psz++; + // Skip and count leading '1's. + int zeroes = 0; + while (*psz == '1') { + zeroes++; + psz++; + } + // Allocate enough space in big-endian base256 representation. + std::vector b256(strlen(psz) * 733 / 1000 + 1); // log(58) / log(256), rounded up. + // Process the characters. + while (*psz && !isspace(*psz)) { + // Decode base58 character + const char *ch = strchr(pszBase58, *psz); + if (ch == NULL) + return false; + // Apply "b256 = b256 * 58 + ch". + int carry = ch - pszBase58; + for (std::vector::reverse_iterator it = b256.rbegin(); it != b256.rend(); it++) { + carry += 58 * (*it); + *it = carry % 256; + carry /= 256; + } + assert(carry == 0); + psz++; + } + // Skip trailing spaces. + while (isspace(*psz)) + psz++; + if (*psz != 0) + return false; + // Skip leading zeroes in b256. + std::vector::iterator it = b256.begin(); + while (it != b256.end() && *it == 0) + it++; + // Copy result into output vector. + vch.reserve(zeroes + (b256.end() - it)); + vch.assign(zeroes, 0x00); + while (it != b256.end()) + vch.push_back(*(it++)); + return true; +} + +std::string EncodeBase58(const unsigned char* pbegin, const unsigned char* pend) { + // Skip & count leading zeroes. + int zeroes = 0; + while (pbegin != pend && *pbegin == 0) { + pbegin++; + zeroes++; + } + // Allocate enough space in big-endian base58 representation. + std::vector b58((pend - pbegin) * 138 / 100 + 1); // log(256) / log(58), rounded up. + // Process the bytes. + while (pbegin != pend) { + int carry = *pbegin; + // Apply "b58 = b58 * 256 + ch". + for (std::vector::reverse_iterator it = b58.rbegin(); it != b58.rend(); it++) { + carry += 256 * (*it); + *it = carry % 58; + carry /= 58; + } + assert(carry == 0); + pbegin++; + } + // Skip leading zeroes in base58 result. + std::vector::iterator it = b58.begin(); + while (it != b58.end() && *it == 0) + it++; + // Translate the result into a string. + std::string str; + str.reserve(zeroes + (b58.end() - it)); + str.assign(zeroes, '1'); + while (it != b58.end()) + str += pszBase58[*(it++)]; + return str; +} + +std::string EncodeBase58(const std::vector& vch) { + return EncodeBase58(&vch[0], &vch[0] + vch.size()); +} + +bool DecodeBase58(const std::string& str, std::vector& vchRet) { + return DecodeBase58(str.c_str(), vchRet); +} + +std::string EncodeBase58Check(const std::vector& vchIn) { + // add 4-byte hash check to the end + std::vector vch(vchIn); + uint256 hash = Hash(vch.begin(), vch.end()); + vch.insert(vch.end(), (unsigned char*)&hash, (unsigned char*)&hash + 4); + return EncodeBase58(vch); +} + +bool DecodeBase58Check(const char* psz, std::vector& vchRet) { + if (!DecodeBase58(psz, vchRet)) + return false; + if (vchRet.size() < 4) + { + vchRet.clear(); + return false; + } + // re-calculate the checksum, insure it matches the included 4-byte checksum + uint256 hash = Hash(vchRet.begin(), vchRet.end()-4); + if (memcmp(&hash, &vchRet.end()[-4], 4) != 0) + { + vchRet.clear(); + return false; + } + vchRet.resize(vchRet.size()-4); + return true; +} + +bool DecodeBase58Check(const std::string& str, std::vector& vchRet) { + return DecodeBase58Check(str.c_str(), vchRet); +} + +CBase58Data::CBase58Data() { + vchVersion.clear(); + vchData.clear(); +} + +void CBase58Data::SetData(const std::vector &vchVersionIn, const void* pdata, size_t nSize) { + vchVersion = vchVersionIn; + vchData.resize(nSize); + if (!vchData.empty()) + memcpy(&vchData[0], pdata, nSize); +} + +void CBase58Data::SetData(const std::vector &vchVersionIn, const unsigned char *pbegin, const unsigned char *pend) { + SetData(vchVersionIn, (void*)pbegin, pend - pbegin); +} + +bool CBase58Data::SetString(const char* psz, unsigned int nVersionBytes) { + std::vector vchTemp; + DecodeBase58Check(psz, vchTemp); + if (vchTemp.size() < nVersionBytes) { + vchData.clear(); + vchVersion.clear(); + return false; + } + vchVersion.assign(vchTemp.begin(), vchTemp.begin() + nVersionBytes); + vchData.resize(vchTemp.size() - nVersionBytes); + if (!vchData.empty()) + memcpy(&vchData[0], &vchTemp[nVersionBytes], vchData.size()); + OPENSSL_cleanse(&vchTemp[0], vchData.size()); + return true; +} + +bool CBase58Data::SetString(const std::string& str) { + return SetString(str.c_str()); +} + +std::string CBase58Data::ToString() const { + std::vector vch = vchVersion; + vch.insert(vch.end(), vchData.begin(), vchData.end()); + return EncodeBase58Check(vch); +} + +int CBase58Data::CompareTo(const CBase58Data& b58) const { + if (vchVersion < b58.vchVersion) return -1; + if (vchVersion > b58.vchVersion) return 1; + if (vchData < b58.vchData) return -1; + if (vchData > b58.vchData) return 1; + return 0; +} + +namespace { + class CBitcoinAddressVisitor : public boost::static_visitor { + private: + CBitcoinAddress *addr; + public: + CBitcoinAddressVisitor(CBitcoinAddress *addrIn) : addr(addrIn) { } + + bool operator()(const CKeyID &id) const { return addr->Set(id); } + bool operator()(const CScriptID &id) const { return addr->Set(id); } + bool operator()(const CNoDestination &no) const { return false; } + }; +}; + +bool CBitcoinAddress::Set(const CKeyID &id) { + SetData(Params().Base58Prefix(CChainParams::PUBKEY_ADDRESS), &id, 20); + return true; +} + +bool CBitcoinAddress::Set(const CScriptID &id) { + SetData(Params().Base58Prefix(CChainParams::SCRIPT_ADDRESS), &id, 20); + return true; +} + +bool CBitcoinAddress::Set(const CTxDestination &dest) { + return boost::apply_visitor(CBitcoinAddressVisitor(this), dest); +} + +bool CBitcoinAddress::IsValid() const { + bool fCorrectSize = vchData.size() == 20; + bool fKnownVersion = vchVersion == Params().Base58Prefix(CChainParams::PUBKEY_ADDRESS) || + vchVersion == Params().Base58Prefix(CChainParams::SCRIPT_ADDRESS); + return fCorrectSize && fKnownVersion; +} + +CTxDestination CBitcoinAddress::Get() const { + if (!IsValid()) + return CNoDestination(); + uint160 id; + memcpy(&id, &vchData[0], 20); + if (vchVersion == Params().Base58Prefix(CChainParams::PUBKEY_ADDRESS)) + return CKeyID(id); + else if (vchVersion == Params().Base58Prefix(CChainParams::SCRIPT_ADDRESS)) + return CScriptID(id); + else + return CNoDestination(); +} + +bool CBitcoinAddress::GetKeyID(CKeyID &keyID) const { + if (!IsValid() || vchVersion != Params().Base58Prefix(CChainParams::PUBKEY_ADDRESS)) + return false; + uint160 id; + memcpy(&id, &vchData[0], 20); + keyID = CKeyID(id); + return true; +} + +bool CBitcoinAddress::IsScript() const { + return IsValid() && vchVersion == Params().Base58Prefix(CChainParams::SCRIPT_ADDRESS); +} + +void CBitcoinSecret::SetKey(const CKey& vchSecret) { + assert(vchSecret.IsValid()); + SetData(Params().Base58Prefix(CChainParams::SECRET_KEY), vchSecret.begin(), vchSecret.size()); + if (vchSecret.IsCompressed()) + vchData.push_back(1); +} + +CKey CBitcoinSecret::GetKey() { + CKey ret; + ret.Set(&vchData[0], &vchData[32], vchData.size() > 32 && vchData[32] == 1); + return ret; +} + +bool CBitcoinSecret::IsValid() const { + bool fExpectedFormat = vchData.size() == 32 || (vchData.size() == 33 && vchData[32] == 1); + bool fCorrectVersion = vchVersion == Params().Base58Prefix(CChainParams::SECRET_KEY); + return fExpectedFormat && fCorrectVersion; +} + +bool CBitcoinSecret::SetString(const char* pszSecret) { + return CBase58Data::SetString(pszSecret) && IsValid(); +} + +bool CBitcoinSecret::SetString(const std::string& strSecret) { + return SetString(strSecret.c_str()); +} diff --git a/src/base58.h b/src/base58.h index ebe537682..70681f589 100644 --- a/src/base58.h +++ b/src/base58.h @@ -14,169 +14,57 @@ #ifndef BITCOIN_BASE58_H #define BITCOIN_BASE58_H -#include "bignum.h" #include "chainparams.h" -#include "hash.h" #include "key.h" #include "script.h" -#include "uint256.h" #include #include -#include -#include +/** + * Encode a byte sequence as a base58-encoded string. + * pbegin and pend cannot be NULL, unless both are. + */ +std::string EncodeBase58(const unsigned char* pbegin, const unsigned char* pend); -static const char* pszBase58 = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"; +/** + * Encode a byte vector as a base58-encoded string + */ +std::string EncodeBase58(const std::vector& vch); -// Encode a byte sequence as a base58-encoded string -inline std::string EncodeBase58(const unsigned char* pbegin, const unsigned char* pend) -{ - CAutoBN_CTX pctx; - CBigNum bn58 = 58; - CBigNum bn0 = 0; +/** + * Decode a base58-encoded string (psz) into a byte vector (vchRet). + * return true if decoding is successful. + * psz cannot be NULL. + */ +bool DecodeBase58(const char* psz, std::vector& vchRet); - // Convert big endian data to little endian - // Extra zero at the end make sure bignum will interpret as a positive number - std::vector vchTmp(pend-pbegin+1, 0); - reverse_copy(pbegin, pend, vchTmp.begin()); +/** + * Decode a base58-encoded string (str) into a byte vector (vchRet). + * return true if decoding is successful. + */ +bool DecodeBase58(const std::string& str, std::vector& vchRet); - // Convert little endian data to bignum - CBigNum bn; - bn.setvch(vchTmp); +/** + * Encode a byte vector into a base58-encoded string, including checksum + */ +std::string EncodeBase58Check(const std::vector& vchIn); - // Convert bignum to std::string - std::string str; - // Expected size increase from base58 conversion is approximately 137% - // use 138% to be safe - str.reserve((pend - pbegin) * 138 / 100 + 1); - CBigNum dv; - CBigNum rem; - while (bn > bn0) - { - if (!BN_div(&dv, &rem, &bn, &bn58, pctx)) - throw bignum_error("EncodeBase58 : BN_div failed"); - bn = dv; - unsigned int c = rem.getulong(); - str += pszBase58[c]; - } +/** + * Decode a base58-encoded string (psz) that includes a checksum into a byte + * vector (vchRet), return true if decoding is successful + */ +inline bool DecodeBase58Check(const char* psz, std::vector& vchRet); - // Leading zeroes encoded as base58 zeros - for (const unsigned char* p = pbegin; p < pend && *p == 0; p++) - str += pszBase58[0]; +/** + * Decode a base58-encoded string (str) that includes a checksum into a byte + * vector (vchRet), return true if decoding is successful + */ +inline bool DecodeBase58Check(const std::string& str, std::vector& vchRet); - // Convert little endian std::string to big endian - reverse(str.begin(), str.end()); - return str; -} - -// Encode a byte vector as a base58-encoded string -inline std::string EncodeBase58(const std::vector& vch) -{ - return EncodeBase58(&vch[0], &vch[0] + vch.size()); -} - -// Decode a base58-encoded string psz into byte vector vchRet -// returns true if decoding is successful -inline bool DecodeBase58(const char* psz, std::vector& vchRet) -{ - CAutoBN_CTX pctx; - vchRet.clear(); - CBigNum bn58 = 58; - CBigNum bn = 0; - CBigNum bnChar; - while (isspace(*psz)) - psz++; - - // Convert big endian string to bignum - for (const char* p = psz; *p; p++) - { - const char* p1 = strchr(pszBase58, *p); - if (p1 == NULL) - { - while (isspace(*p)) - p++; - if (*p != '\0') - return false; - break; - } - bnChar.setulong(p1 - pszBase58); - if (!BN_mul(&bn, &bn, &bn58, pctx)) - throw bignum_error("DecodeBase58 : BN_mul failed"); - bn += bnChar; - } - - // Get bignum as little endian data - std::vector vchTmp = bn.getvch(); - - // Trim off sign byte if present - if (vchTmp.size() >= 2 && vchTmp.end()[-1] == 0 && vchTmp.end()[-2] >= 0x80) - vchTmp.erase(vchTmp.end()-1); - - // Restore leading zeros - int nLeadingZeros = 0; - for (const char* p = psz; *p == pszBase58[0]; p++) - nLeadingZeros++; - vchRet.assign(nLeadingZeros + vchTmp.size(), 0); - - // Convert little endian data to big endian - reverse_copy(vchTmp.begin(), vchTmp.end(), vchRet.end() - vchTmp.size()); - return true; -} - -// Decode a base58-encoded string str into byte vector vchRet -// returns true if decoding is successful -inline bool DecodeBase58(const std::string& str, std::vector& vchRet) -{ - return DecodeBase58(str.c_str(), vchRet); -} - - - - -// Encode a byte vector to a base58-encoded string, including checksum -inline std::string EncodeBase58Check(const std::vector& vchIn) -{ - // add 4-byte hash check to the end - std::vector vch(vchIn); - uint256 hash = Hash(vch.begin(), vch.end()); - vch.insert(vch.end(), (unsigned char*)&hash, (unsigned char*)&hash + 4); - return EncodeBase58(vch); -} - -// Decode a base58-encoded string psz that includes a checksum, into byte vector vchRet -// returns true if decoding is successful -inline bool DecodeBase58Check(const char* psz, std::vector& vchRet) -{ - if (!DecodeBase58(psz, vchRet)) - return false; - if (vchRet.size() < 4) - { - vchRet.clear(); - return false; - } - uint256 hash = Hash(vchRet.begin(), vchRet.end()-4); - if (memcmp(&hash, &vchRet.end()[-4], 4) != 0) - { - vchRet.clear(); - return false; - } - vchRet.resize(vchRet.size()-4); - return true; -} - -// Decode a base58-encoded string str that includes a checksum, into byte vector vchRet -// returns true if decoding is successful -inline bool DecodeBase58Check(const std::string& str, std::vector& vchRet) -{ - return DecodeBase58Check(str.c_str(), vchRet); -} - - - - - -/** Base class for all base58-encoded data */ +/** + * Base class for all base58-encoded data + */ class CBase58Data { protected: @@ -187,64 +75,15 @@ protected: typedef std::vector > vector_uchar; vector_uchar vchData; - CBase58Data() - { - vchVersion.clear(); - vchData.clear(); - } - - void SetData(const std::vector &vchVersionIn, const void* pdata, size_t nSize) - { - vchVersion = vchVersionIn; - vchData.resize(nSize); - if (!vchData.empty()) - memcpy(&vchData[0], pdata, nSize); - } - - void SetData(const std::vector &vchVersionIn, const unsigned char *pbegin, const unsigned char *pend) - { - SetData(vchVersionIn, (void*)pbegin, pend - pbegin); - } + CBase58Data(); + void SetData(const std::vector &vchVersionIn, const void* pdata, size_t nSize); + void SetData(const std::vector &vchVersionIn, const unsigned char *pbegin, const unsigned char *pend); public: - bool SetString(const char* psz, unsigned int nVersionBytes = 1) - { - std::vector vchTemp; - DecodeBase58Check(psz, vchTemp); - if (vchTemp.size() < nVersionBytes) - { - vchData.clear(); - vchVersion.clear(); - return false; - } - vchVersion.assign(vchTemp.begin(), vchTemp.begin() + nVersionBytes); - vchData.resize(vchTemp.size() - nVersionBytes); - if (!vchData.empty()) - memcpy(&vchData[0], &vchTemp[nVersionBytes], vchData.size()); - OPENSSL_cleanse(&vchTemp[0], vchData.size()); - return true; - } - - bool SetString(const std::string& str) - { - return SetString(str.c_str()); - } - - std::string ToString() const - { - std::vector vch = vchVersion; - vch.insert(vch.end(), vchData.begin(), vchData.end()); - return EncodeBase58Check(vch); - } - - int CompareTo(const CBase58Data& b58) const - { - if (vchVersion < b58.vchVersion) return -1; - if (vchVersion > b58.vchVersion) return 1; - if (vchData < b58.vchData) return -1; - if (vchData > b58.vchData) return 1; - return 0; - } + bool SetString(const char* psz, unsigned int nVersionBytes = 1); + bool SetString(const std::string& str); + std::string ToString() const; + int CompareTo(const CBase58Data& b58) const; bool operator==(const CBase58Data& b58) const { return CompareTo(b58) == 0; } bool operator<=(const CBase58Data& b58) const { return CompareTo(b58) <= 0; } @@ -259,141 +98,39 @@ public: * Script-hash-addresses have version 5 (or 196 testnet). * The data vector contains RIPEMD160(SHA256(cscript)), where cscript is the serialized redemption script. */ -class CBitcoinAddress; -class CBitcoinAddressVisitor : public boost::static_visitor -{ -private: - CBitcoinAddress *addr; +class CBitcoinAddress : public CBase58Data { public: - CBitcoinAddressVisitor(CBitcoinAddress *addrIn) : addr(addrIn) { } - bool operator()(const CKeyID &id) const; - bool operator()(const CScriptID &id) const; - bool operator()(const CNoDestination &no) const; + bool Set(const CKeyID &id); + bool Set(const CScriptID &id); + bool Set(const CTxDestination &dest); + bool IsValid() const; + + CBitcoinAddress() {} + CBitcoinAddress(const CTxDestination &dest) { Set(dest); } + CBitcoinAddress(const std::string& strAddress) { SetString(strAddress); } + CBitcoinAddress(const char* pszAddress) { SetString(pszAddress); } + + CTxDestination Get() const; + bool GetKeyID(CKeyID &keyID) const; + bool IsScript() const; }; -class CBitcoinAddress : public CBase58Data -{ -public: - bool Set(const CKeyID &id) { - SetData(Params().Base58Prefix(CChainParams::PUBKEY_ADDRESS), &id, 20); - return true; - } - - bool Set(const CScriptID &id) { - SetData(Params().Base58Prefix(CChainParams::SCRIPT_ADDRESS), &id, 20); - return true; - } - - bool Set(const CTxDestination &dest) - { - return boost::apply_visitor(CBitcoinAddressVisitor(this), dest); - } - - bool IsValid() const - { - bool fCorrectSize = vchData.size() == 20; - bool fKnownVersion = vchVersion == Params().Base58Prefix(CChainParams::PUBKEY_ADDRESS) || - vchVersion == Params().Base58Prefix(CChainParams::SCRIPT_ADDRESS); - return fCorrectSize && fKnownVersion; - } - - CBitcoinAddress() - { - } - - CBitcoinAddress(const CTxDestination &dest) - { - Set(dest); - } - - CBitcoinAddress(const std::string& strAddress) - { - SetString(strAddress); - } - - CBitcoinAddress(const char* pszAddress) - { - SetString(pszAddress); - } - - CTxDestination Get() const { - if (!IsValid()) - return CNoDestination(); - uint160 id; - memcpy(&id, &vchData[0], 20); - if (vchVersion == Params().Base58Prefix(CChainParams::PUBKEY_ADDRESS)) - return CKeyID(id); - else if (vchVersion == Params().Base58Prefix(CChainParams::SCRIPT_ADDRESS)) - return CScriptID(id); - else - return CNoDestination(); - } - - bool GetKeyID(CKeyID &keyID) const { - if (!IsValid() || vchVersion != Params().Base58Prefix(CChainParams::PUBKEY_ADDRESS)) - return false; - uint160 id; - memcpy(&id, &vchData[0], 20); - keyID = CKeyID(id); - return true; - } - - bool IsScript() const { - return IsValid() && vchVersion == Params().Base58Prefix(CChainParams::SCRIPT_ADDRESS); - } -}; - -bool inline CBitcoinAddressVisitor::operator()(const CKeyID &id) const { return addr->Set(id); } -bool inline CBitcoinAddressVisitor::operator()(const CScriptID &id) const { return addr->Set(id); } -bool inline CBitcoinAddressVisitor::operator()(const CNoDestination &id) const { return false; } - -/** A base58-encoded secret key */ +/** + * A base58-encoded secret key + */ class CBitcoinSecret : public CBase58Data { public: - void SetKey(const CKey& vchSecret) - { - assert(vchSecret.IsValid()); - SetData(Params().Base58Prefix(CChainParams::SECRET_KEY), vchSecret.begin(), vchSecret.size()); - if (vchSecret.IsCompressed()) - vchData.push_back(1); - } + void SetKey(const CKey& vchSecret); + CKey GetKey(); + bool IsValid() const; + bool SetString(const char* pszSecret); + bool SetString(const std::string& strSecret); - CKey GetKey() - { - CKey ret; - ret.Set(&vchData[0], &vchData[32], vchData.size() > 32 && vchData[32] == 1); - return ret; - } - - bool IsValid() const - { - bool fExpectedFormat = vchData.size() == 32 || (vchData.size() == 33 && vchData[32] == 1); - bool fCorrectVersion = vchVersion == Params().Base58Prefix(CChainParams::SECRET_KEY); - return fExpectedFormat && fCorrectVersion; - } - - bool SetString(const char* pszSecret) - { - return CBase58Data::SetString(pszSecret) && IsValid(); - } - - bool SetString(const std::string& strSecret) - { - return SetString(strSecret.c_str()); - } - - CBitcoinSecret(const CKey& vchSecret) - { - SetKey(vchSecret); - } - - CBitcoinSecret() - { - } + CBitcoinSecret(const CKey& vchSecret) { SetKey(vchSecret); } + CBitcoinSecret() {} }; - template class CBitcoinExtKeyBase : public CBase58Data { public: diff --git a/src/bloom.cpp b/src/bloom.cpp index cbb8cf4a8..1bfcbd406 100644 --- a/src/bloom.cpp +++ b/src/bloom.cpp @@ -15,8 +15,6 @@ using namespace std; -static const unsigned char bit_mask[8] = {0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80}; - CBloomFilter::CBloomFilter(unsigned int nElements, double nFPRate, unsigned int nTweakIn, unsigned char nFlagsIn) : // The ideal size for a bloom filter with a given number of elements and false positive rate is: // - nElements * log(fp rate) / ln(2)^2 @@ -47,7 +45,7 @@ void CBloomFilter::insert(const vector& vKey) { unsigned int nIndex = Hash(i, vKey); // Sets bit nIndex of vData - vData[nIndex >> 3] |= bit_mask[7 & nIndex]; + vData[nIndex >> 3] |= (1 << (7 & nIndex)); } isEmpty = false; } @@ -76,7 +74,7 @@ bool CBloomFilter::contains(const vector& vKey) const { unsigned int nIndex = Hash(i, vKey); // Checks bit nIndex of vData - if (!(vData[nIndex >> 3] & bit_mask[7 & nIndex])) + if (!(vData[nIndex >> 3] & (1 << (7 & nIndex)))) return false; } return true; diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 0a40e59e9..57cd0afff 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -127,7 +127,7 @@ public: CTransaction txNew; txNew.vin.resize(1); txNew.vout.resize(1); - txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(4) << vector((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp)); + txNew.vin[0].scriptSig = CScript() << 486604799 << CScriptNum(4) << vector((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp)); txNew.vout[0].nValue = 88 * COIN; txNew.vout[0].scriptPubKey = CScript() << ParseHex("040184710fa689ad5023690c80f3a49c8f13f8d45b8c857fbcbc8bc4a8e4d3eb4b10f4d4604fa08dce601aaf0f470216fe1b51850b4acf21b179c45070ac7b03a9") << OP_CHECKSIG; genesis.vtx.push_back(txNew); @@ -262,6 +262,7 @@ public: } virtual bool RequireRPCPassword() const { return false; } + virtual bool SimplifiedRewards() const { return true; } virtual Network NetworkID() const { return CChainParams::REGTEST; } }; static CRegTestParams regTestParams; diff --git a/src/chainparams.h b/src/chainparams.h index 542afeaf9..314306e13 100644 --- a/src/chainparams.h +++ b/src/chainparams.h @@ -60,6 +60,7 @@ public: int SubsidyHalvingInterval() const { return nSubsidyHalvingInterval; } virtual const CBlock& GenesisBlock() const = 0; virtual bool RequireRPCPassword() const { return true; } + virtual bool SimplifiedRewards() const { return false; } const string& DataDir() const { return strDataDir; } virtual Network NetworkID() const = 0; const vector& DNSSeeds() const { return vSeeds; } diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index dc98b7353..966682869 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -23,7 +23,7 @@ namespace Checkpoints // every system. When reindexing from a fast disk with a slow CPU, it // can be up to 20, while when downloading from a slow network with a // fast multicore CPU, it won't be much higher than 1. - static const double fSigcheckVerificationFactor = 5.0; + static const double SIGCHECK_VERIFICATION_FACTOR = 5.0; struct CCheckpointData { const MapCheckpoints *mapCheckpoints; @@ -50,13 +50,19 @@ namespace Checkpoints ( 165393, uint256("0x7154efb4009e18c1c6a6a79fc6015f48502bcd0a1edd9c20e44cd7cbbe2eeef1")) ( 186774, uint256("0x3c712c49b34a5f34d4b963750d6ba02b73e8a938d2ee415dcda141d89f5cb23a")) ( 199992, uint256("0x3408ff829b7104eebaf61fd2ba2203ef2a43af38b95b353e992ef48f00ebb190")) + ( 225000, uint256("be148d9c5eab4a33392a6367198796784479720d06bfdd07bd547fe934eea15a")) + ( 250000, uint256("0e4bcfe8d970979f7e30e2809ab51908d435677998cf759169407824d4f36460")) + ( 270639, uint256("c587a36dd4f60725b9dd01d99694799bef111fc584d659f6756ab06d2a90d911")) + ( 299742, uint256("1cc89c0c8a58046bf0222fe131c099852bd9af25a80e07922918ef5fb39d6742")) + ( 323141, uint256("60c9f919f9b271add6ef5671e9538bad296d79f7fdc6487ba702bf2ba131d31d")) + ( 339202, uint256("8c29048df5ae9df38a67ea9470fdd404d281a3a5c6f33080cd5bf14aa496ab03")) ; static const CCheckpointData data = { &mapCheckpoints, - 1398694748, // * UNIX timestamp of last checkpoint block - 9493347, // * total number of transactions between genesis and last checkpoint + 1408192466, // * UNIX timestamp of last checkpoint block + 11177651, // * total number of transactions between genesis and last checkpoint // (the tx=... number in the SetBestChain debug.log lines) - 8000.0 // * estimated number of transactions per day after checkpoint + 20000.0 // * estimated number of transactions per day after checkpoint }; static MapCheckpoints mapCheckpointsTestnet = @@ -103,12 +109,13 @@ namespace Checkpoints } // Guess how far we are in the verification process at the given block index - double GuessVerificationProgress(CBlockIndex *pindex) { + double GuessVerificationProgress(CBlockIndex *pindex, bool fSigchecks) { if (pindex==NULL) return 0.0; int64_t nNow = time(NULL); + double fSigcheckVerificationFactor = fSigchecks ? SIGCHECK_VERIFICATION_FACTOR : 1.0; double fWorkBefore = 0.0; // Amount of work done before pindex double fWorkAfter = 0.0; // Amount of work left after pindex (estimated) // Work is defined as: 1.0 per transaction before the last checkpoint, and diff --git a/src/checkpoints.h b/src/checkpoints.h index 3724c5753..1b4aacee2 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -24,7 +24,7 @@ namespace Checkpoints // Returns last CBlockIndex* in mapBlockIndex that is a checkpoint CBlockIndex* GetLastCheckpoint(const std::map& mapBlockIndex); - double GuessVerificationProgress(CBlockIndex *pindex); + double GuessVerificationProgress(CBlockIndex *pindex, bool fSigchecks = true); extern bool fEnabled; } diff --git a/src/clientversion.h b/src/clientversion.h index 5ae57eff2..4f3446af5 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -10,12 +10,12 @@ // These need to be macros, as version.cpp's and dogecoin-qt.rc's voodoo requires it #define CLIENT_VERSION_MAJOR 1 -#define CLIENT_VERSION_MINOR 7 -#define CLIENT_VERSION_REVISION 1 +#define CLIENT_VERSION_MINOR 8 +#define CLIENT_VERSION_REVISION 0 #define CLIENT_VERSION_BUILD 0 // Set to true for release, false for prerelease or test build -#define CLIENT_VERSION_IS_RELEASE true +#define CLIENT_VERSION_IS_RELEASE false // Copyright year (2009-this) // Todo: update this when changing our copyright comments in the source diff --git a/src/compat.h b/src/compat.h index 3924445b1..8fbafb6cc 100644 --- a/src/compat.h +++ b/src/compat.h @@ -28,16 +28,16 @@ #include #include #else -#include -#include -#include -#include -#include -#include -#include #include #include #include +#include +#include +#include +#include +#include +#include +#include #include #endif diff --git a/src/compat/glibc_compat.cpp b/src/compat/glibc_compat.cpp new file mode 100644 index 000000000..5b73e6051 --- /dev/null +++ b/src/compat/glibc_compat.cpp @@ -0,0 +1,19 @@ +#include "bitcoin-config.h" +#include +#include + +// Prior to GLIBC_2.14, memcpy was aliased to memmove. +extern "C" void* memmove(void* a, const void* b, size_t c); +extern "C" void* memcpy(void* a, const void* b, size_t c) +{ + return memmove(a, b, c); +} + +extern "C" void __chk_fail (void) __attribute__((__noreturn__)); +extern "C" FDELT_TYPE __fdelt_warn(FDELT_TYPE a) +{ + if (a >= FD_SETSIZE) + __chk_fail (); + return a / __NFDBITS; +} +extern "C" FDELT_TYPE __fdelt_chk(FDELT_TYPE) __attribute__((weak, alias("__fdelt_warn"))); diff --git a/src/compat/glibcxx_compat.cpp b/src/compat/glibcxx_compat.cpp new file mode 100644 index 000000000..e91376f81 --- /dev/null +++ b/src/compat/glibcxx_compat.cpp @@ -0,0 +1,87 @@ +#include +#include +#include +#include + +#ifndef _GLIBCXX_USE_NOEXCEPT + #define _GLIBCXX_USE_NOEXCEPT throw() +#endif + +namespace std { + +const char* bad_exception::what() const throw() +{ + return "std::bad_exception"; +} + +const char* bad_cast::what() const throw() +{ + return "std::bad_cast"; +} + +const char* bad_alloc::what() const throw() +{ + return "std::bad_alloc"; +} + +namespace __detail +{ +struct _List_node_base +{ + void _M_hook(std::__detail::_List_node_base* const __position) throw () __attribute__((used)) + { + _M_next = __position; + _M_prev = __position->_M_prev; + __position->_M_prev->_M_next = this; + __position->_M_prev = this; + } + void _M_unhook() __attribute__((used)) + { + _List_node_base* const __next_node = _M_next; + _List_node_base* const __prev_node = _M_prev; + __prev_node->_M_next = __next_node; + __next_node->_M_prev = __prev_node; + } + _List_node_base* _M_next; + _List_node_base* _M_prev; +}; +} // namespace detail + +template ostream& ostream::_M_insert(bool); +template ostream& ostream::_M_insert(long); +template ostream& ostream::_M_insert(double); +template ostream& ostream::_M_insert(unsigned long); +template ostream& ostream::_M_insert(const void*); +template ostream& __ostream_insert(ostream&, const char*, streamsize); +template istream& istream::_M_extract(long&); +template istream& istream::_M_extract(unsigned short&); + +out_of_range::~out_of_range() _GLIBCXX_USE_NOEXCEPT { } + +// Used with permission. +// See: https://github.com/madlib/madlib/commit/c3db418c0d34d6813608f2137fef1012ce03043d + +void +ctype::_M_widen_init() const { + char __tmp[sizeof(_M_widen)]; + for (unsigned __i = 0; __i < sizeof(_M_widen); ++__i) + __tmp[__i] = __i; + do_widen(__tmp, __tmp + sizeof(__tmp), _M_widen); + + _M_widen_ok = 1; + // Set _M_widen_ok to 2 if memcpy can't be used. + for (unsigned __i = 0; __i < sizeof(_M_widen); ++__i) + if (__tmp[__i] != _M_widen[__i]) { + _M_widen_ok = 2; + break; + } +} + +void __throw_out_of_range_fmt(const char*, ...) __attribute__((__noreturn__)); +void __throw_out_of_range_fmt(const char* err, ...) +{ + // Safe and over-simplified version. Ignore the format and print it as-is. + __throw_out_of_range(err); +} + +}// namespace std diff --git a/src/core.cpp b/src/core.cpp index 7c0172f2d..3980b5e94 100644 --- a/src/core.cpp +++ b/src/core.cpp @@ -4,6 +4,7 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "core.h" +#include "auxpow.h" #include "util.h" diff --git a/src/core.h b/src/core.h index 4a082fd6d..6a0286f9d 100644 --- a/src/core.h +++ b/src/core.h @@ -17,6 +17,27 @@ #include class CTransaction; +class CAuxPow; + +template +int ReadWriteAuxPow(Stream& s, const boost::shared_ptr& auxpow, int nType, int nVersion, CSerActionSerialize ser_action); + +template +int ReadWriteAuxPow(Stream& s, boost::shared_ptr& auxpow, int nType, int nVersion, CSerActionUnserialize ser_action); + +template +int ReadWriteAuxPow(Stream& s, const boost::shared_ptr& auxpow, int nType, int nVersion, CSerActionGetSerializeSize ser_action); + +// primary version +static const int BLOCK_VERSION_DEFAULT = (1 << 0); +static const int BLOCK_VERSION_AUXPOW = (1 << 8); +static const int BLOCK_VERSION_CHAIN_START = (1 << 16); +static const int BLOCK_VERSION_CHAIN_END = (1 << 30); + +// DogeCoin aux chain ID = 0x0062 (98) +static const int AUXPOW_CHAIN_ID = 0x0062; +static const int AUXPOW_START_MAINNET = 371337; +static const int AUXPOW_START_TESTNET = 158100; /** No amount larger than this (in satoshi) is valid */ static const int64_t MAX_MONEY = 10000000000 * COIN; // Dogecoin: maximum of 100B coins (given some randomness), max transaction 10,000,000,000 @@ -350,6 +371,7 @@ public: unsigned int nTime; unsigned int nBits; unsigned int nNonce; + boost::shared_ptr auxpow; CBlockHeader() { @@ -365,11 +387,20 @@ public: READWRITE(nTime); READWRITE(nBits); READWRITE(nNonce); + + nSerSize += ReadWriteAuxPow(s, auxpow, nType, nVersion, ser_action); ) + int GetChainID() const + { + return nVersion / BLOCK_VERSION_CHAIN_START; + } + + void SetAuxPow(CAuxPow* pow); + void SetNull() { - nVersion = CBlockHeader::CURRENT_VERSION; + nVersion = CBlockHeader::CURRENT_VERSION | (AUXPOW_CHAIN_ID * BLOCK_VERSION_CHAIN_START); hashPrevBlock = 0; hashMerkleRoot = 0; nTime = 0; @@ -395,6 +426,8 @@ public: { return (int64_t)nTime; } + + bool CheckProofOfWork(int nHeight) const; }; @@ -440,6 +473,7 @@ public: block.nTime = nTime; block.nBits = nBits; block.nNonce = nNonce; + block.auxpow = auxpow; return block; } diff --git a/src/db.cpp b/src/db.cpp index 521562fe6..eb40f3cc4 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -42,7 +42,7 @@ void CDBEnv::EnvShutdown() fDbEnvInit = false; int ret = dbenv.close(0); if (ret != 0) - LogPrintf("EnvShutdown exception: %s (%d)\n", DbEnv::strerror(ret), ret); + LogPrintf("CDBEnv::EnvShutdown : Error %d shutting down database environment: %s\n", ret, DbEnv::strerror(ret)); if (!fMockDb) DbEnv(0).remove(path.string().c_str(), 0); } @@ -72,9 +72,9 @@ bool CDBEnv::Open(const boost::filesystem::path& pathIn) path = pathIn; filesystem::path pathLogDir = path / "database"; - filesystem::create_directory(pathLogDir); + TryCreateDirectory(pathLogDir); filesystem::path pathErrorFile = path / "db.log"; - LogPrintf("dbenv.open LogDir=%s ErrorFile=%s\n", pathLogDir.string(), pathErrorFile.string()); + LogPrintf("CDBEnv::Open : LogDir=%s ErrorFile=%s\n", pathLogDir.string(), pathErrorFile.string()); unsigned int nEnvFlags = 0; if (GetBoolArg("-privdb", true)) @@ -101,7 +101,7 @@ bool CDBEnv::Open(const boost::filesystem::path& pathIn) nEnvFlags, S_IRUSR | S_IWUSR); if (ret != 0) - return error("CDB() : error %s (%d) opening database environment", DbEnv::strerror(ret), ret); + return error("CDBEnv::Open : Error %d opening database environment: %s\n", ret, DbEnv::strerror(ret)); fDbEnvInit = true; fMockDb = false; @@ -111,11 +111,11 @@ bool CDBEnv::Open(const boost::filesystem::path& pathIn) void CDBEnv::MakeMock() { if (fDbEnvInit) - throw runtime_error("CDBEnv::MakeMock(): already initialized"); + throw runtime_error("CDBEnv::MakeMock : Already initialized"); boost::this_thread::interruption_point(); - LogPrint("db", "CDBEnv::MakeMock()\n"); + LogPrint("db", "CDBEnv::MakeMock\n"); dbenv.set_cachesize(1, 0, 1); dbenv.set_lg_bsize(10485760*4); @@ -134,7 +134,7 @@ void CDBEnv::MakeMock() DB_PRIVATE, S_IRUSR | S_IWUSR); if (ret > 0) - throw runtime_error(strprintf("CDBEnv::MakeMock(): error %d opening database environment", ret)); + throw runtime_error(strprintf("CDBEnv::MakeMock : Error %d opening database environment.", ret)); fDbEnvInit = true; fMockDb = true; @@ -172,16 +172,16 @@ bool CDBEnv::Salvage(std::string strFile, bool fAggressive, int result = db.verify(strFile.c_str(), NULL, &strDump, flags); if (result == DB_VERIFY_BAD) { - LogPrintf("Error: Salvage found errors, all data may not be recoverable.\n"); + LogPrintf("CDBEnv::Salvage : Database salvage found errors, all data may not be recoverable.\n"); if (!fAggressive) { - LogPrintf("Error: Rerun with aggressive mode to ignore errors and continue.\n"); + LogPrintf("CDBEnv::Salvage : Rerun with aggressive mode to ignore errors and continue.\n"); return false; } } if (result != 0 && result != DB_VERIFY_BAD) { - LogPrintf("ERROR: db salvage failed: %d\n",result); + LogPrintf("CDBEnv::Salvage : Database salvage failed with result %d.\n", result); return false; } @@ -237,7 +237,7 @@ CDB::CDB(const char *pszFile, const char* pszMode) : { LOCK(bitdb.cs_db); if (!bitdb.Open(GetDataDir())) - throw runtime_error("env open failed"); + throw runtime_error("CDB : Failed to open database environment."); strFile = pszFile; ++bitdb.mapFileUseCount[strFile]; @@ -252,7 +252,7 @@ CDB::CDB(const char *pszFile, const char* pszMode) : DbMpoolFile*mpf = pdb->get_mpf(); ret = mpf->set_flags(DB_MPOOL_NOFILE, 1); if (ret != 0) - throw runtime_error(strprintf("CDB() : failed to configure for no temp file backing for database %s", pszFile)); + throw runtime_error(strprintf("CDB : Failed to configure for no temp file backing for database %s", pszFile)); } ret = pdb->open(NULL, // Txn pointer @@ -268,7 +268,7 @@ CDB::CDB(const char *pszFile, const char* pszMode) : pdb = NULL; --bitdb.mapFileUseCount[strFile]; strFile = ""; - throw runtime_error(strprintf("CDB() : can't open database file %s, error %d", pszFile, ret)); + throw runtime_error(strprintf("CDB : Error %d, can't open database %s", ret, pszFile)); } if (fCreate && !Exists(string("version"))) @@ -352,7 +352,7 @@ bool CDB::Rewrite(const string& strFile, const char* pszSkip) bitdb.mapFileUseCount.erase(strFile); bool fSuccess = true; - LogPrintf("Rewriting %s...\n", strFile); + LogPrintf("CDB::Rewrite : Rewriting %s...\n", strFile); string strFileRes = strFile + ".rewrite"; { // surround usage of db with extra {} CDB db(strFile.c_str(), "r"); @@ -366,7 +366,7 @@ bool CDB::Rewrite(const string& strFile, const char* pszSkip) 0); if (ret > 0) { - LogPrintf("Cannot create database file %s\n", strFileRes); + LogPrintf("CDB::Rewrite : Can't create database file %s\n", strFileRes); fSuccess = false; } @@ -422,7 +422,7 @@ bool CDB::Rewrite(const string& strFile, const char* pszSkip) fSuccess = false; } if (!fSuccess) - LogPrintf("Rewriting of %s FAILED!\n", strFileRes); + LogPrintf("CDB::Rewrite : Failed to rewrite database file %s\n", strFileRes); return fSuccess; } } @@ -435,9 +435,8 @@ bool CDB::Rewrite(const string& strFile, const char* pszSkip) void CDBEnv::Flush(bool fShutdown) { int64_t nStart = GetTimeMillis(); - // Flush log data to the actual data file - // on all files that are not in use - LogPrint("db", "Flush(%s)%s\n", fShutdown ? "true" : "false", fDbEnvInit ? "" : " db not started"); + // Flush log data to the actual data file on all files that are not in use + LogPrint("db", "CDBEnv::Flush : Flush(%s)%s\n", fShutdown ? "true" : "false", fDbEnvInit ? "" : " database not started"); if (!fDbEnvInit) return; { @@ -447,23 +446,23 @@ void CDBEnv::Flush(bool fShutdown) { string strFile = (*mi).first; int nRefCount = (*mi).second; - LogPrint("db", "%s refcount=%d\n", strFile, nRefCount); + LogPrint("db", "CDBEnv::Flush : Flushing %s (refcount = %d)...\n", strFile, nRefCount); if (nRefCount == 0) { // Move log data to the dat file CloseDb(strFile); - LogPrint("db", "%s checkpoint\n", strFile); + LogPrint("db", "CDBEnv::Flush : %s checkpoint\n", strFile); dbenv.txn_checkpoint(0, 0, 0); - LogPrint("db", "%s detach\n", strFile); + LogPrint("db", "CDBEnv::Flush : %s detach\n", strFile); if (!fMockDb) dbenv.lsn_reset(strFile.c_str(), 0); - LogPrint("db", "%s closed\n", strFile); + LogPrint("db", "CDBEnv::Flush : %s closed\n", strFile); mapFileUseCount.erase(mi++); } else mi++; } - LogPrint("db", "DBFlush(%s)%s ended %15dms\n", fShutdown ? "true" : "false", fDbEnvInit ? "" : " db not started", GetTimeMillis() - nStart); + LogPrint("db", "CDBEnv::Flush : Flush(%s)%s took %15dms\n", fShutdown ? "true" : "false", fDbEnvInit ? "" : " database not started", GetTimeMillis() - nStart); if (fShutdown) { char** listp; diff --git a/src/dogecoin-cli.cpp b/src/dogecoin-cli.cpp index efba9eb24..84ea86cea 100644 --- a/src/dogecoin-cli.cpp +++ b/src/dogecoin-cli.cpp @@ -27,7 +27,12 @@ static bool AppInitRPC(int argc, char* argv[]) fprintf(stderr, "Error: Specified data directory \"%s\" does not exist.\n", mapArgs["-datadir"].c_str()); return false; } - ReadConfigFile(mapArgs, mapMultiArgs); + try { + ReadConfigFile(mapArgs, mapMultiArgs); + } catch(std::exception &e) { + fprintf(stderr,"Error reading configuration file: %s\n", e.what()); + return false; + } // Check for -testnet or -regtest parameter (TestNet() calls are only valid after this clause) if (!SelectParamsFromCommandLine()) { fprintf(stderr, "Error: Invalid combination of -regtest and -testnet.\n"); @@ -37,9 +42,9 @@ static bool AppInitRPC(int argc, char* argv[]) if (argc<2 || mapArgs.count("-?") || mapArgs.count("--help")) { // First part of help message is specific to RPC client - std::string strUsage = _("Dogecoin RPC client version") + " " + FormatFullVersion() + "\n\n" + + std::string strUsage = _("Dogecoin Core RPC client version") + " " + FormatFullVersion() + "\n\n" + _("Usage:") + "\n" + - " dogecoin-cli [options] [params] " + _("Send command to Dogecoin server") + "\n" + + " dogecoin-cli [options] [params] " + _("Send command to Dogecoin Core") + "\n" + " dogecoin-cli [options] help " + _("List commands") + "\n" + " dogecoin-cli [options] help " + _("Get help for a command") + "\n"; @@ -53,6 +58,8 @@ static bool AppInitRPC(int argc, char* argv[]) int main(int argc, char* argv[]) { + SetupEnvironment(); + try { if(!AppInitRPC(argc, argv)) diff --git a/src/dogecoind.cpp b/src/dogecoind.cpp index dea9fc227..cfb3d8cb6 100644 --- a/src/dogecoind.cpp +++ b/src/dogecoind.cpp @@ -70,7 +70,13 @@ bool AppInit(int argc, char* argv[]) fprintf(stderr, "Error: Specified data directory \"%s\" does not exist.\n", mapArgs["-datadir"].c_str()); return false; } - ReadConfigFile(mapArgs, mapMultiArgs); + try + { + ReadConfigFile(mapArgs, mapMultiArgs); + } catch(std::exception &e) { + fprintf(stderr,"Error reading configuration file: %s\n", e.what()); + return false; + } // Check for -testnet or -regtest parameter (TestNet() calls are only valid after this clause) if (!SelectParamsFromCommandLine()) { fprintf(stderr, "Error: Invalid combination of -regtest and -testnet.\n"); @@ -82,9 +88,9 @@ bool AppInit(int argc, char* argv[]) // First part of help message is specific to dogecoind / RPC client std::string strUsage = _("Dogecoin Core Daemon") + " " + _("version") + " " + FormatFullVersion() + "\n\n" + _("Usage:") + "\n" + - " dogecoind [options] " + _("Start Dogecoin server") + "\n" + + " dogecoind [options] " + _("Start Dogecoin Core Daemon") + "\n" + _("Usage (deprecated, use dogecoin-cli):") + "\n" + - " dogecoind [options] [params] " + _("Send command to Dogecoin server") + "\n" + + " dogecoind [options] [params] " + _("Send command to Dogecoin Core") + "\n" + " dogecoind [options] help " + _("List commands") + "\n" + " dogecoind [options] help " + _("Get help for a command") + "\n"; @@ -166,6 +172,8 @@ bool AppInit(int argc, char* argv[]) int main(int argc, char* argv[]) { + SetupEnvironment(); + bool fRet = false; // Connect dogecoind signal handlers diff --git a/src/init.cpp b/src/init.cpp index c8d243dd8..2d1578e98 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -30,6 +30,7 @@ #endif #include +#include #ifndef WIN32 #include @@ -195,34 +196,47 @@ std::string HelpMessage(HelpMessageMode hmm) { string strUsage = _("Options:") + "\n"; strUsage += " -? " + _("This help message") + "\n"; + strUsage += " -alertnotify= " + _("Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message)") + "\n"; + strUsage += " -blocknotify= " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n"; + strUsage += " -checkblocks= " + _("How many blocks to check at startup (default: 288, 0 = all)") + "\n"; + strUsage += " -checklevel= " + _("How thorough the block verification of -checkblocks is (0-4, default: 3)") + "\n"; strUsage += " -conf= " + _("Specify configuration file (default: dogecoin.conf)") + "\n"; + if (hmm == HMM_BITCOIND) + { +#if !defined(WIN32) + strUsage += " -daemon " + _("Run in the background as a daemon and accept commands") + "\n"; +#endif + } strUsage += " -datadir= " + _("Specify data directory") + "\n"; - strUsage += " -testnet " + _("Use the test network") + "\n"; - strUsage += " -pid= " + _("Specify pid file (default: dogecoind.pid)") + "\n"; - strUsage += " -gen " + _("Generate coins (default: 0)") + "\n"; strUsage += " -dbcache= " + strprintf(_("Set database cache size in megabytes (%d to %d, default: %d)"), nMinDbCache, nMaxDbCache, nDefaultDbCache) + "\n"; - strUsage += " -timeout= " + _("Specify connection timeout in milliseconds (default: 5000)") + "\n"; - strUsage += " -proxy= " + _("Connect through SOCKS proxy") + "\n"; - strUsage += " -socks= " + _("Select SOCKS version for -proxy (4 or 5, default: 5)") + "\n"; - strUsage += " -onion= " + _("Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy)") + "\n"; - strUsage += " -dns " + _("Allow DNS lookups for -addnode, -seednode and -connect") + "\n"; - strUsage += " -port= " + _("Listen for connections on (default: 22556 or testnet: 44556)") + "\n"; - strUsage += " -maxconnections= " + _("Maintain at most connections to peers (default: 125)") + "\n"; + strUsage += " -keypool= " + _("Set key pool size to (default: 100)") + "\n"; + strUsage += " -loadblock= " + _("Imports blocks from external blk000??.dat file") + " " + _("on startup") + "\n"; + strUsage += " -par= " + strprintf(_("Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d)"), -(int)boost::thread::hardware_concurrency(), MAX_SCRIPTCHECK_THREADS, DEFAULT_SCRIPTCHECK_THREADS) + "\n"; + strUsage += " -pid= " + _("Specify pid file (default: dogecoind.pid)") + "\n"; + strUsage += " -reindex " + _("Rebuild block chain index from current blk000??.dat files") + " " + _("on startup") + "\n"; + strUsage += " -txindex " + _("Maintain a full transaction index (default: 0)") + "\n"; + + strUsage += "\n" + _("Connection options:") + "\n"; strUsage += " -addnode= " + _("Add a node to connect to and attempt to keep the connection open") + "\n"; - strUsage += " -connect= " + _("Connect only to the specified node(s)") + "\n"; - strUsage += " -seednode= " + _("Connect to a node to retrieve peer addresses, and disconnect") + "\n"; - strUsage += " -externalip= " + _("Specify your own public address") + "\n"; - strUsage += " -onlynet= " + _("Only connect to nodes in network (IPv4, IPv6 or Tor)") + "\n"; - strUsage += " -discover " + _("Discover own IP address (default: 1 when listening and no -externalip)") + "\n"; - strUsage += " -checkpoints " + _("Only accept block chain matching built-in checkpoints (default: 1)") + "\n"; - strUsage += " -listen " + _("Accept connections from outside (default: 1 if no -proxy or -connect)") + "\n"; - strUsage += " -bind= " + _("Bind to given address and always listen on it. Use [host]:port notation for IPv6") + "\n"; - strUsage += " -dnsseed " + _("Find peers using DNS lookup (default: 1 unless -connect)") + "\n"; strUsage += " -banscore= " + _("Threshold for disconnecting misbehaving peers (default: 100)") + "\n"; strUsage += " -bantime= " + _("Number of seconds to keep misbehaving peers from reconnecting (default: 86400)") + "\n"; + strUsage += " -bind= " + _("Bind to given address and always listen on it. Use [host]:port notation for IPv6") + "\n"; + strUsage += " -connect= " + _("Connect only to the specified node(s)") + "\n"; + strUsage += " -discover " + _("Discover own IP address (default: 1 when listening and no -externalip)") + "\n"; + strUsage += " -dns " + _("Allow DNS lookups for -addnode, -seednode and -connect") + " " + _("(default: 1)") + "\n"; + strUsage += " -dnsseed " + _("Find peers using DNS lookup (default: 1 unless -connect)") + "\n"; + strUsage += " -externalip= " + _("Specify your own public address") + "\n"; + strUsage += " -listen " + _("Accept connections from outside (default: 1 if no -proxy or -connect)") + "\n"; + strUsage += " -maxconnections= " + _("Maintain at most connections to peers (default: 125)") + "\n"; strUsage += " -maxreceivebuffer= " + _("Maximum per-connection receive buffer, *1000 bytes (default: 5000)") + "\n"; strUsage += " -maxsendbuffer= " + _("Maximum per-connection send buffer, *1000 bytes (default: 1000)") + "\n"; - strUsage += " -bloomfilters " + _("Allow peers to set bloom filters (default: 1)") + "\n" + + strUsage += " -onion= " + _("Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy)") + "\n"; + strUsage += " -onlynet= " + _("Only connect to nodes in network (IPv4, IPv6 or Tor)") + "\n"; + strUsage += " -port= " + _("Listen for connections on (default: 22556 or testnet: 44556)") + "\n"; + strUsage += " -proxy= " + _("Connect through SOCKS proxy") + "\n"; + strUsage += " -seednode= " + _("Connect to a node to retrieve peer addresses, and disconnect") + "\n"; + strUsage += " -socks= " + _("Select SOCKS version for -proxy (4 or 5, default: 5)") + "\n"; + strUsage += " -timeout= " + _("Specify connection timeout in milliseconds (default: 5000)") + "\n"; #ifdef USE_UPNP #if USE_UPNP strUsage += " -upnp " + _("Use UPnP to map the listening port (default: 1 when listening)") + "\n"; @@ -230,65 +244,78 @@ std::string HelpMessage(HelpMessageMode hmm) strUsage += " -upnp " + _("Use UPnP to map the listening port (default: 0)") + "\n"; #endif #endif + +#ifdef ENABLE_WALLET + strUsage += "\n" + _("Wallet options:") + "\n"; + strUsage += " -disablewallet " + _("Do not load the wallet and disable wallet RPC calls") + "\n"; + strUsage += " -paytxfee= " + _("Fee per kB to add to transactions you send") + "\n"; + strUsage += " -rescan " + _("Rescan the block chain for missing wallet transactions") + " " + _("on startup") + "\n"; + strUsage += " -salvagewallet " + _("Attempt to recover private keys from a corrupt wallet.dat") + " " + _("on startup") + "\n"; + strUsage += " -spendzeroconfchange " + _("Spend unconfirmed change when sending transactions (default: 1)") + "\n"; + strUsage += " -upgradewallet " + _("Upgrade wallet to latest format") + " " + _("on startup") + "\n"; + strUsage += " -wallet= " + _("Specify wallet file (within data directory)") + " " + _("(default: wallet.dat)") + "\n"; + strUsage += " -walletnotify= " + _("Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)") + "\n"; + strUsage += " -zapwallettxes " + _("Clear list of wallet transactions (diagnostic tool; implies -rescan)") + "\n"; +#endif + + strUsage += "\n" + _("Debugging/Testing options:") + "\n"; + if (GetBoolArg("-help-debug", false)) + { + strUsage += " -benchmark " + _("Show benchmark information (default: 0)") + "\n"; + strUsage += " -checkpoints " + _("Only accept block chain matching built-in checkpoints (default: 1)") + "\n"; + strUsage += " -dblogsize= " + _("Flush database activity from memory pool to disk log every megabytes (default: 100)") + "\n"; + strUsage += " -disablesafemode " + _("Disable safemode, override a real safe mode event (default: 0)") + "\n"; + strUsage += " -testsafemode " + _("Force safe mode (default: 0)") + "\n"; + strUsage += " -dropmessagestest= " + _("Randomly drop 1 of every network messages") + "\n"; + strUsage += " -fuzzmessagestest= " + _("Randomly fuzz 1 of every network messages") + "\n"; + strUsage += " -flushwallet " + _("Run a thread to flush wallet periodically (default: 1)") + "\n"; + } strUsage += " -debug= " + _("Output debugging information (default: 0, supplying is optional)") + "\n"; strUsage += " " + _("If is not supplied, output all debugging information.") + "\n"; strUsage += " " + _(" can be:"); strUsage += " addrman, alert, coindb, db, lock, rand, rpc, selectcoins, mempool, net"; // Don't translate these and qt below if (hmm == HMM_BITCOIN_QT) - { - strUsage += ", qt.\n"; - } - else - { - strUsage += ".\n"; - } + strUsage += ", qt"; + strUsage += ".\n"; + strUsage += " -gen " + _("Generate coins (default: 0)") + "\n"; + strUsage += " -genproclimit= " + _("Set the processor limit for when generation is on (-1 = unlimited, default: -1)") + "\n"; + strUsage += " -help-debug " + _("Show all debugging options (usage: --help -help-debug)") + "\n"; strUsage += " -logtimestamps " + _("Prepend debug output with timestamp (default: 1)") + "\n"; - strUsage += " -shrinkdebugfile " + _("Shrink debug.log file on client startup (default: 1 when no -debug)") + "\n"; - strUsage += " -printtoconsole " + _("Send trace/debug info to console instead of debug.log file") + "\n"; - strUsage += " -regtest " + _("Enter regression test mode, which uses a special chain in which blocks can be solved instantly.") + "\n"; - strUsage += " " + _("This is intended for regression testing tools and app development.") + "\n"; - strUsage += " -server " + _("Accept command line and JSON-RPC commands") + "\n"; - - if (hmm == HMM_BITCOIND) + if (GetBoolArg("-help-debug", false)) { -#if !defined(WIN32) - strUsage += " -daemon " + _("Run in the background as a daemon and accept commands") + "\n"; -#endif + strUsage += " -limitfreerelay= " + _("Continuously rate-limit free transactions to *1000 bytes per minute (default:15)") + "\n"; + strUsage += " -maxsigcachesize= " + _("Limit size of signature cache to entries (default: 50000)") + "\n"; } + strUsage += " -mintxfee= " + _("Fees smaller than this are considered zero fee (for transaction creation) (default:") + " " + FormatMoney(CTransaction::nMinTxFee) + ")" + "\n"; + strUsage += " -minrelaytxfee= " + _("Fees smaller than this are considered zero fee (for relaying) (default:") + " " + FormatMoney(CTransaction::nMinRelayTxFee) + ")" + "\n"; + strUsage += " -printtoconsole " + _("Send trace/debug info to console instead of debug.log file") + "\n"; + if (GetBoolArg("-help-debug", false)) + { + strUsage += " -printblock= " + _("Print block on startup, if found in block index") + "\n"; + strUsage += " -printblocktree " + _("Print block tree on startup (default: 0)") + "\n"; + strUsage += " -printpriority " + _("Log transaction priority and fee per kB when mining blocks (default: 0)") + "\n"; + strUsage += " -privdb " + _("Sets the DB_PRIVATE flag in the wallet db environment (default: 1)") + "\n"; + strUsage += " -regtest " + _("Enter regression test mode, which uses a special chain in which blocks can be solved instantly.") + "\n"; + strUsage += " " + _("This is intended for regression testing tools and app development.") + "\n"; + strUsage += " " + _("In this mode -genproclimit controls how many blocks are generated immediately.") + "\n"; + } + strUsage += " -shrinkdebugfile " + _("Shrink debug.log file on client startup (default: 1 when no -debug)") + "\n"; + strUsage += " -testnet " + _("Use the test network") + "\n"; - strUsage += " -rpcuser= " + _("Username for JSON-RPC connections") + "\n"; - strUsage += " -rpcpassword= " + _("Password for JSON-RPC connections") + "\n"; - strUsage += " -rpcport= " + _("Listen for JSON-RPC connections on (default: 22555 or testnet: 44555)") + "\n"; - strUsage += " -rpcallowip= " + _("Allow JSON-RPC connections from specified IP address") + "\n"; - strUsage += " -rpcthreads= " + _("Set the number of threads to service RPC calls (default: 4)") + "\n"; - strUsage += " -blocknotify= " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n"; - strUsage += " -alertnotify= " + _("Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message)") + "\n"; - strUsage += " -keypool= " + _("Set key pool size to (default: 100)") + "\n"; - strUsage += " -checkblocks= " + _("How many blocks to check at startup (default: 288, 0 = all)") + "\n"; - strUsage += " -checklevel= " + _("How thorough the block verification is (0-4, default: 3)") + "\n"; - strUsage += " -txindex " + _("Maintain a full transaction index (default: 0)") + "\n"; - strUsage += " -loadblock= " + _("Imports blocks from external blk000??.dat file") + "\n"; - strUsage += " -reindex " + _("Rebuild block chain index from current blk000??.dat files") + "\n"; - strUsage += " -par= " + _("Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0)") + "\n"; -#ifdef ENABLE_WALLET - strUsage += "\n" + _("Wallet options:") + "\n"; - strUsage += " -disablewallet " + _("Do not load the wallet and disable wallet RPC calls") + "\n"; - strUsage += " -paytxfee= " + _("Fee per kB to add to transactions you send") + "\n"; - strUsage += " -rescan " + _("Rescan the block chain for missing wallet transactions") + "\n"; - strUsage += " -zapwallettxes " + _("Clear list of wallet transactions (diagnostic tool; implies -rescan)") + "\n"; - strUsage += " -salvagewallet " + _("Attempt to recover private keys from a corrupt wallet.dat") + "\n"; - strUsage += " -upgradewallet " + _("Upgrade wallet to latest format") + "\n"; - strUsage += " -wallet= " + _("Specify wallet file (within data directory)") + "\n"; - strUsage += " -walletnotify= " + _("Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)") + "\n"; - strUsage += " -change=
" + _("Send change only to the specified address(es)") + "\n" + - strUsage += " -spendzeroconfchange " + _("Spend unconfirmed change when sending transactions (default: 1)") + "\n"; -#endif strUsage += "\n" + _("Block creation options:") + "\n"; strUsage += " -blockminsize= " + _("Set minimum block size in bytes (default: 0)") + "\n"; strUsage += " -blockmaxsize= " + strprintf(_("Set maximum block size in bytes (default: %d)"), DEFAULT_BLOCK_MAX_SIZE) + "\n"; strUsage += " -blockprioritysize= " + strprintf(_("Set maximum size of high-priority/low-fee transactions in bytes (default: %d)"), DEFAULT_BLOCK_PRIORITY_SIZE) + "\n"; - strUsage += "\n" + _("SSL options: (see the Bitcoin Wiki for SSL setup instructions)") + "\n"; + strUsage += "\n" + _("RPC server options:") + "\n"; + strUsage += " -server " + _("Accept command line and JSON-RPC commands") + "\n"; + strUsage += " -rpcuser= " + _("Username for JSON-RPC connections") + "\n"; + strUsage += " -rpcpassword= " + _("Password for JSON-RPC connections") + "\n"; + strUsage += " -rpcport= " + _("Listen for JSON-RPC connections on (default: 22555 or testnet: 44555)") + "\n"; + strUsage += " -rpcallowip= " + _("Allow JSON-RPC connections from specified IP address") + "\n"; + strUsage += " -rpcthreads= " + _("Set the number of threads to service RPC calls (default: 4)") + "\n"; + + strUsage += "\n" + _("RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions)") + "\n"; strUsage += " -rpcssl " + _("Use OpenSSL (https) for JSON-RPC connections") + "\n"; strUsage += " -rpcsslcertificatechainfile= " + _("Server certificate file (default: server.cert)") + "\n"; strUsage += " -rpcsslprivatekeyfile= " + _("Server private key (default: server.pem)") + "\n"; @@ -503,7 +530,7 @@ bool AppInit2(boost::thread_group& threadGroup) Checkpoints::fEnabled = GetBoolArg("-checkpoints", true); // -par=0 means autodetect, but nScriptCheckThreads==0 means no concurrency - nScriptCheckThreads = GetArg("-par", 0); + nScriptCheckThreads = GetArg("-par", DEFAULT_SCRIPTCHECK_THREADS); if (nScriptCheckThreads <= 0) nScriptCheckThreads += boost::thread::hardware_concurrency(); if (nScriptCheckThreads <= 1) @@ -514,6 +541,7 @@ bool AppInit2(boost::thread_group& threadGroup) fServer = GetBoolArg("-server", false); fPrintToConsole = GetBoolArg("-printtoconsole", false); fLogTimestamps = GetBoolArg("-logtimestamps", true); + setvbuf(stdout, NULL, _IOLBF, 0); #ifdef ENABLE_WALLET bool fDisableWallet = GetBoolArg("-disablewallet", false); #endif @@ -559,7 +587,7 @@ bool AppInit2(boost::thread_group& threadGroup) { if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee)) return InitError(strprintf(_("Invalid amount for -paytxfee=: '%s'"), mapArgs["-paytxfee"])); - if (nTransactionFee > 25 * COIN) + if (nTransactionFee > nHighTransactionFeeWarning) InitWarning(_("Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction.")); } @@ -594,13 +622,16 @@ bool AppInit2(boost::thread_group& threadGroup) if (file) fclose(file); static boost::interprocess::file_lock lock(pathLockFile.string().c_str()); if (!lock.try_lock()) - return InitError(strprintf(_("Cannot obtain a lock on data directory %s. Dogecoin is probably already running."), strDataDir)); + return InitError(strprintf(_("Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running."), strDataDir)); if (GetBoolArg("-shrinkdebugfile", !fDebug)) ShrinkDebugFile(); LogPrintf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"); LogPrintf("Dogecoin version %s (%s)\n", FormatFullVersion(), CLIENT_DATE); LogPrintf("Using OpenSSL version %s\n", SSLeay_version(SSLEAY_VERSION)); +#ifdef ENABLE_WALLET + LogPrintf("Using BerkeleyDB version %s\n", DbEnv::version(0, 0, 0)); +#endif if (!fLogTimestamps) LogPrintf("Startup time: %s\n", DateTimeStrFormat("%Y-%m-%d %H:%M:%S", GetTime())); LogPrintf("Default data directory %s\n", GetDefaultDataDir().string()); @@ -691,12 +722,6 @@ bool AppInit2(boost::thread_group& threadGroup) SetLimited(net); } } -#if defined(USE_IPV6) -#if ! USE_IPV6 - else - SetLimited(NET_IPV6); -#endif -#endif CService addrProxy; bool fProxy = false; @@ -708,10 +733,8 @@ bool AppInit2(boost::thread_group& threadGroup) if (!IsLimited(NET_IPV4)) SetProxy(NET_IPV4, addrProxy, nSocksVersion); if (nSocksVersion > 4) { -#ifdef USE_IPV6 if (!IsLimited(NET_IPV6)) SetProxy(NET_IPV6, addrProxy, nSocksVersion); -#endif SetNameProxy(addrProxy, nSocksVersion); } fProxy = true; @@ -753,9 +776,7 @@ bool AppInit2(boost::thread_group& threadGroup) else { struct in_addr inaddr_any; inaddr_any.s_addr = INADDR_ANY; -#ifdef USE_IPV6 fBound |= Bind(CService(in6addr_any, GetListenPort()), BF_NONE); -#endif fBound |= Bind(CService(inaddr_any, GetListenPort()), !fBound ? BF_REPORT_ERROR : BF_NONE); } if (!fBound) diff --git a/src/json/json_spirit_reader_template.h b/src/json/json_spirit_reader_template.h index 4dec00e6c..46f5892f6 100644 --- a/src/json/json_spirit_reader_template.h +++ b/src/json/json_spirit_reader_template.h @@ -33,8 +33,8 @@ namespace json_spirit { - const spirit_namespace::int_parser < boost::int64_t > int64_p = spirit_namespace::int_parser < boost::int64_t >(); - const spirit_namespace::uint_parser< boost::uint64_t > uint64_p = spirit_namespace::uint_parser< boost::uint64_t >(); + const spirit_namespace::int_parser < int64_t > int64_p = spirit_namespace::int_parser < int64_t >(); + const spirit_namespace::uint_parser< uint64_t > uint64_p = spirit_namespace::uint_parser< uint64_t >(); template< class Iter_type > bool is_eq( Iter_type first, Iter_type last, const char* c_str ) @@ -270,12 +270,12 @@ namespace json_spirit add_to_current( Value_type() ); } - void new_int( boost::int64_t i ) + void new_int( int64_t i ) { add_to_current( i ); } - void new_uint64( boost::uint64_t ui ) + void new_uint64( uint64_t ui ) { add_to_current( ui ); } @@ -425,8 +425,8 @@ namespace json_spirit typedef boost::function< void( Char_type ) > Char_action; typedef boost::function< void( Iter_type, Iter_type ) > Str_action; typedef boost::function< void( double ) > Real_action; - typedef boost::function< void( boost::int64_t ) > Int_action; - typedef boost::function< void( boost::uint64_t ) > Uint64_action; + typedef boost::function< void( int64_t ) > Int_action; + typedef boost::function< void( uint64_t ) > Uint64_action; Char_action begin_obj ( boost::bind( &Semantic_actions_t::begin_obj, &self.actions_, _1 ) ); Char_action end_obj ( boost::bind( &Semantic_actions_t::end_obj, &self.actions_, _1 ) ); diff --git a/src/json/json_spirit_value.h b/src/json/json_spirit_value.h index 7e83a2a7e..13cc89210 100644 --- a/src/json/json_spirit_value.h +++ b/src/json/json_spirit_value.h @@ -16,8 +16,8 @@ #include #include #include +#include #include -#include #include #include @@ -45,8 +45,8 @@ namespace json_spirit Value_impl( const Array& value ); Value_impl( bool value ); Value_impl( int value ); - Value_impl( boost::int64_t value ); - Value_impl( boost::uint64_t value ); + Value_impl( int64_t value ); + Value_impl( uint64_t value ); Value_impl( double value ); Value_impl( const Value_impl& other ); @@ -65,8 +65,8 @@ namespace json_spirit const Array& get_array() const; bool get_bool() const; int get_int() const; - boost::int64_t get_int64() const; - boost::uint64_t get_uint64() const; + int64_t get_int64() const; + uint64_t get_uint64() const; double get_real() const; Object& get_obj(); @@ -83,7 +83,7 @@ namespace json_spirit typedef boost::variant< String_type, boost::recursive_wrapper< Object >, boost::recursive_wrapper< Array >, - bool, boost::int64_t, double > Variant; + bool, int64_t, double > Variant; Value_type type_; Variant v_; @@ -258,13 +258,13 @@ namespace json_spirit template< class Config > Value_impl< Config >::Value_impl( int value ) : type_( int_type ) - , v_( static_cast< boost::int64_t >( value ) ) + , v_( static_cast< int64_t >( value ) ) , is_uint64_( false ) { } template< class Config > - Value_impl< Config >::Value_impl( boost::int64_t value ) + Value_impl< Config >::Value_impl( int64_t value ) : type_( int_type ) , v_( value ) , is_uint64_( false ) @@ -272,9 +272,9 @@ namespace json_spirit } template< class Config > - Value_impl< Config >::Value_impl( boost::uint64_t value ) + Value_impl< Config >::Value_impl( uint64_t value ) : type_( int_type ) - , v_( static_cast< boost::int64_t >( value ) ) + , v_( static_cast< int64_t >( value ) ) , is_uint64_( true ) { } @@ -390,19 +390,19 @@ namespace json_spirit } template< class Config > - boost::int64_t Value_impl< Config >::get_int64() const + int64_t Value_impl< Config >::get_int64() const { check_type( int_type ); - return boost::get< boost::int64_t >( v_ ); + return boost::get< int64_t >( v_ ); } template< class Config > - boost::uint64_t Value_impl< Config >::get_uint64() const + uint64_t Value_impl< Config >::get_uint64() const { check_type( int_type ); - return static_cast< boost::uint64_t >( get_int64() ); + return static_cast< uint64_t >( get_int64() ); } template< class Config > @@ -481,13 +481,13 @@ namespace json_spirit } template< class Value > - boost::int64_t get_value( const Value& value, Type_to_type< boost::int64_t > ) + int64_t get_value( const Value& value, Type_to_type< int64_t > ) { return value.get_int64(); } template< class Value > - boost::uint64_t get_value( const Value& value, Type_to_type< boost::uint64_t > ) + uint64_t get_value( const Value& value, Type_to_type< uint64_t > ) { return value.get_uint64(); } diff --git a/src/key.cpp b/src/key.cpp index b57b7c506..2199996cf 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -332,30 +332,60 @@ public: } }; +int CompareBigEndian(const unsigned char *c1, size_t c1len, const unsigned char *c2, size_t c2len) { + while (c1len > c2len) { + if (*c1) + return 1; + c1++; + c1len--; + } + while (c2len > c1len) { + if (*c2) + return -1; + c2++; + c2len--; + } + while (c1len > 0) { + if (*c1 > *c2) + return 1; + if (*c2 > *c1) + return -1; + c1++; + c2++; + c1len--; + } + return 0; +} + +// Order of secp256k1's generator minus 1. +const unsigned char vchMaxModOrder[32] = { + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE, + 0xBA,0xAE,0xDC,0xE6,0xAF,0x48,0xA0,0x3B, + 0xBF,0xD2,0x5E,0x8C,0xD0,0x36,0x41,0x40 +}; + +// Half of the order of secp256k1's generator minus 1. +const unsigned char vchMaxModHalfOrder[32] = { + 0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x5D,0x57,0x6E,0x73,0x57,0xA4,0x50,0x1D, + 0xDF,0xE9,0x2F,0x46,0x68,0x1B,0x20,0xA0 +}; + +const unsigned char vchZero[0] = {}; + + }; // end of anonymous namespace bool CKey::Check(const unsigned char *vch) { - // Do not convert to OpenSSL's data structures for range-checking keys, - // it's easy enough to do directly. - static const unsigned char vchMax[32] = { - 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, - 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE, - 0xBA,0xAE,0xDC,0xE6,0xAF,0x48,0xA0,0x3B, - 0xBF,0xD2,0x5E,0x8C,0xD0,0x36,0x41,0x40 - }; - bool fIsZero = true; - for (int i=0; i<32 && fIsZero; i++) - if (vch[i] != 0) - fIsZero = false; - if (fIsZero) - return false; - for (int i=0; i<32; i++) { - if (vch[i] < vchMax[i]) - return true; - if (vch[i] > vchMax[i]) - return false; - } - return true; + return CompareBigEndian(vch, 32, vchZero, 0) > 0 && + CompareBigEndian(vch, 32, vchMaxModOrder, 32) <= 0; +} + +bool CKey::CheckSignatureElement(const unsigned char *vch, int len, bool half) { + return CompareBigEndian(vch, len, vchZero, 0) > 0 && + CompareBigEndian(vch, len, half ? vchMaxModHalfOrder : vchMaxModOrder, 32) <= 0; } void CKey::MakeNewKey(bool fCompressedIn) { diff --git a/src/key.h b/src/key.h index cf1165d3d..37a06810b 100644 --- a/src/key.h +++ b/src/key.h @@ -269,6 +269,9 @@ public: // Load private key and check that public key matches. bool Load(CPrivKey &privkey, CPubKey &vchPubKey, bool fSkipCheck); + + // Check whether an element of a signature (r or s) is valid. + static bool CheckSignatureElement(const unsigned char *vch, int len, bool half); }; struct CExtPubKey { diff --git a/src/keystore.cpp b/src/keystore.cpp index 46402ea25..594e0c61d 100644 --- a/src/keystore.cpp +++ b/src/keystore.cpp @@ -33,6 +33,9 @@ bool CBasicKeyStore::AddKeyPubKey(const CKey& key, const CPubKey &pubkey) bool CBasicKeyStore::AddCScript(const CScript& redeemScript) { + if (redeemScript.size() > MAX_SCRIPT_ELEMENT_SIZE) + return error("CBasicKeyStore::AddCScript() : redeemScripts > %i bytes are invalid", MAX_SCRIPT_ELEMENT_SIZE); + LOCK(cs_KeyStore); mapScripts[redeemScript.GetID()] = redeemScript; return true; diff --git a/src/keystore.h b/src/keystore.h index 0d55e6c81..79d8661ac 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -32,7 +32,7 @@ public: virtual void GetKeys(std::set &setAddress) const =0; virtual bool GetPubKey(const CKeyID &address, CPubKey& vchPubKeyOut) const; - // Support for BIP 0013 : see https://en.bitcoin.it/wiki/BIP_0013 + // Support for BIP 0013 : see https://github.com/bitcoin/bips/blob/master/bip-0013.mediawiki virtual bool AddCScript(const CScript& redeemScript) =0; virtual bool HaveCScript(const CScriptID &hash) const =0; virtual bool GetCScript(const CScriptID &hash, CScript& redeemScriptOut) const =0; diff --git a/src/leveldb/Makefile b/src/leveldb/Makefile index 344ff2972..f8903b69e 100644 --- a/src/leveldb/Makefile +++ b/src/leveldb/Makefile @@ -72,7 +72,7 @@ SHARED = $(SHARED1) else # Update db.h if you change these. SHARED_MAJOR = 1 -SHARED_MINOR = 15 +SHARED_MINOR = 17 SHARED1 = libleveldb.$(PLATFORM_SHARED_EXT) SHARED2 = $(SHARED1).$(SHARED_MAJOR) SHARED3 = $(SHARED1).$(SHARED_MAJOR).$(SHARED_MINOR) @@ -190,19 +190,20 @@ PLATFORMSROOT=/Applications/Xcode.app/Contents/Developer/Platforms SIMULATORROOT=$(PLATFORMSROOT)/iPhoneSimulator.platform/Developer DEVICEROOT=$(PLATFORMSROOT)/iPhoneOS.platform/Developer IOSVERSION=$(shell defaults read $(PLATFORMSROOT)/iPhoneOS.platform/version CFBundleShortVersionString) +IOSARCH=-arch armv6 -arch armv7 -arch armv7s -arch arm64 .cc.o: mkdir -p ios-x86/$(dir $@) - $(CXX) $(CXXFLAGS) -isysroot $(SIMULATORROOT)/SDKs/iPhoneSimulator$(IOSVERSION).sdk -arch i686 -c $< -o ios-x86/$@ + $(CXX) $(CXXFLAGS) -isysroot $(SIMULATORROOT)/SDKs/iPhoneSimulator$(IOSVERSION).sdk -arch i686 -arch x86_64 -c $< -o ios-x86/$@ mkdir -p ios-arm/$(dir $@) - xcrun -sdk iphoneos $(CXX) $(CXXFLAGS) -isysroot $(DEVICEROOT)/SDKs/iPhoneOS$(IOSVERSION).sdk -arch armv6 -arch armv7 -c $< -o ios-arm/$@ + xcrun -sdk iphoneos $(CXX) $(CXXFLAGS) -isysroot $(DEVICEROOT)/SDKs/iPhoneOS$(IOSVERSION).sdk $(IOSARCH) -c $< -o ios-arm/$@ lipo ios-x86/$@ ios-arm/$@ -create -output $@ .c.o: mkdir -p ios-x86/$(dir $@) - $(CC) $(CFLAGS) -isysroot $(SIMULATORROOT)/SDKs/iPhoneSimulator$(IOSVERSION).sdk -arch i686 -c $< -o ios-x86/$@ + $(CC) $(CFLAGS) -isysroot $(SIMULATORROOT)/SDKs/iPhoneSimulator$(IOSVERSION).sdk -arch i686 -arch x86_64 -c $< -o ios-x86/$@ mkdir -p ios-arm/$(dir $@) - xcrun -sdk iphoneos $(CC) $(CFLAGS) -isysroot $(DEVICEROOT)/SDKs/iPhoneOS$(IOSVERSION).sdk -arch armv6 -arch armv7 -c $< -o ios-arm/$@ + xcrun -sdk iphoneos $(CC) $(CFLAGS) -isysroot $(DEVICEROOT)/SDKs/iPhoneOS$(IOSVERSION).sdk $(IOSARCH) -c $< -o ios-arm/$@ lipo ios-x86/$@ ios-arm/$@ -create -output $@ else diff --git a/src/leveldb/db/filename.cc b/src/leveldb/db/filename.cc index 27d750697..da32946d9 100644 --- a/src/leveldb/db/filename.cc +++ b/src/leveldb/db/filename.cc @@ -29,19 +29,14 @@ std::string LogFileName(const std::string& name, uint64_t number) { return MakeFileName(name, number, "log"); } -// TableFileName returns the filenames we usually write to, while -// SSTTableFileName returns the alternative filenames we also try to read from -// for backward compatibility. For now, swap them around. -// TODO: when compatibility is no longer necessary, swap them back -// (TableFileName to use "ldb" and SSTTableFileName to use "sst"). std::string TableFileName(const std::string& name, uint64_t number) { assert(number > 0); - return MakeFileName(name, number, "sst"); + return MakeFileName(name, number, "ldb"); } std::string SSTTableFileName(const std::string& name, uint64_t number) { assert(number > 0); - return MakeFileName(name, number, "ldb"); + return MakeFileName(name, number, "sst"); } std::string DescriptorFileName(const std::string& dbname, uint64_t number) { diff --git a/src/leveldb/db/log_reader.cc b/src/leveldb/db/log_reader.cc index b35f115aa..4919216d0 100644 --- a/src/leveldb/db/log_reader.cc +++ b/src/leveldb/db/log_reader.cc @@ -133,7 +133,9 @@ bool Reader::ReadRecord(Slice* record, std::string* scratch) { case kEof: if (in_fragmented_record) { - ReportCorruption(scratch->size(), "partial record without end(3)"); + // This can be caused by the writer dying immediately after + // writing a physical record but before completing the next; don't + // treat it as a corruption, just ignore the entire logical record. scratch->clear(); } return false; @@ -193,13 +195,12 @@ unsigned int Reader::ReadPhysicalRecord(Slice* result) { eof_ = true; } continue; - } else if (buffer_.size() == 0) { - // End of file - return kEof; } else { - size_t drop_size = buffer_.size(); + // Note that if buffer_ is non-empty, we have a truncated header at the + // end of the file, which can be caused by the writer crashing in the + // middle of writing the header. Instead of considering this an error, + // just report EOF. buffer_.clear(); - ReportCorruption(drop_size, "truncated record at end of file"); return kEof; } } @@ -213,8 +214,14 @@ unsigned int Reader::ReadPhysicalRecord(Slice* result) { if (kHeaderSize + length > buffer_.size()) { size_t drop_size = buffer_.size(); buffer_.clear(); - ReportCorruption(drop_size, "bad record length"); - return kBadRecord; + if (!eof_) { + ReportCorruption(drop_size, "bad record length"); + return kBadRecord; + } + // If the end of the file has been reached without reading |length| bytes + // of payload, assume the writer died in the middle of writing the record. + // Don't report a corruption. + return kEof; } if (type == kZeroType && length == 0) { diff --git a/src/leveldb/db/log_test.cc b/src/leveldb/db/log_test.cc index 4c5cf8757..91d3caafc 100644 --- a/src/leveldb/db/log_test.cc +++ b/src/leveldb/db/log_test.cc @@ -351,20 +351,32 @@ TEST(LogTest, BadRecordType) { ASSERT_EQ("OK", MatchError("unknown record type")); } -TEST(LogTest, TruncatedTrailingRecord) { +TEST(LogTest, TruncatedTrailingRecordIsIgnored) { Write("foo"); ShrinkSize(4); // Drop all payload as well as a header byte ASSERT_EQ("EOF", Read()); - ASSERT_EQ(kHeaderSize - 1, DroppedBytes()); - ASSERT_EQ("OK", MatchError("truncated record at end of file")); + // Truncated last record is ignored, not treated as an error. + ASSERT_EQ(0, DroppedBytes()); + ASSERT_EQ("", ReportMessage()); } TEST(LogTest, BadLength) { + const int kPayloadSize = kBlockSize - kHeaderSize; + Write(BigString("bar", kPayloadSize)); + Write("foo"); + // Least significant size byte is stored in header[4]. + IncrementByte(4, 1); + ASSERT_EQ("foo", Read()); + ASSERT_EQ(kBlockSize, DroppedBytes()); + ASSERT_EQ("OK", MatchError("bad record length")); +} + +TEST(LogTest, BadLengthAtEndIsIgnored) { Write("foo"); ShrinkSize(1); ASSERT_EQ("EOF", Read()); - ASSERT_EQ(kHeaderSize + 2, DroppedBytes()); - ASSERT_EQ("OK", MatchError("bad record length")); + ASSERT_EQ(0, DroppedBytes()); + ASSERT_EQ("", ReportMessage()); } TEST(LogTest, ChecksumMismatch) { @@ -415,6 +427,24 @@ TEST(LogTest, UnexpectedFirstType) { ASSERT_EQ("OK", MatchError("partial record without end")); } +TEST(LogTest, MissingLastIsIgnored) { + Write(BigString("bar", kBlockSize)); + // Remove the LAST block, including header. + ShrinkSize(14); + ASSERT_EQ("EOF", Read()); + ASSERT_EQ("", ReportMessage()); + ASSERT_EQ(0, DroppedBytes()); +} + +TEST(LogTest, PartialLastIsIgnored) { + Write(BigString("bar", kBlockSize)); + // Cause a bad record length in the LAST block. + ShrinkSize(1); + ASSERT_EQ("EOF", Read()); + ASSERT_EQ("", ReportMessage()); + ASSERT_EQ(0, DroppedBytes()); +} + TEST(LogTest, ErrorJoinsRecords) { // Consider two fragmented records: // first(R1) last(R1) first(R2) last(R2) diff --git a/src/leveldb/db/repair.cc b/src/leveldb/db/repair.cc index 96c9b37af..7727fafc5 100644 --- a/src/leveldb/db/repair.cc +++ b/src/leveldb/db/repair.cc @@ -242,7 +242,6 @@ class Repairer { } void ExtractMetaData() { - std::vector kept; for (size_t i = 0; i < table_numbers_.size(); i++) { ScanTable(table_numbers_[i]); } diff --git a/src/leveldb/db/version_set.cc b/src/leveldb/db/version_set.cc index 517edd3b1..aa83df55e 100644 --- a/src/leveldb/db/version_set.cc +++ b/src/leveldb/db/version_set.cc @@ -54,20 +54,6 @@ static int64_t TotalFileSize(const std::vector& files) { return sum; } -namespace { -std::string IntSetToString(const std::set& s) { - std::string result = "{"; - for (std::set::const_iterator it = s.begin(); - it != s.end(); - ++it) { - result += (result.size() > 1) ? "," : ""; - result += NumberToString(*it); - } - result += "}"; - return result; -} -} // namespace - Version::~Version() { assert(refs_ == 0); diff --git a/src/leveldb/include/leveldb/c.h b/src/leveldb/include/leveldb/c.h index 1fa58866c..1048fe3b8 100644 --- a/src/leveldb/include/leveldb/c.h +++ b/src/leveldb/include/leveldb/c.h @@ -9,7 +9,6 @@ Does not support: . getters for the option types . custom comparators that implement key shortening - . capturing post-write-snapshot . custom iter, db, env, cache implementations using just the C bindings Some conventions: diff --git a/src/leveldb/include/leveldb/db.h b/src/leveldb/include/leveldb/db.h index 5ffb29d52..40851b2aa 100644 --- a/src/leveldb/include/leveldb/db.h +++ b/src/leveldb/include/leveldb/db.h @@ -14,7 +14,7 @@ namespace leveldb { // Update Makefile if you change these static const int kMajorVersion = 1; -static const int kMinorVersion = 15; +static const int kMinorVersion = 17; struct Options; struct ReadOptions; diff --git a/src/leveldb/include/leveldb/slice.h b/src/leveldb/include/leveldb/slice.h index 74ea8fa49..bc367986f 100644 --- a/src/leveldb/include/leveldb/slice.h +++ b/src/leveldb/include/leveldb/slice.h @@ -94,7 +94,7 @@ inline bool operator!=(const Slice& x, const Slice& y) { } inline int Slice::compare(const Slice& b) const { - const int min_len = (size_ < b.size_) ? size_ : b.size_; + const size_t min_len = (size_ < b.size_) ? size_ : b.size_; int r = memcmp(data_, b.data_, min_len); if (r == 0) { if (size_ < b.size_) r = -1; diff --git a/src/leveldbwrapper.cpp b/src/leveldbwrapper.cpp index 43c737a59..5b4a9c147 100644 --- a/src/leveldbwrapper.cpp +++ b/src/leveldbwrapper.cpp @@ -51,7 +51,7 @@ CLevelDBWrapper::CLevelDBWrapper(const boost::filesystem::path &path, size_t nCa LogPrintf("Wiping LevelDB in %s\n", path.string()); leveldb::DestroyDB(path.string(), options); } - boost::filesystem::create_directory(path); + TryCreateDirectory(path); LogPrintf("Opening LevelDB in %s\n", path.string()); } leveldb::Status status = leveldb::DB::Open(options, path.string(), &pdb); diff --git a/src/m4/ax_boost_base.m4 b/src/m4/ax_boost_base.m4 index f941b27ec..e025a7e1c 100644 --- a/src/m4/ax_boost_base.m4 +++ b/src/m4/ax_boost_base.m4 @@ -33,7 +33,7 @@ # and this notice are preserved. This file is offered as-is, without any # warranty. -#serial 22 +#serial 23 AC_DEFUN([AX_BOOST_BASE], [ @@ -92,7 +92,10 @@ if test "x$want_boost" = "xyes"; then libsubdirs="lib" ax_arch=`uname -m` case $ax_arch in - x86_64|ppc64|s390x|sparc64|aarch64) + x86_64) + libsubdirs="lib64 libx32 lib lib64" + ;; + ppc64|s390x|sparc64|aarch64) libsubdirs="lib64 lib lib64" ;; esac @@ -103,6 +106,12 @@ if test "x$want_boost" = "xyes"; then AC_REQUIRE([AC_CANONICAL_HOST]) libsubdirs="lib/${host_cpu}-${host_os} $libsubdirs" + case ${host_cpu} in + i?86) + libsubdirs="lib/i386-${host_os} $libsubdirs" + ;; + esac + dnl first we check the system location for boost libraries dnl this location ist chosen if boost libraries are installed with the --layout=system option dnl or if you install boost with RPM diff --git a/src/m4/ax_boost_chrono.m4 b/src/m4/ax_boost_chrono.m4 index 9b3958ec7..318ecea17 100644 --- a/src/m4/ax_boost_chrono.m4 +++ b/src/m4/ax_boost_chrono.m4 @@ -81,6 +81,7 @@ AC_DEFUN([AX_BOOST_CHRONO], LDFLAGS_SAVE=$LDFLAGS if test "x$ax_boost_user_chrono_lib" = "x"; then + ax_lib= for libextension in `ls $BOOSTLIBDIR/libboost_chrono*.so* $BOOSTLIBDIR/libboost_chrono*.dylib* $BOOSTLIBDIR/libboost_chrono*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_chrono.*\)\.so.*$;\1;' -e 's;^lib\(boost_chrono.*\)\.dylib.*$;\1;' -e 's;^lib\(boost_chrono.*\)\.a.*$;\1;'` ; do ax_lib=${libextension} AC_CHECK_LIB($ax_lib, exit, @@ -105,7 +106,7 @@ AC_DEFUN([AX_BOOST_CHRONO], fi if test "x$ax_lib" = "x"; then - AC_MSG_ERROR(Could not find a version of the library!) + AC_MSG_ERROR(Could not find a version of the boost_chrono library!) fi if test "x$link_chrono" = "xno"; then AC_MSG_ERROR(Could not link against $ax_lib !) diff --git a/src/m4/ax_boost_filesystem.m4 b/src/m4/ax_boost_filesystem.m4 index f162163cd..f5c9d5647 100644 --- a/src/m4/ax_boost_filesystem.m4 +++ b/src/m4/ax_boost_filesystem.m4 @@ -80,6 +80,7 @@ AC_DEFUN([AX_BOOST_FILESYSTEM], if test "x$ax_cv_boost_filesystem" = "xyes"; then AC_DEFINE(HAVE_BOOST_FILESYSTEM,,[define if the Boost::Filesystem library is available]) BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` + ax_lib= if test "x$ax_boost_user_filesystem_lib" = "x"; then for libextension in `ls -r $BOOSTLIBDIR/libboost_filesystem* 2>/dev/null | sed 's,.*/lib,,' | sed 's,\..*,,'` ; do ax_lib=${libextension} @@ -104,7 +105,7 @@ AC_DEFUN([AX_BOOST_FILESYSTEM], fi if test "x$ax_lib" = "x"; then - AC_MSG_ERROR(Could not find a version of the library!) + AC_MSG_ERROR(Could not find a version of the boost_filesystem library!) fi if test "x$link_filesystem" != "xyes"; then AC_MSG_ERROR(Could not link against $ax_lib !) diff --git a/src/m4/ax_boost_program_options.m4 b/src/m4/ax_boost_program_options.m4 index 65a39c8c7..f59144185 100644 --- a/src/m4/ax_boost_program_options.m4 +++ b/src/m4/ax_boost_program_options.m4 @@ -74,6 +74,7 @@ AC_DEFUN([AX_BOOST_PROGRAM_OPTIONS], AC_DEFINE(HAVE_BOOST_PROGRAM_OPTIONS,,[define if the Boost::PROGRAM_OPTIONS library is available]) BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` if test "x$ax_boost_user_program_options_lib" = "x"; then + ax_lib= for libextension in `ls $BOOSTLIBDIR/libboost_program_options*.so* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_program_options.*\)\.so.*$;\1;'` `ls $BOOSTLIBDIR/libboost_program_options*.dylib* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_program_options.*\)\.dylib.*$;\1;'` `ls $BOOSTLIBDIR/libboost_program_options*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_program_options.*\)\.a.*$;\1;'` ; do ax_lib=${libextension} AC_CHECK_LIB($ax_lib, exit, @@ -96,7 +97,7 @@ AC_DEFUN([AX_BOOST_PROGRAM_OPTIONS], done fi if test "x$ax_lib" = "x"; then - AC_MSG_ERROR(Could not find a version of the library!) + AC_MSG_ERROR(Could not find a version of the boost_program_options library!) fi if test "x$link_program_options" != "xyes"; then AC_MSG_ERROR([Could not link against [$ax_lib] !]) diff --git a/src/m4/ax_boost_system.m4 b/src/m4/ax_boost_system.m4 index c4c45559d..9c78280fc 100644 --- a/src/m4/ax_boost_system.m4 +++ b/src/m4/ax_boost_system.m4 @@ -83,6 +83,7 @@ AC_DEFUN([AX_BOOST_SYSTEM], LDFLAGS_SAVE=$LDFLAGS if test "x$ax_boost_user_system_lib" = "x"; then + ax_lib= for libextension in `ls -r $BOOSTLIBDIR/libboost_system* 2>/dev/null | sed 's,.*/lib,,' | sed 's,\..*,,'` ; do ax_lib=${libextension} AC_CHECK_LIB($ax_lib, exit, @@ -107,7 +108,7 @@ AC_DEFUN([AX_BOOST_SYSTEM], fi if test "x$ax_lib" = "x"; then - AC_MSG_ERROR(Could not find a version of the library!) + AC_MSG_ERROR(Could not find a version of the boost_system library!) fi if test "x$link_system" = "xno"; then AC_MSG_ERROR(Could not link against $ax_lib !) diff --git a/src/m4/ax_boost_thread.m4 b/src/m4/ax_boost_thread.m4 index 79e12cdb4..9f0bd0b23 100644 --- a/src/m4/ax_boost_thread.m4 +++ b/src/m4/ax_boost_thread.m4 @@ -104,6 +104,7 @@ AC_DEFUN([AX_BOOST_THREAD], ;; esac if test "x$ax_boost_user_thread_lib" = "x"; then + ax_lib= for libextension in `ls -r $BOOSTLIBDIR/libboost_thread* 2>/dev/null | sed 's,.*/lib,,' | sed 's,\..*,,'`; do ax_lib=${libextension} AC_CHECK_LIB($ax_lib, exit, @@ -128,7 +129,7 @@ AC_DEFUN([AX_BOOST_THREAD], fi if test "x$ax_lib" = "x"; then - AC_MSG_ERROR(Could not find a version of the library!) + AC_MSG_ERROR(Could not find a version of the boost_thread library!) fi if test "x$link_thread" = "xno"; then AC_MSG_ERROR(Could not link against $ax_lib !) diff --git a/src/m4/ax_boost_unit_test_framework.m4 b/src/m4/ax_boost_unit_test_framework.m4 index 1115f5512..4efd1e2f1 100644 --- a/src/m4/ax_boost_unit_test_framework.m4 +++ b/src/m4/ax_boost_unit_test_framework.m4 @@ -76,6 +76,7 @@ AC_DEFUN([AX_BOOST_UNIT_TEST_FRAMEWORK], if test "x$ax_boost_user_unit_test_framework_lib" = "x"; then saved_ldflags="${LDFLAGS}" + ax_lib= for monitor_library in `ls $BOOSTLIBDIR/libboost_unit_test_framework*.so* $BOOSTLIBDIR/libboost_unit_test_framework*.dylib* $BOOSTLIBDIR/libboost_unit_test_framework*.a* 2>/dev/null` ; do if test -r $monitor_library ; then libextension=`echo $monitor_library | sed 's,.*/,,' | sed -e 's;^lib\(boost_unit_test_framework.*\)\.so.*$;\1;' -e 's;^lib\(boost_unit_test_framework.*\)\.dylib.*$;\1;' -e 's;^lib\(boost_unit_test_framework.*\)\.a.*$;\1;'` @@ -124,7 +125,7 @@ AC_DEFUN([AX_BOOST_UNIT_TEST_FRAMEWORK], done fi if test "x$ax_lib" = "x"; then - AC_MSG_ERROR(Could not find a version of the library!) + AC_MSG_ERROR(Could not find a version of the boost_unit_test_framework library!) fi if test "x$link_unit_test_framework" != "xyes"; then AC_MSG_ERROR(Could not link against $ax_lib !) diff --git a/src/main.cpp b/src/main.cpp index 5b83a6d44..f6e709365 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -14,6 +14,7 @@ #include "checkpoints.h" #include "checkqueue.h" #include "init.h" +#include "auxpow.h" #include "net.h" #include "txdb.h" #include "txmempool.h" @@ -59,8 +60,6 @@ int64_t CTransaction::nMinTxFee = 100000000; // Override with -mintxfee /** Fees smaller than this (in satoshi) are considered zero fee (for relaying and mining) */ int64_t CTransaction::nMinRelayTxFee = 100000000; -static CMedianFilter cPeerBlockCounts(8, 0); // Amount of blocks that other nodes claim to have - struct COrphanBlock { uint256 hashBlock; uint256 hashPrev; @@ -79,43 +78,54 @@ const string strMessageMagic = "Dogecoin Signed Message:\n"; // Internal stuff namespace { -struct CBlockIndexWorkComparator -{ - bool operator()(CBlockIndex *pa, CBlockIndex *pb) { - // First sort by most total work, ... - if (pa->nChainWork > pb->nChainWork) return false; - if (pa->nChainWork < pb->nChainWork) return true; + struct CBlockIndexWorkComparator + { + bool operator()(CBlockIndex *pa, CBlockIndex *pb) { + // First sort by most total work, ... + if (pa->nChainWork > pb->nChainWork) return false; + if (pa->nChainWork < pb->nChainWork) return true; - // ... then by earliest time received, ... - if (pa->nSequenceId < pb->nSequenceId) return false; - if (pa->nSequenceId > pb->nSequenceId) return true; + // ... then by earliest time received, ... + if (pa->nSequenceId < pb->nSequenceId) return false; + if (pa->nSequenceId > pb->nSequenceId) return true; - // Use pointer address as tie breaker (should only happen with blocks - // loaded from disk, as those all have id 0). - if (pa < pb) return false; - if (pa > pb) return true; + // Use pointer address as tie breaker (should only happen with blocks + // loaded from disk, as those all have id 0). + if (pa < pb) return false; + if (pa > pb) return true; - // Identical blocks. - return false; - } -}; + // Identical blocks. + return false; + } + }; -CBlockIndex *pindexBestInvalid; -set setBlockIndexValid; // may contain all CBlockIndex*'s that have validness >=BLOCK_VALID_TRANSACTIONS, and must contain those who aren't failed + CBlockIndex *pindexBestInvalid; + // may contain all CBlockIndex*'s that have validness >=BLOCK_VALID_TRANSACTIONS, and must contain those who aren't failed + set setBlockIndexValid; -CCriticalSection cs_LastBlockFile; -CBlockFileInfo infoLastBlockFile; -int nLastBlockFile = 0; + CCriticalSection cs_LastBlockFile; + CBlockFileInfo infoLastBlockFile; + int nLastBlockFile = 0; -// Every received block is assigned a unique and increasing identifier, so we -// know which one to give priority in case of a fork. -CCriticalSection cs_nBlockSequenceId; -// Blocks loaded from disk are assigned id 0, so start the counter at 1. -uint32_t nBlockSequenceId = 1; + // Every received block is assigned a unique and increasing identifier, so we + // know which one to give priority in case of a fork. + CCriticalSection cs_nBlockSequenceId; + // Blocks loaded from disk are assigned id 0, so start the counter at 1. + uint32_t nBlockSequenceId = 1; -// Sources of received blocks, to be able to send them reject messages or ban -// them, if processing happens afterwards. Protected by cs_main. -map mapBlockSource; + // Sources of received blocks, to be able to send them reject messages or ban + // them, if processing happens afterwards. Protected by cs_main. + map mapBlockSource; + + // Blocks that are in flight, and that are in the queue to be downloaded. + // Protected by cs_main. + struct QueuedBlock { + uint256 hash; + int64_t nTime; // Time of "getdata" request in microseconds. + int nQueuedBefore; // Number of blocks in flight at the time of request. + }; + map::iterator> > mapBlocksInFlight; + map::iterator> > mapBlocksToDownload; } ////////////////////////////////////////////////////////////////////////////// @@ -199,10 +209,20 @@ struct CNodeState { std::string name; // List of asynchronously-determined block rejections to notify this peer about. std::vector rejects; + list vBlocksInFlight; + int nBlocksInFlight; + list vBlocksToDownload; + int nBlocksToDownload; + int64_t nLastBlockReceive; + int64_t nLastBlockProcess; CNodeState() { nMisbehavior = 0; fShouldBan = false; + nBlocksToDownload = 0; + nBlocksInFlight = 0; + nLastBlockReceive = 0; + nLastBlockProcess = 0; } }; @@ -231,8 +251,71 @@ void InitializeNode(NodeId nodeid, const CNode *pnode) { void FinalizeNode(NodeId nodeid) { LOCK(cs_main); + CNodeState *state = State(nodeid); + + BOOST_FOREACH(const QueuedBlock& entry, state->vBlocksInFlight) + mapBlocksInFlight.erase(entry.hash); + BOOST_FOREACH(const uint256& hash, state->vBlocksToDownload) + mapBlocksToDownload.erase(hash); + mapNodeState.erase(nodeid); } + +// Requires cs_main. +void MarkBlockAsReceived(const uint256 &hash, NodeId nodeFrom = -1) { + map::iterator> >::iterator itToDownload = mapBlocksToDownload.find(hash); + if (itToDownload != mapBlocksToDownload.end()) { + CNodeState *state = State(itToDownload->second.first); + state->vBlocksToDownload.erase(itToDownload->second.second); + state->nBlocksToDownload--; + mapBlocksToDownload.erase(itToDownload); + } + + map::iterator> >::iterator itInFlight = mapBlocksInFlight.find(hash); + if (itInFlight != mapBlocksInFlight.end()) { + CNodeState *state = State(itInFlight->second.first); + state->vBlocksInFlight.erase(itInFlight->second.second); + state->nBlocksInFlight--; + if (itInFlight->second.first == nodeFrom) + state->nLastBlockReceive = GetTimeMicros(); + mapBlocksInFlight.erase(itInFlight); + } + +} + +// Requires cs_main. +bool AddBlockToQueue(NodeId nodeid, const uint256 &hash) { + if (mapBlocksToDownload.count(hash) || mapBlocksInFlight.count(hash)) + return false; + + CNodeState *state = State(nodeid); + if (state == NULL) + return false; + + list::iterator it = state->vBlocksToDownload.insert(state->vBlocksToDownload.end(), hash); + state->nBlocksToDownload++; + if (state->nBlocksToDownload > 5000) + Misbehaving(nodeid, 10); + mapBlocksToDownload[hash] = std::make_pair(nodeid, it); + return true; +} + +// Requires cs_main. +void MarkBlockAsInFlight(NodeId nodeid, const uint256 &hash) { + CNodeState *state = State(nodeid); + assert(state != NULL); + + // Make sure it's not listed somewhere already. + MarkBlockAsReceived(hash); + + QueuedBlock newentry = {hash, GetTimeMicros(), state->nBlocksInFlight}; + if (state->nBlocksInFlight == 0) + state->nLastBlockReceive = newentry.nTime; // Reset when a first request is sent. + list::iterator it = state->vBlocksInFlight.insert(state->vBlocksInFlight.end(), newentry); + state->nBlocksInFlight++; + mapBlocksInFlight[hash] = std::make_pair(nodeid, it); +} + } bool GetNodeStateStats(NodeId nodeid, CNodeStateStats &stats) { @@ -396,6 +479,7 @@ unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans) //TODO: this isn't identical to dogecoin reference client. bool IsStandardTx(const CTransaction& tx, string& reason) { + AssertLockHeld(cs_main); if (tx.nVersion > CTransaction::CURRENT_VERSION || tx.nVersion < 1) { reason = "version"; return false; @@ -435,10 +519,14 @@ bool IsStandardTx(const CTransaction& tx, string& reason) BOOST_FOREACH(const CTxIn& txin, tx.vin) { - // Biggest 'standard' txin is a 3-signature 3-of-3 CHECKMULTISIG - // pay-to-script-hash, which is 3 ~80-byte signatures, 3 - // ~65-byte public keys, plus a few script ops. - if (txin.scriptSig.size() > 500) { + // Biggest 'standard' txin is a 15-of-15 P2SH multisig with compressed + // keys. (remember the 520 byte limit on redeemScript size) That works + // out to a (15*(33+1))+3=513 byte redeemScript, 513+1+15*(73+1)=1624 + // bytes of scriptSig, which we round off to 1650 bytes for some minor + // future-proofing. That's also enough to spend a 20-of-20 + // CHECKMULTISIG scriptPubKey, though such a scriptPubKey is not + // considered standard) + if (txin.scriptSig.size() > 1650) { reason = "scriptsig-size"; return false; } @@ -478,6 +566,7 @@ bool IsStandardTx(const CTransaction& tx, string& reason) bool IsFinalTx(const CTransaction &tx, int nBlockHeight, int64_t nBlockTime) { + AssertLockHeld(cs_main); // Time based nLockTime implemented in 0.1.6 if (tx.nLockTime == 0) return true; @@ -589,6 +678,7 @@ unsigned int GetP2SHSigOpCount(const CTransaction& tx, CCoinsViewCache& inputs) int CMerkleTx::SetMerkleBranch(const CBlock* pblock) { + AssertLockHeld(cs_main); CBlock blockTmp; if (pblock == NULL) { @@ -704,7 +794,7 @@ int64_t GetMinFee(const CTransaction& tx, unsigned int nBytes, bool fAllowFree, int64_t nMinFee = (1 + (int64_t)nBytes / 1000) * nBaseFee; - if (fAllowFree) + if (fAllowFree && mode != GMF_SEND) { // Free transaction area if (nBytes < 26000) @@ -726,6 +816,7 @@ int64_t GetMinFee(const CTransaction& tx, unsigned int nBytes, bool fAllowFree, bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransaction &tx, bool fLimitFree, bool* pfMissingInputs, bool fRejectInsaneFee) { + AssertLockHeld(cs_main); if (pfMissingInputs) *pfMissingInputs = false; @@ -853,7 +944,7 @@ bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransa // Check against previous transactions // This is done last to help prevent CPU exhaustion denial-of-service attacks. - if (!CheckInputs(tx, state, view, true, SCRIPT_VERIFY_P2SH | SCRIPT_VERIFY_STRICTENC)) + if (!CheckInputs(tx, state, view, true, STANDARD_SCRIPT_VERIFY_FLAGS)) { return error("AcceptToMemoryPool: : ConnectInputs failed %s", hash.ToString()); } @@ -871,6 +962,7 @@ int CMerkleTx::GetDepthInMainChainINTERNAL(CBlockIndex* &pindexRet) const { if (hashBlock == 0 || nIndex == -1) return 0; + AssertLockHeld(cs_main); // Find the block it claims to be in map::iterator mi = mapBlockIndex.find(hashBlock); @@ -894,6 +986,7 @@ int CMerkleTx::GetDepthInMainChainINTERNAL(CBlockIndex* &pindexRet) const int CMerkleTx::GetDepthInMainChain(CBlockIndex* &pindexRet) const { + AssertLockHeld(cs_main); int nResult = GetDepthInMainChainINTERNAL(pindexRet); if (nResult == 0 && !mempool.exists(GetHash())) return -1; // Not in chain, not in mempool @@ -949,11 +1042,11 @@ bool GetTransaction(const uint256 &hash, CTransaction &txOut, uint256 &hashBlock fseek(file, postx.nTxOffset, SEEK_CUR); file >> txOut; } catch (std::exception &e) { - return error("%s : Deserialize or I/O error - %s", __PRETTY_FUNCTION__, e.what()); + return error("%s : Deserialize or I/O error - %s", __func__, e.what()); } hashBlock = header.GetHash(); if (txOut.GetHash() != hash) - return error("%s : txid mismatch", __PRETTY_FUNCTION__); + return error("%s : txid mismatch", __func__); return true; } } @@ -1037,11 +1130,11 @@ bool ReadBlockFromDisk(CBlock& block, const CDiskBlockPos& pos) filein >> block; } catch (std::exception &e) { - return error("%s : Deserialize or I/O error - %s", __PRETTY_FUNCTION__, e.what()); + return error("%s : Deserialize or I/O error - %s", __func__, e.what()); } // Check the header - if (!CheckProofOfWork(block.GetPoWHash(), block.nBits)) + if (!block.CheckProofOfWork(mapBlockIndex[block.GetHash()]->nHeight)) return error("ReadBlockFromDisk : Errors in block header"); return true; @@ -1056,6 +1149,20 @@ bool ReadBlockFromDisk(CBlock& block, const CBlockIndex* pindex) return true; } +void CBlockHeader::SetAuxPow(CAuxPow* pow) +{ + if (pow != NULL) + nVersion |= BLOCK_VERSION_AUXPOW; + else + nVersion &= ~BLOCK_VERSION_AUXPOW; + auxpow.reset(pow); +} + +bool IsAuxPowVersion(int nVersion) +{ + return (nVersion == BLOCK_VERSION_AUXPOW_WITH_AUX || nVersion == BLOCK_VERSION_AUXPOW_WITHOUT_AUX); +} + uint256 static GetOrphanRoot(const uint256& hash) { map::iterator it = mapOrphanBlocks.find(hash); @@ -1113,11 +1220,11 @@ int64_t GetBlockValue(int nHeight, int64_t nFees, uint256 prevHash) int rand = generateMTRandom(seed, 999999); int rand1 = 0; - if(nHeight < 100000) + if(nHeight < 100000 && !Params().SimplifiedRewards()) { nSubsidy = (1 + rand) * COIN; } - else if(nHeight < 145000) + else if(nHeight < 145000 && !Params().SimplifiedRewards()) { cseed_str = prevHash.ToString().substr(7,7); cseed = cseed_str.c_str(); @@ -1144,6 +1251,7 @@ static const int64_t nTargetSpacing = 60; // Dogecoin: 1 minute static const int64_t nInterval = nTargetTimespan / nTargetSpacing; static const int64_t nDiffChangeTarget = 145000; // Patch effective @ block 145000 +static const int64_t nTestnetResetTargetFix = 157500; // Testnet enables target reset at block 157500 // // minimum amount of work that could possibly be required nTime after @@ -1186,7 +1294,6 @@ unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHead bool fNewDifficultyProtocol = (nHeight >= nDiffChangeTarget); int64_t retargetTimespan = nTargetTimespan; - int64_t retargetSpacing = nTargetSpacing; int64_t retargetInterval = nInterval; if (fNewDifficultyProtocol) { @@ -1198,18 +1305,26 @@ unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHead if (pindexLast == NULL) return nProofOfWorkLimit; + if (TestNet() && pindexLast->nHeight >= nTestnetResetTargetFix && pblock->nTime > pindexLast->nTime + nTargetSpacing*2) + { + // Special difficulty rule for testnet: + // If the new block's timestamp is more than 2* nTargetSpacing minutes + // then allow mining of a min-difficulty block. + return nProofOfWorkLimit; + } + // Only change once per interval if ((pindexLast->nHeight+1) % retargetInterval != 0) { if (TestNet()) { - // Special difficulty rule for testnet: - // If the new block's timestamp is more than 2* nTargetSpacing minutes - // then allow mining of a min-difficulty block. if (pblock->nTime > pindexLast->nTime + nTargetSpacing*2) - return nProofOfWorkLimit; - else { + // Special difficulty rule for testnet: + // If the new block's timestamp is more than 2* nTargetSpacing minutes + // then allow mining of a min-difficulty block. + return nProofOfWorkLimit; + } else { // Return the last non-special-min-difficulty-rules-block const CBlockIndex* pindex = pindexLast; while (pindex->pprev && pindex->nHeight % retargetInterval != 0 && pindex->nBits == nProofOfWorkLimit) @@ -1234,53 +1349,53 @@ unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHead // Limit adjustment step int64_t nActualTimespan = pindexLast->GetBlockTime() - pindexFirst->GetBlockTime(); - LogPrintf(" nActualTimespan = %d before bounds\n", nActualTimespan); + int64_t nModulatedTimespan = nActualTimespan; if (fNewDifficultyProtocol) //DigiShield implementation - thanks to RealSolid & WDC for this code { // amplitude filter - thanks to daft27 for this code - nActualTimespan = retargetTimespan + (nActualTimespan - retargetTimespan)/8; + nModulatedTimespan = retargetTimespan + (nModulatedTimespan - retargetTimespan)/8; - if (nActualTimespan < (retargetTimespan - (retargetTimespan/4)) ) nActualTimespan = (retargetTimespan - (retargetTimespan/4)); - if (nActualTimespan > (retargetTimespan + (retargetTimespan/2)) ) nActualTimespan = (retargetTimespan + (retargetTimespan/2)); + if (nModulatedTimespan < (retargetTimespan - (retargetTimespan/4)) ) nModulatedTimespan = (retargetTimespan - (retargetTimespan/4)); + if (nModulatedTimespan > (retargetTimespan + (retargetTimespan/2)) ) nModulatedTimespan = (retargetTimespan + (retargetTimespan/2)); } else if (pindexLast->nHeight+1 > 10000) { - if (nActualTimespan < nTargetTimespan/4) - nActualTimespan = nTargetTimespan/4; - if (nActualTimespan > nTargetTimespan*4) - nActualTimespan = nTargetTimespan*4; + if (nModulatedTimespan < nTargetTimespan/4) + nModulatedTimespan = nTargetTimespan/4; + if (nModulatedTimespan > nTargetTimespan*4) + nModulatedTimespan = nTargetTimespan*4; } else if (pindexLast->nHeight+1 > 5000) { - if (nActualTimespan < nTargetTimespan/8) - nActualTimespan = nTargetTimespan/8; - if (nActualTimespan > nTargetTimespan*4) - nActualTimespan = nTargetTimespan*4; + if (nModulatedTimespan < nTargetTimespan/8) + nModulatedTimespan = nTargetTimespan/8; + if (nModulatedTimespan > nTargetTimespan*4) + nModulatedTimespan = nTargetTimespan*4; } else { - if (nActualTimespan < nTargetTimespan/16) - nActualTimespan = nTargetTimespan/16; - if (nActualTimespan > nTargetTimespan*4) - nActualTimespan = nTargetTimespan*4; + if (nModulatedTimespan < nTargetTimespan/16) + nModulatedTimespan = nTargetTimespan/16; + if (nModulatedTimespan > nTargetTimespan*4) + nModulatedTimespan = nTargetTimespan*4; } // Retarget CBigNum bnNew; bnNew.SetCompact(pindexLast->nBits); - bnNew *= nActualTimespan; + bnNew *= nModulatedTimespan; bnNew /= retargetTimespan; if (bnNew > Params().ProofOfWorkLimit()) bnNew = Params().ProofOfWorkLimit(); - /// debug print - LogPrintf("GetNextWorkRequired RETARGET\n"); - LogPrintf("nTargetTimespan = %d nActualTimespan = %d\n", retargetTimespan, nActualTimespan); - LogPrintf("Before: %08x %s\n", pindexLast->nBits, CBigNum().SetCompact(pindexLast->nBits).getuint256().ToString()); - LogPrintf("After: %08x %s\n", bnNew.GetCompact(), bnNew.getuint256().ToString()); + unsigned int nNewBits = bnNew.GetCompact(); - return bnNew.GetCompact(); + /// debug print + LogPrintf("GetNextWorkRequired() : RETARGET; target: %d, actual: %d, modulated: %d, before: %08x, after: %08x\n", + retargetTimespan, nActualTimespan, nModulatedTimespan, pindexLast->nBits, nNewBits); + + return nNewBits; } bool CheckProofOfWork(uint256 hash, unsigned int nBits) @@ -1299,14 +1414,9 @@ bool CheckProofOfWork(uint256 hash, unsigned int nBits) return true; } -// Return maximum amount of blocks that other nodes claim to have -int GetNumBlocksOfPeers() -{ - return std::max(cPeerBlockCounts.median(), Checkpoints::GetTotalBlocksEstimate()); -} - bool IsInitialBlockDownload() { + LOCK(cs_main); if (fImporting || fReindex || chainActive.Height() < Checkpoints::GetTotalBlocksEstimate()) return true; static int64_t nLastUpdate; @@ -1324,19 +1434,39 @@ bool fLargeWorkForkFound = false; bool fLargeWorkInvalidChainFound = false; CBlockIndex *pindexBestForkTip = NULL, *pindexBestForkBase = NULL; +// Temporarily declare this here so CheckForkWarningConditions() knows it exists +int GetAuxPowStartBlock(); + void CheckForkWarningConditions() { + AssertLockHeld(cs_main); // Before we get past initial download, we cannot reliably alert about forks // (we assume we don't get stuck on a fork before the last checkpoint) if (IsInitialBlockDownload()) return; + + // For an hour before, and a day after the AuxPoW hard fork, disable + // warnings. + int proximityToAuxPoWFork = chainActive.Height() - GetAuxPowStartBlock(); + + if (proximityToAuxPoWFork < 0) { + // One hour of one-minute blocks + if (proximityToAuxPoWFork >= -60) { + return; + } + } else { + // 1440 is 24 * 60 (24 hours of one-minute blocks) + if (proximityToAuxPoWFork < 1440) { + return; + } + } - // If our best fork is no longer within 72 blocks (+/- 12 hours if no one mines it) + // If our best fork is no longer within 360 blocks (+/- 6 hours if no one mines it) // of our head, drop it - if (pindexBestForkTip && chainActive.Height() - pindexBestForkTip->nHeight >= 72) + if (pindexBestForkTip && chainActive.Height() - pindexBestForkTip->nHeight >= 360) pindexBestForkTip = NULL; - if (pindexBestForkTip || (pindexBestInvalid && pindexBestInvalid->nChainWork > chainActive.Tip()->nChainWork + (chainActive.Tip()->GetBlockWork() * 6).getuint256())) + if (pindexBestForkTip || (pindexBestInvalid && pindexBestInvalid->nChainWork > chainActive.Tip()->nChainWork + (chainActive.Tip()->GetBlockWork() * 30).getuint256())) { if (!fLargeWorkForkFound) { @@ -1371,6 +1501,7 @@ void CheckForkWarningConditions() void CheckForkWarningConditionsOnNewFork(CBlockIndex* pindexNewForkTip) { + AssertLockHeld(cs_main); // If we are on a fork that is sufficiently large, set a warning flag CBlockIndex* pfork = pindexNewForkTip; CBlockIndex* plonger = chainActive.Tip(); @@ -1401,6 +1532,7 @@ void CheckForkWarningConditionsOnNewFork(CBlockIndex* pindexNewForkTip) CheckForkWarningConditions(); } +// Requires cs_main. void Misbehaving(NodeId pnode, int howmuch) { if (howmuch == 0) @@ -1453,7 +1585,7 @@ void static InvalidBlockFound(CBlockIndex *pindex, const CValidationState &state } if (!state.CorruptionPossible()) { pindex->nStatus |= BLOCK_FAILED_VALID; - pblocktree->WriteBlockIndex(CDiskBlockIndex(pindex)); + pblocktree->WriteBlockIndex(*pindex); setBlockIndexValid.erase(pindex); InvalidChainFound(pindex); } @@ -1596,14 +1728,26 @@ bool CheckInputs(const CTransaction& tx, CValidationState &state, CCoinsViewCach pvChecks->push_back(CScriptCheck()); check.swap(pvChecks->back()); } else if (!check()) { - if (flags & SCRIPT_VERIFY_STRICTENC) { - // For now, check whether the failure was caused by non-canonical - // encodings or not; if so, don't trigger DoS protection. - CScriptCheck check(coins, tx, i, flags & (~SCRIPT_VERIFY_STRICTENC), 0); + if (flags & STANDARD_NOT_MANDATORY_VERIFY_FLAGS) { + // Check whether the failure was caused by a + // non-mandatory script verification check, such as + // non-standard DER encodings or non-null dummy + // arguments; if so, don't trigger DoS protection to + // avoid splitting the network between upgraded and + // non-upgraded nodes. + CScriptCheck check(coins, tx, i, + flags & ~STANDARD_NOT_MANDATORY_VERIFY_FLAGS, 0); if (check()) - return state.Invalid(false, REJECT_NONSTANDARD, "non-canonical"); + return state.Invalid(false, REJECT_NONSTANDARD, "non-mandatory-script-verify-flag"); } - return state.DoS(100,false, REJECT_NONSTANDARD, "non-canonical"); + // Failures of other flags indicate a transaction that is + // invalid in new blocks, e.g. a invalid P2SH. We DoS ban + // such nodes as they are not following the protocol. That + // said during an upgrade careful thought should be taken + // as to the correct behavior - we may want to continue + // peering with non-upgraded nodes even after a soft-fork + // super-majority vote has passed. + return state.DoS(100,false, REJECT_INVALID, "mandatory-script-verify-flag-failed"); } } } @@ -1736,8 +1880,9 @@ void ThreadScriptCheck() { bool ConnectBlock(CBlock& block, CValidationState& state, CBlockIndex* pindex, CCoinsViewCache& view, bool fJustCheck) { + AssertLockHeld(cs_main); // Check it again in case a previous version let a bad block in - if (!CheckBlock(block, state, !fJustCheck, !fJustCheck)) + if (!CheckBlock(block, state, pindex->nHeight, !fJustCheck, !fJustCheck)) return false; // verify that the view's current state corresponds to the previous block @@ -1769,9 +1914,11 @@ bool ConnectBlock(CBlock& block, CValidationState& state, CBlockIndex* pindex, C if (fEnforceBIP30) { for (unsigned int i = 0; i < block.vtx.size(); i++) { uint256 hash = block.GetTxHash(i); - if (view.HaveCoins(hash) && !view.GetCoins(hash).IsPruned()) - return state.DoS(100, error("ConnectBlock() : tried to overwrite transaction"), + if (view.HaveCoins(hash) && !view.GetCoins(hash).IsPruned()) { + std::string errorMsg = "ConnectBlock() : tried to overwrite transaction " + (hash.GetHex()); + return state.DoS(100, error(errorMsg.data()), REJECT_INVALID, "bad-txns-BIP30"); + } } } @@ -1849,7 +1996,7 @@ bool ConnectBlock(CBlock& block, CValidationState& state, CBlockIndex* pindex, C return state.DoS(100, error("ConnectBlock() : coinbase pays too much (actual=%d vs limit=%d)", block.vtx[0].GetValueOut(), GetBlockValue(pindex->nHeight, nFees, prevHash)), - REJECT_INVALID, "bad-cb-amount"); + REJECT_INVALID, "bad-cb-amount"); if (!control.Wait()) return state.DoS(100, false); @@ -1860,8 +2007,13 @@ bool ConnectBlock(CBlock& block, CValidationState& state, CBlockIndex* pindex, C if (fJustCheck) return true; + // Correct transaction counts. + pindex->nTx = block.vtx.size(); + if (pindex->pprev) + pindex->nChainTx = pindex->pprev->nChainTx + block.vtx.size(); + // Write undo information to disk - if (pindex->GetUndoPos().IsNull() || (pindex->nStatus & BLOCK_VALID_MASK) < BLOCK_VALID_SCRIPTS) + if (pindex->GetUndoPos().IsNull() || !pindex->IsValid(BLOCK_VALID_SCRIPTS)) { if (pindex->GetUndoPos().IsNull()) { CDiskBlockPos pos; @@ -1875,10 +2027,9 @@ bool ConnectBlock(CBlock& block, CValidationState& state, CBlockIndex* pindex, C pindex->nStatus |= BLOCK_HAVE_UNDO; } - pindex->nStatus = (pindex->nStatus & ~BLOCK_VALID_MASK) | BLOCK_VALID_SCRIPTS; + pindex->RaiseValidity(BLOCK_VALID_SCRIPTS); - CDiskBlockIndex blockindex(pindex); - if (!pblocktree->WriteBlockIndex(blockindex)) + if (!pblocktree->WriteBlockIndex(*pindex)) return state.Abort(_("Failed to write block index")); } @@ -1942,7 +2093,7 @@ void static UpdateTip(CBlockIndex *pindexNew) { const CBlockIndex* pindex = chainActive.Tip(); for (int i = 0; i < 100 && pindex != NULL; i++) { - if (pindex->nVersion > CBlock::CURRENT_VERSION) + if (pindex->nVersion > CBlock::CURRENT_VERSION && !IsAuxPowVersion(pindex->nVersion)) ++nUpgraded; pindex = pindex->pprev; } @@ -2069,10 +2220,11 @@ void static FindMostWorkChain() { CBlockIndex *pindexTest = pindexNew; bool fInvalidAncestor = false; while (pindexTest && !chainActive.Contains(pindexTest)) { - if (pindexTest->nStatus & BLOCK_FAILED_MASK) { + if (!pindexTest->IsValid(BLOCK_VALID_TRANSACTIONS) || !(pindexTest->nStatus & BLOCK_HAVE_DATA)) { // Candidate has an invalid ancestor, remove entire chain from the set. if (pindexBestInvalid == NULL || pindexNew->nChainWork > pindexBestInvalid->nChainWork) - pindexBestInvalid = pindexNew; CBlockIndex *pindexFailed = pindexNew; + pindexBestInvalid = pindexNew; + CBlockIndex *pindexFailed = pindexNew; while (pindexTest != pindexFailed) { pindexFailed->nStatus |= BLOCK_FAILED_CHILD; setBlockIndexValid.erase(pindexFailed); @@ -2099,6 +2251,7 @@ void static FindMostWorkChain() { // Try to activate to the most-work chain (thereby connecting it). bool ActivateBestChain(CValidationState &state) { + LOCK(cs_main); CBlockIndex *pindexOldTip = chainActive.Tip(); bool fComplete = false; while (!fComplete) { @@ -2145,21 +2298,22 @@ bool ActivateBestChain(CValidationState &state) { return true; } -bool AddToBlockIndex(CBlock& block, CValidationState& state, const CDiskBlockPos& pos) + +CBlockIndex* AddToBlockIndex(CBlockHeader& block) { // Check for duplicate uint256 hash = block.GetHash(); - if (mapBlockIndex.count(hash)) - return state.Invalid(error("AddToBlockIndex() : %s already exists", hash.ToString()), 0, "duplicate"); + std::map::iterator it = mapBlockIndex.find(hash); + if (it != mapBlockIndex.end()) + return it->second; // Construct new block index object CBlockIndex* pindexNew = new CBlockIndex(block); + assert(pindexNew); { LOCK(cs_nBlockSequenceId); pindexNew->nSequenceId = nBlockSequenceId++; } - assert(pindexNew); - mapAlreadyAskedFor.erase(CInv(MSG_BLOCK, hash)); map::iterator mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first; pindexNew->phashBlock = &((*mi).first); map::iterator miPrev = mapBlockIndex.find(block.hashPrevBlock); @@ -2168,22 +2322,48 @@ bool AddToBlockIndex(CBlock& block, CValidationState& state, const CDiskBlockPos pindexNew->pprev = (*miPrev).second; pindexNew->nHeight = pindexNew->pprev->nHeight + 1; } - pindexNew->nTx = block.vtx.size(); pindexNew->nChainWork = (pindexNew->pprev ? pindexNew->pprev->nChainWork : 0) + pindexNew->GetBlockWork().getuint256(); - pindexNew->nChainTx = (pindexNew->pprev ? pindexNew->pprev->nChainTx : 0) + pindexNew->nTx; + pindexNew->RaiseValidity(BLOCK_VALID_TREE); + + return pindexNew; +} + + +// Mark a block as having its data received and checked (up to BLOCK_VALID_TRANSACTIONS). +bool ReceivedBlockTransactions(const CBlock &block, CValidationState& state, CBlockIndex *pindexNew, const CDiskBlockPos& pos) +{ + pindexNew->nTx = block.vtx.size(); + if (pindexNew->pprev) { + // Not the genesis block. + if (pindexNew->pprev->nChainTx) { + // This parent's block's total number transactions is known, so compute outs. + pindexNew->nChainTx = pindexNew->pprev->nChainTx + pindexNew->nTx; + } else { + // The total number of transactions isn't known yet. + // We will compute it when the block is connected. + pindexNew->nChainTx = 0; + } + } else { + // Genesis block. + pindexNew->nChainTx = pindexNew->nTx; + } pindexNew->nFile = pos.nFile; pindexNew->nDataPos = pos.nPos; pindexNew->nUndoPos = 0; - pindexNew->nStatus = BLOCK_VALID_TRANSACTIONS | BLOCK_HAVE_DATA; - setBlockIndexValid.insert(pindexNew); + pindexNew->nStatus |= BLOCK_HAVE_DATA; - if (!pblocktree->WriteBlockIndex(CDiskBlockIndex(pindexNew))) + if (pindexNew->RaiseValidity(BLOCK_VALID_TRANSACTIONS)) + setBlockIndexValid.insert(pindexNew); + + /* write both the immutible data (CDiskBlockIndex) and the mutable data (BlockIndex) */ + if (!pblocktree->WriteDiskBlockIndex(CDiskBlockIndex(pindexNew, block.auxpow)) || !pblocktree->WriteBlockIndex(*pindexNew)) return state.Abort(_("Failed to write block index")); // New best? if (!ActivateBestChain(state)) return false; + LOCK(cs_main); if (pindexNew == chainActive.Tip()) { // Clear fork warning if its no longer applicable @@ -2202,6 +2382,58 @@ bool AddToBlockIndex(CBlock& block, CValidationState& state, const CDiskBlockPos return true; } +// to enable merged mining: +// - set a block from which it will be enabled +// - set a unique chain ID +// each merged minable scrypt_1024_1_1_256 coin should have a different one +// (if two have the same ID, they can't be merge mined together) +int GetAuxPowStartBlock() +{ + if (TestNet()) + return AUXPOW_START_TESTNET; + else + return AUXPOW_START_MAINNET; +} + +bool CBlockHeader::CheckProofOfWork(int nHeight) const +{ + if (nHeight >= GetAuxPowStartBlock()) + { + // Prevent same work from being submitted twice: + // - this block must have our chain ID + // - parent block must not have the same chain ID (see CAuxPow::Check) + // - index of this chain in chain merkle tree must be pre-determined (see CAuxPow::Check) + if (!TestNet() && nHeight != INT_MAX && GetChainID() != AUXPOW_CHAIN_ID) + return error("CheckProofOfWork() : block does not have our chain ID"); + + if (auxpow.get() != NULL) + { + if (!auxpow->Check(GetHash(), GetChainID())) + return error("CheckProofOfWork() : AUX POW is not valid"); + // Check proof of work matches claimed amount + if (!::CheckProofOfWork(auxpow->GetParentBlockHash(), nBits)) + return error("CheckProofOfWork() : AUX proof of work failed"); + } + else + { + // Check proof of work matches claimed amount + if (!::CheckProofOfWork(GetPoWHash(), nBits)) + return error("CheckProofOfWork() : proof of work failed"); + } + } + else + { + if (auxpow.get() != NULL) + { + return error("CheckProofOfWork() : AUX POW is not allowed at this block"); + } + + // Check if proof of work marches claimed amount + if (!::CheckProofOfWork(GetPoWHash(), nBits)) + return error("CheckProofOfWork() : proof of work failed"); + } + return true; +} bool FindBlockPos(CValidationState &state, CDiskBlockPos &pos, unsigned int nAddSize, unsigned int nHeight, uint64_t nTime, bool fKnown = false) { @@ -2297,27 +2529,55 @@ bool FindUndoPos(CValidationState &state, int nFile, CDiskBlockPos &pos, unsigne return true; } +bool CheckBlockHeader(const CBlockHeader& block, CValidationState& state, int nHeight, bool fCheckPOW) +{ + // Check proof of work matches claimed amount + if (fCheckPOW && !block.CheckProofOfWork(nHeight)) + return state.DoS(50, error("CheckBlockHeader() : proof of work failed"), + REJECT_INVALID, "high-hash"); -bool CheckBlock(const CBlock& block, CValidationState& state, bool fCheckPOW, bool fCheckMerkleRoot) + // Check timestamp + if (block.GetBlockTime() > GetAdjustedTime() + 2 * 60 * 60) + return state.Invalid(error("CheckBlockHeader() : block timestamp too far in the future"), + REJECT_INVALID, "time-too-new"); + + CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(mapBlockIndex); + if (pcheckpoint && block.hashPrevBlock != (chainActive.Tip() ? chainActive.Tip()->GetBlockHash() : uint256(0))) + { + // Extra checks to prevent "fill up memory by spamming with bogus blocks" + int64_t deltaTime = block.GetBlockTime() - pcheckpoint->nTime; + if (deltaTime < 0) + { + return state.DoS(100, error("CheckBlockHeader() : block with timestamp before last checkpoint"), + REJECT_CHECKPOINT, "time-too-old"); + } + CBigNum bnNewBlock; + bnNewBlock.SetCompact(block.nBits); + CBigNum bnRequired; + bnRequired.SetCompact(ComputeMinWork(pcheckpoint->nBits, deltaTime)); + if (bnNewBlock > bnRequired) + { + return state.DoS(100, error("CheckBlockHeader() : block with too little proof-of-work"), + REJECT_INVALID, "bad-diffbits"); + } + } + + return true; +} + +bool CheckBlock(const CBlock& block, CValidationState& state, int nHeight, bool fCheckPOW, bool fCheckMerkleRoot) { // These are checks that are independent of context // that can be verified before saving an orphan block. + if (!CheckBlockHeader(block, state, nHeight, fCheckPOW)) + return false; + // Size limits if (block.vtx.empty() || block.vtx.size() > MAX_BLOCK_SIZE || ::GetSerializeSize(block, SER_NETWORK, PROTOCOL_VERSION) > MAX_BLOCK_SIZE) return state.DoS(100, error("CheckBlock() : size limits failed"), REJECT_INVALID, "bad-blk-length"); - // Check proof of work matches claimed amount - if (fCheckPOW && !CheckProofOfWork(block.GetPoWHash(), block.nBits)) - return state.DoS(50, error("CheckBlock() : proof of work failed"), - REJECT_INVALID, "high-hash"); - - // Check timestamp - if (block.GetBlockTime() > GetAdjustedTime() + 2 * 60 * 60) - return state.Invalid(error("CheckBlock() : block timestamp too far in the future"), - REJECT_INVALID, "time-too-new"); - // First transaction must be coinbase, the rest must not be if (block.vtx.empty() || !block.vtx[0].IsCoinBase()) return state.DoS(100, error("CheckBlock() : first tx is not coinbase"), @@ -2364,12 +2624,18 @@ bool CheckBlock(const CBlock& block, CValidationState& state, bool fCheckPOW, bo return true; } -bool AcceptBlock(CBlock& block, CValidationState& state, CDiskBlockPos* dbp) +bool AcceptBlockHeader(CBlockHeader& block, CValidationState& state, CBlockIndex** ppindex) { + AssertLockHeld(cs_main); // Check for duplicate uint256 hash = block.GetHash(); - if (mapBlockIndex.count(hash)) - return state.Invalid(error("AcceptBlock() : block already in mapBlockIndex"), 0, "duplicate"); + std::map::iterator miSelf = mapBlockIndex.find(hash); + CBlockIndex *pindex = NULL; + if (miSelf != mapBlockIndex.end()) { + pindex = miSelf->second; + if (pindex->nStatus & BLOCK_FAILED_MASK) + return state.Invalid(error("AcceptBlock() : block is marked invalid"), 0, "duplicate"); + } // Get prev block index CBlockIndex* pindexPrev = NULL; @@ -2391,12 +2657,6 @@ bool AcceptBlock(CBlock& block, CValidationState& state, CDiskBlockPos* dbp) return state.Invalid(error("AcceptBlock() : block's timestamp is too early"), REJECT_INVALID, "time-too-old"); - // Check that all transactions are finalized - BOOST_FOREACH(const CTransaction& tx, block.vtx) - if (!IsFinalTx(tx, nHeight, block.GetBlockTime())) - return state.DoS(10, error("AcceptBlock() : contains a non-final transaction"), - REJECT_INVALID, "bad-txns-nonfinal"); - // Check that the block chain matches the known block chain up to a checkpoint if (!Checkpoints::CheckBlock(nHeight, hash)) return state.DoS(100, error("AcceptBlock() : rejected by checkpoint lock-in at %d", nHeight), @@ -2417,18 +2677,58 @@ bool AcceptBlock(CBlock& block, CValidationState& state, CDiskBlockPos* dbp) REJECT_OBSOLETE, "bad-version"); } } - // Enforce block.nVersion=2 rule that the coinbase starts with serialized block height - if (block.nVersion >= 2) + } + + if (pindex == NULL) + pindex = AddToBlockIndex(block); + + if (ppindex) + *ppindex = pindex; + + return true; +} + +bool AcceptBlock(CBlock& block, CValidationState& state, CBlockIndex** ppindex, CDiskBlockPos* dbp) +{ + AssertLockHeld(cs_main); + + CBlockIndex *&pindex = *ppindex; + + if (!AcceptBlockHeader(block, state, &pindex)) + return false; + + int nHeight = pindex->nHeight; + + if (!CheckBlock(block, state, nHeight)) { + if (state.Invalid() && !state.CorruptionPossible()) { + pindex->nStatus |= BLOCK_FAILED_VALID; + } + return false; + } + + uint256 hash = pindex->GetBlockHash(); + + // Check that all transactions are finalized + BOOST_FOREACH(const CTransaction& tx, block.vtx) + if (!IsFinalTx(tx, nHeight, block.GetBlockTime())) { + pindex->nStatus |= BLOCK_FAILED_VALID; + return state.DoS(10, error("AcceptBlock() : contains a non-final transaction"), + REJECT_INVALID, "bad-txns-nonfinal"); + } + + // Enforce block.nVersion=2 rule that the coinbase starts with serialized block height + if (block.nVersion >= 2) + { + // if 750 of the last 1,000 blocks are version 2 or greater (51/100 if testnet): + if ((!TestNet() && CBlockIndex::IsSuperMajority(2, pindex->pprev, 750, 1000)) || + (TestNet() && CBlockIndex::IsSuperMajority(2, pindex->pprev, 51, 100))) { - // if 750 of the last 1,000 blocks are version 2 or greater (51/100 if testnet): - if ((!TestNet() && CBlockIndex::IsSuperMajority(2, pindexPrev, 750, 1000)) || - (TestNet() && CBlockIndex::IsSuperMajority(2, pindexPrev, 51, 100))) - { - CScript expect = CScript() << nHeight; - if (block.vtx[0].vin[0].scriptSig.size() < expect.size() || - !std::equal(expect.begin(), expect.end(), block.vtx[0].vin[0].scriptSig.begin())) - return state.DoS(100, error("AcceptBlock() : block height mismatch in coinbase"), - REJECT_INVALID, "bad-cb-height"); + CScript expect = CScript() << nHeight; + if (block.vtx[0].vin[0].scriptSig.size() < expect.size() || + !std::equal(expect.begin(), expect.end(), block.vtx[0].vin[0].scriptSig.begin())) { + pindex->nStatus |= BLOCK_FAILED_VALID; + return state.DoS(100, error("AcceptBlock() : block height mismatch in coinbase"), + REJECT_INVALID, "bad-cb-height"); } } } @@ -2444,8 +2744,8 @@ bool AcceptBlock(CBlock& block, CValidationState& state, CDiskBlockPos* dbp) if (dbp == NULL) if (!WriteBlockToDisk(block, blockPos)) return state.Abort(_("Failed to write block")); - if (!AddToBlockIndex(block, state, blockPos)) - return error("AcceptBlock() : AddToBlockIndex failed"); + if (!ReceivedBlockTransactions(block, state, pindex, blockPos)) + return error("AcceptBlock() : ReceivedBlockTransactions failed"); } catch(std::runtime_error &e) { return state.Abort(_("System error: ") + e.what()); } @@ -2480,6 +2780,7 @@ bool CBlockIndex::IsSuperMajority(int minVersion, const CBlockIndex* pstart, uns int64_t CBlockIndex::GetMedianTime() const { + AssertLockHeld(cs_main); const CBlockIndex* pindex = this; for (int i = 0; i < nMedianTimeSpan/2; i++) { @@ -2490,8 +2791,51 @@ int64_t CBlockIndex::GetMedianTime() const return pindex->GetMedianTimePast(); } +std::string CBlockIndex::ToString() const +{ + return strprintf("CBlockIndex(pprev=%p, nHeight=%d, merkle=%s, hashBlock=%s)", + pprev, nHeight, + hashMerkleRoot.ToString().substr(0,10).c_str(), + GetBlockHash().ToString().c_str()); +} + +std::string CDiskBlockIndex::ToString() const +{ + std::string str = "CDiskBlockIndex("; + str += CBlockIndex::ToString(); + str += strprintf("\n hashBlock=%s, hashPrev=%s, hashParentBlock=%s)", + GetBlockHash().ToString().c_str(), + hashPrev.ToString().c_str(), + (auxpow.get() != NULL) ? auxpow->GetParentBlockHash().ToString().substr(0,20).c_str() : "-"); + return str; +} + +CBlockHeader CBlockIndex::GetBlockHeader() const +{ + CBlockHeader block; + + if (nVersion & BLOCK_VERSION_AUXPOW) { + CDiskBlockIndex diskblockindex; + // auxpow is not in memory, load CDiskBlockHeader + // from database to get it + + pblocktree->ReadDiskBlockIndex(*phashBlock, diskblockindex); + block.auxpow = diskblockindex.auxpow; + } + + block.nVersion = nVersion; + if (pprev) + block.hashPrevBlock = pprev->GetBlockHash(); + block.hashMerkleRoot = hashMerkleRoot; + block.nTime = nTime; + block.nBits = nBits; + block.nNonce = nNonce; + return block; +} + void PushGetBlocks(CNode* pnode, CBlockIndex* pindexBegin, uint256 hashEnd) { + AssertLockHeld(cs_main); // Filter out duplicate requests if (pindexBegin == pnode->pindexLastGetBlocksBegin && hashEnd == pnode->hashLastGetBlocksEnd) return; @@ -2513,36 +2857,15 @@ bool ProcessBlock(CValidationState &state, CNode* pfrom, CBlock* pblock, CDiskBl return state.Invalid(error("ProcessBlock() : already have block (orphan) %s", hash.ToString()), 0, "duplicate"); // Preliminary checks - if (!CheckBlock(*pblock, state)) { + if (!CheckBlock(*pblock, state, INT_MAX)) { if (state.CorruptionPossible()) mapAlreadyAskedFor.erase(CInv(MSG_BLOCK, hash)); return error("ProcessBlock() : CheckBlock FAILED"); } - CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(mapBlockIndex); - if (pcheckpoint && pblock->hashPrevBlock != (chainActive.Tip() ? chainActive.Tip()->GetBlockHash() : uint256(0))) - { - // Extra checks to prevent "fill up memory by spamming with bogus blocks" - int64_t deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime; - if (deltaTime < 0) - { - return state.DoS(100, error("ProcessBlock() : block with timestamp before last checkpoint"), - REJECT_CHECKPOINT, "time-too-old"); - } - CBigNum bnNewBlock; - bnNewBlock.SetCompact(pblock->nBits); - CBigNum bnRequired; - bnRequired.SetCompact(ComputeMinWork(pcheckpoint->nBits, deltaTime)); - if (bnNewBlock > bnRequired) - { - return state.DoS(100, error("ProcessBlock() : block with too little proof-of-work"), - REJECT_INVALID, "bad-diffbits"); - } - } - - - // If we don't already have its previous block, shunt it off to holding area until we get it - if (pblock->hashPrevBlock != 0 && !mapBlockIndex.count(pblock->hashPrevBlock)) + // If we don't already have its previous block (with full data), shunt it off to holding area until we get it + std::map::iterator it = mapBlockIndex.find(pblock->hashPrevBlock); + if (pblock->hashPrevBlock != 0 && (it == mapBlockIndex.end() || !(it->second->nStatus & BLOCK_HAVE_DATA))) { LogPrintf("ProcessBlock: ORPHAN BLOCK %lu, prev=%s\n", (unsigned long)mapOrphanBlocks.size(), pblock->hashPrevBlock.ToString()); @@ -2567,7 +2890,9 @@ bool ProcessBlock(CValidationState &state, CNode* pfrom, CBlock* pblock, CDiskBl } // Store to disk - if (!AcceptBlock(*pblock, state, dbp)) + CBlockIndex *pindex = NULL; + bool ret = AcceptBlock(*pblock, state, &pindex, dbp); + if (!ret) return error("ProcessBlock() : AcceptBlock FAILED"); // Recursively process any orphan blocks that depended on this one @@ -2588,7 +2913,8 @@ bool ProcessBlock(CValidationState &state, CNode* pfrom, CBlock* pblock, CDiskBl block.BuildMerkleTree(); // Use a dummy CValidationState so someone can't setup nodes to counter-DoS based on orphan resolution (that is, feeding people an invalid block based on LegitBlockX in order to get anyone relaying LegitBlockX banned) CValidationState stateDummy; - if (AcceptBlock(block, stateDummy)) + CBlockIndex *pindexChild = NULL; + if (AcceptBlock(block, stateDummy, &pindexChild)) vWorkQueue.push_back(mi->second->hashBlock); mapOrphanBlocks.erase(mi->second->hashBlock); delete mi->second; @@ -2851,7 +3177,7 @@ bool static LoadBlockIndexDB() CBlockIndex* pindex = item.second; pindex->nChainWork = (pindex->pprev ? pindex->pprev->nChainWork : 0) + pindex->GetBlockWork().getuint256(); pindex->nChainTx = (pindex->pprev ? pindex->pprev->nChainTx : 0) + pindex->nTx; - if ((pindex->nStatus & BLOCK_VALID_MASK) >= BLOCK_VALID_TRANSACTIONS && !(pindex->nStatus & BLOCK_FAILED_MASK)) + if (pindex->IsValid(BLOCK_VALID_TRANSACTIONS)) setBlockIndexValid.insert(pindex); if (pindex->nStatus & BLOCK_FAILED_MASK && (!pindexBestInvalid || pindex->nChainWork > pindexBestInvalid->nChainWork)) pindexBestInvalid = pindex; @@ -2887,6 +3213,7 @@ bool static LoadBlockIndexDB() bool VerifyDB(int nCheckLevel, int nCheckDepth) { + LOCK(cs_main); if (chainActive.Tip() == NULL || chainActive.Tip()->pprev == NULL) return true; @@ -2912,7 +3239,7 @@ bool VerifyDB(int nCheckLevel, int nCheckDepth) if (!ReadBlockFromDisk(block, pindex)) return error("VerifyDB() : *** ReadBlockFromDisk failed at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString()); // check level 1: verify block validity - if (nCheckLevel >= 1 && !CheckBlock(block, state)) + if (nCheckLevel >= 1 && !CheckBlock(block, state, pindex->nHeight)) return error("VerifyDB() : *** found bad block at %d, hash=%s\n", pindex->nHeight, pindex->GetBlockHash().ToString()); // check level 2: verify undo validity if (nCheckLevel >= 2 && pindex) { @@ -2976,6 +3303,7 @@ bool LoadBlockIndex() bool InitBlockIndex() { + LOCK(cs_main); // Check whether we're already initialized if (chainActive.Genesis() != NULL) return true; @@ -2997,7 +3325,8 @@ bool InitBlockIndex() { return error("LoadBlockIndex() : FindBlockPos failed"); if (!WriteBlockToDisk(block, blockPos)) return error("LoadBlockIndex() : writing genesis block to disk failed"); - if (!AddToBlockIndex(block, state, blockPos)) + CBlockIndex *pindex = AddToBlockIndex(block); + if (!ReceivedBlockTransactions(block, state, pindex, blockPos)) return error("LoadBlockIndex() : genesis block not accepted"); } catch(std::runtime_error &e) { return error("LoadBlockIndex() : failed to initialize block database: %s", e.what()); @@ -3011,6 +3340,7 @@ bool InitBlockIndex() { void PrintBlockTree() { + AssertLockHeld(cs_main); // pre-compute tree structure map > mapNext; for (map::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi) @@ -3054,7 +3384,7 @@ void PrintBlockTree() // print item CBlock block; ReadBlockFromDisk(block, pindex); - LogPrintf("%d (blk%05u.dat:0x%x) %s tx %" PRIszu"", + LogPrintf("%d (blk%05u.dat:0x%x) %s tx %"PRIszu"\n", pindex->nHeight, pindex->GetBlockPos().nFile, pindex->GetBlockPos().nPos, DateTimeStrFormat("%Y-%m-%d %H:%M:%S", block.GetBlockTime()), @@ -3103,11 +3433,11 @@ bool LoadExternalBlockFile(FILE* fileIn, CDiskBlockPos *dbp) unsigned int nSize = 0; try { // locate a header - unsigned char buf[4]; + unsigned char buf[MESSAGE_START_SIZE]; blkdat.FindByte(Params().MessageStart()[0]); nRewind = blkdat.GetPos()+1; blkdat >> FLATDATA(buf); - if (memcmp(buf, Params().MessageStart(), 4)) + if (memcmp(buf, Params().MessageStart(), MESSAGE_START_SIZE)) continue; // read size blkdat >> nSize; @@ -3137,7 +3467,7 @@ bool LoadExternalBlockFile(FILE* fileIn, CDiskBlockPos *dbp) break; } } catch (std::exception &e) { - LogPrintf("%s : Deserialize or I/O error - %s", __PRETTY_FUNCTION__, e.what()); + LogPrintf("%s : Deserialize or I/O error - %s", __func__, e.what()); } } fclose(fileIn); @@ -3277,14 +3607,14 @@ void static ProcessGetData(CNode* pfrom) int nHeight = mi->second->nHeight; CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(mapBlockIndex); if (pcheckpoint && nHeight < pcheckpoint->nHeight) { - if (!chainActive.Contains(mi->second)) - { - LogPrintf("ProcessGetData(): ignoring request for old block that isn't in the main chain\n"); - } else { - send = true; - } + if (!chainActive.Contains(mi->second)) + { + LogPrintf("ProcessGetData(): ignoring request for old block that isn't in the main chain\n"); + } else { + send = true; + } } else { - send = true; + send = true; } } if (send) @@ -3388,7 +3718,10 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) return true; } - + { + LOCK(cs_main); + State(pfrom->GetId())->nLastBlockProcess = GetTimeMicros(); + } @@ -3494,9 +3827,6 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) LogPrintf("receive version message: %s: version %d, blocks=%d, us=%s, them=%s, peer=%s\n", pfrom->cleanSubVer, pfrom->nVersion, pfrom->nStartingHeight, addrMe.ToString(), addrFrom.ToString(), pfrom->addr.ToString()); AddTimeData(pfrom->addr, nTime); - - LOCK(cs_main); - cPeerBlockCounts.input(pfrom->nStartingHeight); } @@ -3591,15 +3921,6 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) return error("message inv size() = %" PRIszu"", vInv.size()); } - // find last block in inv vector - unsigned int nLastBlock = (unsigned int)(-1); - for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) { - if (vInv[vInv.size() - 1 - nInv].type == MSG_BLOCK) { - nLastBlock = vInv.size() - 1 - nInv; - break; - } - } - LOCK(cs_main); for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) @@ -3613,17 +3934,14 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) LogPrint("net", " got inventory: %s %s\n", inv.ToString(), fAlreadyHave ? "have" : "new"); if (!fAlreadyHave) { - if (!fImporting && !fReindex) - pfrom->AskFor(inv); + if (!fImporting && !fReindex) { + if (inv.type == MSG_BLOCK) + AddBlockToQueue(pfrom->GetId(), inv.hash); + else + pfrom->AskFor(inv); + } } else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) { PushGetBlocks(pfrom, chainActive.Tip(), GetOrphanRoot(inv.hash)); - } else if (nInv == nLastBlock) { - // In case we are on a very long side-chain, it is possible that we already have - // the last block in an inv bundle sent in response to getblocks. Try to detect - // this situation and push another getblocks to continue. - PushGetBlocks(pfrom, mapBlockIndex[inv.hash], uint256(0)); - if (fDebug) - LogPrintf("force request: %s\n", inv.ToString()); } // Track requests for our stuff @@ -3804,7 +4122,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) } int nDoS = 0; if (state.IsInvalid(nDoS)) - { + { LogPrint("mempool", "%s from %s %s was not accepted into the memory pool: %s\n", tx.GetHash().ToString(), pfrom->addr.ToString(), pfrom->cleanSubVer, state.GetRejectReason()); @@ -3830,6 +4148,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) LOCK(cs_main); // Remember who we got this block from. mapBlockSource[inv.hash] = pfrom->GetId(); + MarkBlockAsReceived(inv.hash, pfrom->GetId()); CValidationState state; ProcessBlock(state, pfrom, &block); @@ -4234,6 +4553,10 @@ bool SendMessages(CNode* pto, bool fSendTrickle) } } + TRY_LOCK(cs_main, lockMain); // Acquire cs_main for IsInitialBlockDownload() and CNodeState() + if (!lockMain) + return true; + // Address refresh broadcast static int64_t nLastRebroadcast; if (!IsInitialBlockDownload() && (GetTime() - nLastRebroadcast > 24 * 60 * 60)) @@ -4284,10 +4607,6 @@ bool SendMessages(CNode* pto, bool fSendTrickle) pto->PushMessage("addr", vAddr); } - TRY_LOCK(cs_main, lockMain); - if (!lockMain) - return true; - CNodeState &state = *State(pto->GetId()); if (state.fShouldBan) { if (pto->addr.IsLocal()) @@ -4366,12 +4685,38 @@ bool SendMessages(CNode* pto, bool fSendTrickle) pto->PushMessage("inv", vInv); + // Detect stalled peers. Require that blocks are in flight, we haven't + // received a (requested) block in one minute, and that all blocks are + // in flight for over two minutes, since we first had a chance to + // process an incoming block. + int64_t nNow = GetTimeMicros(); + if (!pto->fDisconnect && state.nBlocksInFlight && + state.nLastBlockReceive < state.nLastBlockProcess - BLOCK_DOWNLOAD_TIMEOUT*1000000 && + state.vBlocksInFlight.front().nTime < state.nLastBlockProcess - 2*BLOCK_DOWNLOAD_TIMEOUT*1000000) { + LogPrintf("Peer %s is stalling block download, disconnecting\n", state.name.c_str()); + pto->fDisconnect = true; + } + // - // Message: getdata + // Message: getdata (blocks) // vector vGetData; - int64_t nNow = GetTime() * 1000000; - while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow) + while (!pto->fDisconnect && state.nBlocksToDownload && state.nBlocksInFlight < MAX_BLOCKS_IN_TRANSIT_PER_PEER) { + uint256 hash = state.vBlocksToDownload.front(); + vGetData.push_back(CInv(MSG_BLOCK, hash)); + MarkBlockAsInFlight(pto->GetId(), hash); + LogPrint("net", "Requesting block %s from %s\n", hash.ToString().c_str(), state.name.c_str()); + if (vGetData.size() >= 1000) + { + pto->PushMessage("getdata", vGetData); + vGetData.clear(); + } + } + + // + // Message: getdata (non-blocks) + // + while (!pto->fDisconnect && !pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow) { const CInv& inv = (*pto->mapAskFor.begin()).second; if (!AlreadyHave(inv)) diff --git a/src/main.h b/src/main.h index 542252051..a0ba6e913 100644 --- a/src/main.h +++ b/src/main.h @@ -72,6 +72,21 @@ static const int COINBASE_MATURITY_SWITCH = 145000; static const unsigned int LOCKTIME_THRESHOLD = 500000000; // Tue Nov 5 00:53:20 1985 UTC /** Maximum number of script-checking threads allowed */ static const int MAX_SCRIPTCHECK_THREADS = 16; +/** -par default (number of script-checking threads, 0 = auto) */ +static const int DEFAULT_SCRIPTCHECK_THREADS = 0; +/** Number of blocks that can be requested at any given time from a single peer. */ +static const int MAX_BLOCKS_IN_TRANSIT_PER_PEER = 128; +/** Timeout in seconds before considering a block download peer unresponsive. */ +static const unsigned int BLOCK_DOWNLOAD_TIMEOUT = 60; + +/** AuxPow Block versions for sanity checks. */ +/** bare AuxPoW block version which will be modulated further. */ +static const int BLOCK_VERSION_AUXPOW_BARE = CBlockHeader::CURRENT_VERSION | (AUXPOW_CHAIN_ID * BLOCK_VERSION_CHAIN_START); +/** version when AuxPoW exists on the block */ +static const int BLOCK_VERSION_AUXPOW_WITH_AUX = BLOCK_VERSION_AUXPOW_BARE | BLOCK_VERSION_AUXPOW; +/** version when no AuxPoW exists on the block */ +static const int BLOCK_VERSION_AUXPOW_WITHOUT_AUX = BLOCK_VERSION_AUXPOW_BARE & ~BLOCK_VERSION_AUXPOW; + #ifdef USE_UPNP static const int fHaveUPnP = true; #else @@ -165,8 +180,6 @@ void ThreadScriptCheck(); bool CheckProofOfWork(uint256 hash, unsigned int nBits); /** Calculate the minimum amount of work a received block needs, without knowing its direct parent */ unsigned int ComputeMinWork(unsigned int nBase, int64_t nTime); -/** Get the number of active peers */ -int GetNumBlocksOfPeers(); /** Check whether we are doing an initial block download (synchronizing from disk or network) */ bool IsInitialBlockDownload(); /** Format a string that describes several potential problems detected by the core */ @@ -180,6 +193,9 @@ unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHead void UpdateTime(CBlockHeader& block, const CBlockIndex* pindexPrev); +/** Determine whether the block version is modulated with auxpow logic */ +bool IsAuxPowVersion(int nVersion); + /** Create a new block index entry for a given block hash */ CBlockIndex * InsertBlockIndex(uint256 hash); /** Verify a signature */ @@ -188,6 +204,9 @@ bool VerifySignature(const CCoins& txFrom, const CTransaction& txTo, unsigned in bool AbortNode(const std::string &msg); /** Get statistics from node state */ bool GetNodeStateStats(NodeId nodeid, CNodeStateStats &stats); +/** Increase a node's misbehavior score. */ +void Misbehaving(NodeId nodeid, int howmuch); + /** (try to) add transaction to memory pool **/ bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransaction &tx, bool fLimitFree, @@ -318,7 +337,7 @@ int GetRequiredMaturityDepth(int nHeight); // This does not modify the UTXO set. If pvChecks is not NULL, script checks are pushed onto it // instead of being performed inline. bool CheckInputs(const CTransaction& tx, CValidationState &state, CCoinsViewCache &view, bool fScriptChecks = true, - unsigned int flags = SCRIPT_VERIFY_P2SH | SCRIPT_VERIFY_STRICTENC, + unsigned int flags = STANDARD_SCRIPT_VERIFY_FLAGS, std::vector *pvChecks = NULL); // Apply the effects of this transaction on the UTXO set represented by view @@ -390,7 +409,7 @@ public: filein >> hashChecksum; } catch (std::exception &e) { - return error("%s : Deserialize or I/O error - %s", __PRETTY_FUNCTION__, e.what()); + return error("%s : Deserialize or I/O error - %s", __func__, e.what()); } // Verify checksum @@ -438,6 +457,7 @@ class CMerkleTx : public CTransaction { private: int GetDepthInMainChainINTERNAL(CBlockIndex* &pindexRet) const; + public: uint256 hashBlock; std::vector vMerkleBranch; @@ -612,12 +632,17 @@ bool ConnectBlock(CBlock& block, CValidationState& state, CBlockIndex* pindex, C // Add this block to the block index, and if necessary, switch the active block chain to this bool AddToBlockIndex(CBlock& block, CValidationState& state, const CDiskBlockPos& pos); +// Get the block at which AuxPoW is enabled for this network +int GetAuxPowStartBlock(); + // Context-independent validity checks -bool CheckBlock(const CBlock& block, CValidationState& state, bool fCheckPOW = true, bool fCheckMerkleRoot = true); +bool CheckBlockHeader(const CBlockHeader& block, CValidationState& state, int nHeight, bool fCheckPOW = true); +bool CheckBlock(const CBlock& block, CValidationState& state, int nHeight, bool fCheckPOW = true, bool fCheckMerkleRoot = true); // Store block on disk // if dbp is provided, the file is known to already reside on disk -bool AcceptBlock(CBlock& block, CValidationState& state, CDiskBlockPos* dbp = NULL); +bool AcceptBlock(CBlock& block, CValidationState& state, CBlockIndex **pindex, CDiskBlockPos* dbp = NULL); +bool AcceptBlockHeader(CBlockHeader& block, CValidationState& state, CBlockIndex **ppindex= NULL); @@ -783,6 +808,22 @@ public: nNonce = block.nNonce; } + IMPLEMENT_SERIALIZE + ( + /* mutable stuff goes here, immutable stuff + * has SERIALIZE functions in CDiskBlockIndex */ + if (!(nType & SER_GETHASH)) + READWRITE(VARINT(nVersion)); + + READWRITE(VARINT(nStatus)); + if (nStatus & (BLOCK_HAVE_DATA | BLOCK_HAVE_UNDO)) + READWRITE(VARINT(nFile)); + if (nStatus & BLOCK_HAVE_DATA) + READWRITE(VARINT(nDataPos)); + if (nStatus & BLOCK_HAVE_UNDO) + READWRITE(VARINT(nUndoPos)); + ) + CDiskBlockPos GetBlockPos() const { CDiskBlockPos ret; if (nStatus & BLOCK_HAVE_DATA) { @@ -801,18 +842,7 @@ public: return ret; } - CBlockHeader GetBlockHeader() const - { - CBlockHeader block; - block.nVersion = nVersion; - if (pprev) - block.hashPrevBlock = pprev->GetBlockHash(); - block.hashMerkleRoot = hashMerkleRoot; - block.nTime = nTime; - block.nBits = nBits; - block.nNonce = nNonce; - return block; - } + CBlockHeader GetBlockHeader() const; uint256 GetBlockHash() const { @@ -865,18 +895,35 @@ public: static bool IsSuperMajority(int minVersion, const CBlockIndex* pstart, unsigned int nRequired, unsigned int nToCheck); - std::string ToString() const - { - return strprintf("CBlockIndex(pprev=%p, nHeight=%d, merkle=%s, hashBlock=%s)", - pprev, nHeight, - hashMerkleRoot.ToString().c_str(), - GetBlockHash().ToString().c_str()); - } + std::string ToString() const; //moved code to main.cpp because new method required access to auxpow void print() const { LogPrintf("%s\n", ToString().c_str()); } + + // Check whether this block index entry is valid up to the passed validity level. + bool IsValid(enum BlockStatus nUpTo = BLOCK_VALID_TRANSACTIONS) const + { + assert(!(nUpTo & ~BLOCK_VALID_MASK)); // Only validity flags allowed. + if (nStatus & BLOCK_FAILED_MASK) + return false; + return ((nStatus & BLOCK_VALID_MASK) >= nUpTo); + } + + // Raise the validity level of this block index entry. + // Returns true if the validity was changed. + bool RaiseValidity(enum BlockStatus nUpTo) + { + assert(!(nUpTo & ~BLOCK_VALID_MASK)); // Only validity flags allowed. + if (nStatus & BLOCK_FAILED_MASK) + return false; + if ((nStatus & BLOCK_VALID_MASK) < nUpTo) { + nStatus = (nStatus & ~BLOCK_VALID_MASK) | nUpTo; + return true; + } + return false; + } }; @@ -887,28 +934,28 @@ class CDiskBlockIndex : public CBlockIndex public: uint256 hashPrev; + // if this is an aux work block + boost::shared_ptr auxpow; + CDiskBlockIndex() { hashPrev = 0; + auxpow.reset(); } - explicit CDiskBlockIndex(CBlockIndex* pindex) : CBlockIndex(*pindex) { + explicit CDiskBlockIndex(CBlockIndex* pindex, boost::shared_ptr auxpow) : CBlockIndex(*pindex) { hashPrev = (pprev ? pprev->GetBlockHash() : 0); + this->auxpow = auxpow; } IMPLEMENT_SERIALIZE ( + /* immutable stuff goes here, mutable stuff + * has SERIALIZE functions in CBlockIndex */ if (!(nType & SER_GETHASH)) READWRITE(VARINT(nVersion)); READWRITE(VARINT(nHeight)); - READWRITE(VARINT(nStatus)); READWRITE(VARINT(nTx)); - if (nStatus & (BLOCK_HAVE_DATA | BLOCK_HAVE_UNDO)) - READWRITE(VARINT(nFile)); - if (nStatus & BLOCK_HAVE_DATA) - READWRITE(VARINT(nDataPos)); - if (nStatus & BLOCK_HAVE_UNDO) - READWRITE(VARINT(nUndoPos)); // block header READWRITE(this->nVersion); @@ -917,6 +964,7 @@ public: READWRITE(nTime); READWRITE(nBits); READWRITE(nNonce); + ReadWriteAuxPow(s, auxpow, nType, this->nVersion, ser_action); ) uint256 GetBlockHash() const @@ -928,19 +976,12 @@ public: block.nTime = nTime; block.nBits = nBits; block.nNonce = nNonce; + // AuxPoW is not part of the hash return block.GetHash(); } - std::string ToString() const - { - std::string str = "CDiskBlockIndex("; - str += CBlockIndex::ToString(); - str += strprintf("\n hashBlock=%s, hashPrev=%s)", - GetBlockHash().ToString().c_str(), - hashPrev.ToString().c_str()); - return str; - } + std::string ToString() const; // moved code to main.cpp void print() const { diff --git a/src/miner.cpp b/src/miner.cpp index 14835e4aa..64138ab8f 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -12,6 +12,7 @@ #include "main.h" #include "net.h" #include "scrypt.h" +#include "auxpow.h" #ifdef ENABLE_WALLET #include "wallet.h" #endif @@ -280,8 +281,11 @@ CBlockTemplate* CreateNewBlock(const CScript& scriptPubKeyIn) if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS) continue; + // Note that flags: we don't want to set mempool/IsStandard() + // policy here, but we still have to ensure that the block we + // create only contains transactions that are valid in new blocks. CValidationState state; - if (!CheckInputs(tx, state, view, true, SCRIPT_VERIFY_P2SH)) + if (!CheckInputs(tx, state, view, true, MANDATORY_SCRIPT_VERIFY_FLAGS)) continue; CTxUndo txundo; @@ -359,7 +363,7 @@ void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& } ++nExtraNonce; unsigned int nHeight = pindexPrev->nHeight+1; // Height first in coinbase required for block.version=2 - pblock->vtx[0].vin[0].scriptSig = (CScript() << nHeight << CBigNum(nExtraNonce)) + COINBASE_FLAGS; + pblock->vtx[0].vin[0].scriptSig = (CScript() << nHeight << CScriptNum(nExtraNonce)) + COINBASE_FLAGS; assert(pblock->vtx[0].vin[0].scriptSig.size() <= 100); pblock->hashMerkleRoot = pblock->BuildMerkleTree(); @@ -419,41 +423,6 @@ void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash double dHashesPerSec = 0.0; int64_t nHPSTimerStart = 0; -// -// ScanHash scans nonces looking for a hash with at least some zero bits. -// It operates on big endian data. Caller does the byte reversing. -// All input buffers are 16-byte aligned. nNonce is usually preserved -// between calls, but periodically or if nNonce is 0xffff0000 or above, -// the block is rebuilt and nNonce starts over at zero. -// -unsigned int static ScanHash_CryptoPP(char* pmidstate, char* pdata, char* phash1, char* phash, unsigned int& nHashesDone) -{ - unsigned int& nNonce = *(unsigned int*)(pdata + 12); - for (;;) - { - // Crypto++ SHA256 - // Hash pdata using pmidstate as the starting state into - // pre-formatted buffer phash1, then hash phash1 into phash - nNonce++; - SHA256Transform(phash1, pdata, pmidstate); - SHA256Transform(phash, phash1, pSHA256InitState); - - // Return the nonce if the hash has at least some zero bits, - // caller will check if it has enough to reach the target - if (((unsigned short*)phash)[14] == 0) - return nNonce; - - // If nothing found after trying for a while, return -1 - if ((nNonce & 0xffff) == 0) - { - nHashesDone = 0xffff+1; - return (unsigned int) -1; - } - if ((nNonce & 0xfff) == 0) - boost::this_thread::interruption_point(); - } -} - CBlockTemplate* CreateNewBlockWithKey(CReserveKey& reservekey) { CPubKey pubkey; @@ -469,14 +438,32 @@ bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey) uint256 hash = pblock->GetPoWHash(); uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256(); - if (hash > hashTarget) - return false; + CAuxPow *auxpow = pblock->auxpow.get(); - //// debug print - printf("DogecoinMiner:\n"); - printf("proof-of-work found \n hash: %s \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str()); + if (auxpow != NULL) { + if (!auxpow->Check(pblock->GetHash(), pblock->GetChainID())) + return error("AUX POW is not valid"); + + if (auxpow->GetParentBlockHash() > hashTarget) + return error("AUX POW parent hash %s is not under target %s", auxpow->GetParentBlockHash().GetHex().c_str(), hashTarget.GetHex().c_str()); + + // print to log + LogPrintf("DogecoinMiner: AUX proof-of-work found; our hash: %s ; parent hash: %s ; target: %s\n", + hash.GetHex().c_str(), + auxpow->GetParentBlockHash().GetHex().c_str(), + hashTarget.GetHex().c_str()); + } + else + { + if (hash > hashTarget) + return false; + + // print to log + LogPrintf("DogecoinMiner: proof-of-work found; hash: %s ; target: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str()); + } + pblock->print(); - printf("generated %s\n", FormatMoney(pblock->vtx[0].vout[0].nValue).c_str()); + LogPrintf("generated %s\n", FormatMoney(pblock->vtx[0].vout[0].nValue).c_str()); // Found a solution { @@ -504,7 +491,7 @@ bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey) void static DogecoinMiner(CWallet *pwallet) { - printf("DogecoinMiner started\n"); + LogPrintf("DogecoinMiner started\n"); SetThreadPriority(THREAD_PRIORITY_LOWEST); RenameThread("dogecoin-miner"); @@ -532,7 +519,7 @@ void static DogecoinMiner(CWallet *pwallet) CBlock *pblock = &pblocktemplate->block; IncrementExtraNonce(pblock, pindexPrev, nExtraNonce); - printf("Running DogecoinMiner with %" PRIszu" transactions in block (%u bytes)\n", pblock->vtx.size(), + LogPrintf("Running DogecoinMiner with %" PRIszu" transactions in block (%u bytes)\n", pblock->vtx.size(), ::GetSerializeSize(*pblock, SER_NETWORK, PROTOCOL_VERSION)); // @@ -571,6 +558,12 @@ void static DogecoinMiner(CWallet *pwallet) SetThreadPriority(THREAD_PRIORITY_NORMAL); CheckWork(pblock, *pwallet, reservekey); SetThreadPriority(THREAD_PRIORITY_LOWEST); + + // In regression test mode, stop mining after a block is found. This + // allows developers to controllably generate a block on demand. + if (Params().NetworkID() == CChainParams::REGTEST) + throw boost::thread_interrupted(); + break; } pblock->nNonce += 1; @@ -632,7 +625,7 @@ void static DogecoinMiner(CWallet *pwallet) } } catch (boost::thread_interrupted) { - printf("DogecoinMiner terminated\n"); + LogPrintf("DogecoinMiner terminated\n"); throw; } } @@ -664,4 +657,3 @@ void GenerateBitcoins(bool fGenerate, CWallet* pwallet, int nThreads) } #endif - diff --git a/src/miner.h b/src/miner.h index 26151f6cd..a174a739d 100644 --- a/src/miner.h +++ b/src/miner.h @@ -7,6 +7,7 @@ #define BITCOIN_MINER_H #include +#include class CBlock; class CBlockIndex; @@ -14,6 +15,7 @@ struct CBlockTemplate; class CReserveKey; class CScript; class CWallet; +class CAuxPow; /** Run the miner threads */ void GenerateBitcoins(bool fGenerate, CWallet* pwallet, int nThreads); @@ -22,6 +24,7 @@ CBlockTemplate* CreateNewBlock(const CScript& scriptPubKeyIn); CBlockTemplate* CreateNewBlockWithKey(CReserveKey& reservekey); /** Modify the extranonce in a block */ void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce); +void IncrementExtraNonceWithAux(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce, std::vector& vchAux); /** Do mining precalculation */ void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1); /** Check mined block */ diff --git a/src/mruset.h b/src/mruset.h index c36a0c8f3..c1c08b028 100644 --- a/src/mruset.h +++ b/src/mruset.h @@ -32,6 +32,7 @@ public: bool empty() const { return set.empty(); } iterator find(const key_type& k) const { return set.find(k); } size_type count(const key_type& k) const { return set.count(k); } + void clear() { set.clear(); queue.clear(); } bool inline friend operator==(const mruset& a, const mruset& b) { return a.set == b.set; } bool inline friend operator==(const mruset& a, const std::set& b) { return a.set == b; } bool inline friend operator<(const mruset& a, const mruset& b) { return a.set < b.set; } diff --git a/src/net.cpp b/src/net.cpp index e62de1044..5f284e0e2 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -27,6 +27,8 @@ #include #endif +#include + // Dump addresses to peers.dat every 15 minutes (900s) #define DUMP_ADDRESSES_INTERVAL 900 @@ -42,18 +44,13 @@ static const int MAX_OUTBOUND_CONNECTIONS = 8; bool OpenNetworkConnection(const CAddress& addrConnect, CSemaphoreGrant *grantOutbound = NULL, const char *strDest = NULL, bool fOneShot = false); -struct LocalServiceInfo { - int nScore; - int nPort; -}; - // // Global state variables // bool fDiscover = true; uint64_t nLocalServices = NODE_NETWORK; -static CCriticalSection cs_mapLocalHost; -static map mapLocalHost; +CCriticalSection cs_mapLocalHost; +map mapLocalHost; static bool vfReachable[NET_MAX] = {}; static bool vfLimited[NET_MAX] = {}; static CNode* pnodeLocalHost = NULL; @@ -181,7 +178,7 @@ bool RecvLine(SOCKET hSocket, string& strLine) { // socket error int nErr = WSAGetLastError(); - LogPrint("net", "recv failed: %d\n", nErr); + LogPrint("net", "recv failed: %s\n", NetworkErrorString(nErr)); return false; } } @@ -492,10 +489,10 @@ CNode* ConnectNode(CAddress addrConnect, const char *pszDest) #ifdef WIN32 u_long nOne = 1; if (ioctlsocket(hSocket, FIONBIO, &nOne) == SOCKET_ERROR) - LogPrintf("ConnectSocket() : ioctlsocket non-blocking setting failed, error %d\n", WSAGetLastError()); + LogPrintf("ConnectSocket() : ioctlsocket non-blocking setting failed, error %s\n", NetworkErrorString(WSAGetLastError())); #else if (fcntl(hSocket, F_SETFL, O_NONBLOCK) == SOCKET_ERROR) - LogPrintf("ConnectSocket() : fcntl non-blocking setting failed, error %d\n", errno); + LogPrintf("ConnectSocket() : fcntl non-blocking setting failed, error %s\n", NetworkErrorString(errno)); #endif // Add node @@ -739,7 +736,7 @@ void SocketSendData(CNode *pnode) int nErr = WSAGetLastError(); if (nErr != WSAEWOULDBLOCK && nErr != WSAEMSGSIZE && nErr != WSAEINTR && nErr != WSAEINPROGRESS) { - LogPrintf("socket send error %d\n", nErr); + LogPrintf("socket send error %s\n", NetworkErrorString(nErr)); pnode->CloseSocketDisconnect(); } } @@ -899,7 +896,7 @@ void ThreadSocketHandler() if (have_fds) { int nErr = WSAGetLastError(); - LogPrintf("socket select error %d\n", nErr); + LogPrintf("socket select error %s\n", NetworkErrorString(nErr)); for (unsigned int i = 0; i <= hSocketMax; i++) FD_SET(i, &fdsetRecv); } @@ -915,11 +912,7 @@ void ThreadSocketHandler() BOOST_FOREACH(SOCKET hListenSocket, vhListenSocket) if (hListenSocket != INVALID_SOCKET && FD_ISSET(hListenSocket, &fdsetRecv)) { -#ifdef USE_IPV6 struct sockaddr_storage sockaddr; -#else - struct sockaddr sockaddr; -#endif socklen_t len = sizeof(sockaddr); SOCKET hSocket = accept(hListenSocket, (struct sockaddr*)&sockaddr, &len); CAddress addr; @@ -940,15 +933,11 @@ void ThreadSocketHandler() { int nErr = WSAGetLastError(); if (nErr != WSAEWOULDBLOCK) - LogPrintf("socket error accept failed: %d\n", nErr); + LogPrintf("socket error accept failed: %s\n", NetworkErrorString(nErr)); } else if (nInbound >= nMaxConnections - MAX_OUTBOUND_CONNECTIONS) { - { - LOCK(cs_setservAddNodeAddresses); - if (!setservAddNodeAddresses.count(addr)) - closesocket(hSocket); - } + closesocket(hSocket); } else if (CNode::IsBanned(addr)) { @@ -1018,7 +1007,7 @@ void ThreadSocketHandler() if (nErr != WSAEWOULDBLOCK && nErr != WSAEMSGSIZE && nErr != WSAEINTR && nErr != WSAEINPROGRESS) { if (!pnode->fDisconnect) - LogPrintf("socket recv error %d\n", nErr); + LogPrintf("socket recv error %s\n", NetworkErrorString(nErr)); pnode->CloseSocketDisconnect(); } } @@ -1469,13 +1458,13 @@ bool OpenNetworkConnection(const CAddress& addrConnect, CSemaphoreGrant *grantOu // for now, use a very simple selection metric: the node from which we received // most recently -double static NodeSyncScore(const CNode *pnode) { - return -pnode->nLastRecv; +static int64_t NodeSyncScore(const CNode *pnode) { + return pnode->nLastRecv; } void static StartSync(const vector &vNodes) { CNode *pnodeNewSync = NULL; - double dBestScore = 0; + int64_t nBestScore = 0; int nBestHeight = g_signals.GetHeight().get_value_or(0); @@ -1487,10 +1476,10 @@ void static StartSync(const vector &vNodes) { (pnode->nStartingHeight > (nBestHeight - 144)) && (pnode->nVersion < NOBLKS_VERSION_START || pnode->nVersion >= NOBLKS_VERSION_END)) { // if ok, compare node's score with the best so far - double dScore = NodeSyncScore(pnode); - if (pnodeNewSync == NULL || dScore > dBestScore) { + int64_t nScore = NodeSyncScore(pnode); + if (pnodeNewSync == NULL || nScore > nBestScore) { pnodeNewSync = pnode; - dBestScore = dScore; + nBestScore = nScore; } } } @@ -1584,11 +1573,7 @@ bool BindListenPort(const CService &addrBind, string& strError) int nOne = 1; // Create socket for listening for incoming connections -#ifdef USE_IPV6 struct sockaddr_storage sockaddr; -#else - struct sockaddr sockaddr; -#endif socklen_t len = sizeof(sockaddr); if (!addrBind.GetSockAddr((struct sockaddr*)&sockaddr, &len)) { @@ -1600,7 +1585,7 @@ bool BindListenPort(const CService &addrBind, string& strError) SOCKET hListenSocket = socket(((struct sockaddr*)&sockaddr)->sa_family, SOCK_STREAM, IPPROTO_TCP); if (hListenSocket == INVALID_SOCKET) { - strError = strprintf("Error: Couldn't open socket for incoming connections (socket returned error %d)", WSAGetLastError()); + strError = strprintf("Error: Couldn't open socket for incoming connections (socket returned error %s)", NetworkErrorString(WSAGetLastError())); LogPrintf("%s\n", strError); return false; } @@ -1624,12 +1609,11 @@ bool BindListenPort(const CService &addrBind, string& strError) if (fcntl(hListenSocket, F_SETFL, O_NONBLOCK) == SOCKET_ERROR) #endif { - strError = strprintf("Error: Couldn't set properties on socket for incoming connections (error %d)", WSAGetLastError()); + strError = strprintf("Error: Couldn't set properties on socket for incoming connections (error %s)", NetworkErrorString(WSAGetLastError())); LogPrintf("%s\n", strError); return false; } -#ifdef USE_IPV6 // some systems don't have IPV6_V6ONLY but are always v6only; others do have the option // and enable it by default or not. Try to enable it, if possible. if (addrBind.IsIPv6()) { @@ -1647,7 +1631,6 @@ bool BindListenPort(const CService &addrBind, string& strError) setsockopt(hListenSocket, IPPROTO_IPV6, nParameterId, (const char*)&nProtLevel, sizeof(int)); #endif } -#endif if (::bind(hListenSocket, (struct sockaddr*)&sockaddr, len) == SOCKET_ERROR) { @@ -1655,7 +1638,7 @@ bool BindListenPort(const CService &addrBind, string& strError) if (nErr == WSAEADDRINUSE) strError = strprintf(_("Unable to bind to %s on this computer. Dogecoin Core Daemon is probably already running."), addrBind.ToString()); else - strError = strprintf(_("Unable to bind to %s on this computer (bind returned error %d, %s)"), addrBind.ToString(), nErr, strerror(nErr)); + strError = strprintf(_("Unable to bind to %s on this computer (bind returned error %s)"), addrBind.ToString(), NetworkErrorString(nErr)); LogPrintf("%s\n", strError); return false; } @@ -1664,7 +1647,7 @@ bool BindListenPort(const CService &addrBind, string& strError) // Listen for incoming connections if (listen(hListenSocket, SOMAXCONN) == SOCKET_ERROR) { - strError = strprintf(_("Error: Listening for incoming connections failed (listen returned error %d)"), WSAGetLastError()); + strError = strprintf(_("Error: Listening for incoming connections failed (listen returned error %s)"), NetworkErrorString(WSAGetLastError())); LogPrintf("%s\n", strError); return false; } @@ -1714,7 +1697,6 @@ void static Discover(boost::thread_group& threadGroup) if (AddLocal(addr, LOCAL_IF)) LogPrintf("IPv4 %s: %s\n", ifa->ifa_name, addr.ToString()); } -#ifdef USE_IPV6 else if (ifa->ifa_addr->sa_family == AF_INET6) { struct sockaddr_in6* s6 = (struct sockaddr_in6*)(ifa->ifa_addr); @@ -1722,7 +1704,6 @@ void static Discover(boost::thread_group& threadGroup) if (AddLocal(addr, LOCAL_IF)) LogPrintf("IPv6 %s: %s\n", ifa->ifa_name, addr.ToString()); } -#endif } freeifaddrs(myaddrs); } @@ -1804,7 +1785,7 @@ public: BOOST_FOREACH(SOCKET hListenSocket, vhListenSocket) if (hListenSocket != INVALID_SOCKET) if (closesocket(hListenSocket) == SOCKET_ERROR) - LogPrintf("closesocket(hListenSocket) failed with error %d\n", WSAGetLastError()); + LogPrintf("closesocket(hListenSocket) failed with error %s\n", NetworkErrorString(WSAGetLastError())); // clean up some globals (to help leak detection) BOOST_FOREACH(CNode *pnode, vNodes) @@ -1958,21 +1939,21 @@ bool CAddrDB::Write(const CAddrMan& addr) FILE *file = fopen(pathTmp.string().c_str(), "wb"); CAutoFile fileout = CAutoFile(file, SER_DISK, CLIENT_VERSION); if (!fileout) - return error("CAddrman::Write() : open failed"); + return error("%s : Failed to open file %s", __func__, pathTmp.string()); // Write and commit header, data try { fileout << ssPeers; } catch (std::exception &e) { - return error("CAddrman::Write() : I/O error"); + return error("%s : Serialize or I/O error - %s", __func__, e.what()); } FileCommit(fileout); fileout.fclose(); // replace existing peers.dat, if any, with new peers.dat.XXXX if (!RenameOver(pathTmp, pathAddr)) - return error("CAddrman::Write() : Rename-into-place failed"); + return error("%s : Rename-into-place failed", __func__); return true; } @@ -1983,13 +1964,14 @@ bool CAddrDB::Read(CAddrMan& addr) FILE *file = fopen(pathAddr.string().c_str(), "rb"); CAutoFile filein = CAutoFile(file, SER_DISK, CLIENT_VERSION); if (!filein) - return error("CAddrman::Read() : open failed"); + return error("%s : Failed to open file %s", __func__, pathAddr.string()); // use file size to size memory buffer - int fileSize = GetFilesize(filein); + int fileSize = boost::filesystem::file_size(pathAddr); int dataSize = fileSize - sizeof(uint256); - //Don't try to resize to a negative number if file is small - if ( dataSize < 0 ) dataSize = 0; + // Don't try to resize to a negative number if file is small + if (dataSize < 0) + dataSize = 0; vector vchData; vchData.resize(dataSize); uint256 hashIn; @@ -2000,7 +1982,7 @@ bool CAddrDB::Read(CAddrMan& addr) filein >> hashIn; } catch (std::exception &e) { - return error("CAddrman::Read() 2 : I/O error or stream data corrupted"); + return error("%s : Deserialize or I/O error - %s", __func__, e.what()); } filein.fclose(); @@ -2009,7 +1991,7 @@ bool CAddrDB::Read(CAddrMan& addr) // verify stored checksum matches input data uint256 hashTmp = Hash(ssPeers.begin(), ssPeers.end()); if (hashIn != hashTmp) - return error("CAddrman::Read() : checksum mismatch; data corrupted"); + return error("%s : Checksum mismatch, data corrupted", __func__); unsigned char pchMsgTmp[4]; try { @@ -2018,13 +2000,13 @@ bool CAddrDB::Read(CAddrMan& addr) // ... verify the network matches ours if (memcmp(pchMsgTmp, Params().MessageStart(), sizeof(pchMsgTmp))) - return error("CAddrman::Read() : invalid network magic number"); + return error("%s : Invalid network magic number", __func__); // de-serialize address data into one CAddrMan object ssPeers >> addr; } catch (std::exception &e) { - return error("CAddrman::Read() : I/O error or stream data corrupted"); + return error("%s : Deserialize or I/O error - %s", __func__, e.what()); } return true; diff --git a/src/net.h b/src/net.h index 8a7531d61..f9b953c8d 100644 --- a/src/net.h +++ b/src/net.h @@ -116,6 +116,13 @@ extern CCriticalSection cs_vAddedNodes; extern NodeId nLastNodeId; extern CCriticalSection cs_nLastNodeId; +struct LocalServiceInfo { + int nScore; + int nPort; +}; + +extern CCriticalSection cs_mapLocalHost; +extern map mapLocalHost; class CNodeStats { @@ -248,7 +255,7 @@ public: // flood relay std::vector vAddrToSend; - std::set setAddrKnown; + mruset setAddrKnown; bool fGetAddr; std::set setKnown; @@ -264,7 +271,7 @@ public: int64_t nPingUsecTime; bool fPingQueued; - CNode(SOCKET hSocketIn, CAddress addrIn, std::string addrNameIn = "", bool fInboundIn=false) : ssSend(SER_NETWORK, INIT_PROTO_VERSION) + CNode(SOCKET hSocketIn, CAddress addrIn, std::string addrNameIn = "", bool fInboundIn=false) : ssSend(SER_NETWORK, INIT_PROTO_VERSION), setAddrKnown(5000) { nServices = 0; hSocket = hSocketIn; @@ -426,7 +433,7 @@ public: LogPrint("net", "askfor %s %d (%s)\n", inv.ToString().c_str(), nRequestTime, DateTimeStrFormat("%H:%M:%S", nRequestTime/1000000).c_str()); // Make sure not to reuse time indexes to keep things in the same order - int64_t nNow = (GetTime() - 1) * 1000000; + int64_t nNow = GetTimeMicros() - 1000000; static int64_t nLastTime; ++nLastTime; nNow = std::max(nNow, nLastTime); diff --git a/src/netbase.cpp b/src/netbase.cpp index d5b75d6af..e24a0a195 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -47,12 +47,10 @@ void SplitHostPort(std::string in, int &portOut, std::string &hostOut) { bool fBracketed = fHaveColon && (in[0]=='[' && in[colon-1]==']'); // if there is a colon, and in[0]=='[', colon is not 0, so in[colon-1] is safe bool fMultiColon = fHaveColon && (in.find_last_of(':',colon-1) != in.npos); if (fHaveColon && (colon==0 || fBracketed || !fMultiColon)) { - char *endp = NULL; - int n = strtol(in.c_str() + colon + 1, &endp, 10); - if (endp && *endp == 0 && n >= 0) { + int32_t n; + if (ParseInt32(in.substr(colon + 1), &n) && n > 0 && n < 0x10000) { in = in.substr(0, colon); - if (n > 0 && n < 0x10000) - portOut = n; + portOut = n; } } if (in.size()>0 && in[0] == '[' && in[in.size()-1] == ']') @@ -78,11 +76,7 @@ bool static LookupIntern(const char *pszName, std::vector& vIP, unsign aiHint.ai_socktype = SOCK_STREAM; aiHint.ai_protocol = IPPROTO_TCP; -#ifdef USE_IPV6 aiHint.ai_family = AF_UNSPEC; -#else - aiHint.ai_family = AF_INET; -#endif #ifdef WIN32 aiHint.ai_flags = fAllowLookup ? 0 : AI_NUMERICHOST; #else @@ -102,13 +96,11 @@ bool static LookupIntern(const char *pszName, std::vector& vIP, unsign vIP.push_back(CNetAddr(((struct sockaddr_in*)(aiTrav->ai_addr))->sin_addr)); } -#ifdef USE_IPV6 if (aiTrav->ai_family == AF_INET6) { assert(aiTrav->ai_addrlen >= sizeof(sockaddr_in6)); vIP.push_back(CNetAddr(((struct sockaddr_in6*)(aiTrav->ai_addr))->sin6_addr)); } -#endif aiTrav = aiTrav->ai_next; } @@ -293,8 +285,10 @@ bool static Socks5(string strDest, int port, SOCKET& hSocket) case 0x03: { ret = recv(hSocket, pchRet3, 1, 0) != 1; - if (ret) + if (ret) { + closesocket(hSocket); return error("Error reading from proxy"); + } int nRecv = pchRet3[0]; ret = recv(hSocket, pchRet3, nRecv, 0) != nRecv; break; @@ -319,11 +313,7 @@ bool static ConnectSocketDirectly(const CService &addrConnect, SOCKET& hSocketRe { hSocketRet = INVALID_SOCKET; -#ifdef USE_IPV6 struct sockaddr_storage sockaddr; -#else - struct sockaddr sockaddr; -#endif socklen_t len = sizeof(sockaddr); if (!addrConnect.GetSockAddr((struct sockaddr*)&sockaddr, &len)) { LogPrintf("Cannot connect to %s: unsupported network\n", addrConnect.ToString()); @@ -371,7 +361,7 @@ bool static ConnectSocketDirectly(const CService &addrConnect, SOCKET& hSocketRe } if (nRet == SOCKET_ERROR) { - LogPrintf("select() for %s failed: %i\n", addrConnect.ToString(), WSAGetLastError()); + LogPrintf("select() for %s failed: %s\n", addrConnect.ToString(), NetworkErrorString(WSAGetLastError())); closesocket(hSocket); return false; } @@ -382,13 +372,13 @@ bool static ConnectSocketDirectly(const CService &addrConnect, SOCKET& hSocketRe if (getsockopt(hSocket, SOL_SOCKET, SO_ERROR, &nRet, &nRetSize) == SOCKET_ERROR) #endif { - LogPrintf("getsockopt() for %s failed: %i\n", addrConnect.ToString(), WSAGetLastError()); + LogPrintf("getsockopt() for %s failed: %s\n", addrConnect.ToString(), NetworkErrorString(WSAGetLastError())); closesocket(hSocket); return false; } if (nRet != 0) { - LogPrintf("connect() to %s failed after select(): %s\n", addrConnect.ToString(), strerror(nRet)); + LogPrintf("connect() to %s failed after select(): %s\n", addrConnect.ToString(), NetworkErrorString(nRet)); closesocket(hSocket); return false; } @@ -399,7 +389,7 @@ bool static ConnectSocketDirectly(const CService &addrConnect, SOCKET& hSocketRe else #endif { - LogPrintf("connect() to %s failed: %i\n", addrConnect.ToString(), WSAGetLastError()); + LogPrintf("connect() to %s failed: %s\n", addrConnect.ToString(), NetworkErrorString(WSAGetLastError())); closesocket(hSocket); return false; } @@ -501,6 +491,7 @@ bool ConnectSocket(const CService &addrDest, SOCKET& hSocketRet, int nTimeout) return false; break; default: + closesocket(hSocket); return false; } @@ -532,7 +523,9 @@ bool ConnectSocketByName(CService &addr, SOCKET& hSocketRet, const char *pszDest switch(nameproxy.second) { default: - case 4: return false; + case 4: + closesocket(hSocket); + return false; case 5: if (!Socks5(strDest, port, hSocket)) return false; @@ -553,6 +546,22 @@ void CNetAddr::SetIP(const CNetAddr& ipIn) memcpy(ip, ipIn.ip, sizeof(ip)); } +void CNetAddr::SetRaw(Network network, const uint8_t *ip_in) +{ + switch(network) + { + case NET_IPV4: + memcpy(ip, pchIPv4, 12); + memcpy(ip+12, ip_in, 4); + break; + case NET_IPV6: + memcpy(ip, ip_in, 16); + break; + default: + assert(!"invalid network"); + } +} + static const unsigned char pchOnionCat[] = {0xFD,0x87,0xD8,0x7E,0xEB,0x43}; bool CNetAddr::SetSpecial(const std::string &strName) @@ -576,16 +585,13 @@ CNetAddr::CNetAddr() CNetAddr::CNetAddr(const struct in_addr& ipv4Addr) { - memcpy(ip, pchIPv4, 12); - memcpy(ip+12, &ipv4Addr, 4); + SetRaw(NET_IPV4, (const uint8_t*)&ipv4Addr); } -#ifdef USE_IPV6 CNetAddr::CNetAddr(const struct in6_addr& ipv6Addr) { - memcpy(ip, &ipv6Addr, 16); + SetRaw(NET_IPV6, (const uint8_t*)&ipv6Addr); } -#endif CNetAddr::CNetAddr(const char *pszIp, bool fAllowLookup) { @@ -759,11 +765,7 @@ std::string CNetAddr::ToStringIP() const if (IsTor()) return EncodeBase32(&ip[6], 10) + ".onion"; CService serv(*this, 0); -#ifdef USE_IPV6 struct sockaddr_storage sockaddr; -#else - struct sockaddr sockaddr; -#endif socklen_t socklen = sizeof(sockaddr); if (serv.GetSockAddr((struct sockaddr*)&sockaddr, &socklen)) { char name[1025] = ""; @@ -808,13 +810,11 @@ bool CNetAddr::GetInAddr(struct in_addr* pipv4Addr) const return true; } -#ifdef USE_IPV6 bool CNetAddr::GetIn6Addr(struct in6_addr* pipv6Addr) const { memcpy(pipv6Addr, ip, 16); return true; } -#endif // get canonical identifier of an address' group // no two connections will be attempted to addresses with the same group @@ -988,23 +988,19 @@ CService::CService(const struct in_addr& ipv4Addr, unsigned short portIn) : CNet { } -#ifdef USE_IPV6 CService::CService(const struct in6_addr& ipv6Addr, unsigned short portIn) : CNetAddr(ipv6Addr), port(portIn) { } -#endif CService::CService(const struct sockaddr_in& addr) : CNetAddr(addr.sin_addr), port(ntohs(addr.sin_port)) { assert(addr.sin_family == AF_INET); } -#ifdef USE_IPV6 CService::CService(const struct sockaddr_in6 &addr) : CNetAddr(addr.sin6_addr), port(ntohs(addr.sin6_port)) { assert(addr.sin6_family == AF_INET6); } -#endif bool CService::SetSockAddr(const struct sockaddr *paddr) { @@ -1012,11 +1008,9 @@ bool CService::SetSockAddr(const struct sockaddr *paddr) case AF_INET: *this = CService(*(const struct sockaddr_in*)paddr); return true; -#ifdef USE_IPV6 case AF_INET6: *this = CService(*(const struct sockaddr_in6*)paddr); return true; -#endif default: return false; } @@ -1088,7 +1082,6 @@ bool CService::GetSockAddr(struct sockaddr* paddr, socklen_t *addrlen) const paddrin->sin_port = htons(port); return true; } -#ifdef USE_IPV6 if (IsIPv6()) { if (*addrlen < (socklen_t)sizeof(struct sockaddr_in6)) return false; @@ -1101,7 +1094,6 @@ bool CService::GetSockAddr(struct sockaddr* paddr, socklen_t *addrlen) const paddrin6->sin6_port = htons(port); return true; } -#endif return false; } @@ -1143,3 +1135,138 @@ void CService::SetPort(unsigned short portIn) { port = portIn; } + +CSubNet::CSubNet(): + valid(false) +{ + memset(netmask, 0, sizeof(netmask)); +} + +CSubNet::CSubNet(const std::string &strSubnet, bool fAllowLookup) +{ + size_t slash = strSubnet.find_last_of('/'); + std::vector vIP; + + valid = true; + // Default to /32 (IPv4) or /128 (IPv6), i.e. match single address + memset(netmask, 255, sizeof(netmask)); + + std::string strAddress = strSubnet.substr(0, slash); + if (LookupHost(strAddress.c_str(), vIP, 1, fAllowLookup)) + { + network = vIP[0]; + if (slash != strSubnet.npos) + { + std::string strNetmask = strSubnet.substr(slash + 1); + int32_t n; + // IPv4 addresses start at offset 12, and first 12 bytes must match, so just offset n + int noffset = network.IsIPv4() ? (12 * 8) : 0; + if (ParseInt32(strNetmask, &n)) // If valid number, assume /24 symtex + { + if(n >= 0 && n <= (128 - noffset)) // Only valid if in range of bits of address + { + n += noffset; + // Clear bits [n..127] + for (; n < 128; ++n) + netmask[n>>3] &= ~(1<<(n&7)); + } + else + { + valid = false; + } + } + else // If not a valid number, try full netmask syntax + { + if (LookupHost(strNetmask.c_str(), vIP, 1, false)) // Never allow lookup for netmask + { + // Remember: GetByte returns bytes in reversed order + // Copy only the *last* four bytes in case of IPv4, the rest of the mask should stay 1's as + // we don't want pchIPv4 to be part of the mask. + int asize = network.IsIPv4() ? 4 : 16; + for(int x=0; x& vAddr, int portDefault = bool LookupNumeric(const char *pszName, CService& addr, int portDefault = 0); bool ConnectSocket(const CService &addr, SOCKET& hSocketRet, int nTimeout = nConnectTimeout); bool ConnectSocketByName(CService &addr, SOCKET& hSocketRet, const char *pszDest, int portDefault = 0, int nTimeout = nConnectTimeout); +/** Return readable error string for a network error code */ +std::string NetworkErrorString(int err); #endif diff --git a/src/qt/Makefile.am b/src/qt/Makefile.am index 02f910635..52dbbbf6c 100644 --- a/src/qt/Makefile.am +++ b/src/qt/Makefile.am @@ -7,8 +7,8 @@ AM_CPPFLAGS += -I$(top_srcdir)/src \ $(QR_CFLAGS) bin_PROGRAMS = dogecoin-qt noinst_LIBRARIES = libbitcoinqt.a -SUBDIRS = $(BUILD_TEST_QT) -DIST_SUBDIRS = test +SUBDIRS = . $(BUILD_TEST_QT) +DIST_SUBDIRS = . test # dogecoin qt core # QT_TS = \ @@ -212,7 +212,8 @@ BITCOIN_QT_H = \ walletframe.h \ walletmodel.h \ walletmodeltransaction.h \ - walletview.h + walletview.h \ + winshutdownmonitor.h RES_ICONS = \ res/icons/add.png \ @@ -258,6 +259,14 @@ RES_ICONS = \ res/icons/tx_input.png \ res/icons/tx_output.png \ res/icons/tx_mined.png + +RES_FONTS = \ + res/fonts/ComicNeue-Bold.ttf \ + res/fonts/ComicNeue-Bold-Oblique.ttf \ + res/fonts/ComicNeue-Light.ttf \ + res/fonts/ComicNeue-Light-Oblique.ttf \ + res/fonts/ComicNeue-Regular.ttf \ + res/fonts/ComicNeue-Regular-Oblique.ttf BITCOIN_QT_CPP = \ bitcoin.cpp \ @@ -276,10 +285,10 @@ BITCOIN_QT_CPP = \ qvalidatedlineedit.cpp \ qvaluecombobox.cpp \ rpcconsole.cpp \ - signverifymessagedialog.cpp \ splashscreen.cpp \ trafficgraphwidget.cpp \ - utilitydialog.cpp + utilitydialog.cpp \ + winshutdownmonitor.cpp if ENABLE_WALLET BITCOIN_QT_CPP += \ @@ -298,6 +307,7 @@ BITCOIN_QT_CPP += \ recentrequeststablemodel.cpp \ sendcoinsdialog.cpp \ sendcoinsentry.cpp \ + signverifymessagedialog.cpp \ transactiondesc.cpp \ transactiondescdialog.cpp \ transactionfilterproxy.cpp \ @@ -323,7 +333,7 @@ DOGECOIN_RC = res/dogecoin-qt-res.rc libbitcoinqt_a_CPPFLAGS = $(AM_CPPFLAGS) $(QT_INCLUDES) \ -I$(top_srcdir)/src/qt/forms $(QT_DBUS_INCLUDES) libbitcoinqt_a_SOURCES = $(BITCOIN_QT_CPP) $(BITCOIN_QT_H) $(QT_FORMS_UI) \ - $(QT_QRC) $(QT_TS) $(PROTOBUF_PROTO) $(RES_ICONS) $(RES_IMAGES) $(RES_MOVIES) + $(QT_QRC) $(QT_TS) $(PROTOBUF_PROTO) $(RES_ICONS) $(RES_IMAGES) $(RES_MOVIES) $(RES_FONTS) nodist_libbitcoinqt_a_SOURCES = $(QT_MOC_CPP) $(QT_MOC) $(PROTOBUF_CC) \ $(PROTOBUF_H) $(QT_QRC_CPP) @@ -369,10 +379,10 @@ translate: bitcoinstrings.cpp $(QT_FORMS_UI) $(QT_FORMS_UI) $(BITCOIN_QT_CPP) $( @test -n $(LUPDATE) || echo "lupdate is required for updating translations" @QT_SELECT=$(QT_SELECT) $(LUPDATE) $^ -locations relative -no-obsolete -ts locale/bitcoin_en.ts -$(QT_QRC_CPP): $(QT_QRC) $(QT_QM) $(QT_FORMS_H) $(RES_ICONS) $(RES_IMAGES) $(RES_MOVIES) $(PROTOBUF_H) +$(QT_QRC_CPP): $(QT_QRC) $(QT_QM) $(QT_FORMS_H) $(RES_ICONS) $(RES_IMAGES) $(RES_MOVIES) $(RES_FONTS) $(PROTOBUF_H) @cd $(abs_srcdir); test -f $(RCC) && QT_SELECT=$(QT_SELECT) $(RCC) -name bitcoin -o $(abs_builddir)/$@ $< || \ echo error: could not build $@ - $(SED) -i.bak -e '/^\*\*.*Created:/d' $@ && rm -f $@.bak - $(SED) -i.bak -e '/^\*\*.*by:/d' $@ && rm -f $@.bak + $(SED) -e '/^\*\*.*Created:/d' $@ > $@.n && mv $@{.n,} + $(SED) -e '/^\*\*.*by:/d' $@ > $@.n && mv $@{.n,} CLEANFILES = $(BUILT_SOURCES) $(QT_QM) $(QT_FORMS_H) *.gcda *.gcno diff --git a/src/qt/addresstablemodel.cpp b/src/qt/addresstablemodel.cpp index 495152941..ff55f6937 100644 --- a/src/qt/addresstablemodel.cpp +++ b/src/qt/addresstablemodel.cpp @@ -114,7 +114,7 @@ public: case CT_NEW: if(inModel) { - qDebug() << "AddressTablePriv::updateEntry : Warning: Got CT_NOW, but entry is already in model"; + qDebug() << "AddressTablePriv::updateEntry : Warning: Got CT_NEW, but entry is already in model"; break; } parent->beginInsertRows(QModelIndex(), lowerIndex, lowerIndex); diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 5c33d8f6f..9763335bb 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -15,6 +15,7 @@ #include "optionsmodel.h" #include "splashscreen.h" #include "utilitydialog.h" +#include "winshutdownmonitor.h" #ifdef ENABLE_WALLET #include "paymentserver.h" #include "walletmodel.h" @@ -25,7 +26,9 @@ #include "rpcserver.h" #include "ui_interface.h" #include "util.h" +#ifdef ENABLE_WALLET #include "wallet.h" +#endif #include @@ -170,7 +173,7 @@ public: #ifdef ENABLE_WALLET /// Create payment server - // void createPaymentServer(); + void createPaymentServer(); #endif /// Create options model void createOptionsModel(); @@ -187,6 +190,9 @@ public: /// Get process return value int getReturnValue() { return returnValue; } + /// Get window identifier of QMainWindow (BitcoinGUI) + WId getMainWinId() const; + public slots: void initializeResult(int retval); void shutdownResult(int retval); @@ -206,7 +212,7 @@ private: BitcoinGUI *window; QTimer *pollShutdownTimer; #ifdef ENABLE_WALLET - // PaymentServer* paymentServer; + PaymentServer* paymentServer; WalletModel *walletModel; #endif int returnValue; @@ -273,7 +279,7 @@ BitcoinApplication::BitcoinApplication(int &argc, char **argv): window(0), pollShutdownTimer(0), #ifdef ENABLE_WALLET - // paymentServer(0), + paymentServer(0), walletModel(0), #endif returnValue(0) @@ -292,20 +298,18 @@ BitcoinApplication::~BitcoinApplication() delete window; window = 0; #ifdef ENABLE_WALLET - // delete paymentServer; - // paymentServer = 0; + delete paymentServer; + paymentServer = 0; #endif delete optionsModel; optionsModel = 0; } #ifdef ENABLE_WALLET -/* void BitcoinApplication::createPaymentServer() { paymentServer = new PaymentServer(this); } -*/ #endif void BitcoinApplication::createOptionsModel() @@ -388,12 +392,10 @@ void BitcoinApplication::initializeResult(int retval) returnValue = retval ? 0 : 1; if(retval) { -/* #ifdef ENABLE_WALLET PaymentServer::LoadRootCAs(); paymentServer->setOptionsModel(optionsModel); #endif -*/ emit splashFinished(window); @@ -408,10 +410,8 @@ void BitcoinApplication::initializeResult(int retval) window->addWallet("~Default", walletModel); window->setCurrentWallet("~Default"); -/* connect(walletModel, SIGNAL(coinsSent(CWallet*,SendCoinsRecipient,QByteArray)), paymentServer, SLOT(fetchPaymentACK(CWallet*,const SendCoinsRecipient&,QByteArray))); -*/ } #endif @@ -425,11 +425,8 @@ void BitcoinApplication::initializeResult(int retval) window->show(); } #ifdef ENABLE_WALLET - // Payment server disabled pending future work on specifications - // Now that initialization/startup is done, process any command-line // dogecoin: URIs or payment requests: - /* connect(paymentServer, SIGNAL(receivedPaymentRequest(SendCoinsRecipient)), window, SLOT(handlePaymentRequest(SendCoinsRecipient))); connect(window, SIGNAL(receivedURI(QString)), @@ -437,7 +434,6 @@ void BitcoinApplication::initializeResult(int retval) connect(paymentServer, SIGNAL(message(QString,QString,unsigned int)), window, SLOT(message(QString,QString,unsigned int))); QTimer::singleShot(100, paymentServer, SLOT(uiReady())); - */ #endif } else { quit(); // Exit main loop @@ -456,9 +452,19 @@ void BitcoinApplication::handleRunawayException(const QString &message) ::exit(1); } +WId BitcoinApplication::getMainWinId() const +{ + if (!window) + return 0; + + return window->winId(); +} + #ifndef BITCOIN_QT_TEST int main(int argc, char *argv[]) { + SetupEnvironment(); + /// 1. Parse command-line options. These take precedence over anything else. // Command-line options take precedence: ParseParameters(argc, argv); @@ -519,7 +525,13 @@ int main(int argc, char *argv[]) QObject::tr("Error: Specified data directory \"%1\" does not exist.").arg(QString::fromStdString(mapArgs["-datadir"]))); return 1; } - ReadConfigFile(mapArgs, mapMultiArgs); + try { + ReadConfigFile(mapArgs, mapMultiArgs); + } catch(std::exception &e) { + QMessageBox::critical(0, QObject::tr("Bitcoin"), + QObject::tr("Error: Cannot parse configuration file: %1. Only use key=value syntax.").arg(e.what())); + return false; + } /// 7. Determine network (and switch to network specific options) // - Do not call Params() before this step @@ -558,16 +570,21 @@ int main(int argc, char *argv[]) // Start up the payment server early, too, so impatient users that click on // dogecoin: links repeatedly have their payment requests routed to this process: - // app.createPaymentServer(); + app.createPaymentServer(); #endif /// 9. Main GUI initialization // Install global event filter that makes sure that long tooltips can be word-wrapped app.installEventFilter(new GUIUtil::ToolTipToRichTextFilter(TOOLTIP_WRAP_THRESHOLD, &app)); - // Install qDebug() message handler to route to debug.log #if QT_VERSION < 0x050000 + // Install qDebug() message handler to route to debug.log qInstallMsgHandler(DebugMessageHandler); #else +#if defined(Q_OS_WIN) + // Install global event filter for processing Windows session related Windows messages (WM_QUERYENDSESSION and WM_ENDSESSION) + qApp->installNativeEventFilter(new WinShutdownMonitor()); +#endif + // Install qDebug() message handler to route to debug.log qInstallMessageHandler(DebugMessageHandler); #endif // Load GUI settings from QSettings @@ -583,6 +600,9 @@ int main(int argc, char *argv[]) { app.createWindow(isaTestNet); app.requestInitialize(); +#if defined(Q_OS_WIN) && QT_VERSION >= 0x050000 + WinShutdownMonitor::registerShutdownBlockReason(QObject::tr("Dogecoin Core didn't yet exit safely..."), (HWND)app.getMainWinId()); +#endif app.exec(); app.requestShutdown(); app.exec(); diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index f6335b68c..f4cec261e 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include @@ -128,6 +129,15 @@ BitcoinGUI::BitcoinGUI(bool fIsTestnet, QWidget *parent) : */ setCentralWidget(rpcConsole); } + + // Dogecoin: load fallback font in case Comic Sans is not availble on the system + QFontDatabase::addApplicationFont(":fonts/ComicNeue-Bold"); + QFontDatabase::addApplicationFont(":fonts/ComicNeue-Bold-Oblique"); + QFontDatabase::addApplicationFont(":fonts/ComicNeue-Light"); + QFontDatabase::addApplicationFont(":fonts/ComicNeue-Light-Oblique"); + QFontDatabase::addApplicationFont(":fonts/ComicNeue-Regular"); + QFontDatabase::addApplicationFont(":fonts/ComicNeue-Regular-Oblique"); + QFont::insertSubstitution("Comic Sans MS", "Comic Neue"); // Dogecoin: Specify Comic Sans as new font. QFont newFont("Comic Sans MS", 10); @@ -409,8 +419,8 @@ void BitcoinGUI::setClientModel(ClientModel *clientModel) setNumConnections(clientModel->getNumConnections()); connect(clientModel, SIGNAL(numConnectionsChanged(int)), this, SLOT(setNumConnections(int))); - setNumBlocks(clientModel->getNumBlocks(), clientModel->getNumBlocksOfPeers()); - connect(clientModel, SIGNAL(numBlocksChanged(int,int)), this, SLOT(setNumBlocks(int,int))); + setNumBlocks(clientModel->getNumBlocks()); + connect(clientModel, SIGNAL(numBlocksChanged(int)), this, SLOT(setNumBlocks(int))); // Receive and report messages from client model connect(clientModel, SIGNAL(message(QString,QString,unsigned int)), this, SLOT(message(QString,QString,unsigned int))); @@ -623,7 +633,7 @@ void BitcoinGUI::setNumConnections(int count) labelConnectionsIcon->setToolTip(tr("%n active connection(s) to Dogecoin network", "", count)); } -void BitcoinGUI::setNumBlocks(int count, int nTotalBlocks) +void BitcoinGUI::setNumBlocks(int count) { // Prevent orphan statusbar messages (e.g. hover Quit in main menu, wait until chain-sync starts -> garbelled text) statusBar()->clearMessage(); @@ -652,17 +662,10 @@ void BitcoinGUI::setNumBlocks(int count, int nTotalBlocks) QDateTime currentDate = QDateTime::currentDateTime(); int secs = lastBlockDate.secsTo(currentDate); - if(count < nTotalBlocks) - { - tooltip = tr("Processed %1 of %2 (estimated) blocks of transaction history.").arg(count).arg(nTotalBlocks); - } - else - { - tooltip = tr("Processed %1 blocks of transaction history.").arg(count); - } + tooltip = tr("Processed %1 blocks of transaction history.").arg(count); // Set icon state: spinning if catching up, tick otherwise - if(secs < 90*60 && count >= nTotalBlocks) + if(secs < 90*60) { tooltip = tr("Up to date") + QString(".
") + tooltip; labelBlocksIcon->setPixmap(QIcon(":/icons/synced").pixmap(STATUSBAR_ICONSIZE, STATUSBAR_ICONSIZE)); @@ -679,17 +682,27 @@ void BitcoinGUI::setNumBlocks(int count, int nTotalBlocks) { // Represent time from last generated block in human readable text QString timeBehindText; - if(secs < 48*60*60) + const int HOUR_IN_SECONDS = 60*60; + const int DAY_IN_SECONDS = 24*60*60; + const int WEEK_IN_SECONDS = 7*24*60*60; + const int YEAR_IN_SECONDS = 31556952; // Average length of year in Gregorian calendar + if(secs < 2*DAY_IN_SECONDS) { - timeBehindText = tr("%n hour(s)","",secs/(60*60)); + timeBehindText = tr("%n hour(s)","",secs/HOUR_IN_SECONDS); } - else if(secs < 14*24*60*60) + else if(secs < 2*WEEK_IN_SECONDS) { - timeBehindText = tr("%n day(s)","",secs/(24*60*60)); + timeBehindText = tr("%n day(s)","",secs/DAY_IN_SECONDS); + } + else if(secs < YEAR_IN_SECONDS) + { + timeBehindText = tr("%n week(s)","",secs/WEEK_IN_SECONDS); } else { - timeBehindText = tr("%n week(s)","",secs/(7*24*60*60)); + int years = secs / YEAR_IN_SECONDS; + int remainder = secs % YEAR_IN_SECONDS; + timeBehindText = tr("%1 and %2").arg(tr("%n year(s)", "", years)).arg(tr("%n week(s)","", remainder/WEEK_IN_SECONDS)); } progressBarLabel->setVisible(true); diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 0cc1ebc50..b4675b95a 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -130,7 +130,7 @@ public slots: /** Set number of connections shown in the UI */ void setNumConnections(int count); /** Set number of blocks shown in the UI */ - void setNumBlocks(int count, int nTotalBlocks); + void setNumBlocks(int count); /** Notify the user of an event from the core network or transaction handling code. @param[in] title the message box / notification title diff --git a/src/qt/bitcoinstrings.cpp b/src/qt/bitcoinstrings.cpp index 91455376a..c27b4b674 100644 --- a/src/qt/bitcoinstrings.cpp +++ b/src/qt/bitcoinstrings.cpp @@ -37,6 +37,9 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" "Cannot obtain a lock on data directory %s. Dogecoin is probably already " "running."), QT_TRANSLATE_NOOP("bitcoin-core", "" +"Continuously rate-limit free transactions to *1000 bytes per minute " +"(default:15)"), +QT_TRANSLATE_NOOP("bitcoin-core", "" "Enter regression test mode, which uses a special chain in which blocks can " "be solved instantly. This is intended for regression testing tools and app " "development."), @@ -62,6 +65,17 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" "Execute command when the best block changes (%s in cmd is replaced by block " "hash)"), QT_TRANSLATE_NOOP("bitcoin-core", "" +"Fees smaller than this are considered zero fee (for transaction creation) " +"(default:"), +QT_TRANSLATE_NOOP("bitcoin-core", "" +"Flush database activity from memory pool to disk log every megabytes " +"(default: 100)"), +QT_TRANSLATE_NOOP("bitcoin-core", "" +"How thorough the block verification of -checkblocks is (0-4, default: 3)"), +QT_TRANSLATE_NOOP("bitcoin-core", "" +"In this mode -genproclimit controls how many blocks are generated " +"immediately."), +QT_TRANSLATE_NOOP("bitcoin-core", "" "Listen for JSON-RPC connections on (default: 22555 or testnet: 44555)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Number of seconds to keep misbehaving peers from reconnecting (default: " @@ -71,14 +85,16 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" QT_TRANSLATE_NOOP("bitcoin-core", "" "Set maximum size of high-priority/low-fee transactions in bytes (default: %d)"), QT_TRANSLATE_NOOP("bitcoin-core", "" -"Set the number of script verification threads (up to 16, 0 = auto, <0 = " -"leave that many cores free, default: 0)"), +"Set the number of script verification threads (%u to %d, 0 = auto, <0 = " +"leave that many cores free, default: %d)"), +QT_TRANSLATE_NOOP("bitcoin-core", "" +"Set the processor limit for when generation is on (-1 = unlimited, default: " +"-1)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "This is a pre-release test build - use at your own risk - do not use for " "mining or merchant applications"), QT_TRANSLATE_NOOP("bitcoin-core", "" -"Unable to bind to %s on this computer. Dogecoin Core Daemon is probably " -"already running."), +"Unable to bind to %s on this computer. Dogecoin is probably already running."), QT_TRANSLATE_NOOP("bitcoin-core", "" "Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -" "proxy)"), @@ -106,6 +122,8 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" "%s\n" "If the file does not exist, create it with owner-readable-only file " "permissions."), +QT_TRANSLATE_NOOP("bitcoin-core", "(default: 1)"), +QT_TRANSLATE_NOOP("bitcoin-core", "(default: wallet.dat)"), QT_TRANSLATE_NOOP("bitcoin-core", " can be:"), QT_TRANSLATE_NOOP("bitcoin-core", "Accept command line and JSON-RPC commands"), QT_TRANSLATE_NOOP("bitcoin-core", "Accept connections from outside (default: 1 if no -proxy or -connect)"), @@ -114,6 +132,8 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Allow DNS lookups for -addnode, -seednode and QT_TRANSLATE_NOOP("bitcoin-core", "Allow JSON-RPC connections from specified IP address"), QT_TRANSLATE_NOOP("bitcoin-core", "Allow peers to set bloom filters (default: 1)"), QT_TRANSLATE_NOOP("bitcoin-core", "Attempt to recover private keys from a corrupt wallet.dat"), +QT_TRANSLATE_NOOP("bitcoin-core", "Dogecoin Core Daemon"), +QT_TRANSLATE_NOOP("bitcoin-core", "Dogecoin Core RPC client version"), QT_TRANSLATE_NOOP("bitcoin-core", "Block creation options:"), QT_TRANSLATE_NOOP("bitcoin-core", "Cannot downgrade wallet"), QT_TRANSLATE_NOOP("bitcoin-core", "Cannot resolve -bind address: '%s'"), @@ -124,7 +144,10 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Connect only to the specified node(s)"), QT_TRANSLATE_NOOP("bitcoin-core", "Connect through SOCKS proxy"), QT_TRANSLATE_NOOP("bitcoin-core", "Connect to JSON-RPC on (default: 22555 or testnet: 44555)"), QT_TRANSLATE_NOOP("bitcoin-core", "Connect to a node to retrieve peer addresses, and disconnect"), +QT_TRANSLATE_NOOP("bitcoin-core", "Connection options:"), QT_TRANSLATE_NOOP("bitcoin-core", "Corrupted block database detected"), +QT_TRANSLATE_NOOP("bitcoin-core", "Debugging/Testing options:"), +QT_TRANSLATE_NOOP("bitcoin-core", "Disable safemode, override a real safe mode event (default: 0)"), QT_TRANSLATE_NOOP("bitcoin-core", "Discover own IP address (default: 1 when listening and no -externalip)"), QT_TRANSLATE_NOOP("bitcoin-core", "Do not load the wallet and disable wallet RPC calls"), QT_TRANSLATE_NOOP("bitcoin-core", "Do you want to rebuild the block database now?"), @@ -154,12 +177,14 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Failed to write to coin database"), QT_TRANSLATE_NOOP("bitcoin-core", "Failed to write transaction index"), QT_TRANSLATE_NOOP("bitcoin-core", "Failed to write undo data"), QT_TRANSLATE_NOOP("bitcoin-core", "Fee per kB to add to transactions you send"), +QT_TRANSLATE_NOOP("bitcoin-core", "Fees smaller than this are considered zero fee (for relaying) (default:"), QT_TRANSLATE_NOOP("bitcoin-core", "Find peers using DNS lookup (default: 1 unless -connect)"), +QT_TRANSLATE_NOOP("bitcoin-core", "Force safe mode (default: 0)"), QT_TRANSLATE_NOOP("bitcoin-core", "Generate coins (default: 0)"), QT_TRANSLATE_NOOP("bitcoin-core", "Get help for a command"), QT_TRANSLATE_NOOP("bitcoin-core", "How many blocks to check at startup (default: 288, 0 = all)"), -QT_TRANSLATE_NOOP("bitcoin-core", "How thorough the block verification is (0-4, default: 3)"), QT_TRANSLATE_NOOP("bitcoin-core", "If is not supplied, output all debugging information."), +QT_TRANSLATE_NOOP("bitcoin-core", "Importing..."), QT_TRANSLATE_NOOP("bitcoin-core", "Imports blocks from external blk000??.dat file"), QT_TRANSLATE_NOOP("bitcoin-core", "Incorrect or no genesis block found. Wrong datadir for network?"), QT_TRANSLATE_NOOP("bitcoin-core", "Information"), @@ -170,11 +195,13 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -minrelaytxfee=: ' QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -mintxfee=: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -paytxfee=: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount"), +QT_TRANSLATE_NOOP("bitcoin-core", "Limit size of signature cache to entries (default: 50000)"), QT_TRANSLATE_NOOP("bitcoin-core", "List commands"), QT_TRANSLATE_NOOP("bitcoin-core", "Listen for connections on (default: 22556 or testnet: 44556)"), QT_TRANSLATE_NOOP("bitcoin-core", "Loading addresses..."), QT_TRANSLATE_NOOP("bitcoin-core", "Loading block index..."), QT_TRANSLATE_NOOP("bitcoin-core", "Loading wallet..."), +QT_TRANSLATE_NOOP("bitcoin-core", "Log transaction priority and fee per kB when mining blocks (default: 0)"), QT_TRANSLATE_NOOP("bitcoin-core", "Maintain a full transaction index (default: 0)"), QT_TRANSLATE_NOOP("bitcoin-core", "Maintain at most connections to peers (default: 125)"), QT_TRANSLATE_NOOP("bitcoin-core", "Maximum per-connection receive buffer, *1000 bytes (default: 5000)"), @@ -185,10 +212,17 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Only connect to nodes in network (IPv4, QT_TRANSLATE_NOOP("bitcoin-core", "Options:"), QT_TRANSLATE_NOOP("bitcoin-core", "Password for JSON-RPC connections"), QT_TRANSLATE_NOOP("bitcoin-core", "Prepend debug output with timestamp (default: 1)"), +QT_TRANSLATE_NOOP("bitcoin-core", "Print block on startup, if found in block index"), +QT_TRANSLATE_NOOP("bitcoin-core", "Print block tree on startup (default: 0)"), +QT_TRANSLATE_NOOP("bitcoin-core", "RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions)"), QT_TRANSLATE_NOOP("bitcoin-core", "RPC client options:"), +QT_TRANSLATE_NOOP("bitcoin-core", "RPC server options:"), +QT_TRANSLATE_NOOP("bitcoin-core", "Randomly drop 1 of every network messages"), +QT_TRANSLATE_NOOP("bitcoin-core", "Randomly fuzz 1 of every network messages"), QT_TRANSLATE_NOOP("bitcoin-core", "Rebuild block chain index from current blk000??.dat files"), QT_TRANSLATE_NOOP("bitcoin-core", "Rescan the block chain for missing wallet transactions"), QT_TRANSLATE_NOOP("bitcoin-core", "Rescanning..."), +QT_TRANSLATE_NOOP("bitcoin-core", "Run a thread to flush wallet periodically (default: 1)"), QT_TRANSLATE_NOOP("bitcoin-core", "Run in the background as a daemon and accept commands"), QT_TRANSLATE_NOOP("bitcoin-core", "SSL options: (see the Bitcoin Wiki for SSL setup instructions)"), QT_TRANSLATE_NOOP("bitcoin-core", "Select SOCKS version for -proxy (4 or 5, default: 5)"), @@ -202,6 +236,9 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Set key pool size to (default: 100)"), QT_TRANSLATE_NOOP("bitcoin-core", "Set maximum block size in bytes (default: %d)"), QT_TRANSLATE_NOOP("bitcoin-core", "Set minimum block size in bytes (default: 0)"), QT_TRANSLATE_NOOP("bitcoin-core", "Set the number of threads to service RPC calls (default: 4)"), +QT_TRANSLATE_NOOP("bitcoin-core", "Sets the DB_PRIVATE flag in the wallet db environment (default: 1)"), +QT_TRANSLATE_NOOP("bitcoin-core", "Show all debugging options (usage: --help -help-debug)"), +QT_TRANSLATE_NOOP("bitcoin-core", "Show benchmark information (default: 0)"), QT_TRANSLATE_NOOP("bitcoin-core", "Shrink debug.log file on client startup (default: 1 when no -debug)"), QT_TRANSLATE_NOOP("bitcoin-core", "Signing transaction failed"), QT_TRANSLATE_NOOP("bitcoin-core", "Specify configuration file (default: dogecoin.conf)"), @@ -242,6 +279,7 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Warning: Deprecated argument -debugnet ignore QT_TRANSLATE_NOOP("bitcoin-core", "Warning: This version is obsolete, upgrade required!"), QT_TRANSLATE_NOOP("bitcoin-core", "You need to rebuild the database using -reindex to change -txindex"), QT_TRANSLATE_NOOP("bitcoin-core", "Zapping all transactions from wallet..."), +QT_TRANSLATE_NOOP("bitcoin-core", "on startup"), QT_TRANSLATE_NOOP("bitcoin-core", "version"), QT_TRANSLATE_NOOP("bitcoin-core", "wallet.dat corrupt, salvage failed"), }; diff --git a/src/qt/clientmodel.cpp b/src/qt/clientmodel.cpp index f273b9ea4..43750cf96 100644 --- a/src/qt/clientmodel.cpp +++ b/src/qt/clientmodel.cpp @@ -23,7 +23,7 @@ static const int64_t nClientStartupTime = GetTime(); ClientModel::ClientModel(OptionsModel *optionsModel, QObject *parent) : QObject(parent), optionsModel(optionsModel), - cachedNumBlocks(0), cachedNumBlocksOfPeers(0), + cachedNumBlocks(0), cachedReindexing(0), cachedImporting(0), numBlocksAtStartup(-1), pollTimer(0) { @@ -46,6 +46,7 @@ int ClientModel::getNumConnections() const int ClientModel::getNumBlocks() const { + LOCK(cs_main); return chainActive.Height(); } @@ -67,6 +68,7 @@ quint64 ClientModel::getTotalBytesSent() const QDateTime ClientModel::getLastBlockDate() const { + LOCK(cs_main); if (chainActive.Tip()) return QDateTime::fromTime_t(chainActive.Tip()->GetBlockTime()); else @@ -75,27 +77,31 @@ QDateTime ClientModel::getLastBlockDate() const double ClientModel::getVerificationProgress() const { + LOCK(cs_main); return Checkpoints::GuessVerificationProgress(chainActive.Tip()); } void ClientModel::updateTimer() { + // Get required lock upfront. This avoids the GUI from getting stuck on + // periodical polls if the core is holding the locks for a longer time - + // for example, during a wallet rescan. + TRY_LOCK(cs_main, lockMain); + if(!lockMain) + return; // Some quantities (such as number of blocks) change so fast that we don't want to be notified for each change. // Periodically check and update with a timer. int newNumBlocks = getNumBlocks(); - int newNumBlocksOfPeers = getNumBlocksOfPeers(); // check for changed number of blocks we have, number of blocks peers claim to have, reindexing state and importing state - if (cachedNumBlocks != newNumBlocks || cachedNumBlocksOfPeers != newNumBlocksOfPeers || + if (cachedNumBlocks != newNumBlocks || cachedReindexing != fReindex || cachedImporting != fImporting) { cachedNumBlocks = newNumBlocks; - cachedNumBlocksOfPeers = newNumBlocksOfPeers; cachedReindexing = fReindex; cachedImporting = fImporting; - // ensure we return the maximum of newNumBlocksOfPeers and newNumBlocks to not create weird displays in the GUI - emit numBlocksChanged(newNumBlocks, std::max(newNumBlocksOfPeers, newNumBlocks)); + emit numBlocksChanged(newNumBlocks); } emit bytesChanged(getTotalBytesRecv(), getTotalBytesSent()); @@ -148,11 +154,6 @@ enum BlockSource ClientModel::getBlockSource() const return BLOCK_SOURCE_NONE; } -int ClientModel::getNumBlocksOfPeers() const -{ - return GetNumBlocksOfPeers(); -} - QString ClientModel::getStatusBarWarnings() const { return QString::fromStdString(GetWarnings("statusbar")); diff --git a/src/qt/clientmodel.h b/src/qt/clientmodel.h index ca735f14c..e55c6d298 100644 --- a/src/qt/clientmodel.h +++ b/src/qt/clientmodel.h @@ -52,8 +52,6 @@ public: bool inInitialBlockDownload() const; //! Return true if core is importing blocks enum BlockSource getBlockSource() const; - //! Return conservative estimate of total number of blocks, or 0 if unknown - int getNumBlocksOfPeers() const; //! Return warnings to be displayed in status bar QString getStatusBarWarnings() const; @@ -67,7 +65,6 @@ private: OptionsModel *optionsModel; int cachedNumBlocks; - int cachedNumBlocksOfPeers; bool cachedReindexing; bool cachedImporting; @@ -80,7 +77,7 @@ private: signals: void numConnectionsChanged(int count); - void numBlocksChanged(int count, int countOfPeers); + void numBlocksChanged(int count); void alertsChanged(const QString &warnings); void bytesChanged(quint64 totalBytesIn, quint64 totalBytesOut); diff --git a/src/qt/coincontroldialog.cpp b/src/qt/coincontroldialog.cpp index d4e7102b4..2b690d020 100644 --- a/src/qt/coincontroldialog.cpp +++ b/src/qt/coincontroldialog.cpp @@ -18,7 +18,6 @@ #include #include -#include #include #include #include @@ -98,7 +97,7 @@ CoinControlDialog::CoinControlDialog(QWidget *parent) : connect(ui->radioListMode, SIGNAL(toggled(bool)), this, SLOT(radioListMode(bool))); // click on checkbox - connect(ui->treeWidget, SIGNAL(itemChanged( QTreeWidgetItem*, int)), this, SLOT(viewItemChanged( QTreeWidgetItem*, int))); + connect(ui->treeWidget, SIGNAL(itemChanged(QTreeWidgetItem*, int)), this, SLOT(viewItemChanged(QTreeWidgetItem*, int))); // click on header #if QT_VERSION < 0x050000 @@ -386,6 +385,18 @@ void CoinControlDialog::viewItemChanged(QTreeWidgetItem* item, int column) if (ui->treeWidget->isEnabled()) // do not update on every click for (un)select all CoinControlDialog::updateLabels(model, this); } + + // todo: this is a temporary qt5 fix: when clicking a parent node in tree mode, the parent node + // including all childs are partially selected. But the parent node should be fully selected + // as well as the childs. Childs should never be partially selected in the first place. + // Please remove this ugly fix, once the bug is solved upstream. +#if QT_VERSION >= 0x050000 + else if (column == COLUMN_CHECKBOX && item->childCount() > 0) + { + if (item->checkState(COLUMN_CHECKBOX) == Qt::PartiallyChecked && item->child(0)->checkState(COLUMN_CHECKBOX) == Qt::PartiallyChecked) + item->setCheckState(COLUMN_CHECKBOX, Qt::Checked); + } +#endif } // return human readable label for priority number @@ -423,7 +434,8 @@ void CoinControlDialog::updateLabelLocked() void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog) { - if (!model) return; + if (!model) + return; // nPayAmount qint64 nPayAmount = 0; @@ -591,13 +603,13 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog) l8->setText(BitcoinUnits::formatWithUnit(nDisplayUnit, nChange)); // Change // turn labels "red" - l5->setStyleSheet((nBytes >= 1000) ? "color:red;" : ""); // Bytes >= 1000 + l5->setStyleSheet((nBytes >= 5000) ? "color:red;" : ""); // Bytes >= 5000 l6->setStyleSheet((dPriority > 0 && !AllowFree(dPriority)) ? "color:red;" : ""); // Priority < "medium" l7->setStyleSheet((fLowOutput) ? "color:red;" : ""); // Low Output = "yes" l8->setStyleSheet((nChange > 0 && nChange < COIN) ? "color:red;" : ""); // Change < 0.01DOGE // tool tips - QString toolTip1 = tr("This label turns red, if the transaction size is greater than 1000 bytes.") + "

"; + QString toolTip1 = tr("This label turns red, if the transaction size is greater than 5000 bytes.") + "

"; toolTip1 += tr("This means a fee of at least %1 per kB is required.").arg(BitcoinUnits::formatWithUnit(nDisplayUnit, CTransaction::nMinTxFee)) + "

"; toolTip1 += tr("Can vary +/- 1 byte per input."); @@ -629,17 +641,18 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog) void CoinControlDialog::updateView() { + if (!model || !model->getOptionsModel() || !model->getAddressTableModel()) + return; + bool treeMode = ui->radioTreeMode->isChecked(); ui->treeWidget->clear(); ui->treeWidget->setEnabled(false); // performance, otherwise updateLabels would be called for every checked checkbox ui->treeWidget->setAlternatingRowColors(!treeMode); - QFlags flgCheckbox=Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsUserCheckable; - QFlags flgTristate=Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsUserCheckable | Qt::ItemIsTristate; + QFlags flgCheckbox = Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsUserCheckable; + QFlags flgTristate = Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsUserCheckable | Qt::ItemIsTristate; - int nDisplayUnit = BitcoinUnits::DOGE; - if (model && model->getOptionsModel()) - nDisplayUnit = model->getOptionsModel()->getDisplayUnit(); + int nDisplayUnit = model->getOptionsModel()->getDisplayUnit(); map > mapCoins; model->listCoins(mapCoins); @@ -647,11 +660,10 @@ void CoinControlDialog::updateView() BOOST_FOREACH(PAIRTYPE(QString, vector) coins, mapCoins) { QTreeWidgetItem *itemWalletAddress = new QTreeWidgetItem(); + itemWalletAddress->setCheckState(COLUMN_CHECKBOX, Qt::Unchecked); QString sWalletAddress = coins.first; - QString sWalletLabel = ""; - if (model->getAddressTableModel()) - sWalletLabel = model->getAddressTableModel()->labelForAddress(sWalletAddress); - if (sWalletLabel.length() == 0) + QString sWalletLabel = model->getAddressTableModel()->labelForAddress(sWalletAddress); + if (sWalletLabel.isEmpty()) sWalletLabel = tr("(no label)"); if (treeMode) @@ -660,10 +672,7 @@ void CoinControlDialog::updateView() ui->treeWidget->addTopLevelItem(itemWalletAddress); itemWalletAddress->setFlags(flgTristate); - itemWalletAddress->setCheckState(COLUMN_CHECKBOX,Qt::Unchecked); - - for (int i = 0; i < ui->treeWidget->columnCount(); i++) - itemWalletAddress->setBackground(i, QColor(248, 247, 246)); + itemWalletAddress->setCheckState(COLUMN_CHECKBOX, Qt::Unchecked); // label itemWalletAddress->setText(COLUMN_LABEL, sWalletLabel); @@ -714,10 +723,8 @@ void CoinControlDialog::updateView() } else if (!treeMode) { - QString sLabel = ""; - if (model->getAddressTableModel()) - sLabel = model->getAddressTableModel()->labelForAddress(sAddress); - if (sLabel.length() == 0) + QString sLabel = model->getAddressTableModel()->labelForAddress(sAddress); + if (sLabel.isEmpty()) sLabel = tr("(no label)"); itemOutput->setText(COLUMN_LABEL, sLabel); } @@ -758,7 +765,7 @@ void CoinControlDialog::updateView() // set checkbox if (coinControl->IsSelected(txhash, out.i)) - itemOutput->setCheckState(COLUMN_CHECKBOX,Qt::Checked); + itemOutput->setCheckState(COLUMN_CHECKBOX, Qt::Checked); } // amount diff --git a/src/qt/dogecoin.qrc b/src/qt/dogecoin.qrc index 70775ea68..739da37dc 100644 --- a/src/qt/dogecoin.qrc +++ b/src/qt/dogecoin.qrc @@ -13,8 +13,8 @@ res/icons/transaction0.png res/icons/transaction2.png res/icons/transaction_conflicted.png - res/icons/clock2.png - res/icons/clock4.png + res/icons/clock1.png + res/icons/clock2.png res/icons/clock3.png res/icons/clock4.png res/icons/clock5.png @@ -158,4 +158,12 @@ locale/bitcoin_zh_HK.qm locale/bitcoin_zh_TW.qm + + res/fonts/ComicNeue-Bold.ttf + res/fonts/ComicNeue-Bold-Oblique.ttf + res/fonts/ComicNeue-Light.ttf + res/fonts/ComicNeue-Light-Oblique.ttf + res/fonts/ComicNeue-Regular.ttf + res/fonts/ComicNeue-Regular-Oblique.ttf + diff --git a/src/qt/forms/optionsdialog.ui b/src/qt/forms/optionsdialog.ui index 93c557073..d38e5faf3 100644 --- a/src/qt/forms/optionsdialog.ui +++ b/src/qt/forms/optionsdialog.ui @@ -98,13 +98,7 @@ - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - -16 - - - 16 + (0 = auto, <0 = leave that many cores free) @@ -189,26 +183,6 @@ - - - - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - - - Qt::PlainText - - - true - - - - - - - &Spend unconfirmed change (experts only) - - - @@ -222,6 +196,35 @@ + + + + Expert + + + + + + Whether to show coin control features or not. + + + Enable coin &control features + + + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + &Spend unconfirmed change + + + + + + @@ -469,14 +472,28 @@ - - - Whether to show coin control features or not. - - - Display coin &control features (experts only) - - + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + Third party transaction URLs + + + thirdPartyTxUrls + + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + diff --git a/src/qt/forms/receivecoinsdialog.ui b/src/qt/forms/receivecoinsdialog.ui index dd4044ea3..fba859033 100644 --- a/src/qt/forms/receivecoinsdialog.ui +++ b/src/qt/forms/receivecoinsdialog.ui @@ -263,6 +263,9 @@ Show + + false + :/icons/edit:/icons/edit @@ -277,6 +280,9 @@ Remove + + false + :/icons/remove:/icons/remove diff --git a/src/qt/forms/rpcconsole.ui b/src/qt/forms/rpcconsole.ui index 10b16f8b7..67352265c 100644 --- a/src/qt/forms/rpcconsole.ui +++ b/src/qt/forms/rpcconsole.ui @@ -254,36 +254,13 @@ - - - Estimated total blocks - - - - - - - IBeamCursor - - - N/A - - - Qt::PlainText - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse - - - - Last block time - + IBeamCursor @@ -299,7 +276,7 @@ - + Qt::Vertical @@ -312,7 +289,7 @@ - + @@ -325,7 +302,7 @@ - + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. @@ -338,7 +315,7 @@ - + Qt::Vertical diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index fe0a2e261..cd00f5e4c 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -33,6 +33,9 @@ #include #include +#if BOOST_FILESYSTEM_VERSION >= 3 +#include +#endif #include #include @@ -54,6 +57,10 @@ #include #endif +#if BOOST_FILESYSTEM_VERSION >= 3 +static boost::filesystem::detail::utf8_codecvt_facet utf8; +#endif + namespace GUIUtil { QString dateTimeStr(const QDateTime &date) @@ -101,7 +108,10 @@ bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out) return false; SendCoinsRecipient rv; - rv.address = uri.path(); + QStringList addressParts = uri.path().split("/", QString::SkipEmptyParts, Qt::CaseSensitive); + rv.address = addressParts.isEmpty() + ? "" + : addressParts.first(); rv.amount = 0; #if QT_VERSION < 0x050000 @@ -164,6 +174,7 @@ bool parseBitcoinURI(QString uri, SendCoinsRecipient *out) { uri.replace(0, 11, "dogecoin:"); } + QUrl uriInstance(uri); return parseBitcoinURI(uriInstance, out); } @@ -357,7 +368,7 @@ void openDebugLogfile() /* Open debug.log with the associated application */ if (boost::filesystem::exists(pathDebug)) - QDesktopServices::openUrl(QUrl::fromLocalFile(QString::fromStdString(pathDebug.string()))); + QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathDebug))); } ToolTipToRichTextFilter::ToolTipToRichTextFilter(int size_threshold, QObject *parent) : @@ -384,6 +395,123 @@ bool ToolTipToRichTextFilter::eventFilter(QObject *obj, QEvent *evt) return QObject::eventFilter(obj, evt); } +void TableViewLastColumnResizingFixer::connectViewHeadersSignals() +{ + connect(tableView->horizontalHeader(), SIGNAL(sectionResized(int,int,int)), this, SLOT(on_sectionResized(int,int,int))); + connect(tableView->horizontalHeader(), SIGNAL(geometriesChanged()), this, SLOT(on_geometriesChanged())); +} + +// We need to disconnect these while handling the resize events, otherwise we can enter infinite loops. +void TableViewLastColumnResizingFixer::disconnectViewHeadersSignals() +{ + disconnect(tableView->horizontalHeader(), SIGNAL(sectionResized(int,int,int)), this, SLOT(on_sectionResized(int,int,int))); + disconnect(tableView->horizontalHeader(), SIGNAL(geometriesChanged()), this, SLOT(on_geometriesChanged())); +} + +// Setup the resize mode, handles compatibility for Qt5 and below as the method signatures changed. +// Refactored here for readability. +void TableViewLastColumnResizingFixer::setViewHeaderResizeMode(int logicalIndex, QHeaderView::ResizeMode resizeMode) +{ +#if QT_VERSION < 0x050000 + tableView->horizontalHeader()->setResizeMode(logicalIndex, resizeMode); +#else + tableView->horizontalHeader()->setSectionResizeMode(logicalIndex, resizeMode); +#endif +} + +void TableViewLastColumnResizingFixer::resizeColumn(int nColumnIndex, int width) +{ + tableView->setColumnWidth(nColumnIndex, width); + tableView->horizontalHeader()->resizeSection(nColumnIndex, width); +} + +int TableViewLastColumnResizingFixer::getColumnsWidth() +{ + int nColumnsWidthSum = 0; + for (int i = 0; i < columnCount; i++) + { + nColumnsWidthSum += tableView->horizontalHeader()->sectionSize(i); + } + return nColumnsWidthSum; +} + +int TableViewLastColumnResizingFixer::getAvailableWidthForColumn(int column) +{ + int nResult = lastColumnMinimumWidth; + int nTableWidth = tableView->horizontalHeader()->width(); + + if (nTableWidth > 0) + { + int nOtherColsWidth = getColumnsWidth() - tableView->horizontalHeader()->sectionSize(column); + nResult = std::max(nResult, nTableWidth - nOtherColsWidth); + } + + return nResult; +} + +// Make sure we don't make the columns wider than the tables viewport width. +void TableViewLastColumnResizingFixer::adjustTableColumnsWidth() +{ + disconnectViewHeadersSignals(); + resizeColumn(lastColumnIndex, getAvailableWidthForColumn(lastColumnIndex)); + connectViewHeadersSignals(); + + int nTableWidth = tableView->horizontalHeader()->width(); + int nColsWidth = getColumnsWidth(); + if (nColsWidth > nTableWidth) + { + resizeColumn(secondToLastColumnIndex,getAvailableWidthForColumn(secondToLastColumnIndex)); + } +} + +// Make column use all the space available, useful during window resizing. +void TableViewLastColumnResizingFixer::stretchColumnWidth(int column) +{ + disconnectViewHeadersSignals(); + resizeColumn(column, getAvailableWidthForColumn(column)); + connectViewHeadersSignals(); +} + +// When a section is resized this is a slot-proxy for ajustAmountColumnWidth(). +void TableViewLastColumnResizingFixer::on_sectionResized(int logicalIndex, int oldSize, int newSize) +{ + adjustTableColumnsWidth(); + int remainingWidth = getAvailableWidthForColumn(logicalIndex); + if (newSize > remainingWidth) + { + resizeColumn(logicalIndex, remainingWidth); + } +} + +// When the tabless geometry is ready, we manually perform the stretch of the "Message" column, +// as the "Stretch" resize mode does not allow for interactive resizing. +void TableViewLastColumnResizingFixer::on_geometriesChanged() +{ + if ((getColumnsWidth() - this->tableView->horizontalHeader()->width()) != 0) + { + disconnectViewHeadersSignals(); + resizeColumn(secondToLastColumnIndex, getAvailableWidthForColumn(secondToLastColumnIndex)); + connectViewHeadersSignals(); + } +} + +/** + * Initializes all internal variables and prepares the + * the resize modes of the last 2 columns of the table and + */ +TableViewLastColumnResizingFixer::TableViewLastColumnResizingFixer(QTableView* table, int lastColMinimumWidth, int allColsMinimumWidth) : + tableView(table), + lastColumnMinimumWidth(lastColMinimumWidth), + allColumnsMinimumWidth(allColsMinimumWidth) +{ + columnCount = tableView->horizontalHeader()->count(); + lastColumnIndex = columnCount - 1; + secondToLastColumnIndex = columnCount - 2; + tableView->horizontalHeader()->setMinimumSectionSize(allColumnsMinimumWidth); + setViewHeaderResizeMode(secondToLastColumnIndex, QHeaderView::Interactive); + setViewHeaderResizeMode(lastColumnIndex, QHeaderView::Interactive); +} + #ifdef WIN32 boost::filesystem::path static StartupShortcutPath() { @@ -451,7 +579,7 @@ bool SetStartOnSystemStartup(bool fAutoStart) return true; } -#elif defined(LINUX) +#elif defined(Q_OS_LINUX) // Follow the Desktop Application Autostart Spec: // http://standards.freedesktop.org/autostart-spec/autostart-spec-latest.html @@ -608,4 +736,27 @@ void setClipboard(const QString& str) QApplication::clipboard()->setText(str, QClipboard::Selection); } +#if BOOST_FILESYSTEM_VERSION >= 3 +boost::filesystem::path qstringToBoostPath(const QString &path) +{ + return boost::filesystem::path(path.toStdString(), utf8); +} + +QString boostPathToQString(const boost::filesystem::path &path) +{ + return QString::fromStdString(path.string(utf8)); +} +#else +#warning Conversion between boost path and QString can use invalid character encoding with boost_filesystem v2 and older +boost::filesystem::path qstringToBoostPath(const QString &path) +{ + return boost::filesystem::path(path.toStdString()); +} + +QString boostPathToQString(const boost::filesystem::path &path) +{ + return QString::fromStdString(path.string()); +} +#endif + } // namespace GUIUtil diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index 7e8ddb4b6..23da39fc6 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -5,9 +5,13 @@ #ifndef GUIUTIL_H #define GUIUTIL_H +#include #include #include #include +#include + +#include class QValidatedLineEdit; class SendCoinsRecipient; @@ -116,6 +120,45 @@ namespace GUIUtil int size_threshold; }; + /** + * Makes a QTableView last column feel as if it was being resized from its left border. + * Also makes sure the column widths are never larger than the table's viewport. + * In Qt, all columns are resizable from the right, but it's not intuitive resizing the last column from the right. + * Usually our second to last columns behave as if stretched, and when on strech mode, columns aren't resizable + * interactively or programatically. + * + * This helper object takes care of this issue. + * + */ + class TableViewLastColumnResizingFixer: public QObject + { + Q_OBJECT + + public: + TableViewLastColumnResizingFixer(QTableView* table, int lastColMinimumWidth, int allColsMinimumWidth); + void stretchColumnWidth(int column); + + private: + QTableView* tableView; + int lastColumnMinimumWidth; + int allColumnsMinimumWidth; + int lastColumnIndex; + int columnCount; + int secondToLastColumnIndex; + + void adjustTableColumnsWidth(); + int getAvailableWidthForColumn(int column); + int getColumnsWidth(); + void connectViewHeadersSignals(); + void disconnectViewHeadersSignals(); + void setViewHeaderResizeMode(int logicalIndex, QHeaderView::ResizeMode resizeMode); + void resizeColumn(int nColumnIndex, int width); + + private slots: + void on_sectionResized(int logicalIndex, int oldSize, int newSize); + void on_geometriesChanged(); + }; + bool GetStartOnSystemStartup(); bool SetStartOnSystemStartup(bool fAutoStart); @@ -124,6 +167,12 @@ namespace GUIUtil /** Restore window size and position */ void restoreWindowGeometry(const QString& strSetting, const QSize &defaultSizeIn, QWidget *parent); + /* Convert QString to OS specific boost path through UTF-8 */ + boost::filesystem::path qstringToBoostPath(const QString &path); + + /* Convert OS specific boost path to QString through UTF-8 */ + QString boostPathToQString(const boost::filesystem::path &path); + } // namespace GUIUtil #endif // GUIUTIL_H diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp index 14863b205..b3212e5b0 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -5,9 +5,12 @@ #include "intro.h" #include "ui_intro.h" +#include "guiutil.h" + #include "util.h" #include + #include #include #include @@ -59,7 +62,7 @@ void FreespaceChecker::check() { namespace fs = boost::filesystem; QString dataDirStr = intro->getPathToCheck(); - fs::path dataDir = fs::path(dataDirStr.toStdString()); + fs::path dataDir = GUIUtil::qstringToBoostPath(dataDirStr); uint64_t freeBytesAvailable = 0; int replyStatus = ST_OK; QString replyMessage = tr("A new data directory will be created."); @@ -143,7 +146,7 @@ void Intro::setDataDirectory(const QString &dataDir) QString Intro::getDefaultDataDirectory() { - return QString::fromStdString(GetDefaultDataDir().string()); + return GUIUtil::boostPathToQString(GetDefaultDataDir()); } void Intro::pickDataDirectory() @@ -159,7 +162,7 @@ void Intro::pickDataDirectory() /* 2) Allow QSettings to override default dir */ dataDir = settings.value("strDataDir", dataDir).toString(); - if(!fs::exists(dataDir.toStdString()) || GetBoolArg("-choosedatadir", false)) + if(!fs::exists(GUIUtil::qstringToBoostPath(dataDir)) || GetBoolArg("-choosedatadir", false)) { /* If current default data directory does not exist, let the user choose one */ Intro intro; @@ -175,7 +178,7 @@ void Intro::pickDataDirectory() } dataDir = intro.getDataDirectory(); try { - fs::create_directory(dataDir.toStdString()); + TryCreateDirectory(GUIUtil::qstringToBoostPath(dataDir)); break; } catch(fs::filesystem_error &e) { QMessageBox::critical(0, tr("Dogecoin"), @@ -186,7 +189,12 @@ void Intro::pickDataDirectory() settings.setValue("strDataDir", dataDir); } - SoftSetArg("-datadir", dataDir.toStdString()); + /* Only override -datadir if different from the default, to make it possible to + * override -datadir in the dogecoin.conf file in the default data directory + * (to be consistent with dogecoind behavior) + */ + if(dataDir != getDefaultDataDirectory()) + SoftSetArg("-datadir", GUIUtil::qstringToBoostPath(dataDir).string()); // use OS locale for path setting } void Intro::setStatus(int status, const QString &message, quint64 bytesAvailable) diff --git a/src/qt/locale/bitcoin_ach.ts b/src/qt/locale/bitcoin_ach.ts index 58d6cff3c..2b28beec7 100644 --- a/src/qt/locale/bitcoin_ach.ts +++ b/src/qt/locale/bitcoin_ach.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label - Create a new address - &New - Copy the currently selected address to the system clipboard - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label - Address - (no label) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase - New passphrase - Repeat new passphrase - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Encrypt wallet - This operation needs your wallet passphrase to unlock the wallet. - Unlock wallet - This operation needs your wallet passphrase to decrypt the wallet. - Decrypt wallet - Change passphrase - Enter the old and new passphrase to the wallet. - Confirm wallet encryption - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - The supplied passphrases do not match. - Wallet unlock failed - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... - &Overview - Node - Show general overview of wallet - &Transactions - Browse transaction history - E&xit - Quit application - - Show information about Dogecoin Core + Show information about Dogecoin - - About &Qt - Show information about Qt - &Options... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File - &Settings - &Help - Tabs toolbar - - [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address - Date - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,41 +1324,45 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1674,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1867,155 +1517,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + + + + Copy message + + + + Copy amount + + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address - Amount - Label - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2023,285 +1655,225 @@ Address: %4 RecentRequestsTableModel - Date - Label - Message - Amount - (no label) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: - Confirm the send action - S&end - Confirm send coins - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2309,116 +1881,85 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard - Alt+P - - - Remove this entry - Message: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2426,192 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard - Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2619,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2637,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2645,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2825,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2838,118 +2282,102 @@ Address: %4 TransactionTableModel - Date - Type - Address - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2957,178 +2385,142 @@ Address: %4 TransactionView - - All - Today - This week - This month - Last month - This year - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - Confirmed - Date - Type - Label - Address - Amount - ID - Range: - to @@ -3136,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3144,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3152,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3310,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_af_ZA.ts b/src/qt/locale/bitcoin_af_ZA.ts index 3a3410e75..192726f1b 100644 --- a/src/qt/locale/bitcoin_af_ZA.ts +++ b/src/qt/locale/bitcoin_af_ZA.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Dubbel-klik om die adres of etiket te wysig - Create a new address Skep 'n nuwe adres - &New - Copy the currently selected address to the system clipboard Maak 'n kopie van die huidige adres na die stelsel klipbord - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete &Verwyder - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Etiket - Address Adres - (no label) (geen etiket) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase Tik Wagwoord in - New passphrase Nuwe wagwoord - Repeat new passphrase Herhaal nuwe wagwoord - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Tik die nuwe wagwoord vir die beursie in.<br/>Gebruik asseblief 'n wagwoord van <b>ten minste 10 ewekansige karakters</b>, of <b>agt (8) of meer woorde.</b> - Encrypt wallet Enkripteer beursie - This operation needs your wallet passphrase to unlock the wallet. Hierdie operasie benodig 'n wagwoord om die beursie oop te sluit. - Unlock wallet Sluit beursie oop - This operation needs your wallet passphrase to decrypt the wallet. Hierdie operasie benodig 'n wagwoord om die beursie oop te sluit. - Decrypt wallet Sluit beursie oop - Change passphrase Verander wagwoord - Enter the old and new passphrase to the wallet. Tik asseblief die ou en nuwe wagwoord vir die beursie in. - Confirm wallet encryption Bevestig beursie enkripsie. - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted Die beursie is nou bewaak - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed Die beursie kon nie bewaak word nie - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Beursie bewaaking het misluk as gevolg van 'n interne fout. Die beursie is nie bewaak nie! - - The supplied passphrases do not match. Die wagwoord stem nie ooreen nie - Wallet unlock failed Beursie oopsluiting het misluk - - - The passphrase entered for the wallet decryption was incorrect. Die wagwoord wat ingetik was om die beursie oop te sluit, was verkeerd. - Wallet decryption failed Beursie dekripsie het misluk - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... Sinchroniseer met die netwerk ... - &Overview &Oorsig - Node - Show general overview of wallet Wys algemene oorsig van die beursie - &Transactions &Transaksies - Browse transaction history Besoek transaksie geskiedenis - E&xit S&luit af - Quit application Sluit af - - Show information about Dogecoin Core + Show information about Dogecoin Wys inligting oor Dogecoin - - About &Qt - Show information about Qt Wys inligting oor Qt - &Options... &Opsies - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin Dogecoin - Wallet Beursie - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &Lêer - &Settings &Instellings - &Help &Hulp - Tabs toolbar Blad nutsbalk - - [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Dogecoin klient - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind %1 agter - Last received block was generated %1 ago. Ontvangs van laaste blok is %1 terug. - Transactions after this will not yet be visible. - Error Fout - Warning - Information Informasie - Up to date - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: Bedrag: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Bedrag - Address Adres - Date Datum - Confirmations - Confirmed - Priority - Copy address Maak kopie van adres - Copy label - - Copy amount Kopieer bedrag - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (geen etiket) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address - New receiving address Nuwe ontvangende adres - New sending address Nuwe stuurende adres - Edit receiving address Wysig ontvangende adres - Edit sending address Wysig stuurende adres - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. Kon nie die beursie oopsluit nie. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: Gebruik: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options Opsies - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form Vorm - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet Beursie - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> <b>Onlangse transaksies</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,41 +1324,45 @@ Address: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Die adres waarheen die betaling gestuur moet word (b.v. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1674,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1867,155 +1517,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + + + + Copy message + + + + Copy amount + Kopieer bedrag + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address Adres - Amount Bedrag - Label Etiket - Message Boodskap - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2023,285 +1655,225 @@ Address: %4 RecentRequestsTableModel - Date Datum - Label Etiket - Message Boodskap - Amount Bedrag - (no label) (geen etiket) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins Stuur Munstukke - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: Bedrag: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Stuur aan vele ontvangers op eens - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: Balans: - Confirm the send action - S&end S&tuur - Confirm send coins - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Die adres waarheen die betaling gestuur moet word (b.v. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount Kopieer bedrag - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (geen etiket) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2309,116 +1881,85 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Die adres waarheen die betaling gestuur moet word (b.v. 1H7wyVL5HCNoVFyyBJSDojwyxcCChU7TPA) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard - Alt+P - - - Remove this entry - Message: Boodskap: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Die adres waarheen die betaling gestuur moet word (b.v. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2426,192 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message &Teken boodskap - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard - Alt+P - Enter the message you want to sign here - Signature Handtekening - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message Teken &Boodskap - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Die adres waarheen die betaling gestuur moet word (b.v. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2619,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2637,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2645,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date Datum - Source - Generated - - From Van - - - To Na - - own address eie adres - label etiket - - - - - Credit Krediet - matures in %n more block(s) - not accepted nie aanvaar nie - - - - Debit Debiet - Transaction fee Transaksie fooi - Net amount Netto bedrag - - Message Boodskap - Comment - Transaction ID Transaksie ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount Bedrag - true waar - false onwaar - , has not been successfully broadcast yet - Open for %n more block(s) - unknown onbekend @@ -2825,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2838,118 +2282,102 @@ Address: %4 TransactionTableModel - Date Datum - Type Tipe - Address Adres - Amount Bedrag - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Ontvang met - Received from Ontvang van - Sent to Gestuur na - Payment to yourself Betalings Aan/na jouself - Mined Gemyn - (n/a) (n.v.t) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. Datum en tyd wat die transaksie ontvang was. - Type of transaction. Tipe transaksie. - Destination address of transaction. - Amount removed from or added to balance. @@ -2957,178 +2385,142 @@ Address: %4 TransactionView - - All Alles - Today Vandag - This week Hierdie week - This month Hierdie maand - Last month Verlede maand - This year Hierdie jaar - Range... Reeks... - Received with Ontvang met - Sent to Gestuur na - To yourself Aan/na jouself - Mined Gemyn - Other Ander - Enter address or label to search - Min amount Min bedrag - Copy address Maak kopie van adres - Copy label - Copy amount Kopieer bedrag - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - Confirmed - Date Datum - Type Tipe - Label Etiket - Address Adres - Amount Bedrag - ID ID - Range: Reeks: - to aan @@ -3136,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3144,7 +2535,6 @@ Address: %4 WalletModel - Send Coins Stuur Munstukke @@ -3152,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: Gebruik: - List commands - Get help for a command - Options: Opsies: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) - + Listen for connections on <port> (default: 8333 or testnet: 18333) + Luister vir konneksies op <port> (standaard: 8333 of testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Luister vir konneksies op <port> (standaard: 22556 of testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Onderhou op die meeste <n> konneksies na eweknieë (standaard: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network Gebruik die toets netwerk - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3310,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - Fout: Hardeskyf spasie is baie laag! - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - Informasie - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - Sisteem fout: - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - Hierdie help boodskap - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - Laai adresse... - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - Ongeldige bedrag - - - - Insufficient funds - Onvoldoende fondse - - - - Loading block index... - Laai blok indeks... - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + Fout: Hardeskyf spasie is baie laag! + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + Informasie + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + Sisteem fout: + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + Hierdie help boodskap + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + Laai adresse... + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + Ongeldige bedrag + + + Insufficient funds + Onvoldoende fondse + + + Loading block index... + Laai blok indeks... + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... Laai beursie... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading Klaar gelaai - To use the %s option - Error Fout - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_ar.ts b/src/qt/locale/bitcoin_ar.ts index fe095eb71..9763f862f 100644 --- a/src/qt/locale/bitcoin_ar.ts +++ b/src/qt/locale/bitcoin_ar.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,141 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers - - - (%1-bit) + (%1-bit) AddressBookPage - Double-click to edit address or label أنقر على الماوس مرتين لتعديل العنوان - Create a new address انشأ عنوان جديد - &New - Copy the currently selected address to the system clipboard قم بنسخ القوانين المختارة لحافظة النظام - &Copy - C&lose - &Copy Address انسخ العنوان - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete &أمسح - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit تعديل - Export Address List - Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -164,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label وصف - Address عنوان - (no label) (لا وصف) @@ -182,142 +148,108 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase ادخل كلمة المرور - New passphrase عبارة مرور جديدة - Repeat new passphrase ادخل الجملة السرية مرة أخرى - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. أدخل عبارة مرور جديدة إلى المحفظة. الرجاء استخدام عبارة مرور تتكون من10 حروف عشوائية على الاقل, أو أكثر من 7 كلمات - Encrypt wallet تشفير المحفظة - This operation needs your wallet passphrase to unlock the wallet. هذه العملية تحتاج عبارة المرور محفظتك لفتحها - Unlock wallet إفتح المحفظة - This operation needs your wallet passphrase to decrypt the wallet. هذه العملية تحتاج عبارة المرور محفظتك فك تشفيرها - Decrypt wallet فك تشفير المحفظة - Change passphrase تغيير عبارة المرور - Enter the old and new passphrase to the wallet. أدخل عبارة المرور القديمة والجديدة إلى المحفظة. - Confirm wallet encryption تأكيد التشفير المحفظة - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted محفظة مشفرة - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. بتكوين سوف يغلق الآن لإنهاء عملية التشفير. تذكر أن التشفير لا يستطيع حماية محفظتك تمامًا من السرقة من خلال البرمجيات الخبيثة التي تصيب جهازك - - - - Wallet encryption failed فشل تشفير المحفظة - Wallet encryption failed due to an internal error. Your wallet was not encrypted. شل تشفير المحفظة بسبب خطأ داخلي. لم يتم تشفير محفظتك. - - The supplied passphrases do not match. عبارتي المرور ليستا متطابقتان - Wallet unlock failed فشل فتح المحفظة - - - The passphrase entered for the wallet decryption was incorrect. عبارة المرور التي تم إدخالها لفك شفرة المحفظة غير صحيحة. - Wallet decryption failed فشل فك التشفير المحفظة - Wallet passphrase was successfully changed. @@ -325,352 +257,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... التوقيع و الرسائل - Synchronizing with network... مزامنة مع شبكة ... - &Overview نظرة عامة - Node - Show general overview of wallet إظهار نظرة عامة على المحفظة - &Transactions المعاملات - Browse transaction history تصفح التاريخ المعاملات - E&xit خروج - Quit application الخروج من التطبيق - - Show information about Dogecoin Core + Show information about Dogecoin إظهار المزيد معلومات حول Dogecoin - - About &Qt عن - Show information about Qt اظهر المعلومات - &Options... خيارات ... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address ارسل عملات الى عنوان بيتكوين - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location احفظ نسخة احتياطية للمحفظة في مكان آخر - Change the passphrase used for wallet encryption تغيير عبارة المرور المستخدمة لتشفير المحفظة - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin بت كوين - Wallet محفظة - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File ملف - &Settings الاعدادات - &Help مساعدة - Tabs toolbar شريط أدوات علامات التبويب - - [testnet] [testnet] - Dogecoin Core - Request payments (generates QR codes and dogecoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - Open a dogecoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client عميل بتكوين - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error خطأ - Warning - Information - Up to date محين - Catching up... اللحاق بالركب ... - Sent transaction المعاملات المرسلة - Incoming transaction المعاملات واردة - Date: %1 Amount: %2 Type: %3 @@ -679,25 +545,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> المحفظة مشفرة و مفتوحة حاليا - Wallet is <b>encrypted</b> and currently <b>locked</b> المحفظة مشفرة و مقفلة حاليا - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -705,291 +567,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount المبلغ - Address عنوان - Date التاريخ - Confirmations - Confirmed تأكيد - Priority - Copy address انسخ عنوان - Copy label انسخ التسمية - - Copy amount نسخ الكمية - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes نعم - no لا - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (لا وصف) - change from %1 (%2) - (change) @@ -997,68 +798,55 @@ Address: %4 EditAddressDialog - Edit Address عدل العنوان - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address العنوان - New receiving address عنوان تلقي جديد - New sending address عنوان إرسال جديد - Edit receiving address تعديل عنوان التلقي - Edit sending address تعديل عنوان الارسال - The entered address "%1" is already in the address book. هدا العنوان "%1" موجود مسبقا في دفتر العناوين - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. يمكن فتح المحفظة. - New key generation failed. فشل توليد مفتاح جديد. @@ -1066,27 +854,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1094,52 +877,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version النسخة - Usage: المستخدم - command-line options - UI options خيارات UI - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1147,57 +924,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin بت كوين - Error: Specified data directory "%1" can not be created. - Error خطأ - GB of free space available - (of %1GB needed) @@ -1205,27 +971,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1233,253 +994,206 @@ Address: %4 OptionsDialog - Options خيارات ... - &Main الرئيسي - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - &Spend unconfirmed change (experts only) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + W&allet - + Expert + + + + Enable coin &control features + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window نافذه - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list عرض العناوين في قائمة الصفقة - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK تم - &Cancel الغاء - default الافتراضي - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. عنوان الوكيل توفيره غير صالح. @@ -1487,69 +1201,54 @@ Address: %4 OverviewPage - Form نمودج - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - Wallet محفظة - Available: متوفر - Your current spendable balance - Pending: - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: غير ناضجة - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> اخر المعملات - - out of sync خارج المزامنه @@ -1557,93 +1256,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - Cannot start dogecoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1651,23 +1327,26 @@ Address: %4 QObject - - Dogecoin بت كوين - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) إدخال عنوانDogecoin (مثال :DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1675,22 +1354,18 @@ Address: %4 QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1698,192 +1373,146 @@ Address: %4 RPCConsole - Client name اسم العميل - - - - - - - - - - - N/A غير معروف - Client version نسخه العميل - &Information المعلومات - Debug window - General - Using OpenSSL version - Startup time - Network الشبكه - Name الاسم - Number of connections عدد الاتصالات - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open الفتح - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date وقت البناء - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1891,105 +1520,82 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - - An optional label to associate with the new receiving address. - Use this form to request payments. All fields are <b>optional</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - Requested payments history - &Request payment - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove - Copy label انسخ التسمية - Copy message انسخ الرسالة - Copy amount نسخ الكمية @@ -1997,67 +1603,54 @@ Address: %4 ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address عنوان - Amount المبلغ - Label وصف - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2065,37 +1658,30 @@ Address: %4 RecentRequestsTableModel - Date التاريخ - Label وصف - Message - Amount المبلغ - (no label) (لا وصف) - (no message) - (no amount) @@ -2103,247 +1689,194 @@ Address: %4 SendCoinsDialog - - - Send Coins إرسال Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once إرسال إلى عدة مستلمين في وقت واحد - Add &Recipient - Clear all fields of the form. - Clear &All مسح الكل - Balance: الرصيد: - Confirm the send action تأكيد الإرسال - S&end - Confirm send coins تأكيد الإرسال Coins - - - - %1 to %2 - Copy quantity - Copy amount نسخ الكمية - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. المبلغ المدفوع يجب ان يكون اكبر من 0 - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (لا وصف) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2351,98 +1884,74 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: ادفع الى - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book إدخال تسمية لهذا العنوان لإضافته إلى دفتر العناوين الخاص بك - &Label: - Choose previously used address - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard انسخ العنوان من لوحة المفاتيح - Alt+P Alt+P - - - Remove this entry - Message: الرسائل - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. - - Pay To: - - Memo: @@ -2450,12 +1959,10 @@ Address: %4 ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2463,186 +1970,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard انسخ العنوان من لوحة المفاتيح - Alt+P Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All مسح الكل - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) إدخال عنوانDogecoin (مثال :DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - The entered address is invalid. العنوان المدخل غير صالح - - - - Please check the address and try again. الرجاء التأكد من العنوان والمحاولة مرة اخرى - - The entered address does not refer to a key. العنوان المدخل لا يشير الى مفتاح - Wallet unlock was cancelled. - Private key for the entered address is not available. المفتاح الخاص للعنوان المدخل غير موجود. - Message signing failed. فشل توقيع الرسالة. - Message signed. الرسالة موقعة. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. فشلت عملية التأكد من الرسالة. - Message verified. تم تأكيد الرسالة. @@ -2650,17 +2113,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] [testnet] @@ -2668,7 +2128,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2676,184 +2135,138 @@ Address: %4 TransactionDesc - Open until %1 مفتوح حتى 1٪ - conflicted - %1/offline 1% غير متواجد - %1/unconfirmed غير مؤكدة/1% - %1 confirmations تأكيد %1 - Status الحالة. - , broadcast through %n node(s) - Date التاريخ - Source المصدر - Generated تم اصداره. - - From من - - - To الى - - own address عنوانه - label - - - - - Credit - matures in %n more block(s) - not accepted غير مقبولة - - - - Debit دين - Transaction fee رسوم التحويل - Net amount - - Message - Comment تعليق - Transaction ID رقم المعاملة - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction معاملة - Inputs - Amount المبلغ - true صحيح - false خاطئ - , has not been successfully broadcast yet لم يتم حتى الآن البث بنجاح - Open for %n more block(s) - unknown غير معروف @@ -2861,12 +2274,10 @@ Address: %4 TransactionDescDialog - Transaction details تفاصيل المعاملة - This pane shows a detailed description of the transaction يبين هذا الجزء وصفا مفصلا لهده المعاملة @@ -2874,127 +2285,102 @@ Address: %4 TransactionTableModel - Date التاريخ - Type النوع - Address عنوان - Amount المبلغ - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 مفتوح حتى 1٪ - Confirmed (%1 confirmations) تأكيد الإرسال Coins - This block was not received by any other nodes and will probably not be accepted! لم يتم تلقى هذه الكتلة (Block) من قبل أي العقد الأخرى وربما لن تكون مقبولة! - Generated but not accepted ولدت ولكن لم تقبل - Offline غير متصل - Unconfirmed - Confirming (%1 of %2 recommended confirmations) - Conflicted - Received with استقبل مع - Received from استقبل من - Sent to أرسل إلى - Payment to yourself دفع لنفسك - Mined Mined - (n/a) غير متوفر - Transaction status. Hover over this field to show number of confirmations. حالة المعاملة. تحوم حول هذا الحقل لعرض عدد التأكيدات. - Date and time that the transaction was received. التاريخ والوقت الذي تم فيه تلقي المعاملة. - Type of transaction. نوع المعاملات - Destination address of transaction. عنوان وجهة المعاملة - Amount removed from or added to balance. المبلغ الذي أزيل أو أضيف الى الرصيد @@ -3002,178 +2388,142 @@ Address: %4 TransactionView - - All الكل - Today اليوم - This week هدا الاسبوع - This month هدا الشهر - Last month الشهر الماضي - This year هدا العام - Range... v - Received with استقبل مع - Sent to أرسل إلى - To yourself إليك - Mined Mined - Other اخرى - Enter address or label to search ادخل عنوان أووصف للبحث - Min amount - Copy address انسخ عنوان - Copy label انسخ التسمية - Copy amount نسخ الكمية - Copy transaction ID - Edit label عدل الوصف - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful نجح الاستخراج - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - Confirmed تأكيد - Date التاريخ - Type النوع - Label وصف - Address عنوان - Amount المبلغ - ID العنوان - Range: - to الى @@ -3181,7 +2531,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3189,7 +2538,6 @@ Address: %4 WalletModel - Send Coins إرسال Coins @@ -3197,150 +2545,121 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: المستخدم - List commands اعرض الأوامر - Get help for a command مساعدة في كتابة الاوامر - Options: خيارات: - Specify configuration file (default: dogecoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory حدد موقع مجلد المعلومات او data directory - - Set database cache size in megabytes (default: 25) - ضع حجم كاش قاعدة البيانات بالميجابايت (الافتراضي: 25) - - - - Listen for connections on <port> (default: 22556 or testnet: 44556) + Listen for connections on <port> (default: 8333 or testnet: 18333) - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network استخدم التحقق من الشبكه - Accept connections from outside (default: 1 if no -proxy or -connect) قبول الاتصالات من خارج - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3355,722 +2674,686 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Clear list of wallet transactions (diagnostic tool; implies -rescan) - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - Error: system error: - - - - - Failed to listen on any port. Use -listen=0 if you want this. - فشل في الاستماع على أي منفذ. استخدام الاستماع = 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Spend unconfirmed change when sending transactions (default: 1) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - Zapping all transactions from wallet... - - - - - version - النسخة - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - رسالة المساعدة هذه - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - تحميل العنوان - - - - Error loading wallet.dat: Wallet corrupted - خطأ عند تنزيل wallet.dat: المحفظة تالفة - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - خطأ عند تنزيل wallet.dat: المحفظة تتطلب نسخة أحدث من بتكوين - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - المحفظة تحتاج لإعادة إنشاء: أعد تشغيل بتكوين للإتمام - - - - Error loading wallet.dat - خطأ عند تنزيل wallet.dat - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + Error: system error: + + + + Failed to listen on any port. Use -listen=0 if you want this. + فشل في الاستماع على أي منفذ. استخدام الاستماع = 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use dogecoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + النسخة + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + رسالة المساعدة هذه + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + تحميل العنوان + + + Error loading wallet.dat: Wallet corrupted + خطأ عند تنزيل wallet.dat: المحفظة تالفة + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + خطأ عند تنزيل wallet.dat: المحفظة تتطلب نسخة أحدث من بتكوين + + + Wallet needed to be rewritten: restart Dogecoin to complete + المحفظة تحتاج لإعادة إنشاء: أعد تشغيل بتكوين للإتمام + + + Error loading wallet.dat + خطأ عند تنزيل wallet.dat + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... تحميل المحفظه - Cannot downgrade wallet - Cannot write default address - Rescanning... إعادة مسح - Done loading انتهاء التحميل - To use the %s option - Error خطأ - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. diff --git a/src/qt/locale/bitcoin_be_BY.ts b/src/qt/locale/bitcoin_be_BY.ts index 0f85cac6e..99c2e01ae 100644 --- a/src/qt/locale/bitcoin_be_BY.ts +++ b/src/qt/locale/bitcoin_be_BY.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Двайны клік для рэдагавання адрасу ці пазнакі - Create a new address Стварыць новы адрас - &New - Copy the currently selected address to the system clipboard Капіяваць пазначаны адрас у сістэмны буфер абмену - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export Экспарт - &Delete Выдаліць - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) Коскамі падзелены файл (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Пазнака - Address Адрас - (no label) непазначаны @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase Увядзіце кодавую фразу - New passphrase Новая кодавая фраза - Repeat new passphrase Паўтарыце новую кодавую фразу - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Увядзіце новую кодавую фразу для гаманца. <br/>Калі ласка, ўжывайце пароль <b>не меньша за 10 адвольных сімвалаў</b>, ці <b>болей васьмі слоў</b>. - Encrypt wallet Зашыфраваць гаманец. - This operation needs your wallet passphrase to unlock the wallet. Гэтая аперацыя патрабуе кодавую фразу, каб рзблакаваць гаманец. - Unlock wallet Разблакаваць гаманец - This operation needs your wallet passphrase to decrypt the wallet. Гэтая аперацыя патрабуе пароль каб расшыфраваць гаманец. - Decrypt wallet Рачшыфраваць гаманец - Change passphrase Змяніць пароль - Enter the old and new passphrase to the wallet. Увядзіце стары і новы пароль да гаманца. - Confirm wallet encryption Пацвердзіце шыфраванне гаманца - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted Гаманец зашыфраваны - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Dogecoin зачыняецца дзеля завяршэння працэсса шыфравання. Памятайце, што шыфраванне гаманца цалкам абараняе вашыя сродкі ад скрадання шкоднымі праграмамі якія могуць пранікнуць у ваш камп'ютар. - - - - Wallet encryption failed Шыфраванне гаманца няўдалае - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Шыфраванне гаманца не адбылося з-за ўнутранай памылкі. Гаманец незашыфраваны. - - The supplied passphrases do not match. Уведдзеныя паролі не супадаюць - Wallet unlock failed Разблакаванне гаманца няўдалае - - - The passphrase entered for the wallet decryption was incorrect. Уведзена пароль дзеля расшыфравання гаманца памылковы - Wallet decryption failed Расшыфраванне гаманца няўдалае - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... Сінхранізацыя з сецівам... - &Overview Агляд - Node - Show general overview of wallet Паказвае агульныя звесткі аб гаманцы - &Transactions Транзакцыі - Browse transaction history Праглядзець гісторыю транзакцый - E&xit Выйсці - Quit application Выйсці з праграмы - - Show information about Dogecoin Core + Show information about Dogecoin Паказаць звесткі пра Біткойн - - About &Qt Аб Qt - Show information about Qt Паказаць інфармацыю аб Qt - &Options... Опцыі... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location Зрабіце копію гаманца ў іншае месца - Change the passphrase used for wallet encryption Змяніць пароль шыфравання гаманца - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send Даслаць - &Receive Атрымаць - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File Ф&айл - &Settings Наладкі - &Help Дапамога - Tabs toolbar - - [testnet] [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Dogecoin кліент - %n active connection(s) to Dogecoin network %n актыўнае злучэнне з Dogecoin-сецівам%n актыўных злучэнняў з Dogecoin-сецівам - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error Памылка - Warning - Information - Up to date Сінхранізавана - Catching up... Наганяем... - Sent transaction Дасланыя транзакцыі - Incoming transaction Прынятыя транзакцыі - Date: %1 Amount: %2 Type: %3 @@ -675,25 +547,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Гаманец <b>зашыфраваны</b> і зараз <b>разблакаваны</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Гаманец <b>зашыфраваны</b> і зараз <b>заблакаваны</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -701,291 +569,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Колькасць - Address Адрас - Date Дата - Confirmations - Confirmed Пацверджана - Priority - Copy address Капіяваць адрас - Copy label Капіяваць пазнаку - - Copy amount Капіяваць колькасць - Copy transaction ID Капіяваць ID транзакцыі - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) непазначаны - change from %1 (%2) - (change) @@ -993,67 +800,54 @@ Address: %4 EditAddressDialog - Edit Address Рэдагаваць Адрас - &Label Пазнака - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address Адрас - New receiving address Новы адрас для атрымання - New sending address Новы адрас для дасылання - Edit receiving address Рэдагаваць адрас прымання - Edit sending address Рэдагаваць адрас дасылання - The entered address "%1" is already in the address book. Уведзены адрас "%1" ужо ў кніге адрасоў - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. Немагчыма разблакаваць гаманец - New key generation failed. Генерацыя новага ключа няўдалая @@ -1061,27 +855,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1089,52 +878,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: Ужыванне: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1142,57 +925,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error Памылка - GB of free space available - (of %1GB needed) @@ -1200,27 +972,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1228,243 +995,206 @@ Address: %4 OptionsDialog - Options Опцыі - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - Пазначыць памер кэшу базы звестак у мегабайтах (тыпова: 25) - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1472,69 +1202,54 @@ Address: %4 OverviewPage - Form Форма - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - Непацверджана: - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> <b>Нядаўнія транзаццыі</b> - - out of sync @@ -1542,93 +1257,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1636,41 +1328,45 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Увядзіце Біткойн-адрас (ўзор DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1678,192 +1374,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1871,155 +1521,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: Пазнака: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + Капіяваць пазнаку + + + Copy message + + + + Copy amount + Капіяваць колькасць + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address Адрас - Amount Колькасць - Label Пазнака - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2027,285 +1659,225 @@ Address: %4 RecentRequestsTableModel - Date Дата - Label Пазнака - Message - Amount Колькасць - (no label) непазначаны - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins Даслаць Манеты - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Даслаць адразу некалькім атрымальнікам - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: Баланс: - Confirm the send action Пацвердзіць дасыланне - S&end - Confirm send coins Пацвердзіць дасыланне манет - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Увядзіце Біткойн-адрас (ўзор DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount Капіяваць колькасць - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. Велічыня плацяжу мае быць больш за 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) непазначаны - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2313,116 +1885,85 @@ Address: %4 SendCoinsEntry - - - A&mount: Колькасць: - Pay &To: Заплаціць да: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Увядзіце пазнаку гэтаму адрасу, каб дадаць яго ў адрасную кнігу - &Label: Пазнака: - Choose previously used address - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard Уставіць адрас з буферу абмена - Alt+P Alt+P - - - Remove this entry - Message: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Увядзіце Біткойн-адрас (ўзор DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2430,192 +1971,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard Уставіць адрас з буферу абмена - Alt+P Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Увядзіце Біткойн-адрас (ўзор DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2623,17 +2114,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] [testnet] @@ -2641,7 +2129,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2649,179 +2136,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed %1/непацверджана - %1 confirmations %1 пацверджанняў - Status - , broadcast through %n node(s) - Date Дата - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount Колькасць - true - false - , has not been successfully broadcast yet , пакуль не было паспяхова транслявана - Open for %n more block(s) - unknown невядома @@ -2829,12 +2275,10 @@ Address: %4 TransactionDescDialog - Transaction details Дэталі транзакцыі - This pane shows a detailed description of the transaction Гэтая панэль паказвае дэтальнае апісанне транзакцыі @@ -2842,118 +2286,102 @@ Address: %4 TransactionTableModel - Date Дата - Type Тып - Address Адрас - Amount Колькасць - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - Offline (%1 пацверджанняў) - - - - Unconfirmed (%1 of %2 confirmations) - Непацверджана (%1 з %2 пацверджанняў) - - - - Confirmed (%1 confirmations) Пацверджана (%1 пацверджанняў) - This block was not received by any other nodes and will probably not be accepted! Гэты блок не быў прыняты іншымі вузламі і магчыма не будзе ўхвалены! - Generated but not accepted Згенеравана, але не прынята - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Прынята з - Received from Прынята ад - Sent to Даслана да - Payment to yourself Плацёж самому сабе - Mined Здабыта - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. Статус транзакцыі. Навядзіце курсар на гэтае поле, каб паказаць колькасць пацверджанняў. - Date and time that the transaction was received. Дата і час, калі транзакцыя была прынята. - Type of transaction. Тып транзакцыі - Destination address of transaction. Адрас прызначэння транзакцыі. - Amount removed from or added to balance. Колькасць аднятая ці даданая да балансу. @@ -2961,178 +2389,142 @@ Address: %4 TransactionView - - All Усё - Today Сёння - This week Гэты тыдзень - This month Гэты месяц - Last month Мінулы месяц - This year Гэты год - Range... Прамежак... - Received with Прынята з - Sent to Даслана да - To yourself Да сябе - Mined Здабыта - Other Іншыя - Enter address or label to search Увядзіце адрас ці пазнаку для пошуку - Min amount Мін. колькасць - Copy address Капіяваць адрас - Copy label Капіяваць пазнаку - Copy amount Капіяваць колькасць - Copy transaction ID Капіяваць ID транзакцыі - Edit label Рэдагаваць пазнаку - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Коскамі падзелены файл (*.csv) - Confirmed Пацверджана - Date Дата - Type Тып - Label Пазнака - Address Адрас - Amount Колькасць - ID ID - Range: Прамежак: - to да @@ -3140,7 +2532,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3148,7 +2539,6 @@ Address: %4 WalletModel - Send Coins Даслаць Манеты @@ -3156,154 +2546,125 @@ Address: %4 WalletView - &Export Экспарт - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: Ужыванне: - List commands Спіс каманд - Get help for a command Атрымаць дапамогу для каманды - Options: Опцыі: - - Specify configuration file (default: dogecoin.conf) - Вызначыць канфігурацыйны файл (зыходна: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Вызначыць канфігурацыйны файл (зыходна: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Вызначыць pid-файл (зыходна: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Вызначыць pid-файл (зыходна: bitcoind.pid) - Specify data directory Вызначыць каталог даных - - Set database cache size in megabytes (default: 25) - Пазначыць памер кэшу базы звестак у мегабайтах (тыпова: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Слухаць злучэнні на <port> (зыходна: 8333 ці testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Слухаць злучэнні на <port> (зыходна: 22556 ці testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Трымаць не больш за <n> злучэнняў на асобу (зыходна: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) Парог для адлучэння злаўмысных карыстальнікаў (тыпова: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Колькасць секунд для ўстрымання асобаў да перадалучэння (заходна: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands Прымаць камандны радок і JSON-RPC каманды - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Запусціць у фоне як дэман і прымаць каманды - Use the test network Ужываць тэставае сеціва - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3314,711 +2675,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - Слаць trace/debug звесткі ў кансоль замест файла debug.log - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - Імя карыстальника для JSON-RPC злучэнняў - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - Пароль для JSON-RPC злучэнняў - - - - Allow JSON-RPC connections from specified IP address - Дазволіць JSON-RPC злучэнні з пэўнага IP адрасу - - - - Send commands to node running on <ip> (default: 127.0.0.1) - Адпраўляць каманды вузлу на <ip> (зыходна: 127.0.0.1) - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - Выканаць каманду калі лепшы блок зменіцца (%s замяняецца на хэш блока) - - - - Upgrade wallet to latest format - Абнавіць гаманец на новы фармат - - - - Set key pool size to <n> (default: 100) - Устанавіць памер фонда ключоў у <n> (тыпова: 100) - - - - Rescan the block chain for missing wallet transactions - Перасканаваць ланцуг блокаў дзеля пошуку адсутных транзакцый - - - - Use OpenSSL (https) for JSON-RPC connections - Ужываць OpenSSL (https) для JSON-RPC злучэнняў - - - - Server certificate file (default: server.cert) - Файл-сертыфікат сервера (зыходна: server.cert) - - - - Server private key (default: server.pem) - Прыватны ключ сервера (зыходна: server.pem) - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - Загружаем адрасы... - - - - Error loading wallet.dat: Wallet corrupted - Памылка загрузкі wallet.dat: гаманец пашкоджаны - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - Памылка загрузкі wallet.dat: гаманец патрабуе новую версію Dogecoin - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - Гаманец мае быць перазапісаны: патрэбны перазапуск Dogecoin для выканання - - - - Error loading wallet.dat - Памылка загрузкі wallet.dat - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - Памылковая колькасць - - - - Insufficient funds - Недастаткова сродкаў - - - - Loading block index... - Загружаем індэкс блокаў... - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + Слаць trace/debug звесткі ў кансоль замест файла debug.log + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + Імя карыстальника для JSON-RPC злучэнняў + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + Пароль для JSON-RPC злучэнняў + + + Allow JSON-RPC connections from specified IP address + Дазволіць JSON-RPC злучэнні з пэўнага IP адрасу + + + Send commands to node running on <ip> (default: 127.0.0.1) + Адпраўляць каманды вузлу на <ip> (зыходна: 127.0.0.1) + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Выканаць каманду калі лепшы блок зменіцца (%s замяняецца на хэш блока) + + + Upgrade wallet to latest format + Абнавіць гаманец на новы фармат + + + Set key pool size to <n> (default: 100) + Устанавіць памер фонда ключоў у <n> (тыпова: 100) + + + Rescan the block chain for missing wallet transactions + Перасканаваць ланцуг блокаў дзеля пошуку адсутных транзакцый + + + Use OpenSSL (https) for JSON-RPC connections + Ужываць OpenSSL (https) для JSON-RPC злучэнняў + + + Server certificate file (default: server.cert) + Файл-сертыфікат сервера (зыходна: server.cert) + + + Server private key (default: server.pem) + Прыватны ключ сервера (зыходна: server.pem) + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + Загружаем адрасы... + + + Error loading wallet.dat: Wallet corrupted + Памылка загрузкі wallet.dat: гаманец пашкоджаны + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + Памылка загрузкі wallet.dat: гаманец патрабуе новую версію Dogecoin + + + Wallet needed to be rewritten: restart Dogecoin to complete + Гаманец мае быць перазапісаны: патрэбны перазапуск Dogecoin для выканання + + + Error loading wallet.dat + Памылка загрузкі wallet.dat + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + Памылковая колькасць + + + Insufficient funds + Недастаткова сродкаў + + + Loading block index... + Загружаем індэкс блокаў... + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... Загружаем гаманец... - Cannot downgrade wallet - Cannot write default address - Rescanning... Перасканаванне... - Done loading Загрузка выканана - To use the %s option - Error Памылка - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_bg.ts b/src/qt/locale/bitcoin_bg.ts index 2413ee7de..07f2a67d7 100644 --- a/src/qt/locale/bitcoin_bg.ts +++ b/src/qt/locale/bitcoin_bg.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -27,135 +24,113 @@ This product includes software developed by the OpenSSL Project for use in the O Използван е софтуер, разработен от OpenSSL Project за употреба в OpenSSL Toolkit (http://www.openssl.org/), криптографски софтуер разработен от Eric Young (eay@cryptsoft.com) и UPnP софтуер разработен от Thomas Bernard. - Copyright + Авторски права + + + The Dogecoin Core developers - - The Dogecoin Core developers + (%1-bit) AddressBookPage - Double-click to edit address or label Двоен клик за редакция на адрес или име - Create a new address Създаване на нов адрес - &New - Copy the currently selected address to the system clipboard - Копирай избрания адрес + Копиране на избрания адрес - &Copy - C&lose - &Copy Address &Копирай - Delete the currently selected address from the list Изтрий избрания адрес от списъка - Export the data in the current tab to a file Запишете данните от текущия раздел във файл - &Export - &Delete - &Изтрий + &Изтриване - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - + Адреси за изпращане - Much receiving addresses - + Адреси за получаване - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label Копирай &име - &Edit &Редактирай - Export Address List - + Изнасяне на списъка с адреси - Comma separated file (*.csv) CSV файл (*.csv) - Exporting Failed - + Грешка при изнасянето - There was an error trying to save the address list to %1. @@ -163,17 +138,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Име - Address Адрес - (no label) (без име) @@ -181,140 +153,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase Въведи парола - New passphrase Нова парола - Repeat new passphrase Още веднъж - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Въведете нова парола за портфейла.<br/>Моля използвайте <b>поне 10 случайни символа</b> или <b>8 или повече думи</b>. - Encrypt wallet Криптиране на портфейла - This operation needs your wallet passphrase to unlock the wallet. Тази операция изисква Вашата парола за отключване на портфейла. - Unlock wallet Отключване на портфейла - This operation needs your wallet passphrase to decrypt the wallet. Тази операция изисква Вашата парола за декриптиране на портфейла. - Decrypt wallet Декриптиране на портфейла - Change passphrase Смяна на паролата - Enter the old and new passphrase to the wallet. Въведете текущата и новата парола за портфейла. - Confirm wallet encryption Потвърждаване на криптирането - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - + Наистина ли искате да шифрирате портфейла? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - + Внимание: Caps Lock (главни букви) е включен. - - Wallet encrypted Портфейлът е криптиран - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Биткоин ще се затоври сега за да завърши процеса на криптиране. Запомнете, че криптирането на вашия портефейл не може напълно да предпази вашите Бит-монети от кражба чрез зловреден софтуер, инфектирал вашия компютър - - - - Wallet encryption failed Криптирането беше неуспешно - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Криптирането на портфейла беше неуспешно поради неизвестен проблем. Портфейлът не е криптиран. - - The supplied passphrases do not match. Паролите не съвпадат - Wallet unlock failed Отключването беше неуспешно - - - The passphrase entered for the wallet decryption was incorrect. Паролата въведена за декриптиране на портфейла е грешна. - Wallet decryption failed Декриптирането беше неуспешно - Wallet passphrase was successfully changed. Паролата на портфейла беше променена успешно. @@ -322,352 +260,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... Подписване на &съобщение... - Synchronizing with network... Синхронизиране с мрежата... - &Overview &Баланс - Node - Show general overview of wallet Обобщена информация за портфейла - &Transactions - &Транзакции + &Трансакции - Browse transaction history - История на транзакциите + История на трансакциите - E&xit Из&ход - Quit application Изход от приложението - - Show information about Dogecoin Core + Show information about Dogecoin Информация за Биткоин - - About &Qt За &Qt - Show information about Qt Покажи информация за Qt - &Options... &Опции... - &Encrypt Wallet... &Криптиране на портфейла... - &Backup Wallet... &Запазване на портфейла... - &Change Passphrase... &Смяна на паролата... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address Изпращане към Биткоин адрес - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption Променя паролата за портфейла - &Debug window - Open debugging and diagnostic console - &Verify message... &Проверка на съобщение... - Dogecoin Биткоин - Wallet Портфейл - &Send - &Receive - - &Show / Hide - Show or hide the main Window - + Показване и скриване на основния прозорец - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &Файл - &Settings &Настройки - &Help &Помощ - Tabs toolbar Раздели - - [testnet] [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network %n връзка към Биткоин мрежата%n връзки към Биткоин мрежата - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %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 - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error Грешка - Warning - + Предупреждение - Information - + Данни - Up to date Синхронизиран - Catching up... Зарежда блокове... - Sent transaction - Изходяща транзакция + Изходяща трансакция - Incoming transaction - Входяща транзакция + Входяща трансакция - Date: %1 Amount: %2 Type: %3 @@ -676,25 +548,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Портфейлът е <b>криптиран</b> и <b>отключен</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Портфейлът е <b>криптиран</b> и <b>заключен</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -702,291 +570,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - + Байтове: - Amount: Сума: - Priority: - + Приоритет: - Fee: - + Такса: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Сума - Address Адрес - Date Дата - Confirmations - + Потвърждения - Confirmed Потвърдени - Priority - + Приоритет - Copy address Копирай адрес - Copy label Копирай име - - Copy amount Копирай сума - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - + Прах - yes - + да - no - + не - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (без име) - change from %1 (%2) - (change) @@ -994,67 +801,54 @@ Address: %4 EditAddressDialog - Edit Address Редактиране на адрес - &Label &Име - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Адрес - New receiving address Нов адрес за получаване - New sending address Нов адрес за изпращане - Edit receiving address Редактиране на входящ адрес - Edit sending address Редактиране на изходящ адрес - The entered address "%1" is already in the address book. Вече има адрес "%1" в списъка с адреси. - The entered address "%1" is not a valid Dogecoin address. "%1" не е валиден Биткоин адрес. - Could not unlock wallet. Отключването на портфейла беше неуспешно. - New key generation failed. Създаването на ключ беше неуспешно. @@ -1062,27 +856,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - + Ще се създаде нова папка за данни. - name - + име - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - + Пътят вече съществува и не е папка. - Cannot create data directory here. @@ -1090,52 +879,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - + версия - Usage: Използване: - command-line options - UI options UI Опции - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1143,57 +926,46 @@ Address: %4 Intro - Welcome - + Добре дошли - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin Биткоин - Error: Specified data directory "%1" can not be created. - Error Грешка - GB of free space available - (of %1GB needed) @@ -1201,27 +973,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1229,243 +996,206 @@ Address: %4 OptionsDialog - Options Опции - &Main &Основни - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - &Такса за изходяща транзакция + &Такса за изходяща трансакция - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Пускане на Биткоин при вход в системата - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network &Мрежа - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Автоматично отваряне на входящия Dogecoin порт. Работи само с рутери поддържащи UPnP. - Map port using &UPnP Отваряне на входящия порт чрез &UPnP - Proxy &IP: - &Port: - + &Порт: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window &Прозорец - Show only a tray icon after minimizing the window. След минимизиране ще е видима само иконата в системния трей. - &Minimize to the tray instead of the taskbar &Минимизиране в системния трей - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. При затваряне на прозореца приложението остава минимизирано. Ако изберете тази опция, приложението може да се затвори само чрез Изход в менюто. - M&inimize on close М&инимизиране при затваряне - &Display &Интерфейс - User Interface &language: Език: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Промяната на езика ще влезе в сила след рестартиране на Биткоин. - &Unit to show amounts in: Мерни единици: - Choose the default subdivision unit to show in the interface and when sending coins. Изберете единиците, показвани по подразбиране в интерфейса. - Whether to show Dogecoin addresses in the transaction list or not. Ще се показват адресите в списъка с транзакции независимо от наличието на кратко име. - &Display addresses in transaction list - Показвай и адресите в списъка с транзакции + &Адреси в списъка с трансакции - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - + подразбиране - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. Прокси адресът е невалиден. @@ -1473,69 +1203,54 @@ Address: %4 OverviewPage - Form Форма - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - Непотвърдени: - - - Wallet Портфейл - - Confirmed: - + Available: + Налично: - Your current spendable balance - + Pending: + Изчакващо: + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - + Общо: - Your current total balance - + Текущият ви общ баланс - <b>Recent transactions</b> - <b>Последни транзакции</b> + <b>Последни трансакции</b> - - out of sync несинхронизиран @@ -1543,93 +1258,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - + Плащането е приета - Network request error @@ -1637,41 +1329,45 @@ Address: %4 QObject - - Dogecoin Биткоин - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Въведете Биткоин адрес (например DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1679,192 +1375,146 @@ Address: %4 RPCConsole - Client name - + Име на клиента - - - - - - - - - - - N/A N/A - Client version - + Версия на клиента - &Information - Debug window - General - Using OpenSSL version - Startup time - Network Мрежа - Name - + Име - Number of connections - + Брой връзки - Block chain - Current number of blocks - + Текущ брой блокове - Estimated total blocks - + Предвидени общо блокове - Last block time - + Време на последния блок - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console Изчисти конзолата - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Използвайте стрелки надолу и нагореза разглеждане на историятаот команди и <b>Ctrl-L</b> за изчистване на конзолата. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1872,155 +1522,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: &Име: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear + Изчистване + + + Requested payments history - &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - + Показване - Remove the selected entries from the list - Remove - + Премахване + + + Copy label + Копирай име + + + Copy message + Копиране на съобщението + + + Copy amount + Копирай сума ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - + Данни за плащането - URI - Address Адрес - Amount Сума - Label Име - Message Съобщение - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. Грешка при създаването на QR Code от URI. @@ -2028,285 +1660,225 @@ Address: %4 RecentRequestsTableModel - Date Дата - Label Име - Message Съобщение - Amount Сума - (no label) (без име) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins Изпращане - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - + Байтове: - Amount: Сума: - Priority: - + Приоритет: - Fee: - + Такса: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Изпращане към повече от един получател - Add &Recipient Добави &получател - Clear all fields of the form. - Clear &All &Изчисти - Balance: Баланс: - Confirm the send action Потвърдете изпращането - S&end И&зпрати - Confirm send coins Потвърждаване - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Въведете Биткоин адрес (например DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount Копирай сума - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - + или - The recipient address is not valid, please recheck. Невалиден адрес на получателя. - The amount to pay must be larger than 0. Сумата трябва да е по-голяма от 0. - The amount exceeds your balance. - + Сумата надвишава текущия баланс - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - + Грешка при създаването на трансакция! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (без име) - Warning: Unknown change address - Are you sure you want to send? - + Наистина ли искате да изпратите? - added as transaction fee - + добавено като такса за трансакция - Payment request expired - Invalid payment address %1 @@ -2314,116 +1886,85 @@ Address: %4 SendCoinsEntry - - - A&mount: С&ума: - Pay &To: Плати &На: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Въведете име за този адрес, за да го добавите в списъка с адреси - &Label: &Име: - Choose previously used address - This is a normal payment. - + Това е нормално плащане. - Alt+A Alt+A - Paste address from clipboard Вмъкни от клипборда - Alt+P Alt+P - - - Remove this entry - + Премахване на този запис - Message: Съобщение: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - + Плащане на: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Въведете Биткоин адрес (например DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2431,192 +1972,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Подпиши / Провери съобщение - &Sign Message &Подпиши - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Можете да подпишете съобщение като доказателство, че притежавате определен адрес. Бъдете внимателни и не подписвайте съобщения, които биха разкрили лична информация без вашето съгласие. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Адресът, с който ще подпишете съобщението (например DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard Вмъкни от клипборда - Alt+P Alt+P - Enter the message you want to sign here Въведете съобщението тук - Signature - + Подпис - Copy the current signature to the system clipboard Копиране на текущия подпис - Sign the message to prove you own this Dogecoin address Подпишете съобщение като доказателство, че притежавате определен адрес - Sign &Message - Reset all sign message fields - - Clear &All &Изчисти - &Verify Message &Провери - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Адресът, с който е подписано съобщението (например DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Проверете съобщение, за да сте сигурни че е подписано с определен Биткоин адрес - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Въведете Биткоин адрес (например DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Натиснете "Подписване на съобщение" за да създадете подпис - - Enter Dogecoin signature - Биткоин подпис - - - - The entered address is invalid. Въведеният адрес е невалиден. - - - - Please check the address and try again. Моля проверете адреса и опитайте отново. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. Не е наличен частният ключ за въведеният адрес. - Message signing failed. Подписването на съобщение бе неуспешно. - Message signed. Съобщението е подписано. - The signature could not be decoded. Подписът не може да бъде декодиран. - - Please check the signature and try again. Проверете подписа и опитайте отново. - The signature did not match the message digest. Подписът не отговаря на комбинацията от съобщение и адрес. - Message verification failed. Проверката на съобщението беше неуспешна. - Message verified. Съобщението е потвърдено. @@ -2624,17 +2115,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] [testnet] @@ -2642,7 +2130,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2650,179 +2137,138 @@ Address: %4 TransactionDesc - Open until %1 Подлежи на промяна до %1 - + conflicted + + + %1/offline %1/офлайн - %1/unconfirmed %1/непотвърдени - %1 confirmations включена в %1 блока - Status Статус - , broadcast through %n node(s) - Date Дата - Source Източник - Generated Издадени - - From От - - - To За - - own address собствен адрес - label име - - - - - Credit Кредит - matures in %n more block(s) - not accepted - - - - Debit Дебит - Transaction fee Такса - Net amount Сума нето - - Message Съобщение - Comment Коментар - Transaction ID ID - Merchant - + Търговец - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Транзакция + Трансакция - Inputs - Amount Сума - true true - false false - , has not been successfully broadcast yet , все още не е изпратено - Open for %n more block(s) - unknown неизвестен @@ -2830,131 +2276,113 @@ Address: %4 TransactionDescDialog - Transaction details - Транзакция + Трансакция - This pane shows a detailed description of the transaction - Описание на транзакцията + Описание на трансакцията TransactionTableModel - Date Дата - Type Тип - Address Адрес - Amount Сума - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 Подлежи на промяна до %1 - - Offline (%1 confirmations) - Офлайн (%1 потвърждения) - - - - Unconfirmed (%1 of %2 confirmations) - Непотвърдени (%1 от %2 потвърждения) - - - - Confirmed (%1 confirmations) Потвърдени (%1 потвърждения) - This block was not received by any other nodes and will probably not be accepted! Блокът не е получен от останалите участници и най-вероятно няма да бъде одобрен. - Generated but not accepted Генерирана, но отхвърлена от мрежата - + Offline + + + + Unconfirmed + Непотвърдено + + + Confirming (%1 of %2 recommended confirmations) + Потвърждаване (%1 от %2 препоръчвани потвърждения) + + + Conflicted + Конфликтно + + Received with Получени с - Received from Получен от - Sent to Изпратени на - Payment to yourself - + Плащане към себе си - Mined Емитирани - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. - Състояние на транзакцията. Задръжте върху това поле за брой потвърждения. + Състояние на трансакцията. Задръжте върху това поле за брой потвърждения. - Date and time that the transaction was received. Дата и час на получаване. - Type of transaction. - Тип на транзакцията. + Вид трансакция. - Destination address of transaction. - Получател на транзакцията. + Получател на трансакцията. - Amount removed from or added to balance. Сума извадена или добавена към баланса. @@ -2962,178 +2390,142 @@ Address: %4 TransactionView - - All Всички - Today Днес - This week Тази седмица - This month Този месец - Last month Предния месец - This year Тази година - Range... От - до... - Received with Получени - Sent to Изпратени на - To yourself Собствени - Mined Емитирани - Other Други - Enter address or label to search Търсене по адрес или име - Min amount Минимална сума - Copy address Копирай адрес - Copy label Копирай име - Copy amount Копирай сума - Copy transaction ID - Edit label Редактирай име - Show transaction details - + Подробности за трансакцията - Export Transaction History - + Изнасяне историята на трансакциите - Exporting Failed - + Грешка при изнасянето - There was an error trying to save the transaction history to %1. - Exporting Successful - + Изнасянето е успешна - The transaction history was successfully saved to %1. - Comma separated file (*.csv) CSV файл (*.csv) - Confirmed Потвърдени - Date Дата - Type Тип - Label Име - Address Адрес - Amount Сума - ID ИД - Range: От: - to до @@ -3141,15 +2533,13 @@ Address: %4 WalletFrame - No wallet has been loaded. - + Няма зареден портфейл. WalletModel - Send Coins Изпращане @@ -3157,154 +2547,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file Запишете данните от текущия раздел във файл - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: Използване: - List commands Вписване на команди - Get help for a command Получете помощ за команда - Options: Опции: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Задаване на файл с настройки (по подразбиране bitcoin.conf) + + + Specify pid file (default: bitcoind.pid) - - Specify pid file (default: dogecoind.pid) - - - - Specify data directory Определете директория за данните - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) Праг на прекъсване на връзката при непорядъчно държащи се пиъри (по подразбиране:100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Брой секунди до възтановяване на връзката за зле държащите се пиъри (по подразбиране:86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network Използвайте тестовата мрежа - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3315,711 +2676,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - Изпращане на команда до Биткойн сървъра - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - Включи Биткойн сървър - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - Изпрати локализиращата или дебъг информацията към конзолата, вместо файлът debug.log - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - Потребителско име за JSON-RPC връзките - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - Парола за JSON-RPC връзките - - - - Allow JSON-RPC connections from specified IP address - Разреши JSON-RPC връзките от отучнен IP адрес - - - - Send commands to node running on <ip> (default: 127.0.0.1) - Изпрати команди до възел функциониращ на <ip> (По подразбиране: 127.0.0.1) - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - Повторно сканиране на блок-връзка за липсващи портефейлни транзакции - - - - Use OpenSSL (https) for JSON-RPC connections - Използвайте OpenSSL (https) за JSON-RPC връзките - - - - Server certificate file (default: server.cert) - Сертификатен файл на сървъра (По подразбиране:server.cert) - - - - Server private key (default: server.pem) - Поверителен ключ за сървъра (default: server.pem) - - - - This help message - Това помощно съобщение - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - Зареждане на адресите... - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - Невалиден -proxy address: '%s' - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - Зареждане на блок индекса... - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + (по подразбиране 1) + + + (default: wallet.dat) + (по подразбиране wallet.dat) + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + Настройки на връзката: + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + Грешка: мястото на диска е малко! + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + Внасяне... + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + Проверка на блоковете... + + + Verifying wallet... + Проверка на портфейла... + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + Настройки на портфейла: + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + Данни + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + Изпрати локализиращата или дебъг информацията към конзолата, вместо файлът debug.log + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + Системна грешка: + + + Transaction amount too small + Сумата на трансакцията е твърде малка + + + Transaction amounts must be positive + Сумите на трансакциите трябва да са положителни + + + Transaction too large + Трансакцията е твърде голяма + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + Потребителско име за JSON-RPC връзките + + + Warning + Предупреждение + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + версия + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + Парола за JSON-RPC връзките + + + Allow JSON-RPC connections from specified IP address + Разреши JSON-RPC връзките от отучнен IP адрес + + + Send commands to node running on <ip> (default: 127.0.0.1) + Изпрати команди до възел функциониращ на <ip> (По подразбиране: 127.0.0.1) + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + Обновяване на портфейла до най-новия формат + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + Повторно сканиране на блок-връзка за липсващи портфейлни трансакции + + + Use OpenSSL (https) for JSON-RPC connections + Използвайте OpenSSL (https) за JSON-RPC връзките + + + Server certificate file (default: server.cert) + Сертификатен файл на сървъра (По подразбиране:server.cert) + + + Server private key (default: server.pem) + Поверителен ключ за сървъра (default: server.pem) + + + This help message + Това помощно съобщение + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + Зареждане на адресите... + + + Error loading wallet.dat: Wallet corrupted + Грешка при зареждане на wallet.dat: портфейлът е повреден + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + Грешка при зареждане на wallet.dat: портфейлът изисква по-нова версия на Dogecoin + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + Грешка при зареждане на wallet.dat + + + Invalid -proxy address: '%s' + Невалиден -proxy address: '%s' + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + Недостатъчно средства + + + Loading block index... + Зареждане на блок индекса... + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... Зареждане на портфейла... - Cannot downgrade wallet - Cannot write default address - Rescanning... Преразглеждане на последовтелността от блокове... - Done loading Зареждането е завършено - To use the %s option - Error Грешка - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_bs.ts b/src/qt/locale/bitcoin_bs.ts index 7708d5e99..b29c73a76 100644 --- a/src/qt/locale/bitcoin_bs.ts +++ b/src/qt/locale/bitcoin_bs.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label - Create a new address - &New - Copy the currently selected address to the system clipboard - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label - Address - (no label) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase - New passphrase - Repeat new passphrase - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Encrypt wallet - This operation needs your wallet passphrase to unlock the wallet. - Unlock wallet - This operation needs your wallet passphrase to decrypt the wallet. - Decrypt wallet - Change passphrase - Enter the old and new passphrase to the wallet. - Confirm wallet encryption - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - The supplied passphrases do not match. - Wallet unlock failed - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... - &Overview - Node - Show general overview of wallet - &Transactions - Browse transaction history - E&xit - Quit application - - Show information about Dogecoin Core + Show information about Dogecoin - - About &Qt - Show information about Qt - &Options... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File - &Settings - &Help - Tabs toolbar - - [testnet] - Dogecoin Core Dogecoin Jezrga - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address - Date - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Dogecoin Jezrga - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,41 +1324,45 @@ Address: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1674,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1867,155 +1517,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + + + + Copy message + + + + Copy amount + + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address - Amount - Label - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2023,285 +1655,225 @@ Address: %4 RecentRequestsTableModel - Date - Label - Message - Amount - (no label) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: - Confirm the send action - S&end - Confirm send coins - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2309,116 +1881,85 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard - Alt+P Alt+P - - - Remove this entry - Message: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2426,192 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard - Alt+P Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2619,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core Dogecoin Jezrga - The Dogecoin Core developers - [testnet] @@ -2637,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2645,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2825,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2838,118 +2282,102 @@ Address: %4 TransactionTableModel - Date - Type - Address - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2957,178 +2385,142 @@ Address: %4 TransactionView - - All Sve - Today Danas - This week - This month Ovaj mjesec - Last month Prošli mjesec - This year Ove godine - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - Confirmed - Date - Type - Label - Address - Amount - ID - Range: - to @@ -3136,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3144,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3152,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3310,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_ca.ts b/src/qt/locale/bitcoin_ca.ts index c3b526d03..79071f688 100644 --- a/src/qt/locale/bitcoin_ca.ts +++ b/src/qt/locale/bitcoin_ca.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Doble click per editar l'adreça o l'etiqueta - Create a new address Crear una nova adrça - &New - Copy the currently selected address to the system clipboard Copia la selecció actual al porta-retalls del sistema - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete &Eliminar - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) Fitxer separat per comes (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Etiqueta - Address Adreça - (no label) (sense etiqueta) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase Introduïu la frase-contrasenya - New passphrase Nova frase-contrasenya - Repeat new passphrase Repetiu la nova frase-contrasenya - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Introduïu la nova frase-contrasenya per a la cartera.<br/>Empreu una frase-contrasenya de <b>10 o més caràcters aleatoris<b/>, o <b>vuit o més paraules<b/>. - Encrypt wallet Encriptar cartera - This operation needs your wallet passphrase to unlock the wallet. Cal que introduïu la frase-contrasenya de la cartera per a desbloquejar-la. - Unlock wallet Desbloquejar cartera - This operation needs your wallet passphrase to decrypt the wallet. Cal que introduïu la frase-contrasenya de la cartera per a desencriptar-la. - Decrypt wallet Desencriptar cartera - Change passphrase Canviar frase-contrasenya - Enter the old and new passphrase to the wallet. Introduïu l'antiga i la nova frase-contrasenya per a la cartera. - Confirm wallet encryption Confirmeu l'encriptació de cartera - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted Cartera encriptada - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed L'encriptació de cartera ha fallat - Wallet encryption failed due to an internal error. Your wallet was not encrypted. L'encriptació de cartera ha fallat degut a un error intern. La vostra cartera no ha estat encriptada. - - The supplied passphrases do not match. Les frases-contrasenya no concorden. - Wallet unlock failed El desbloqueig de cartera ha fallat - - - The passphrase entered for the wallet decryption was incorrect. La frase-contrasenya per a la desencriptació de cartera és incorrecta. - Wallet decryption failed La desencriptació de cartera ha fallat - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... Sincronitzant amb la xarxa... - &Overview &Visió general - Node - Show general overview of wallet Mostrar visió general de la cartera - &Transactions &Transaccions - Browse transaction history Exploreu l'historial de transaccions - E&xit - Quit application Sortir de l'aplicació - - Show information about Dogecoin Core + Show information about Dogecoin Informació sobre Dogecoin - - About &Qt - Show information about Qt - &Options... &Opcions... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption Canviar frase-contrasenya per a l'escriptació de la cartera - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &Fitxer - &Settings &Configuració - &Help &Ajuda - Tabs toolbar Barra d'eines - - [testnet] [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date - Catching up... Actualitzant... - Sent transaction Transacció enviada - Incoming transaction Transacció entrant - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> La cartera està <b>encriptada<b/> i <b>desbloquejada<b/> - Wallet is <b>encrypted</b> and currently <b>locked</b> La cartera està <b>encriptada<b/> i <b>bloquejada<b/> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address Adreça - Date - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (sense etiqueta) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address Editar adreça - &Label &Etiqueta - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Adreça - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,41 +1324,45 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1674,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1867,155 +1517,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + + + + Copy message + + + + Copy amount + + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address Adreça - Amount - Label Etiqueta - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2023,285 +1655,225 @@ Address: %4 RecentRequestsTableModel - Date - Label Etiqueta - Message - Amount - (no label) (sense etiqueta) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: - Confirm the send action - S&end - Confirm send coins - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (sense etiqueta) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2309,116 +1881,85 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard - Alt+P - - - Remove this entry - Message: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2426,192 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard - Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2619,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] [testnet] @@ -2637,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2645,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2825,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2838,118 +2282,102 @@ Address: %4 TransactionTableModel - Date - Type - Address Adreça - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2957,178 +2385,142 @@ Address: %4 TransactionView - - All - Today - This week - This month - Last month - This year - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Fitxer separat per comes (*.csv) - Confirmed - Date - Type - Label Etiqueta - Address Adreça - Amount - ID - Range: - to @@ -3136,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3144,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3152,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3310,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_ca@valencia.ts b/src/qt/locale/bitcoin_ca@valencia.ts index 28d49639c..3ced60a2a 100644 --- a/src/qt/locale/bitcoin_ca@valencia.ts +++ b/src/qt/locale/bitcoin_ca@valencia.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Doble click per editar la direccio o la etiqueta - Create a new address Crear nova direccio - &New - Copy the currently selected address to the system clipboard Copieu l'adreça seleccionada al porta-retalls del sistema - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete Eliminar - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label - Address - (no label) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase - New passphrase - Repeat new passphrase - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Encrypt wallet - This operation needs your wallet passphrase to unlock the wallet. - Unlock wallet - This operation needs your wallet passphrase to decrypt the wallet. - Decrypt wallet - Change passphrase - Enter the old and new passphrase to the wallet. - Confirm wallet encryption - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - The supplied passphrases do not match. - Wallet unlock failed - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... - &Overview - Node - Show general overview of wallet - &Transactions - Browse transaction history - E&xit - Quit application - - Show information about Dogecoin Core + Show information about Dogecoin - - About &Qt - Show information about Qt - &Options... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File - &Settings - &Help - Tabs toolbar - - [testnet] - Dogecoin Core - Request payments (generates QR codes and dogecoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - Open a dogecoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address - Date - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - Cannot start dogecoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,23 +1324,26 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1656,22 +1351,18 @@ Address: %4 QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1679,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1872,105 +1517,82 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - - An optional label to associate with the new receiving address. - Use this form to request payments. All fields are <b>optional</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - Requested payments history - &Request payment - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove - Copy label - Copy message - Copy amount @@ -1978,67 +1600,54 @@ Address: %4 ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address - Amount - Label - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2046,37 +1655,30 @@ Address: %4 RecentRequestsTableModel - Date - Label - Message - Amount - (no label) - (no message) - (no amount) @@ -2084,247 +1686,194 @@ Address: %4 SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: - Confirm the send action - S&end - Confirm send coins - - - - %1 to %2 - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2332,98 +1881,74 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard - Alt+P - - - Remove this entry - Message: - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. - - Pay To: - - Memo: @@ -2431,12 +1956,10 @@ Address: %4 ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2444,186 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard - Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2631,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2649,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2657,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2837,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2850,118 +2282,102 @@ Address: %4 TransactionTableModel - Date - Type - Address - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2969,178 +2385,142 @@ Address: %4 TransactionView - - All - Today - This week - This month - Last month - This year - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - Confirmed - Date - Type - Label - Address - Amount - ID - Range: - to @@ -3148,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3156,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3164,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - Specify configuration file (default: dogecoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3322,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use dogecoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_ca_ES.ts b/src/qt/locale/bitcoin_ca_ES.ts index fd74d98ca..441c5cc2d 100644 --- a/src/qt/locale/bitcoin_ca_ES.ts +++ b/src/qt/locale/bitcoin_ca_ES.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core Sobre el Nucli de Dogecoin - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O \n Aquest és software experimental.\n\n Distribuït sota llicència de software MIT/11, veure l'arxiu COPYING o http://www.opensource.org/licenses/mit-license.php.\n\nAquest producte inclou software desarrollat pel projecte OpenSSL per a l'ús de OppenSSL Toolkit (http://www.openssl.org/) i de softwqre criptogràfic escrit per l'Eric Young (eay@cryptsoft.com) i software UPnP escrit per en Thomas Bernard. - Copyright Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Feu doble clic per editar l'adreça o l'etiqueta - Create a new address Crear una nova adreça - &New &Nou - Copy the currently selected address to the system clipboard Copiar l'adreça seleccionada al porta-retalls del sistema - &Copy &Copiar - C&lose - &Copy Address &Copiar adreça - Delete the currently selected address from the list Esborrar l'adreça sel·leccionada - Export the data in the current tab to a file Exportar les dades de la pestanya actual a un arxiu - &Export &Exportar - &Delete &Esborrar - Choose the address to send coins to Escull una adreça a la qual enviar coins - Choose the address to receive coins with Escull l'adreça a la quals vols rebre coins - C&hoose - Very sending addresses Enviant adreces - Much receiving addresses Rebent adreces - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Aquestes són la seva adreça de Dogecoin per enviar els pagaments. Sempre revisi la quantitat i l'adreça del destinatari abans transferència de monedes. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label Copiar &Etiqueta - &Edit &Editar - Export Address List Exportar la llista d'adre - Comma separated file (*.csv) Arxiu de separació per comes (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Etiqueta - Address Adreça - (no label) (sense etiqueta) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog Dialeg de contrasenya - Enter passphrase Introdueix contrasenya - New passphrase Nova contrasenya - Repeat new passphrase Repeteix la nova contrasenya - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Introdueixi la nova contrasenya al moneder<br/>Si us plau useu una contrasenya de <b>10 o més caracters aleatoris</b>, o <b>vuit o més paraules</b>. - Encrypt wallet Xifrar la cartera - This operation needs your wallet passphrase to unlock the wallet. Aquesta operació requereix la seva contrasenya del moneder per a desbloquejar-lo. - Unlock wallet Desbloqueja el moneder - This operation needs your wallet passphrase to decrypt the wallet. Aquesta operació requereix la seva contrasenya del moneder per a desencriptar-lo. - Decrypt wallet Desencripta el moneder - Change passphrase Canviar la contrasenya - Enter the old and new passphrase to the wallet. Introdueixi tant l'antiga com la nova contrasenya de moneder. - Confirm wallet encryption Confirmar l'encriptació del moneder - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Advertència: Si encripteu el vostre moneder i perdeu la constrasenya, <b>PERDREU TOTS ELS VOSTRES DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Advertència: Si encripteu el vostre moneder i perdeu la constrasenya, <b>PERDREU TOTS ELS VOSTRES DogecoinS</b>! - Are you sure you wish to encrypt your wallet? Esteu segur que voleu encriptar el vostre moneder? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANT: Tota copia de seguretat que hagis realitzat hauria de ser reemplaçada pel, recentment generat, arxiu encriptat del moneder. - - Warning: The Caps Lock key is on! Advertència: Les lletres majúscules estàn activades! - - Wallet encrypted Moneder encriptat - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin es tancarà ara per acabar el procés d'encriptació. Recorda que encriptar el teu moneder no protegeix completament els teus dogecoins de ser robades per programari maliciós instal·lat al teu ordinador. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin es tancarà ara per acabar el procés d'encriptació. Recorda que encriptar el teu moneder no protegeix completament els teus bitcoins de ser robades per programari maliciós instal·lat al teu ordinador. - - - - Wallet encryption failed L'encriptació del moneder ha fallat - Wallet encryption failed due to an internal error. Your wallet was not encrypted. L'encriptació del moneder ha fallat per un error intern. El seu moneder no ha estat encriptat. - - The supplied passphrases do not match. La contrasenya introduïda no coincideix. - Wallet unlock failed El desbloqueig del moneder ha fallat - - - The passphrase entered for the wallet decryption was incorrect. La contrasenya introduïda per a desencriptar el moneder és incorrecte. - Wallet decryption failed La desencriptació del moneder ha fallat - Wallet passphrase was successfully changed. La contrasenya del moneder ha estat modificada correctament. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... Signar &missatge... - Synchronizing with network... Sincronitzant amb la xarxa ... - &Overview &Panorama general - Node Node - Show general overview of wallet Mostra panorama general del moneder - &Transactions &Transaccions - Browse transaction history Cerca a l'historial de transaccions - E&xit S&ortir - Quit application Sortir de l'aplicació - - Show information about Dogecoin Core + Show information about Dogecoin Mostra informació sobre Dogecoin - - About &Qt Sobre &Qt - Show information about Qt Mostra informació sobre Qt - &Options... &Opcions... - &Encrypt Wallet... &Xifrar moneder - &Backup Wallet... &Realitzant copia de seguretat del moneder... - &Change Passphrase... &Canviar contrasenya... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... Important blocs del disc.. - Reindexing blocks on disk... Re-indexant blocs al disc... - Send coins to a Dogecoin address Enviar monedes a una adreça Dogecoin - - Modify configuration options for Dogecoin Core - Modificar les opcions de configuració per dogecoin + Modify configuration options for Dogecoin + Modificar les opcions de configuració per bitcoin - Backup wallet to another location Realitzar còpia de seguretat del moneder a un altre directori - Change the passphrase used for wallet encryption Canviar la constrasenya d'encriptació del moneder - &Debug window &Finestra de debug - Open debugging and diagnostic console Obrir la consola de diagnòstic i debugging - &Verify message... &Verifica el missatge.. - Dogecoin Dogecoin - Wallet Moneder - &Send &Enviar - &Receive &Rebre - - &Show / Hide &Mostrar / Amagar - Show or hide the main Window Mostrar o amagar la finestra principal - Encrypt the private keys that belong to your wallet Xifrar les claus privades pertanyents al seu moneder - Sign messages with your Dogecoin addresses to prove you own them Signa el missatges amb la seva adreça de Dogecoin per provar que les poseeixes - Verify messages to ensure they were signed with specified Dogecoin addresses Verificar els missatges per assegurar-te que han estat signades amb una adreça Dogecoin específica. - &File &Arxiu - &Settings &Configuració - &Help &Ajuda - Tabs toolbar Barra d'eines de seccions - - [testnet] [testnet] - Dogecoin Core Nucli de Dogecoin - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Client Dogecoin - %n active connection(s) to Dogecoin network %n connexió activa a la xarxa Dogecoin%n connexions actives a la xarxa Dogecoin - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. Processat el %1 de %2 (estimat) dels blocs del històric de transaccions. - Processed %1 blocks of transaction history. Proccessats %1 blocs del històric de transaccions. - %n hour(s) %n hora%n hores - %n day(s) %n dia%n dies - %n week(s) %n setmana%n setmanes - + %1 and %2 + + + + %n year(s) + + + %1 behind %1 radera - Last received block was generated %1 ago. Lúltim bloc rebut ha estat generat fa %1. - Transactions after this will not yet be visible. Les transaccions a partir d'això no seràn visibles. - Error Error - Warning Avís - Information Informació - Up to date Al dia - Catching up... Posar-se al dia ... - Sent transaction Transacció enviada - Incoming transaction Transacció entrant - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 Data: %1\nQuantitat %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>locked</b> El moneder està <b>encriptat</b> i actualment <b>bloquejat</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Ha tingut lloc un error fatal. Dogecoin no pot continuar executant-se de manera segura i es tancará. ClientModel - Network Alert Alerta de xarxa @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: Quantitat: - Bytes: Bytes: - Amount: Quantitat: - Priority: Prioritat: - Fee: Quota: - Low Output: - After Fee: Quota posterior: - Change: Canvi: - (un)select all - Tree mode Mode arbre - List mode Mode llista - Amount Quantitat - Address Adreça - Date Data - Confirmations Confirmacions - Confirmed Confirmat - Priority Prioritat - Copy address Copiar adreça - Copy label Copiar etiqueta - - Copy amount Copiar quantitat - Copy transaction ID Copiar ID de transacció - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest El més alt - higher Més alt - high Alt - medium-high mig-alt - medium mig - low-medium baix-mig - low baix - lower més baix - lowest el més baix - (%1 locked) - none - Dust Pols - yes si - no no - This label turns red, if the transaction size is greater than 1000 bytes. Aquesta etiqueta es posa de color vermell si la mida de la transacció és més gran de 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (sense etiqueta) - change from %1 (%2) - (change) (canviar) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address Editar Adreça - &Label &Etiqueta - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Direcció - New receiving address Nova adreça de recepció. - New sending address Nova adreça d'enviament - Edit receiving address Editar adreces de recepció - Edit sending address Editar adreces d'enviament - The entered address "%1" is already in the address book. L'adreça introduïda "%1" ja és present a la llibreta d'adreces. - The entered address "%1" is not a valid Dogecoin address. L'adreça introduida "%1" no és una adreça Dogecoin valida. - Could not unlock wallet. No s'ha pogut desbloquejar el moneder. - New key generation failed. Ha fallat la generació d'una nova clau. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name nom - Directory already exists. Add %1 if you intend to create a new directory here. El directori ja existeix. Afegeix %1 si vols crear un nou directori en aquesta ubicació. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Nucli de Dogecoin - version versió - Usage: Ús: - command-line options Opcions de la línia d'ordres - UI options Opcions de IU - Set language, for example "de_DE" (default: system locale) Definir llenguatge, per exemple "de_DE" (per defecte: Preferències locals de sistema) - Start minimized Iniciar minimitzat - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Mostrar finestra de benvinguda a l'inici (per defecte: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome Benvingut - Welcome to Dogecoin Core. Benvingut a Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Error Error - GB of free space available GB d'espai lliure disponible - (of %1GB needed) (d' %1GB necessari) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options Opcions - &Main &Principal - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee Pagar &comisió de transacció - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Iniciar automàticament Dogecoin després de l'inici de sessió del sistema. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Iniciar Dogecoin al inici de sessió del sistema. - Size of &database cache - - Set database cache size in megabytes (default: 25) - Establir tamany de la memoria cau en megabytes (per defecte: 25) - - - MB MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. Reestablir totes les opcions del client. - &Reset Options &Reestablir Opcions - &Network &Xarxa - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Obrir el port del client de Dogecoin al router de forma automàtica. Això només funciona quan el teu router implementa UPnP i l'opció està activada. - Map port using &UPnP Port obert amb &UPnP - Proxy &IP: &IP del proxy: - &Port: &Port: - Port of the proxy (e.g. 9050) Port del proxy (per exemple 9050) - SOCKS &Version: &Versió de SOCKS: - SOCKS version of the proxy (e.g. 5) Versió SOCKS del proxy (per exemple 5) - &Window &Finestra - Show only a tray icon after minimizing the window. Mostrar només l'icona de la barra al minimitzar l'aplicació. - &Minimize to the tray instead of the taskbar &Minimitzar a la barra d'aplicacions - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimitza en comptes de sortir de la aplicació al tancar la finestra. Quan aquesta opció està activa, la aplicació només es tancarà al seleccionar Sortir al menú. - M&inimize on close M&inimitzar al tancar - &Display &Pantalla - User Interface &language: Llenguatge de la Interfície d'Usuari: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Aquí pots definir el llenguatge de l'aplicatiu. Aquesta configuració tindrà efecte un cop es reiniciï Dogecoin. - &Unit to show amounts in: &Unitats per mostrar les quantitats en: - Choose the default subdivision unit to show in the interface and when sending coins. Sel·lecciona la unitat de subdivisió per defecte per mostrar en la interficie quan s'envien monedes. - Whether to show Dogecoin addresses in the transaction list or not. Mostrar adreces Dogecoin als llistats de transaccions o no. - &Display addresses in transaction list &Mostrar adreces al llistat de transaccions - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &OK - &Cancel &Cancel·la - default Per defecte - none - Confirm options reset Confirmi el reestabliment de les opcions - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. L'adreça proxy introduïda és invalida. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form Formulari - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa Dogecoin un cop s'ha establert connexió, però aquest proces no s'ha completat encara. - - Unconfirmed: - Sense confirmar: - - - Wallet Moneder - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: Immatur: - Mined balance that has not yet matured Balanç minat que encara no ha madurat - Total: Total: - Your current total balance - <b>Recent transactions</b> <b>Transaccions recents</b> - - out of sync Fora de sincronia @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling Manejant URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. la URI no pot ser processada! Això es pot ser causat per una adreça Dogecoin invalida o paràmetres URI malformats. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error Error en la sol·licitud de pagament - - Cannot start dogecoin: click-to-pay handler - No es pot iniciar dogecoin: manejador clicla-per-pagar + Cannot start bitcoin: click-to-pay handler + No es pot iniciar bitcoin: manejador clicla-per-pagar - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 Reemborsament de %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged Pagament notificat - Network request error Error en la sol·licitud de xarxa @@ -1632,41 +1324,45 @@ Address: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Error: El directori de dades específiques "%1! no existeix. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Introdueixi una adreça de Dogecoin (per exemple DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code Desar codi QR - PNG Image (*.png) Imatge PNG (*.png) @@ -1674,192 +1370,146 @@ Address: %4 RPCConsole - Client name Nom del client - - - - - - - - - - - N/A N/A - Client version Versió del client - &Information &Informació - Debug window Depura finestra - General General - Using OpenSSL version Utilitzant OpenSSL versió - Startup time &Temps d'inici - Network Xarxa - Name Nom - Number of connections Nombre de connexions - Block chain Bloquejar cadena - Current number of blocks Nombre de blocs actuals - Estimated total blocks Total estimat de blocs - Last block time Últim temps de bloc - &Open &Obrir - &Console &Consola - &Network Traffic - &Clear - Totals Totals - In: Dins: - Out: Fora: - Build date Data de compilació - Debug log file Dietàri de debug - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Obrir el dietari de debug de Dogecoin del directori de dades actual. Aixó pot trigar uns quants segons per a dietàris grossos. - Clear console Netejar consola - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Benvingut a la consola RPC de Dogecoin - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Utilitza les fletxes d'amunt i avall per navegar per l'històric, i <b>Ctrl-L<\b> per netejar la pantalla. - Type <b>help</b> for an overview of available commands. Escriu <b>help<\b> per a obtenir una llistat de les ordres disponibles. - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 m - %1 h - %1 h %2 m %1 h %2 m @@ -1867,155 +1517,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: &Quantitat: - &Label: &Etiqueta: - &Message: &Missatge: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. Esborra tots els camps del formuari. - Clear Esborra - + Requested payments history + + + &Request payment &Sol·licitud de pagament - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show Mostra - Remove the selected entries from the list Esborra les entrades seleccionades de la llista - Remove Esborra + + Copy label + Copiar etiqueta + + + Copy message + + + + Copy amount + Copiar quantitat + ReceiveRequestDialog - QR Code Codi QR - Copy &URI Copiar &URI - Copy &Address Copiar &Adress - &Save Image... - Request payment to %1 - Payment information Informació de pagament - URI URI - Address Adreça - Amount Quantitat - Label Etiqueta - Message Missatge - Resulting URI too long, try to reduce the text for label / message. URI resultant massa llarga, intenta reduir el text per a la etiqueta / missatge - Error encoding URI into QR Code. Error codificant la URI en un codi QR. @@ -2023,285 +1655,225 @@ Address: %4 RecentRequestsTableModel - Date Data - Label Etiqueta - Message Missatge - Amount Quantitat - (no label) (sense etiqueta) - (no message) (sense missatge) + + (no amount) + + SendCoinsDialog - - - Send Coins Enviar monedes - Coin Control Features (Opcions del control del Coin) - Inputs... Entrades - automatically selected Seleccionat automàticament - Insufficient funds! Fons insuficient - Quantity: Quantitat: - Bytes: Bytes: - Amount: Quantitat: - Priority: Prioritat: - Fee: Quota: - Low Output: - After Fee: Quota posterior: - Change: Canvi: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Enviar a multiples destinataris al mateix temps - Add &Recipient Affegir &Destinatari - Clear all fields of the form. Netejar tots els camps del formulari. - Clear &All Esborrar &Tot - Balance: Balanç: - Confirm the send action Confirmi l'acció d'enviament - S&end E&nviar - Confirm send coins Confirmar l'enviament de monedes - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Introdueixi una adreça de Dogecoin (per exemple DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount Copiar quantitat - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or o - The recipient address is not valid, please recheck. L'adreça remetent no és vàlida, si us plau comprovi-la. - The amount to pay must be larger than 0. La quantitat a pagar ha de ser major que 0. - The amount exceeds your balance. Import superi el saldo de la seva compte. - The total exceeds your balance when the %1 transaction fee is included. El total excedeix el teu balanç quan s'afegeix la comisió a la transacció %1. - Duplicate address found, can only send to each address once per send operation. S'ha trobat una adreça duplicada, tan sols es pot enviar a cada adreça un cop per ordre de enviament. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (sense etiqueta) - Warning: Unknown change address - Are you sure you want to send? Estàs segur que ho vols enviar? - added as transaction fee S'ha afegit una taxa de transacció - Payment request expired La sol·licitud de pagament ha caducat - Invalid payment address %1 @@ -2309,116 +1881,85 @@ Address: %4 SendCoinsEntry - - - A&mount: Q&uantitat: - Pay &To: Pagar &A: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) La adreça a on envia el pagament (per exemple: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Introdueixi una etiquera per a aquesta adreça per afegir-la a la llibreta d'adreces - &Label: &Etiqueta: - Choose previously used address Escull una adreça feta servir anteriorment - This is a normal payment. - Alt+A Alta+A - Paste address from clipboard Enganxar adreça del porta-retalls - Alt+P Alt+P - - - Remove this entry - Message: Missatge: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: Paga a: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Introdueixi una adreça de Dogecoin (per exemple DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2426,192 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Signatures .Signar/Verificar un Missatge - &Sign Message &Signar Missatge - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Pots signar missatges amb la teva adreça per provar que són teus. Sigues cautelòs al signar qualsevol cosa, ja que els atacs phising poden intentar confondre't per a que els hi signis amb la teva identitat. Tan sols signa als documents completament detallats amb els que hi estàs d'acord. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) La adreça amb la que signat els missatges (per exemple DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Escull adreces fetes servir amb anterioritat - - Alt+A Alta+A - Paste address from clipboard Enganxar adreça del porta-retalls - Alt+P Alt+P - Enter the message you want to sign here Introdueix aqui el missatge que vols signar - Signature Signatura - Copy the current signature to the system clipboard Copiar la signatura actual al porta-retalls del sistema - Sign the message to prove you own this Dogecoin address Signa el missatge per provar que ets propietari d'aquesta adreça Dogecoin - Sign &Message Signar &Missatge - Reset all sign message fields Neteja tots els camps de clau - - Clear &All Esborrar &Tot - &Verify Message &Verificar el missatge - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Introdueixi l'adreça signant, missatge (assegura't que copies salts de línia, espais, tabuladors, etc excactament tot el text) i la signatura a sota per verificar el missatge. Per evitar ser enganyat per un atac home-entre-mig, vés amb compte de no llegir més en la signatura del que hi ha al missatge signat mateix. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) La adreça amb el que el missatge va ser signat (per exemple DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Verificar el missatge per assegurar-se que ha estat signat amb una adreça Dogecoin específica - Verify &Message Verificar &Missatge - Reset all verify message fields Neteja tots els camps de verificació de missatge - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Introdueixi una adreça de Dogecoin (per exemple DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Clica "Signar Missatge" per a generar una signatura - - Enter Dogecoin signature - Introduïr una clau Dogecoin - - - - The entered address is invalid. L'adreça intoduïda és invàlida. - - - - Please check the address and try again. Siu us plau, comprovi l'adreça i provi de nou. - - The entered address does not refer to a key. L'adreça introduïda no referencia a cap clau. - Wallet unlock was cancelled. El desbloqueig del moneder ha estat cancelat. - Private key for the entered address is not available. La clau privada per a la adreça introduïda no està disponible. - Message signing failed. El signat del missatge ha fallat. - Message signed. Missatge signat. - The signature could not be decoded. La signatura no s'ha pogut decodificar . - - Please check the signature and try again. Su us plau, comprovi la signatura i provi de nou. - The signature did not match the message digest. La signatura no coincideix amb el resum del missatge. - Message verification failed. Ha fallat la verificació del missatge. - Message verified. Missatge verificat. @@ -2619,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core Nucli de Dogecoin - The Dogecoin Core developers - [testnet] @@ -2637,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s KB/s @@ -2645,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 Obert fins %1 - + conflicted + + + %1/offline %1/offline - %1/unconfirmed %1/sense confirmar - %1 confirmations %1 confrimacions - Status Estat - , broadcast through %n node(s) , difusió a través de %n node, difusió a través de %n nodes - Date Data - Source Font - Generated Generat - - From Des de - - - To A - - own address Adreça pròpia - label etiqueta - - - - - Credit Crèdit - matures in %n more block(s) disponible en %n bloc mésdisponibles en %n blocs més - not accepted no acceptat - - - - Debit Dèbit - Transaction fee Comissió de transacció - Net amount Quantitat neta - - Message Missatge - Comment Comentar - Transaction ID ID de transacció - Merchant Mercader - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information Informació de debug - Transaction Transacció - Inputs Entrades - Amount Quantitat - true cert - false fals - , has not been successfully broadcast yet , encara no ha estat emès correctement - Open for %n more block(s) Obre per %n bloc mésObre per %n blocs més - unknown desconegut @@ -2825,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details Detall de la transacció - This pane shows a detailed description of the transaction Aquest panell mostra una descripció detallada de la transacció @@ -2838,118 +2282,102 @@ Address: %4 TransactionTableModel - Date Data - Type Tipus - Address Direcció - Amount Quantitat - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) Obre per %n bloc mésObre per %n blocs més - Open until %1 Obert fins %1 - - Offline (%1 confirmations) - Sense connexió (%1 confirmacions) - - - - Unconfirmed (%1 of %2 confirmations) - Sense confirmar (%1 de %2 confirmacions) - - - - Confirmed (%1 confirmations) Confirmat (%1 confirmacions) - This block was not received by any other nodes and will probably not be accepted! Aquest bloc no ha estat rebut per cap altre node i probablement no serà acceptat! - Generated but not accepted Generat però no acceptat - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Rebut amb - Received from Rebut de - Sent to Enviat a - Payment to yourself Pagament a un mateix - Mined Minat - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. Estat de la transacció. Desplaça't per aquí sobre per mostrar el nombre de confirmacions. - Date and time that the transaction was received. Data i hora en que la transacció va ser rebuda. - Type of transaction. Tipus de transacció. - Destination address of transaction. Adreça del destinatari de la transacció. - Amount removed from or added to balance. Quantitat extreta o afegida del balanç. @@ -2957,178 +2385,142 @@ Address: %4 TransactionView - - All Tot - Today Avui - This week Aquesta setmana - This month Aquest mes - Last month El mes passat - This year Enguany - Range... Rang... - Received with Rebut amb - Sent to Enviat a - To yourself A tu mateix - Mined Minat - Other Altres - Enter address or label to search Introdueix una adreça o una etiqueta per cercar - Min amount Quantitat mínima - Copy address Copiar adreça - Copy label Copiar etiqueta - Copy amount Copiar quantitat - Copy transaction ID Copiar ID de transacció - Edit label Editar etiqueta - Show transaction details Mostra detalls de la transacció - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Arxiu de separació per comes (*.csv) - Confirmed Confirmat - Date Data - Type Tipus - Label Etiqueta - Address Direcció - Amount Quantitat - ID ID - Range: Rang: - to a @@ -3136,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3144,7 +2535,6 @@ Address: %4 WalletModel - Send Coins Enviar monedes @@ -3152,154 +2542,125 @@ Address: %4 WalletView - &Export &Exportar - Export the data in the current tab to a file Exportar les dades de la pestanya actual a un arxiu - Backup Wallet Realitzar còpia de seguretat del moneder - Wallet Data (*.dat) Dades del moneder (*.dat) - Backup Failed Còpia de seguretat faillida - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful Copia de seguretat realitzada correctament - dogecoin-core + bitcoin-core - Usage: Ús: - List commands Llista d'ordres - Get help for a command Obtenir ajuda per a un ordre. - Options: Opcions: - - Specify configuration file (default: dogecoin.conf) - Especificat arxiu de configuració (per defecte: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Especificat arxiu de configuració (per defecte: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Especificar arxiu pid (per defecte: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Especificar arxiu pid (per defecte: bitcoind.pid) - Specify data directory Especificar directori de dades - - Set database cache size in megabytes (default: 25) - Establir tamany de la memoria cau en megabytes (per defecte: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Escoltar connexions a <port> (per defecte: 8333 o testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Escoltar connexions a <port> (per defecte: 22556 o testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Mantenir com a molt <n> connexions a peers (per defecte: 125) - Connect to a node to retrieve peer addresses, and disconnect Connectar al node per obtenir les adreces de les connexions, i desconectar - Specify your own public address Especificar la teva adreça pública - Threshold for disconnecting misbehaving peers (default: 100) Límit per a desconectar connexions errònies (per defecte: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Nombre de segons abans de reconectar amb connexions errònies (per defecte: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s Ha sorgit un error al configurar el port RPC %u escoltant a IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Escoltar connexions JSON-RPC al port <port> (per defecte: 22555 o testnet:44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Escoltar connexions JSON-RPC al port <port> (per defecte: 8332 o testnet:18332) - Accept command line and JSON-RPC commands Acceptar línia d'ordres i ordres JSON-RPC - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Executar en segon pla com a programa dimoni i acceptar ordres - Use the test network Usar la xarxa de prova - Accept connections from outside (default: 1 if no -proxy or -connect) Aceptar connexions d'afora (per defecte: 1 si no -proxy o -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3307,714 +2668,693 @@ If the file does not exist, create it with owner-readable-only file permissions. It is also recommended to set alertnotify so you are notified of problems; for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo.com - %s has de establir una contrasenya RPC a l'arxiu de configuració:\n%s\nEs recomana que useu la següent constrasenya aleatòria:\nrpcuser=dogecoinrpc\nrpcpassword=%s\n(no necesiteu recordar aquesta contrsenya)\nEl nom d'usuari i contrasenya NO HAN de ser els mateixos.\nSi l'arxiu no existeix, crea'l amb els permisos d'arxiu de només lectura per al propietari.\nTambé es recomana establir la notificació d'alertes i així seràs notificat de les incidències;\nper exemple: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo.com + %s has de establir una contrasenya RPC a l'arxiu de configuració:\n%s\nEs recomana que useu la següent constrasenya aleatòria:\nrpcuser=bitcoinrpc\nrpcpassword=%s\n(no necesiteu recordar aquesta contrsenya)\nEl nom d'usuari i contrasenya NO HAN de ser els mateixos.\nSi l'arxiu no existeix, crea'l amb els permisos d'arxiu de només lectura per al propietari.\nTambé es recomana establir la notificació d'alertes i així seràs notificat de les incidències;\nper exemple: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo.com - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Ha sorgit un error al 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 Vincular a una adreça específica i sempre escoltar-hi. Utilitza la notació [host]:port per IPv6 - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - No es pot bloquejar el directori de dades %s. Probablement Dogecoin ja estigui en execució. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Executar una ordre quan una transacció del moneder canviï (%s in cmd es canvia per TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + + + 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. Advertència: el -paytxfee és molt elevat! Aquesta és la comissió de transacció que pagaràs quan enviis una transacció. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Advertència: Si us plau comprovi que la data i hora del seu computador siguin correctes! Si el seu rellotge està mal configurat, Dogecoin no funcionará de manera apropiada. - 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. Advertència: Error llegint l'arxiu wallet.dat!! Totes les claus es llegeixen correctament, però hi ha dades de transaccions o entrades del llibre 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. Advertència: L'arxiu 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. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: - Attempt to recover private keys from a corrupt wallet.dat Intentar recuperar les claus privades d'un arxiu wallet.dat corrupte - Dogecoin Core Daemon - - Dogecoin Core RPC client version - Versió RPC del client Dogecoin - - - Block creation options: Opcions de la creació de blocs: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + Connect only to the specified node(s) Connectar només al(s) node(s) especificats - Connect through SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: - Corrupted block database detected S'ha detectat una base de dades de blocs corrupta - + Debugging/Testing options: + + + + Disable safemode, override a real safe mode event (default: 0) + + + Discover own IP address (default: 1 when listening and no -externalip) Descobrir la pròpia adreça IP (per defecte: 1 quan escoltant i no -externalip) - Do not load the wallet and disable wallet RPC calls - Do you want to rebuild the block database now? Vols reconstruir la base de dades de blocs ara? - 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 opening block database Error obrint la base de dades de blocs - Error: Disk space is low! Error: Espai al disc baix! - Error: Wallet locked, unable to create transaction! Error: El moneder està blocat, no és possible crear la transacció! - Error: system error: Error: error de sistema: - Failed to listen on any port. Use -listen=0 if you want this. Error al escoltar a qualsevol port. Utilitza -listen=0 si vols 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 bloc - 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 l'arxiu info - 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 - + Fees smaller than this are considered zero fee (for relaying) (default: + + + Find peers using DNS lookup (default: 1 unless -connect) Cerca punts de connexió usant rastreig de DNS (per defecte: 1 tret d'usar -connect) - + Force safe mode (default: 0) + + + Generate coins (default: 0) Generar monedes (estàndard: 0) - 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) - - How thorough the block verification is (0-4, default: 3) - Com verificar el bloc (0-4, per defecte 3) - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? - Invalid -onion address: '%s' - Not enough file descriptors available. - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files Reconstruir l'índex de la cadena de blocs dels arxius actuals blk000??.dat - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server - Enviar comandament al servidor de Dogecoin + Set database cache size in megabytes (%d to %d, default: %d) + - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) Estableix el nombre de fils per atendre trucades RPC (per defecte: 4) - Specify wallet file (within data directory) Especifica un arxiu de moneder (dintre del directori de les dades) - - Start Dogecoin Core server - Arranca el servidor de Dogecoin + Spend unconfirmed change when sending transactions (default: 1) + - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): + Usage (deprecated, use bitcoin-cli): - Verifying blocks... Verificant blocs... - Verifying wallet... Verificant moneder... - Wait for RPC server to start - Wallet %s resides outside data directory %s - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex - Imports blocks from external blk000??.dat file Importa blocs de un fitxer blk000??.dat extern - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Information &Informació - Invalid amount for -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) Mantenir tot l'índex de transaccions (per defecte: 0) - 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) - Only accept block chain matching built-in checkpoints (default: 1) Tan sols acceptar 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 connectar als nodes de la xarxa <net> (IPv4, IPv6 o Tor) - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opcions SSL: (veure la Wiki de Bitcoin per a instruccions de configuració SSL) + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opcions SSL: (veure la Wiki de Dogecoin per a instruccions de configuració SSL) + + + Send command to Dogecoin Core + - Send trace/debug info to console instead of debug.log file Enviar informació de traça/debug a la consola en comptes del arxiu debug.log - Set minimum block size in bytes (default: 0) Establir una mida mínima de bloc en bytes (per defecte: 0) - + 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) Reduir l'arxiu debug.log al iniciar el client (per defecte 1 quan no -debug) - Signing transaction failed - Specify connection timeout in milliseconds (default: 5000) Especificar el temps limit per a un intent de connexió en milisegons (per defecte: 5000) - + Start Dogecoin Core Daemon + + + System error: Error de sistema: - Transaction amount too small - Transaction amounts must be positive - Transaction too large - 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) - Username for JSON-RPC connections Nom d'usuari per a connexions JSON-RPC - Warning Avís - Warning: This version is obsolete, upgrade required! Advertència: Aquetsa versió està obsoleta, és necessari actualitzar! - + Zapping all transactions from wallet... + + + + on startup + + + version versió - wallet.dat corrupt, salvage failed L'arxiu wallet.data és corrupte, el rescat de les dades ha fallat - Password for JSON-RPC connections Contrasenya per a connexions JSON-RPC - Allow JSON-RPC connections from specified IP address Permetre connexions JSON-RPC d'adreces IP específiques - Send commands to node running on <ip> (default: 127.0.0.1) Enviar ordre al node en execució a <ip> (per defecte: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) Executar orde quan el millor bloc canviï (%s al cmd es reemplaça per un bloc de hash) - Upgrade wallet to latest format Actualitzar moneder a l'últim format - Set key pool size to <n> (default: 100) Establir límit de nombre de claus a <n> (per defecte: 100) - Rescan the block chain for missing wallet transactions Re-escanejar cadena de blocs en cerca de transaccions de moneder perdudes - Use OpenSSL (https) for JSON-RPC connections Utilitzar OpenSSL (https) per a connexions JSON-RPC - Server certificate file (default: server.cert) Arxiu del certificat de servidor (per defecte: server.cert) - Server private key (default: server.pem) Clau privada del servidor (per defecte: server.pem) - This help message Aquest misatge d'ajuda - Unable to bind to %s on this computer (bind returned error %d, %s) Impossible d'unir %s a aquest ordinador (s'ha retornat l'error %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Permetre consultes DNS per a -addnode, -seednode i -connect - Loading addresses... Carregant adreces... - Error loading wallet.dat: Wallet corrupted Error carregant wallet.dat: Moneder corrupte - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Error carregant wallet.dat: El moneder requereix una versió de Dogecoin més moderna - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete El moneder necesita ser re-escrit: re-inicia Dogecoin per a completar la tasca - Error loading wallet.dat Error carregant wallet.dat - Invalid -proxy address: '%s' Adreça -proxy invalida: '%s' - Unknown network specified in -onlynet: '%s' Xarxa desconeguda especificada a -onlynet: '%s' - Unknown -socks proxy version requested: %i S'ha demanat una versió desconeguda de -socks proxy: %i - 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' - Invalid amount for -paytxfee=<amount>: '%s' Quantitat invalida per a -paytxfee=<amount>: '%s' - Invalid amount Quanitat invalida - Insufficient funds Balanç insuficient - Loading block index... Carregant índex de blocs... - Add a node to connect to and attempt to keep the connection open Afegir un node per a connectar's-hi i intentar mantenir la connexió oberta - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Impossible d'unir %s en aquest ordinador. Probablement Dogecoin ja estigui en execució. - - - Loading wallet... Carregant moneder... - Cannot downgrade wallet No es pot reduir la versió del moneder - Cannot write default address No es pot escriure l'adreça per defecte - Rescanning... Re-escanejant... - Done loading Càrrega acabada - To use the %s option Utilitza la opció %s - Error Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. Has de configurar el rpcpassword=<password> a l'arxiu de configuració:\n %s\n Si l'arxiu no existeix, crea'l amb els permís owner-readable-only. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_cmn.ts b/src/qt/locale/bitcoin_cmn.ts index d7b8f16f2..df71c5604 100644 --- a/src/qt/locale/bitcoin_cmn.ts +++ b/src/qt/locale/bitcoin_cmn.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label - Create a new address - &New - Copy the currently selected address to the system clipboard - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label - Address - (no label) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase - New passphrase - Repeat new passphrase - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Encrypt wallet - This operation needs your wallet passphrase to unlock the wallet. - Unlock wallet - This operation needs your wallet passphrase to decrypt the wallet. - Decrypt wallet - Change passphrase - Enter the old and new passphrase to the wallet. - Confirm wallet encryption - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - The supplied passphrases do not match. - Wallet unlock failed - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... - &Overview - Node - Show general overview of wallet - &Transactions - Browse transaction history - E&xit - Quit application - - Show information about Dogecoin Core + Show information about Dogecoin - - About &Qt - Show information about Qt - &Options... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File - &Settings - &Help - Tabs toolbar - - [testnet] - Dogecoin Core - Request payments (generates QR codes and dogecoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - Open a dogecoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address - Date - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - Cannot start dogecoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,23 +1324,26 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1656,22 +1351,18 @@ Address: %4 QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1679,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1872,105 +1517,82 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - - An optional label to associate with the new receiving address. - Use this form to request payments. All fields are <b>optional</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - Requested payments history - &Request payment - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove - Copy label - Copy message - Copy amount @@ -1978,67 +1600,54 @@ Address: %4 ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address - Amount - Label - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2046,37 +1655,30 @@ Address: %4 RecentRequestsTableModel - Date - Label - Message - Amount - (no label) - (no message) - (no amount) @@ -2084,247 +1686,194 @@ Address: %4 SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: - Confirm the send action - S&end - Confirm send coins - - - - %1 to %2 - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2332,98 +1881,74 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard - Alt+P - - - Remove this entry - Message: - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. - - Pay To: - - Memo: @@ -2431,12 +1956,10 @@ Address: %4 ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2444,186 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard - Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2631,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2649,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2657,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2837,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2850,118 +2282,102 @@ Address: %4 TransactionTableModel - Date - Type - Address - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2969,178 +2385,142 @@ Address: %4 TransactionView - - All - Today - This week - This month - Last month - This year - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - Confirmed - Date - Type - Label - Address - Amount - ID - Range: - to @@ -3148,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3156,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3164,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - Specify configuration file (default: dogecoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3322,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use dogecoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_cs.ts b/src/qt/locale/bitcoin_cs.ts index a03d8e495..219057b94 100644 --- a/src/qt/locale/bitcoin_cs.ts +++ b/src/qt/locale/bitcoin_cs.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - + O Dogecoin Core - <b>Dogecoin Core</b> version - + <b>Dogecoin Core</b> verze - This is experimental software. @@ -27,153 +24,128 @@ Tohle je experimentální program. Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v OpenSSL Toolkitu (http://www.openssl.org/) a kryptografický program od Erika Younga (eay@cryptsoft.com) a program UPnP od Thomase Bernarda. - Copyright Copyright - The Dogecoin Core developers - + Vývojáři Dogecoin Core + + + (%1-bit) + (%1-bit) AddressBookPage - Double-click to edit address or label Dvojklikem myši začneš upravovat označení adresy - Create a new address Vytvoř novou adresu - &New - + &Nová - Copy the currently selected address to the system clipboard Zkopíruj aktuálně vybranou adresu do systémové schránky - &Copy - + &Kopíruj - C&lose - + &Zavřít - &Copy Address &Kopíruj adresu - Delete the currently selected address from the list Smaž zvolenou adresu ze seznamu - Export the data in the current tab to a file Exportuj data z tohoto panelu do souboru - &Export &Export - &Delete S&maž - Choose the address to send coins to - + Zvol adresu, na kterou pošleš mince - Choose the address to receive coins with - + Zvol adres na příjem mincí - C&hoose - + &Zvol - Very sending addresses - + Odesílací adresy - Much receiving addresses - + Přijímací adresy - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Tohle jsou tvé Dogecoinové adresy pro posílání plateb. Před odesláním mincí si vždy zkontroluj částku a cílovou adresu. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - + Tohle jsou tvé Bitcoinové adresy pro příjem plateb. Je doporučené používat pokaždé novou adresu pro každou transakci. - Copy &Label Kopíruj &označení - &Edit &Uprav - Export Address List - + Exportuj seznam adres - Comma separated file (*.csv) CSV formát (*.csv) - Exporting Failed - + Exportování selhalo - There was an error trying to save the address list to %1. - + Při ukládání seznamu adres do %1 se přihodila nějaká chyba. AddressTableModel - Label Označení - Address Adresa - (no label) (bez označení) @@ -181,140 +153,106 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open AskPassphraseDialog - Passphrase Dialog Změna hesla - Enter passphrase Zadej platné heslo - New passphrase Zadej nové heslo - Repeat new passphrase Totéž heslo ještě jednou - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Zadej nové heslo k peněžence.<br/>Použij <b>alespoň 10 náhodných znaků</b> nebo <b>alespoň osm slov</b>. - Encrypt wallet Zašifruj peněženku - This operation needs your wallet passphrase to unlock the wallet. K provedení této operace musíš zadat heslo k peněžence, aby se mohla odemknout. - Unlock wallet Odemkni peněženku - This operation needs your wallet passphrase to decrypt the wallet. K provedení této operace musíš zadat heslo k peněžence, aby se mohla dešifrovat. - Decrypt wallet Dešifruj peněženku - Change passphrase Změň heslo - Enter the old and new passphrase to the wallet. Zadej staré a nové heslo k peněžence. - Confirm wallet encryption Potvrď zašifrování peněženky - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Varování: Pokud si zašifruješ peněženku a ztratíš či zapomeneš heslo, <b>PŘIJDEŠ O VŠECHNY DOGECOINY</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Varování: Pokud si zašifruješ peněženku a ztratíš či zapomeneš heslo, <b>PŘIJDEŠ O VŠECHNY BITCOINY</b>! - Are you sure you wish to encrypt your wallet? Jsi si jistý, že chceš peněženku zašifrovat? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. DŮLEŽITÉ: Všechny předchozí zálohy peněženky by měly být nahrazeny nově vygenerovanou, zašifrovanou peněženkou. Z bezpečnostních důvodů budou předchozí zálohy nešifrované peněženky nepoužitelné, jakmile začneš používat novou zašifrovanou peněženku. - - Warning: The Caps Lock key is on! Upozornění: Caps Lock je zapnutý! - - Wallet encrypted Peněženka je zašifrována - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin se teď ukončí, aby dokončil zašifrování. Pamatuj však, že pouhé zašifrování peněženky úplně nezabraňuje krádeži tvých dogecoinů malwarem, kterým se může počítač nakazit. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin se teď ukončí, aby dokončil zašifrování. Pamatuj však, že pouhé zašifrování peněženky úplně nezabraňuje krádeži tvých bitcoinů malwarem, kterým se může počítač nakazit. - - - - Wallet encryption failed Zašifrování peněženky selhalo - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Zašifrování peněženky selhalo kvůli vnitřní chybě. Tvá peněženka tedy nebyla zašifrována. - - The supplied passphrases do not match. Zadaná hesla nejsou shodná. - Wallet unlock failed Odemčení peněženky selhalo - - - The passphrase entered for the wallet decryption was incorrect. Nezadal jsi správné heslo pro dešifrování peněženky. - Wallet decryption failed Dešifrování peněženky selhalo - Wallet passphrase was successfully changed. Heslo k peněžence bylo v pořádku změněno. @@ -322,352 +260,286 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open BitcoinGUI - Sign &message... Po&depiš zprávu... - Synchronizing with network... Synchronizuji se se sítí... - &Overview &Přehled - Node - + Uzel - Show general overview of wallet Zobraz celkový přehled peněženky - &Transactions &Transakce - Browse transaction history Procházej historii transakcí - E&xit &Konec - Quit application Ukonči aplikaci - - Show information about Dogecoin Core + Show information about Dogecoin Zobraz informace o Dogecoinu - - About &Qt O &Qt - Show information about Qt Zobraz informace o Qt - &Options... &Možnosti... - &Encrypt Wallet... Zaši&fruj peněženku... - &Backup Wallet... &Zazálohuj peněženku... - &Change Passphrase... Změň &heslo... - Very &sending addresses... - + Od&esílací adresy... - Much &receiving addresses... - + Př&ijímací adresy... - Open &URI... - Importing blocks from disk... Importuji bloky z disku... - Reindexing blocks on disk... Vytvářím nový index bloků na disku... - Send coins to a Dogecoin address Pošli mince na Dogecoinovou adresu - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Uprav nastavení Dogecoinu - Backup wallet to another location Zazálohuj peněženku na jiné místo - Change the passphrase used for wallet encryption Změň heslo k šifrování peněženky - &Debug window &Ladicí okno - Open debugging and diagnostic console Otevři ladicí a diagnostickou konzoli - &Verify message... &Ověř zprávu... - Dogecoin Dogecoin - Wallet Peněženka - &Send &Pošli - &Receive Při&jmi - - &Show / Hide &Zobraz/Skryj - Show or hide the main Window Zobraz nebo skryj hlavní okno - Encrypt the private keys that belong to your wallet Zašifruj soukromé klíče ve své peněžence - Sign messages with your Dogecoin addresses to prove you own them Podepiš zprávy svými Dogecoinovými adresami, čímž prokážeš, že jsi jejich vlastníkem - Verify messages to ensure they were signed with specified Dogecoin addresses Ověř zprávy, aby ses ujistil, že byly podepsány danými Dogecoinovými adresami - &File &Soubor - &Settings &Nastavení - &Help Ná&pověda - Tabs toolbar Panel s listy - - [testnet] [testnet] - Dogecoin Core Jádro Dogecoinu - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - + O &Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - + Ar&gumenty z příkazové řádky - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options - + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options + Seznam argumentů Bitcoinu pro příkazovou řádku získáš v nápovědě Bitcoinu Core. - - Dogecoin client Dogecoin klient - %n active connection(s) to Dogecoin network %n aktivní spojení do Dogecoinové sítě%n aktivní spojení do Dogecoinové sítě%n aktivních spojení do Dogecoinové sítě - No block source available... Není dostupný žádný zdroj bloků... - Processed %1 of %2 (estimated) blocks of transaction history. Zpracováno %1 z přibližně %2 bloků transakční historie. - Processed %1 blocks of transaction history. Zpracováno %1 bloků transakční historie. - %n hour(s) hodinu%n hodiny%n hodin - %n day(s) den%n dny%n dnů - %n week(s) týden%n týdny%n týdnů - + %1 and %2 + %1 a %2 + + + %n year(s) + + + %1 behind Stahuji ještě bloky transakcí za poslední %1 - 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. - Error Chyba - Warning Upozornění - Information Informace - Up to date Aktuální - Catching up... Stahuji... - Sent transaction Odeslané transakce - Incoming transaction Příchozí transakce - Date: %1 Amount: %2 Type: %3 @@ -680,25 +552,21 @@ 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>locked</b> Peněženka je <b>zašifrovaná</b> a momentálně <b>zamčená</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Stala se fatální chyba. Dogecoin nemůže bezpečně pokračovat v činnosti, a proto skončí. ClientModel - Network Alert Upozornění sítě @@ -706,359 +574,285 @@ Adresa: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - + Bajtů: - Amount: Částka: - Priority: - + Priorita: - Fee: - + Poplatek: - Low Output: - After Fee: - Change: - + Drobné: - (un)select all - Tree mode - List mode - Amount Částka - Address Adresa - Date Datum - Confirmations - + Potvrzení - Confirmed Potvrzeno - Priority - + Priorita - Copy address - Kopírovat sdresu + Kopíruj adresu - Copy label - Kopírovat popis + Kopíruj její označení - - Copy amount Kopíruj částku - Copy transaction ID Kopíruj ID transakce - Lock unspent - Unlock unspent - Copy quantity - Copy fee - + Kopíruj poplatek - Copy after fee - Copy bytes - + Kopíruj bajty - Copy priority - + Kopíruj prioritu - Copy low output - Copy change - + Kopíruj drobné - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) - (bez popisu) + (bez označení) - change from %1 (%2) - (change) - + (drobné) EditAddressDialog - Edit Address Uprav adresu - &Label &Označení - The label associated with this address list entry - + Označení spojené s tímto záznamem v seznamu adres - The address associated with this address list entry. This can only be modified for sending addresses. - + Adresa spojená s tímto záznamem v seznamu adres. Lze upravovat jen pro odesílací adresy. - &Address &Adresa - New receiving address Nová přijímací adresa - New sending address Nová odesílací adresa - Edit receiving address Uprav přijímací adresu - Edit sending address Uprav odesílací adresu - The entered address "%1" is already in the address book. Zadaná adresa "%1" už v adresáři je. - The entered address "%1" is not a valid Dogecoin address. Zadaná adresa "%1" není platná Dogecoinová adresa. - Could not unlock wallet. Nemohu odemknout peněženku. - New key generation failed. Nepodařilo se mi vygenerovat nový klíč. @@ -1066,27 +860,22 @@ Adresa: %4 FreespaceChecker - A new data directory will be created. Vytvoří se nový adresář pro data. - name název - Directory already exists. Add %1 if you intend to create a new directory here. Adresář už existuje. Přidej %1, pokud tady chceš vytvořit nový adresář. - Path already exists, and is not a directory. Taková cesta už existuje, ale není adresářem. - Cannot create data directory here. Tady nemůžu vytvořit adresář pro data. @@ -1094,52 +883,46 @@ Adresa: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Jádro Dogecoinu - version verze - Usage: Užití: - command-line options možnosti příkazové řádky - UI options Možnosti UI - Set language, for example "de_DE" (default: system locale) Nastavit jazyk, například "de_DE" (výchozí: systémové nastavení) - Start minimized Nastartovat minimalizovaně - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Zobrazit startovací obrazovku (výchozí: 1) - Choose data directory on startup (default: 0) Zvolit adresář pro data při startu (výchozí: 0) @@ -1147,57 +930,46 @@ Adresa: %4 Intro - Welcome Vítej - Welcome to Dogecoin Core. - + Vítej v Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - + Tohle je poprvé, co spouštíš Dogecoin Core, takže si můžeš zvolit, kam bude ukládat svá data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - + Dogecoin Core bude stahovat kopii řetězce bloků. Proto bude potřeba do tohoto adresáře uložit nejméně %1 GB dat – toto číslo bude navíc v průběhu času pomalu růst. Tvá peněženka bude rovněž uložena v tomto adresáři. - Use the default data directory Použij výchozí adresář pro data - Use a custom data directory: Použij tento adresář pro data: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. Chyba: Nejde vytvořit požadovaný adresář pro data „%1“. - Error Chyba - GB of free space available GB volného místa - (of %1GB needed) (z potřebných %1 GB) @@ -1205,271 +977,229 @@ Adresa: %4 OpenURIDialog - Open URI - + Načíst URI - Open payment request from URI or file - + Načíst platební požadavek z URI nebo ze souboru - URI: - + URI: - Select payment request file - + Vyber soubor platebního požadavku - Select payment request file to open - + Vyber soubor platebního požadavku k načtení OptionsDialog - Options Možnosti - &Main &Hlavní - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Dobrovolný transakční poplatek za každý započatý kB dopomáhá k rychlému zpracování tvých transakcí. Většina transakcí má do 1 kB. - Pay transaction &fee Platit &transakční poplatek - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Automaticky spustí Dogecoin po přihlášení do systému. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login S&pustit Dogecoin po přihlášení do systému - Size of &database cache - + Velikost &databázové cache - - Set database cache size in megabytes (default: 25) - Nastavit velikost databázové vyrovnávací paměti v megabajtech (výchozí: 25) - - - MB - + MB - Number of script &verification threads - + Počet vláken pro &verifikaci skriptů - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Nastavení počtu vláken pro verifikaci skriptů (max. 16, 0 = automaticky, <0 = nechat daný počet jader volný, výchozí: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - + Připojí se do Dogecoinové sítě přes SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - + &Připojit přes SOCKS proxy (výchozí proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - + IP adresa proxy (např. IPv4: 127.0.0.1/IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. Vrátí všechny volby na výchozí hodnoty. - &Reset Options &Obnovit nastavení - &Network &Síť - + (0 = auto, <0 = leave that many cores free) + (0 = automaticky, <0 = nechat daný počet jader volný, výchozí: 0) + + + W&allet + P&eněženka + + + Expert + Odborník + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Automaticky otevře potřebný port na routeru. Tohle funguje jen za předpokladu, že tvůj router podporuje UPnP a že je UPnP povolené. - Map port using &UPnP Namapovat port přes &UPnP - Proxy &IP: &IP adresa proxy: - &Port: Por&t: - Port of the proxy (e.g. 9050) Port proxy (např. 9050) - SOCKS &Version: &Verze SOCKS: - SOCKS version of the proxy (e.g. 5) Verze SOCKS proxy (např. 5) - &Window O&kno - Show only a tray icon after minimizing the window. Po minimalizaci okna zobrazí pouze ikonu v panelu. - &Minimize to the tray instead of the taskbar &Minimalizovávat do ikony v panelu - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Zavřením se aplikace minimalizuje. Pokud je tato volba zaškrtnuta, tak se aplikace ukončí pouze zvolením Konec v menu. - M&inimize on close Za&vřením minimalizovat - &Display Zobr&azení - User Interface &language: &Jazyk uživatelského rozhraní: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Tady lze nastavit jazyk uživatelského rozhraní. Nastavení se projeví až po restartování Dogecoinu. - &Unit to show amounts in: J&ednotka pro částky: - Choose the default subdivision unit to show in the interface and when sending coins. Zvol výchozí podjednotku, která se bude zobrazovat v programu a při posílání mincí. - Whether to show Dogecoin addresses in the transaction list or not. - Zda ukazovat dogecoinové adresy ve výpisu transakcí nebo ne. + Zda ukazovat bitcoinové adresy ve výpisu transakcí nebo ne. - &Display addresses in transaction list Ukazo&vat adresy ve výpisu transakcí - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &Budiž - &Cancel &Zrušit - default výchozí - none - Confirm options reset Potvrzení obnovení nastavení - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - + Klient se vypne, chceš pokračovat? - This change would require a client restart. - + Tahle změna bude chtít restartovat klienta. - The supplied proxy address is invalid. Zadaná adresa proxy je neplatná. @@ -1477,69 +1207,54 @@ Adresa: %4 OverviewPage - Form Formulář - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Zobrazené informace nemusí být aktuální. Tvá peněženka se automaticky sesynchronizuje s Dogecoinovou sítí, jakmile se s ní spojí. Zatím ale ještě není synchronizace dokončena. - - Unconfirmed: - Nepotvrzeno: - - - Wallet Peněženka - - Confirmed: - Potvrzeno: + Available: + K dispozici: - Your current spendable balance Aktuální disponibilní stav tvého účtu - + Pending: + Očekáváno: + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Celkem z transakcí, které ještě nejsou potvrzené a které se ještě nezapočítávají do celkového disponibilního stavu účtu - Immature: Nedozráno: - Mined balance that has not yet matured Vytěžené mince, které ještě nejsou zralé - Total: Celkem: - Your current total balance Celkový stav tvého účtu - <b>Recent transactions</b> <b>Poslední transakce</b> - - out of sync nesynchronizováno @@ -1547,484 +1262,401 @@ Adresa: %4 PaymentServer - - URI handling Zpracování URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. Nepodařilo se analyzovat URI! Důvodem může být neplatná Dogecoinová adresa nebo poškozené parametry URI. - Requested payment amount of %1 is too small (considered dust). - Požadovaná platební částka ve výši %1 je příliš malá (požadovaná za prach). + Požadovaná platební částka %1 je příliš malá (je považována za prach). - - - - - - Payment request error - + Chyba platebního požadavku - - Cannot start dogecoin: click-to-pay handler - Nemůžu spustit dogecoin: obsluha click-to-pay + Cannot start bitcoin: click-to-pay handler + Nemůžu spustit bitcoin: obsluha click-to-pay - Net manager warning - + Upozornění správce sítě - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - + Tvá aktivní proxy nepodporuje SOCKS5, které je vyžadováno pro platební požadavky skrz proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - + Zpracování souboru platebního požadavku - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - + Soubor platebního požadavku nejde přečíst nebo zpracovat! Příčinou může být špatný soubor platebního požadavku. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 Vrácení peněz od %1 - Error communicating with %1: %2 - Chyba komunikující s %1: %2 + Chyba při komunikaci s %1: %2 - Payment request can not be parsed or processed! - + Platebního požadavku nejde přečíst nebo zpracovat! - Bad response from server %1 - Špatná reakce serveru %1 + Chybná odpověď ze serveru %1 - Payment acknowledged Platba potvrzena - Network request error - + Chyba síťového požadavku QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Chyba: Zadaný adresář pro data „%1“ neexistuje. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Chyba: Nemohu zpracovat konfigurační soubor: %1. Používej pouze syntaxi klíč=hodnota. + + Error: Invalid combination of -regtest and -testnet. - + Chyba: Neplatná kombinace -regtest a -testnet. + + + Dogecoin Core did't yet exit safely... + Dogecoin Core ještě bezpečně neskončil... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Zadej Dogecoinovou adresu (např. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) QRImageWidget - &Save Image... - &Ulož Obrázek... + &Ulož obrázek... - &Copy Image - &Kopíruj Obraz + &Kopíruj obrázek - Save QR Code Ulož QR kód - PNG Image (*.png) - + PNG obrázek (*.png) RPCConsole - Client name Název klienta - - - - - - - - - - - N/A N/A - Client version Verze klienta - &Information &Informace - Debug window - + Ladicí okno - General - + Obecné - Using OpenSSL version Používaná verze OpenSSL - Startup time Čas spuštění - Network Síť - Name - + Název - Number of connections Počet spojení - Block chain Řetězec bloků - Current number of blocks Aktuální počet bloků - Estimated total blocks Odhad celkového počtu bloků - Last block time Čas posledního bloku - &Open &Otevřít - &Console &Konzole - &Network Traffic - &Provoz na síti + &Síťový provoz - &Clear - + &Vyčistit - Totals - + Sumy - In: - + Sem: - Out: - + Ven: - Build date Datum kompilace - Debug log file Soubor s ladicími záznamy - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Otevři soubor s ladicími záznamy Dogecoinu z aktuálního datového adresáře. U velkých logů to může pár vteřin zabrat. - Clear console Vyčistit konzoli - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Vítej v Dogecoinové RPC konzoli. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. V historii se pohybuješ šipkami nahoru a dolů a pomocí <b>Ctrl-L</b> čistíš obrazovku. - Type <b>help</b> for an overview of available commands. Napsáním <b>help</b> si vypíšeš přehled dostupných příkazů. - %1 B - + %1 B - %1 KB - + %1 kB - %1 MB - + %1 MB - %1 GB - + %1 GB - %1 m - + %1 m - %1 h - + %1 h - %1 h %2 m - + %1 h %2 m ReceiveCoinsDialog - &Amount: - + Čás&tka: - &Label: - O&značení: + &Označení: - &Message: - + &Zpráva: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - + &Vyžádat platbu - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + Kopíruj její označení + + + Copy message + Kopíruj zprávu + + + Copy amount + Kopíruj částku + ReceiveRequestDialog - QR Code - + QR kód - Copy &URI - Copy &Address - &Save Image... &Ulož Obrázek... - Request payment to %1 - Payment information - URI - + URI - Address Adresa - Amount Částka - Label - Popis + Označení - Message Zpráva - Resulting URI too long, try to reduce the text for label / message. - Výsledná URI je příliš dlouhá, zkus zkrátit text označení / zprávy. + Výsledná URI je příliš dlouhá, zkus zkrátit text označení/zprávy. - Error encoding URI into QR Code. Chyba při kódování URI do QR kódu. @@ -2032,595 +1664,454 @@ Adresa: %4 RecentRequestsTableModel - Date Datum - Label - Popis + Označení - Message Zpráva - Amount Částka - (no label) - (bez popisu) + (bez označení) - (no message) - + (bez zprávy) + + + (no amount) + (bez částky) SendCoinsDialog - - - Send Coins Pošli mince - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - + Bajtů: - Amount: Částka: - Priority: - + Priorita: - Fee: - + Poplatek: - Low Output: - After Fee: - Change: - + Drobné: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - + Vlastní adresa pro drobné - Send to multiple recipients at once Pošli více příjemcům naráz - Add &Recipient Při&dej příjemce - Clear all fields of the form. - Clear &All Všechno s&maž - Balance: Stav účtu: - Confirm the send action Potvrď odeslání - S&end P&ošli - Confirm send coins Potvrď odeslání mincí - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Zadej Dogecoinovou adresu (např. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount Kopíruj částku - Copy fee - + Kopíruj poplatek - Copy after fee - Copy bytes - + Kopíruj bajty - Copy priority - + Kopíruj prioritu - Copy low output - Copy change - + Kopíruj drobné - Total Amount %1 (= %2) - or - + nebo - The recipient address is not valid, please recheck. Adresa příjemce je neplatná, překontroluj ji prosím. - The amount to pay must be larger than 0. Odesílaná částka musí být větší než 0. - The amount exceeds your balance. Částka překračuje stav účtu. - The total exceeds your balance when the %1 transaction fee is included. Celková částka při připočítání poplatku %1 překročí stav účtu. - Duplicate address found, can only send to each address once per send operation. Zaznamenána duplikovaná adresa; každá adresa může být v odesílané platbě pouze jednou. - Transaction creation failed! - + Vytvoření transakce selhalo! - 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. - + 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. - Warning: Invalid Dogecoin address - + Upozornění: Neplatná Dogecoinová adresa - (no label) - (bez popisu) + (bez označení) - Warning: Unknown change address - + Upozornění: Neznámá adresa pro drobné - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 - + Neplatná platební adresa %1 SendCoinsEntry - - - A&mount: Čás&tka: - Pay &To: &Komu: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Adresa příjemce (např. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Zadej označení této adresy; obojí se ti pak uloží do adresáře - &Label: O&značení: - Choose previously used address - This is a normal payment. - + Tohle je normální platba. - Alt+A Alt+A - Paste address from clipboard Vlož adresu ze schránky - Alt+P Alt+P - - - Remove this entry - + Smaž tento záznam - Message: Zpráva: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Zadej Dogecoinovou adresu (např. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Poznámka: ShutdownWindow - Dogecoin Core is shutting down... - + Dogecoin Core se ukončuje... - Do not shut down the computer until this window disappears. - + Nevypínej počítač, dokud toto okno nezmizí. SignVerifyMessageDialog - Signatures - Sign / Verify a Message Podpisy - podepsat/ověřit zprávu - &Sign Message &Podepiš zprávu - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Podepsáním zprávy svými adresami můžeš prokázat, že je skutečně vlastníš. Buď opatrný a nepodepisuj nic vágního; například při phishingových útocích můžeš být lákán, abys něco takového podepsal. Podepisuj pouze zcela úplná a detailní prohlášení, se kterými souhlasíš. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Adresa, kterou se zpráva podepíše (např. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard Vlož adresu ze schránky - Alt+P Alt+P - Enter the message you want to sign here Sem vepiš zprávu, kterou chceš podepsat - Signature Podpis - Copy the current signature to the system clipboard Zkopíruj aktuálně vybraný podpis do systémové schránky - Sign the message to prove you own this Dogecoin address Podepiš zprávu, čímž prokážeš, že jsi vlastníkem této Dogecoinové adresy - Sign &Message Po&depiš zprávu - Reset all sign message fields Vymaž všechna pole formuláře pro podepsání zrávy - - Clear &All Všechno &smaž - &Verify Message &Ověř zprávu - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. K ověření podpisu zprávy zadej podepisující adresu, zprávu (ověř si, že správně kopíruješ zalomení řádků, mezery, tabulátory apod.) a podpis. Dávej pozor na to, abys nezkopíroval do podpisu víc, než co je v samotné podepsané zprávě, abys nebyl napálen man-in-the-middle útokem. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Adresa, kterou je zpráva podepsána (např. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Ověř zprávu, aby ses ujistil, že byla podepsána danou Dogecoinovou adresou - Verify &Message O&věř zprávu - Reset all verify message fields Vymaž všechna pole formuláře pro ověření zrávy - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Zadej Dogecoinovou adresu (např. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Kliknutím na "Podepiš zprávu" vygeneruješ podpis - - Enter Dogecoin signature - Vlož Dogecoinový podpis - - - - The entered address is invalid. Zadaná adresa je neplatná. - - - - Please check the address and try again. Zkontroluj ji prosím a zkus to pak znovu. - - The entered address does not refer to a key. Zadaná adresa nepasuje ke klíči. - Wallet unlock was cancelled. Odemčení peněženky bylo zrušeno. - Private key for the entered address is not available. Soukromý klíč pro zadanou adresu není dostupný. - Message signing failed. Podepisování zprávy selhalo. - Message signed. Zpráv podepsána. - The signature could not be decoded. Podpis nejde dekódovat. - - Please check the signature and try again. Zkontroluj ho prosím a zkus to pak znovu. - The signature did not match the message digest. Podpis se neshoduje s hašem zprávy. - Message verification failed. Ověřování zprávy selhalo. - Message verified. Zpráva ověřena. @@ -2628,17 +2119,14 @@ Adresa: %4 SplashScreen - Dogecoin Core Jádro Dogecoinu - The Dogecoin Core developers - + Vývojáři Dogecoin Core - [testnet] [testnet] @@ -2646,187 +2134,145 @@ Adresa: %4 TrafficGraphWidget - KB/s - + kB/s TransactionDesc - Open until %1 Otřevřeno dokud %1 - + conflicted + kolidující + + %1/offline %1/offline - %1/unconfirmed %1/nepotvrzeno - %1 confirmations %1 potvrzení - Status Stav - , broadcast through %n node(s) , rozesláno přes 1 uzel, rozesláno přes %n uzly, rozesláno přes %n uzlů - Date Datum - Source Zdroj - Generated Vygenerováno - - From Od - - - To Pro - - own address vlastní adresa - label označení - - - - - Credit Příjem - matures in %n more block(s) dozraje po jednom blokudozraje po %n blocíchdozraje po %n blocích - not accepted neakceptováno - - - - Debit Výdaj - Transaction fee Transakční poplatek - Net amount Čistá částka - - Message Zpráva - Comment Komentář - Transaction ID ID transakce - Merchant - + Obchodník - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + Vygenerované mince musí čekat %1 bloků, než mohou být utraceny. Když jsi vygeneroval tenhle blok, tak byl rozposlán do sítě, aby byl přidán do řetězce bloků. Pokud se mu nepodaří dostat se do řetězce, změní se na "neakceptovaný" a nepůjde utratit. To se občas může stát, pokud jiný uzel vygeneruje blok zhruba ve stejném okamžiku jako ty. - Debug information Ladicí informace - Transaction Transakce - Inputs Vstupy - Amount Částka - true true - false false - , has not been successfully broadcast yet , ještě nebylo rozesláno - Open for %n more block(s) Otevřeno pro 1 další blokOtevřeno pro %n další blokyOtevřeno pro %n dalších bloků - unknown neznámo @@ -2834,12 +2280,10 @@ Adresa: %4 TransactionDescDialog - Transaction details Detaily transakce - This pane shows a detailed description of the transaction Toto okno zobrazuje detailní popis transakce @@ -2847,118 +2291,102 @@ Adresa: %4 TransactionTableModel - Date Datum - Type Typ - Address Adresa - Amount Částka - Immature (%1 confirmations, will be available after %2) - + Nedozráno (%1 potvrzení, bude k dispozici za %2) - Open for %n more block(s) Otevřeno pro 1 další blokOtevřeno pro %n další blokyOtevřeno pro %n dalších bloků - Open until %1 Otřevřeno dokud %1 - - Offline (%1 confirmations) - Offline (%1 potvrzení) - - - - Unconfirmed (%1 of %2 confirmations) - Nepotvrzeno (%1 z %2 potvrzení) - - - - Confirmed (%1 confirmations) Potvrzeno (%1 potvrzení) - This block was not received by any other nodes and will probably not be accepted! Tento blok nedostal žádný jiný uzel a pravděpodobně nebude akceptován! - Generated but not accepted Vygenerováno, ale neakceptováno - + Offline + Offline + + + Unconfirmed + Nepotvrzeno + + + Confirming (%1 of %2 recommended confirmations) + Potvrzuje se (%1 z %2 doporučených potvrzení) + + + Conflicted + V kolizi + + Received with Přijato do - Received from Přijato od - Sent to Posláno na - Payment to yourself Platba sama sobě - Mined Vytěženo - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. Stav transakce. Najetím myši na toto políčko si zobrazíš počet potvrzení. - Date and time that the transaction was received. Datum a čas přijetí transakce. - Type of transaction. Druh transakce. - Destination address of transaction. Cílová adresa transakce. - Amount removed from or added to balance. Částka odečtená z nebo přičtená k účtu. @@ -2966,178 +2394,142 @@ Adresa: %4 TransactionView - - All Vše - Today Dnes - This week Tento týden - This month Tento měsíc - Last month Minulý měsíc - This year Letos - Range... Rozsah... - Received with Přijato - Sent to Posláno - To yourself Sám sobě - Mined Vytěženo - Other Ostatní - Enter address or label to search Zadej adresu nebo označení pro její vyhledání - Min amount Minimální částka - Copy address Kopíruj adresu - Copy label Kopíruj její označení - Copy amount Kopíruj částku - Copy transaction ID Kopíruj ID transakce - Edit label Uprav označení - Show transaction details Zobraz detaily transakce - Export Transaction History - + Exportuj transakční historii - Exporting Failed - + Exportování selhalo - There was an error trying to save the transaction history to %1. - + Při ukládání transakční historie do %1 se přihodila nějaká chyba. - Exporting Successful - + Úspěšně vyexportováno - The transaction history was successfully saved to %1. - + Transakční historie byla v pořádku uložena do %1. - Comma separated file (*.csv) CSV formát (*.csv) - Confirmed Potvrzeno - Date Datum - Type Typ - Label Označení - Address Adresa - Amount Částka - ID ID - Range: Rozsah: - to @@ -3145,15 +2537,13 @@ Adresa: %4 WalletFrame - No wallet has been loaded. - + Žádná peněženka se nenačetla. WalletModel - Send Coins Pošli mince @@ -3161,154 +2551,125 @@ Adresa: %4 WalletView - &Export &Export - Export the data in the current tab to a file Exportuj data z tohoto panelu do souboru - Backup Wallet Záloha peněženky - Wallet Data (*.dat) Data peněženky (*.dat) - Backup Failed Zálohování selhalo - There was an error trying to save the wallet data to %1. - + Při ukládání peněženky do %1 se přihodila nějaká chyba. - The wallet data was successfully saved to %1. - + Data z peněženky byla v pořádku uložena do %1. - Backup Successful Úspěšně zazálohováno - dogecoin-core + bitcoin-core - Usage: Užití: - List commands Výpis příkazů - Get help for a command Získat nápovědu pro příkaz - Options: Možnosti: - - Specify configuration file (default: dogecoin.conf) - Konfigurační soubor (výchozí: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Konfigurační soubor (výchozí: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - PID soubor (výchozí: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + PID soubor (výchozí: bitcoind.pid) - Specify data directory Adresář pro data - - Set database cache size in megabytes (default: 25) - Nastavit velikost databázové vyrovnávací paměti v megabajtech (výchozí: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Čekat na spojení na <portu> (výchozí: 8333 nebo testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Čekat na spojení na <portu> (výchozí: 22556 nebo testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Povolit nejvýše <n> připojení k uzlům (výchozí: 125) - 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 - Specify your own public address Specifikuj svou veřejnou adresu - Threshold for disconnecting misbehaving peers (default: 100) Práh pro odpojování zlobivých uzlů (výchozí: 100) - 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) - An error occurred while setting up the RPC port %u for listening on IPv4: %s Při nastavování naslouchacího RPC portu %i pro IPv4 nastala chyba: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Čekat na JSON RPC spojení na <portu> (výchozí: 22555 nebo testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Čekat na JSON RPC spojení na <portu> (výchozí: 8332 nebo testnet: 18332) - Accept command line and JSON-RPC commands Akceptovat příkazy z příkazové řádky a přes JSON-RPC - + Dogecoin Core RPC client version + Verze Dogecoin Core RPC klienta + + Run in the background as a daemon and accept commands Běžet na pozadí jako démon a akceptovat příkazy - Use the test network Použít testovací síť (testnet) - 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) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3319,7 +2680,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, musíš nastavit rpcpassword v konfiguračním souboru: %s Je vhodné použít následující náhodné heslo: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (není potřeba si ho pamatovat) rpcuser a rpcpassword NESMÍ být stejné. @@ -3329,707 +2690,686 @@ například: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. - Nedaří se mi získat zámek na datový adresář %s. Dogecoin pravděpodobně už jednou běží. - - - - 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ěz, 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. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + + + + 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 %d) - 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í! - 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) - + 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) + + + + 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. + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Nastavení počtu vláken pro verifikaci skriptů (%u až %d, 0 = automaticky, <0 = nechat daný počet jader volný, výchozí: 0) + + + Set the processor limit for when generation is on (-1 = unlimited, 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 - - Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Unable to bind to %s on this computer. Dogecoin Core is probably already running. + Nedaří se mi připojit na %s na tomhle počítači. Dogecoin Core už pravděpodobně jednou běží. + + + 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 Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Upozornění: Zkontroluj, že máš v počítači správně nastavený datum a čas! Pokud jsou nastaveny špatně, Dogecoin nebude fungovat správně. - 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. - - <category> can be: - + (default: 1) + (výchozí: 1) + + + (default: wallet.dat) + (výchozí: wallet.dat) + + + <category> can be: + <category> může být: - Attempt to recover private keys from a corrupt wallet.dat Pokusit se zachránit soukromé klíče z poškozeného souboru wallet.dat - Dogecoin Core Daemon - + Dogecoin Core démon - - Dogecoin Core RPC client version - - - - Block creation options: Možnosti vytvoření bloku: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + 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 - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + Připojit se k JSON RPC na <port> (výchozí: 8332 nebo testnet: 18332) + + + Connection options: - Corrupted block database detected Bylo zjištěno poškození databáze bloků - + Debugging/Testing options: + + + + Disable safemode, override a real safe mode event (default: 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 - Do you want to rebuild the block database now? Chceš přestavět databázi bloků hned teď? - 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 opening block database Chyba při otevírání databáze bloků - 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: 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: - Find peers using DNS lookup (default: 1 unless -connect) Hledat uzly přes DNS (výchozí: 1, pokud není zadáno -connect) - + Force safe mode (default: 0) + Vynutit bezpečný mód (výchozí: 0) + + Generate coins (default: 0) Generovat mince (výchozí: 0) - How many blocks to check at startup (default: 288, 0 = all) Kolik bloků při startu zkontrolovat (výchozí: 288, 0 = všechny) - - How thorough the block verification is (0-4, default: 3) - Jak moc důkladná má být verifikace bloků (0-4, výchozí: 3) - - - If <category> is not supplied, output all debugging information. - + Importing... + Importuji... + + Incorrect or no genesis block found. Wrong datadir for network? Nemám žádný nebo jen špatný genesis blok. Není špatně nastavený datadir? - Invalid -onion address: '%s' - + Neplatná -onion adresa: '%s' - Not enough file descriptors available. Je nedostatek deskriptorů souborů. - Prepend debug output with timestamp (default: 1) - + Připojit před ladicí výstup časové razítko (výchozí: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files Znovu vytvořit index řetězce bloků z aktuálních blk000??.dat souborů - 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 Dogecoin Core server - + 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 maximum block size in bytes (default: %d) - + Nastavit maximální velikost bloku v bajtech (výchozí: %d) - Set the number of threads to service RPC calls (default: 4) Nastavení počtu vláken pro servisní RPC volání (výchozí: 4) - Specify wallet file (within data directory) Udej název souboru s peněženkou (v rámci datového adresáře) - - Start Dogecoin Core server + Spend unconfirmed change when sending transactions (default: 1) - 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í. + + + Usage (deprecated, use bitcoin-cli): - - Usage (deprecated, use dogecoin-cli): - - - - Verifying blocks... Ověřuji bloky... - Verifying wallet... Kontroluji peněženku... - Wait for RPC server to start - Wallet %s resides outside data directory %s Peněženka %s se nachází mimo datový adresář %s - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - 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 - Imports blocks from external blk000??.dat file Importovat bloky z externího souboru blk000??.dat - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + Nedaří se mi získat zámek na datový adresář %s. Dogecoin Core pravděpodobně už jednou běží. + + 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) - Output debugging information (default: 0, supplying <category> is optional) - + Tisknout ladicí informace (výchozí: 0, zadání <category> je volitelné) - 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 (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Nastavení počtu vláken pro verifikaci skriptů (max. 16, 0 = automaticky, <0 = nechat daný počet jader volný, výchozí: 0) - - - Information Informace - Invalid amount for -minrelaytxfee=<amount>: '%s' Neplatná částka pro -minrelaytxfee=<částka>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' Neplatná částka pro -mintxfee=<částka>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) Spravovat úplný index transakcí (výchozí: 0) - 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) - Only accept block chain matching built-in checkpoints (default: 1) - Uznávat pouze řetěz bloků, který odpovídá vnitřním kontrolním bodům (výchozí: 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) - + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Možnosti SSL: (viz instrukce nastavení SSL v Bitcoin Wiki) - + Send command to Dogecoin Core + Poslat příkaz Dogecoin Core + + Send trace/debug info to console instead of debug.log file Posílat stopovací/ladicí informace do konzole místo do souboru debug.log - Set minimum block size in bytes (default: 0) Nastavit minimální velikost bloku v bajtech (výchozí: 0) - + 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) Při spuštění klienta zmenšit soubor debug.log (výchozí: 1, pokud není zadáno -debug) - Signing transaction failed Podepisování transakce selhalo - Specify connection timeout in milliseconds (default: 5000) Zadej časový limit spojení v milisekundách (výchozí: 5000) - + Start Dogecoin Core Daemon + + + System error: Systémová chyba: - Transaction amount too small Částka v transakci je příliš malá - Transaction amounts must be positive Částky v transakci musí být kladné - Transaction too large Transace je příliš velká - 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á) - Username for JSON-RPC connections Uživatelské jméno pro JSON-RPC spojení - Warning Upozornění - Warning: This version is obsolete, upgrade required! Upozornění: tahle verze je zastaralá, měl bys ji aktualizovat! - + Zapping all transactions from wallet... + + + + on startup + při startu + + version verze - wallet.dat corrupt, salvage failed Soubor wallet.dat je poškozen, jeho záchrana se nezdařila - Password for JSON-RPC connections Heslo pro JSON-RPC spojení - Allow JSON-RPC connections from specified IP address Povolit JSON-RPC spojení ze specifikované IP adresy - 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) - 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) - Upgrade wallet to latest format Převést peněženku na nejnovější formát - Set key pool size to <n> (default: 100) Nastavit zásobník klíčů na velikost <n> (výchozí: 100) - Rescan the block chain for missing wallet transactions Přeskenovat řetězec bloků na chybějící transakce tvé pěněženky - Use OpenSSL (https) for JSON-RPC connections Použít OpenSSL (https) pro JSON-RPC spojení - 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) - This help message Tato nápověda - Unable to bind to %s on this computer (bind returned error %d, %s) Nedaří se mi připojit na %s na tomhle počítači (operace bind vrátila chybu %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Povolit DNS dotazy pro -addnode (přidání uzlu), -seednode a -connect (připojení) - Loading addresses... Načítám adresy... - 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 Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Chyba při načítání wallet.dat: peněženka vyžaduje novější verzi Dogecoinu - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Soubor s peněženkou potřeboval přepsat: restartuj Dogecoin, aby se operace dokončila - Error loading wallet.dat Chyba při načítání wallet.dat - Invalid -proxy address: '%s' Neplatná -proxy adresa: '%s' - Unknown network specified in -onlynet: '%s' V -onlynet byla uvedena neznámá síť: '%s' - Unknown -socks proxy version requested: %i V -socks byla požadována neznámá verze proxy: %i - Cannot resolve -bind address: '%s' Nemohu přeložit -bind adresu: '%s' - Cannot resolve -externalip address: '%s' Nemohu přeložit -externalip adresu: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Neplatná částka pro -paytxfee=<částka>: '%s' - Invalid amount Neplatná částka - Insufficient funds Nedostatek prostředků - Loading block index... Načítám index bloků... - 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 - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Nedaří se mi připojit na %s na tomhle počítači. Dogecoin už pravděpodobně jednou běží. - - - Loading wallet... Načítám peněženku... - Cannot downgrade wallet Nemohu převést peněženku do staršího formátu - Cannot write default address Nemohu napsat výchozí adresu - Rescanning... Přeskenovávám... - Done loading Načítání dokončeno - To use the %s option K použití volby %s - Error Chyba - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4038,4 +3378,4 @@ 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. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_cy.ts b/src/qt/locale/bitcoin_cy.ts index 34634463a..d0ecf8a7e 100644 --- a/src/qt/locale/bitcoin_cy.ts +++ b/src/qt/locale/bitcoin_cy.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Clicio dwywaith i olygu cyfeiriad neu label - Create a new address Creu cyfeiriad newydd - &New - Copy the currently selected address to the system clipboard Copio'r cyfeiriad sydd wedi'i ddewis i'r clipfwrdd system - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete &Dileu - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Label - Address Cyfeiriad - (no label) (heb label) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase Teipiwch gyfrinymadrodd - New passphrase Cyfrinymadrodd newydd - Repeat new passphrase Ailadroddwch gyfrinymadrodd newydd - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Dewiswch gyfrinymadrodd newydd ar gyfer y waled. <br/> Defnyddiwch cyfrinymadrodd o <b>10 neu fwy o lythyrennau hapgyrch</b>, neu <b> wyth neu fwy o eiriau. - Encrypt wallet Amgryptio'r waled - This operation needs your wallet passphrase to unlock the wallet. Mae angen i'r gweithred hon ddefnyddio'ch cyfrinymadrodd er mwyn datgloi'r waled. - Unlock wallet Datgloi'r waled - This operation needs your wallet passphrase to decrypt the wallet. Mae angen i'r gweithred hon ddefnyddio'ch cyfrinymadrodd er mwyn dadgryptio'r waled. - Decrypt wallet Dadgryptio'r waled - Change passphrase Newid cyfrinymadrodd - Enter the old and new passphrase to the wallet. Teipiwch yr hen cyfrinymadrodd a chyfrinymadrodd newydd i mewn i'r waled. - Confirm wallet encryption Cadarnau amgryptiad y waled - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted Waled wedi'i amgryptio - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed Amgryptiad waled wedi methu - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Methodd amgryptiad y waled oherwydd gwall mewnol. Ni amgryptwyd eich waled. - - The supplied passphrases do not match. Dydy'r cyfrinymadroddion a ddarparwyd ddim yn cyd-fynd â'u gilydd. - Wallet unlock failed Methodd ddatgloi'r waled - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed Methodd dadgryptiad y waled - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... Cysoni â'r rhwydwaith... - &Overview &Trosolwg - Node - Show general overview of wallet Dangos trosolwg cyffredinol y waled - &Transactions &Trafodion - Browse transaction history Pori hanes trafodion - E&xit - Quit application Gadael rhaglen - - Show information about Dogecoin Core + Show information about Dogecoin Dangos gwybodaeth am Dogecoin - - About &Qt - Show information about Qt - &Options... &Opsiynau - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption Newid y cyfrinymadrodd a ddefnyddiwyd ar gyfer amgryptio'r waled - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &Ffeil - &Settings &Gosodiadau - &Help &Cymorth - Tabs toolbar Bar offer tabiau - - [testnet] [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error Gwall - Warning Rhybudd - Information Gwybodaeth - Up to date Cyfamserol - Catching up... Dal i fyny - Sent transaction Trafodiad a anfonwyd - Incoming transaction Trafodiad sy'n cyrraedd - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Mae'r waled <b>wedi'i amgryptio</b> ac <b>heb ei gloi</b> ar hyn o bryd - Wallet is <b>encrypted</b> and currently <b>locked</b> Mae'r waled <b>wedi'i amgryptio</b> ac <b>ar glo</b> ar hyn o bryd - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address Cyfeiriad - Date Dyddiad - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (heb label) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address Golygu'r cyfeiriad - &Label &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Cyfeiriad - New receiving address Cyfeiriad derbyn newydd - New sending address Cyfeiriad anfon newydd - Edit receiving address Golygu'r cyfeiriad derbyn - Edit sending address Golygu'r cyfeiriad anfon - The entered address "%1" is already in the address book. Mae'r cyfeiriad "%1" sydd newydd gael ei geisio gennych yn y llyfr cyfeiriad yn barod. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. Methodd ddatgloi'r waled. - New key generation failed. Methodd gynhyrchu allwedd newydd. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error Gwall - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options Opsiynau - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form Ffurflen - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - Nas cadarnheir: - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> <b>Trafodion diweddar</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,41 +1324,45 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1674,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1867,155 +1517,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + + + + Copy message + + + + Copy amount + + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address Cyfeiriad - Amount - Label Label - Message Neges - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2023,285 +1655,225 @@ Address: %4 RecentRequestsTableModel - Date Dyddiad - Label Label - Message Neges - Amount - (no label) (heb label) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins Anfon arian - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Anfon at pobl lluosog ar yr un pryd - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: Gweddill: - Confirm the send action Cadarnhau'r gweithrediad anfon - S&end - Confirm send coins - - - - %1 to %2 %1 i %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (heb label) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2309,116 +1881,85 @@ Address: %4 SendCoinsEntry - - - A&mount: &Maint - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: &Label: - Choose previously used address - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard Gludo cyfeiriad o'r glipfwrdd - Alt+P Alt+P - - - Remove this entry - Message: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2426,192 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard Gludo cyfeiriad o'r glipfwrdd - Alt+P Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2619,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2637,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2645,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 Agor tan %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date Dyddiad - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message Neges - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2825,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2838,118 +2282,102 @@ Address: %4 TransactionTableModel - Date Dyddiad - Type Math - Address Cyfeiriad - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 Agor tan %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2957,178 +2385,142 @@ Address: %4 TransactionView - - All - Today Heddiw - This week - This month - Last month - This year Eleni - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - Confirmed - Date Dyddiad - Type Math - Label Label - Address Cyfeiriad - Amount - ID - Range: - to @@ -3136,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3144,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3152,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3310,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - Gwybodaeth - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - Rhybudd - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + Gwybodaeth + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + Rhybudd + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error Gwall - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts index 409101ec6..6fc536d04 100644 --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -27,135 +24,113 @@ Det er gjort tilgængeligt under MIT/X11-softwarelicensen. Se den medfølgende f Produktet indeholder software som er udviklet af OpenSSL Project til brug i OpenSSL Toolkit (http://www.openssl.org/), kryptografisk software skrevet af Eric Young (eay@cryptsoft.com) og UPnP-software skrevet af Thomas Bernard. - Copyright Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Dobbeltklik for at redigere adresse eller mærkat - Create a new address Opret en ny adresse - &New &Ny - Copy the currently selected address to the system clipboard Kopier den valgte adresse til systemets udklipsholder - &Copy &Kopiér - C&lose - &Copy Address Kopier adresse - Delete the currently selected address from the list Slet den markerede adresse fra listen - Export the data in the current tab to a file Eksportér den aktuelle visning til en fil - &Export Eksporter - &Delete Slet - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Disse er dine Dogecoin-adresser for at sende betalinger. Tjek altid beløb og modtageradresse, inden du sender dogecoins. + Disse er dine Dogecoin-adresser for at sende betalinger. Tjek altid beløb og modtageradresse, inden du sender bitcoins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label Kopier mærkat - &Edit Rediger - Export Address List - Comma separated file (*.csv) Kommasepareret fil (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -163,17 +138,14 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open AddressTableModel - Label Mærkat - Address Adresse - (no label) (ingen mærkat) @@ -181,140 +153,106 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open AskPassphraseDialog - Passphrase Dialog Adgangskodedialog - Enter passphrase Indtast adgangskode - New passphrase Ny adgangskode - Repeat new passphrase Gentag ny adgangskode - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Indtast den nye adgangskode til tegnebogen.<br/>Brug venligst en adgangskode på <b>10 eller flere tilfældige tegn</b> eller <b>otte eller flere ord</b>. - Encrypt wallet Krypter tegnebog - This operation needs your wallet passphrase to unlock the wallet. Denne funktion har brug for din tegnebogs adgangskode for at låse tegnebogen op. - Unlock wallet Lås tegnebog op - This operation needs your wallet passphrase to decrypt the wallet. Denne funktion har brug for din tegnebogs adgangskode for at dekryptere tegnebogen. - Decrypt wallet Dekrypter tegnebog - Change passphrase Skift adgangskode - Enter the old and new passphrase to the wallet. Indtast den gamle og den nye adgangskode til tegnebogen. - Confirm wallet encryption Bekræft tegnebogskryptering - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Advarsel: Hvis du krypterer din tegnebog og mister din adgangskode, vil du <b>MISTE ALLE DINE DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Advarsel: Hvis du krypterer din tegnebog og mister din adgangskode, vil du <b>MISTE ALLE DINE DogecoinS</b>! - Are you sure you wish to encrypt your wallet? Er du sikker på, at du ønsker at kryptere din tegnebog? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. VIGTIGT: Enhver tidligere sikkerhedskopi, som du har lavet af tegnebogsfilen, bør blive erstattet af den nyligt genererede, krypterede tegnebogsfil. Af sikkerhedsmæssige årsager vil tidligere sikkerhedskopier af den ikke-krypterede tegnebogsfil blive ubrugelig i det øjeblik, du starter med at anvende den nye, krypterede tegnebog. - - Warning: The Caps Lock key is on! Advarsel: Caps Lock-tasten er aktiveret! - - Wallet encrypted Tegnebog krypteret - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin vil nu lukke for at gennemføre krypteringsprocessen. Husk på, at kryptering af din tegnebog vil ikke beskytte dine dogecoins fuldt ud mod at blive stjålet af malware på din computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin vil nu lukke for at gennemføre krypteringsprocessen. Husk på, at kryptering af din tegnebog vil ikke beskytte dine bitcoins fuldt ud mod at blive stjålet af malware på din computer. - - - - Wallet encryption failed Tegnebogskryptering mislykkedes - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Tegnebogskryptering mislykkedes på grund af en intern fejl. Din tegnebog blev ikke krypteret. - - The supplied passphrases do not match. De angivne adgangskoder stemmer ikke overens. - Wallet unlock failed Tegnebogsoplåsning mislykkedes - - - The passphrase entered for the wallet decryption was incorrect. Den angivne adgangskode for tegnebogsdekrypteringen er forkert. - Wallet decryption failed Tegnebogsdekryptering mislykkedes - Wallet passphrase was successfully changed. Tegnebogens adgangskode blev ændret. @@ -322,352 +260,286 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open BitcoinGUI - Sign &message... Underskriv besked... - Synchronizing with network... Synkroniserer med netværk... - &Overview Oversigt - Node - Show general overview of wallet Vis generel oversigt over tegnebog - &Transactions Transaktioner - Browse transaction history Gennemse transaktionshistorik - E&xit Luk - Quit application Afslut program - - Show information about Dogecoin Core + Show information about Dogecoin Vis informationer om Dogecoin - - About &Qt Om Qt - Show information about Qt Vis informationer om Qt - &Options... Indstillinger... - &Encrypt Wallet... Krypter tegnebog... - &Backup Wallet... Sikkerhedskopier tegnebog... - &Change Passphrase... Skift adgangskode... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... Importerer blokke fra disken... - Reindexing blocks on disk... Genindekserer blokke på disken... - Send coins to a Dogecoin address - Send dogecoins til en Dogecoin-adresse + Send bitcoins til en Dogecoin-adresse - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Rediger konfigurationsindstillinger af Dogecoin - Backup wallet to another location Lav sikkerhedskopi af tegnebogen til et andet sted - Change the passphrase used for wallet encryption Skift adgangskode anvendt til tegnebogskryptering - &Debug window Fejlsøgningsvindue - Open debugging and diagnostic console Åbn fejlsøgnings- og diagnosticeringskonsollen - &Verify message... Verificér besked... - Dogecoin Dogecoin - Wallet Tegnebog - &Send Send - &Receive Modtag - - &Show / Hide Vis / skjul - Show or hide the main Window Vis eller skjul hovedvinduet - Encrypt the private keys that belong to your wallet Krypter de private nøgler, der hører til din tegnebog - Sign messages with your Dogecoin addresses to prove you own them Underskriv beskeder med dine Dogecoin-adresser for at bevise, at de tilhører dig - Verify messages to ensure they were signed with specified Dogecoin addresses Verificér beskeder for at sikre, at de er underskrevet med de(n) angivne Dogecoin-adresse(r) - &File Fil - &Settings Indstillinger - &Help Hjælp - Tabs toolbar Faneværktøjslinje - - [testnet] [testnetværk] - Dogecoin Core Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Dogecoin-klient - %n active connection(s) to Dogecoin network %n aktiv(e) forbindelse(r) til Dogecoin-netværket%n aktiv(e) forbindelse(r) til Dogecoin-netværket - No block source available... Ingen blokkilde tilgængelig... - Processed %1 of %2 (estimated) blocks of transaction history. Behandlet %1 ud af %2 (estimeret) blokke af transaktionshistorikken. - Processed %1 blocks of transaction history. Behandlet %1 blokke af transaktionshistorikken. - %n hour(s) - %n time(r)%n time(r) + %n time%n timer - %n day(s) - %n dag(e)%n dag(e) + %n dag%n dage - %n week(s) - %n uge(r)%n uge(r) + %n uge%n uger + + + %1 and %2 + + + + %n year(s) + - %1 behind %1 bagud - 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. - Error Fejl - Warning Advarsel - Information Information - Up to date Opdateret - Catching up... Indhenter... - Sent transaction Afsendt transaktion - Incoming transaction Indgående transaktion - Date: %1 Amount: %2 Type: %3 @@ -680,25 +552,21 @@ 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>locked</b> Tegnebog er <b>krypteret</b> og i øjeblikket <b>låst</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Der opstod en fatal fejl. Dogecoin kan ikke længere fortsætte sikkert og vil afslutte. ClientModel - Network Alert Netværksadvarsel @@ -706,291 +574,230 @@ Adresse: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: Beløb: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Beløb - Address Adresse - Date Dato - Confirmations - Confirmed Bekræftet - Priority - Copy address Kopier adresse - Copy label Kopier mærkat - - Copy amount Kopier beløb - Copy transaction ID Kopier transaktionens ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (ingen mærkat) - change from %1 (%2) - (change) @@ -998,67 +805,54 @@ Adresse: %4 EditAddressDialog - Edit Address Rediger adresse - &Label Mærkat - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address Adresse - New receiving address Ny modtagelsesadresse - New sending address Ny afsendelsesadresse - Edit receiving address Rediger modtagelsesadresse - Edit sending address Rediger afsendelsesadresse - The entered address "%1" is already in the address book. Den indtastede adresse "%1" er allerede i adressebogen. - The entered address "%1" is not a valid Dogecoin address. Den indtastede adresse "%1" er ikke en gyldig Dogecoin-adresse. - Could not unlock wallet. Kunne ikke låse tegnebog op. - New key generation failed. Ny nøglegenerering mislykkedes. @@ -1066,27 +860,22 @@ Adresse: %4 FreespaceChecker - A new data directory will be created. - name navn - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1094,52 +883,46 @@ Adresse: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Dogecoin Core - version version - Usage: Anvendelse: - command-line options kommandolinjetilvalg - UI options Brugergrænsefladeindstillinger - Set language, for example "de_DE" (default: system locale) Angiv sprog, f.eks "de_DE" (standard: systemlokalitet) - Start minimized Start minimeret - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Vis opstartsbillede ved start (standard: 1) - Choose data directory on startup (default: 0) @@ -1147,57 +930,46 @@ Adresse: %4 Intro - Welcome Velkommen - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Error Fejl - GB of free space available - (of %1GB needed) @@ -1205,27 +977,22 @@ Adresse: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1233,243 +1000,206 @@ Adresse: %4 OptionsDialog - Options Indstillinger - &Main Generelt - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Valgfrit transaktionsgebyr pr. kB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1 kB. - Pay transaction &fee Betal transaktionsgebyr - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Start Dogecoin automatisk, når der logges ind på systemet - - &Start Dogecoin Core on system login + &Start Dogecoin on system login Start Dogecoin, når systemet startes - Size of &database cache - - Set database cache size in megabytes (default: 25) - Angiv databasecachestørrelse i megabytes (standard: 25) - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Angiv nummeret af tråde til verificering af script (op til 16, 0 = automatisk, <0 = efterlad det antal kerner tilgængelige, standard: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. Nulstil alle klientindstillinger til deres standard. - &Reset Options Nulstil indstillinger - &Network Netværk - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Åbn Dogecoin-klientens port på routeren automatisk. Dette virker kun, når din router understøtter UPnP og UPnP er aktiveret. - Map port using &UPnP Konfigurer port vha. UPnP - Proxy &IP: Proxy-IP: - &Port: Port: - Port of the proxy (e.g. 9050) Porten på proxyen (f.eks. 9050) - SOCKS &Version: SOCKS-version - SOCKS version of the proxy (e.g. 5) SOCKS-version af proxyen (f.eks. 5) - &Window Vindue - Show only a tray icon after minimizing the window. Vis kun et statusikon efter minimering af vinduet. - &Minimize to the tray instead of the taskbar Minimer til statusfeltet i stedet for proceslinjen - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimer i stedet for at afslutte programmet, når vinduet lukkes. Når denne indstilling er valgt, vil programmet kun blive lukket, når du har valgt Afslut i menuen. - M&inimize on close Minimer ved lukning - &Display Visning - User Interface &language: Brugergrænsefladesprog: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Brugergrænsefladesproget kan angives her. Denne indstilling træder først i kraft, når Dogecoin genstartes. - &Unit to show amounts in: Enhed at vise beløb i: - Choose the default subdivision unit to show in the interface and when sending coins. - Vælg den standard underopdelingsenhed, som skal vises i brugergrænsefladen og ved afsendelse af dogecoins. + Vælg den standard underopdelingsenhed, som skal vises i brugergrænsefladen og ved afsendelse af bitcoins. - Whether to show Dogecoin addresses in the transaction list or not. Afgør hvorvidt Dogecoin-adresser skal vises i transaktionslisten eller ej. - &Display addresses in transaction list Vis adresser i transaktionsliste - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK OK - &Cancel Annuller - default standard - none - Confirm options reset Bekræft nulstilling af indstillinger - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. Ugyldig proxy-adresse @@ -1477,69 +1207,54 @@ Adresse: %4 OverviewPage - Form Formular - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Den viste information kan være forældet. Din tegnebog synkroniserer automatisk med Dogecoin-netværket, når en forbindelse etableres, men denne proces er ikke gennemført endnu. - - Unconfirmed: - Ubekræftede: - - - Wallet Tegnebog - - Confirmed: - Bekræftede: + Available: + - Your current spendable balance Din nuværende tilgængelige saldo - - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Pending: - + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Total transaktioner, som ikke er blevet bekræftet endnu, og som ikke endnu er en del af den nuværende saldo + + Immature: Umodne: - Mined balance that has not yet matured Udvunden saldo, som endnu ikke er modnet - Total: Total: - Your current total balance Din nuværende totale saldo - <b>Recent transactions</b> <b>Nyeste transaktioner</b> - - out of sync ikke synkroniseret @@ -1547,93 +1262,70 @@ Adresse: %4 PaymentServer - - URI handling URI-håndtering - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. URI kan ikke fortolkes! Dette kan skyldes en ugyldig Dogecoin-adresse eller misdannede URI-parametre. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error Fejl i betalingsforespørgelse - - Cannot start dogecoin: click-to-pay handler - Kan ikke starte dogecoin: click-to-pay-håndtering + Cannot start bitcoin: click-to-pay handler + Kan ikke starte bitcoin: click-to-pay-håndtering - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 Tilbagebetaling fra %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1641,41 +1333,45 @@ Adresse: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Indtast en Dogecoin-adresse (f.eks. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... &Gem foto... - &Copy Image &Kopiér foto - Save QR Code Gem QR-kode - PNG Image (*.png) @@ -1683,348 +1379,284 @@ Adresse: %4 RPCConsole - Client name Klientnavn - - - - - - - - - - - N/A N/A - Client version Klientversion - &Information Information - Debug window - General - Using OpenSSL version Anvender OpenSSL-version - Startup time Opstartstid - Network Netværk - Name Navn - Number of connections Antal forbindelser - Block chain Blokkæde - Current number of blocks Nuværende antal blokke - Estimated total blocks Estimeret antal blokke - Last block time Tidsstempel for seneste blok - &Open Åbn - &Console Konsol - &Network Traffic - &Clear - Totals - In: - Out: Ud: - Build date Byggedato - Debug log file Fejlsøgningslogfil - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Åbn Dogecoin-fejlsøgningslogfilen fra det nuværende datakatalog. Dette kan tage nogle få sekunder for en store logfiler. - Clear console Ryd konsol - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Velkommen til Dogecoin RPC-konsollen - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Brug op og ned-piletasterne til at navigere historikken og <b>Ctrl-L</b> til at rydde skærmen. - Type <b>help</b> for an overview of available commands. Tast <b>help</b> for en oversigt over de tilgængelige kommandoer. - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m - + %1 m - %1 h - + %1 t - %1 h %2 m - + %1 t %2 m ReceiveCoinsDialog - &Amount: &Mængde: - &Label: Mærkat: - &Message: &Besked: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. Ryd alle fælter af formen. - Clear Ryd - + Requested payments history + + + &Request payment &Anmod betaling - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + Kopier mærkat + + + Copy message + + + + Copy amount + Kopier beløb + ReceiveRequestDialog - QR Code QR Kode - Copy &URI Kopiér &URL - Copy &Address Kopiér &Adresse - &Save Image... &Gem foto... - Request payment to %1 - Payment information Betalingsinformation - URI URI - Address Adresse - Amount Beløb - Label Mærkat - Message Besked - Resulting URI too long, try to reduce the text for label / message. Resulterende URI var for lang; prøv at forkorte teksten til mærkaten/beskeden. - Error encoding URI into QR Code. Fejl ved kodning fra URI til QR-kode @@ -2032,285 +1664,225 @@ Adresse: %4 RecentRequestsTableModel - Date Dato - Label Mærkat - Message Besked - Amount Beløb - (no label) (ingen mærkat) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins - Send dogecoins + Send bitcoins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: Beløb: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Send til flere modtagere på en gang - Add &Recipient Tilføj modtager - Clear all fields of the form. Ryd alle fælter af formen. - Clear &All Ryd alle - Balance: Saldo: - Confirm the send action Bekræft afsendelsen - S&end Afsend - Confirm send coins - Bekræft afsendelse af dogecoins + Bekræft afsendelse af bitcoins - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Indtast en Dogecoin-adresse (f.eks. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount Kopier beløb - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. Modtagerens adresse er ikke gyldig. Tjek venligst adressen igen. - The amount to pay must be larger than 0. Beløbet til betaling skal være større end 0. - The amount exceeds your balance. Beløbet overstiger din saldo. - The total exceeds your balance when the %1 transaction fee is included. Totalen overstiger din saldo, når %1 transaktionsgebyr er inkluderet. - Duplicate address found, can only send to each address once per send operation. Duplikeret adresse fundet. Du kan kun sende til hver adresse en gang pr. afsendelse. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (ingen mærkat) - Warning: Unknown change address - Are you sure you want to send? Er du sikker på at du vil sende? - added as transaction fee tilføjet som transaktionsgebyr - Payment request expired Betalingsforespørgsel udløb - Invalid payment address %1 @@ -2318,116 +1890,85 @@ Adresse: %4 SendCoinsEntry - - - A&mount: Beløb: - Pay &To: Betal til: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Dogecoin-adressen som betalingen skal sendes til (f.eks. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Indtast en mærkat for denne adresse for at føje den til din adressebog - &Label: Mærkat: - Choose previously used address - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard Indsæt adresse fra udklipsholderen - Alt+P Alt+P - - - Remove this entry - Message: Besked: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Indtast en Dogecoin-adresse (f.eks. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2435,192 +1976,142 @@ Adresse: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Signature - Underskriv/verificér en besked - &Sign Message Underskriv besked - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Du kan underskrive beskeder med dine Dogecoin-adresser for at bevise, at de tilhører dig. Pas på ikke at underskrive noget vagt, da phisingangreb kan narre dig til at overdrage din identitet. Underskriv kun fuldt detaljerede udsagn, du er enig i. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Dogecoin-adressen som beskeden skal underskrives med (f.eks. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard Indsæt adresse fra udklipsholderen - Alt+P Alt+P - Enter the message you want to sign here Indtast beskeden, du ønsker at underskrive - Signature Underskrift - Copy the current signature to the system clipboard Kopier den nuværende underskrift til systemets udklipsholder - Sign the message to prove you own this Dogecoin address Underskriv denne besked for at bevise, at Dogecoin-adressen tilhører dig - Sign &Message Underskriv besked - Reset all sign message fields Nulstil alle "underskriv besked"-felter - - Clear &All Ryd alle - &Verify Message Verificér besked - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Indtast den underskrevne adresse, beskeden (inkluder linjeskift, mellemrum mv. nøjagtigt, som de fremgår) og underskriften for at verificére beskeden. Vær forsigtig med ikke at lægge mere i underskriften end besked selv, så du undgår at blive narret af et man-in-the-middle-angreb. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Dogecoin-adressen som beskeden er underskrevet med (f.eks. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Verificér beskeden for at sikre, at den er underskrevet med den angivne Dogecoin-adresse - Verify &Message Verificér besked - Reset all verify message fields Nulstil alle "verificér besked"-felter - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Indtast en Dogecoin-adresse (f.eks. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Klik "Underskriv besked" for at generere underskriften - - Enter Dogecoin signature - Indtast Dogecoin-underskriften - - - - The entered address is invalid. Den indtastede adresse er ugyldig. - - - - Please check the address and try again. Tjek venligst adressen, og forsøg igen. - - The entered address does not refer to a key. Den indtastede adresse henviser ikke til en nøgle. - Wallet unlock was cancelled. Tegnebogsoplåsning annulleret. - Private key for the entered address is not available. Den private nøgle for den indtastede adresse er ikke tilgængelig. - Message signing failed. Underskrivning af besked mislykkedes. - Message signed. Besked underskrevet. - The signature could not be decoded. Underskriften kunne ikke afkodes. - - Please check the signature and try again. Tjek venligst underskriften, og forsøg igen. - The signature did not match the message digest. Underskriften matcher ikke beskedens indhold. - Message verification failed. Verificéring af besked mislykkedes. - Message verified. Besked verificéret. @@ -2628,17 +2119,14 @@ Adresse: %4 SplashScreen - Dogecoin Core Dogecoin Core - The Dogecoin Core developers - [testnet] [testnet] @@ -2646,7 +2134,6 @@ Adresse: %4 TrafficGraphWidget - KB/s KB/s @@ -2654,179 +2141,138 @@ Adresse: %4 TransactionDesc - Open until %1 Åben indtil %1 - + conflicted + + + %1/offline %1/offline - %1/unconfirmed %1/ubekræftet - %1 confirmations %1 bekræftelser - Status Status - , broadcast through %n node(s) , transmitteret igennem %n knude(r), transmitteret igennem %n knude(r) - Date Dato - Source Kilde - Generated Genereret - - From Fra - - - To Til - - own address egen adresse - label mærkat - - - - - Credit Kredit - matures in %n more block(s) modner efter yderligere %n blok(ke)modner efter yderligere %n blok(ke) - not accepted ikke accepteret - - - - Debit Debet - Transaction fee Transaktionsgebyr - Net amount Nettobeløb - - Message Besked - Comment Kommentar - Transaction ID Transaktionens ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information Fejlsøgningsinformation - Transaction Transaktion - Inputs Input - Amount Beløb - true sand - false falsk - , has not been successfully broadcast yet , er ikke blevet transmitteret endnu - Open for %n more block(s) - Åben %n blok yderligereÅben %n blokke yderligere + Åbn yderligere %n blokÅbn yderligere %n blokke - unknown ukendt @@ -2834,12 +2280,10 @@ Adresse: %4 TransactionDescDialog - Transaction details Transaktionsdetaljer - This pane shows a detailed description of the transaction Denne rude viser en detaljeret beskrivelse af transaktionen @@ -2847,118 +2291,102 @@ Adresse: %4 TransactionTableModel - Date Dato - Type Type - Address Adresse - Amount Beløb - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Åben %n blok(ke) yderligereÅben %n blok(ke) yderligere + Åbn yderligere %n blokÅbn yderligere %n blokke - Open until %1 Åben indtil %1 - - Offline (%1 confirmations) - Offline (%1 bekræftelser) - - - - Unconfirmed (%1 of %2 confirmations) - Ubekræftet (%1 af %2 bekræftelser) - - - - Confirmed (%1 confirmations) Bekræftet (%1 bekræftelser) - This block was not received by any other nodes and will probably not be accepted! Denne blok blev ikke modtaget af nogen andre knuder og vil formentlig ikke blive accepteret! - Generated but not accepted Genereret, men ikke accepteret - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Modtaget med - Received from Modtaget fra - Sent to Sendt til - Payment to yourself Betaling til dig selv - Mined Udvundne - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. Transaktionsstatus. Hold musen over dette felt for at vise antallet af bekræftelser. - Date and time that the transaction was received. Dato og klokkeslæt for modtagelse af transaktionen. - Type of transaction. Transaktionstype. - Destination address of transaction. Destinationsadresse for transaktion. - Amount removed from or added to balance. Beløb fjernet eller tilføjet balance. @@ -2966,178 +2394,142 @@ Adresse: %4 TransactionView - - All Alle - Today I dag - This week Denne uge - This month Denne måned - Last month Sidste måned - This year Dette år - Range... Interval... - Received with Modtaget med - Sent to Sendt til - To yourself Til dig selv - Mined Udvundne - Other Andet - Enter address or label to search Indtast adresse eller mærkat for at søge - Min amount Minimumsbeløb - Copy address Kopier adresse - Copy label Kopier mærkat - Copy amount Kopier beløb - Copy transaction ID Kopier transaktionens ID - Edit label Rediger mærkat - Show transaction details Vis transaktionsdetaljer - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Kommasepareret fil (*.csv) - Confirmed Bekræftet - Date Dato - Type Type - Label Mærkat - Address Adresse - Amount Beløb - ID ID - Range: Interval: - to til @@ -3145,7 +2537,6 @@ Adresse: %4 WalletFrame - No wallet has been loaded. @@ -3153,162 +2544,132 @@ Adresse: %4 WalletModel - Send Coins - Send dogecoins + Send bitcoins WalletView - &Export Eksporter - Export the data in the current tab to a file Eksportér den aktuelle visning til en fil - Backup Wallet Sikkerhedskopier tegnebog - Wallet Data (*.dat) Tegnebogsdata (*.dat) - Backup Failed Foretagelse af sikkerhedskopi fejlede - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful Sikkerhedskopieret problemfri - dogecoin-core + bitcoin-core - Usage: Anvendelse: - List commands Liste over kommandoer - Get help for a command Få hjælp til en kommando - Options: Indstillinger: - - Specify configuration file (default: dogecoin.conf) - Angiv konfigurationsfil (standard: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Angiv konfigurationsfil (standard: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Angiv pid-fil (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Angiv pid-fil (default: bitcoind.pid) - Specify data directory Angiv datakatalog - - Set database cache size in megabytes (default: 25) - Angiv databasecachestørrelse i megabytes (standard: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Lyt til forbindelser på <port> (standard: 8333 eller testnetværk: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Lyt til forbindelser på <port> (standard: 22556 eller testnetværk: 44556) - - - Maintain at most <n> connections to peers (default: 125) Oprethold højest <n> forbindelser til andre i netværket (standard: 125) - Connect to a node to retrieve peer addresses, and disconnect Forbind til en knude for at modtage adresse, og afbryd - Specify your own public address Angiv din egen offentlige adresse - Threshold for disconnecting misbehaving peers (default: 100) Grænse for afbrydelse til dårlige forbindelser (standard: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Antal sekunder dårlige forbindelser skal vente før reetablering (standard: 86400) - 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 - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Lyt til JSON-RPC-forbindelser på <port> (standard: 22555 eller testnetværk: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Lyt til JSON-RPC-forbindelser på <port> (standard: 8332 eller testnetværk: 18332) - Accept command line and JSON-RPC commands Accepter kommandolinje- og JSON-RPC-kommandoer - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Kør i baggrunden som en service, og accepter kommandoer - Use the test network Brug testnetværket - Accept connections from outside (default: 1 if no -proxy or -connect) Accepter forbindelser udefra (standard: 1 hvis hverken -proxy eller -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3319,7 +2680,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, du skal angive en RPC-adgangskode i konfigurationsfilen: %s Det anbefales, at du bruger nedenstående, tilfældige adgangskode: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (du behøver ikke huske denne adgangskode) Brugernavnet og adgangskode MÅ IKKE være det samme. @@ -3329,707 +2690,686 @@ f.eks.: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo.com - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - An error occurred while setting up the RPC port %u for listening on 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. Dogecoin Core is probably already running. - Kan ikke opnå lås på datakatalog %s. Dogecoin er sandsynligvis allerede startet. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + - 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 %d) + + + 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 dogecoins i din tegnebog allerede er brugt, som hvis du brugte en kopi af wallet.dat og dine dogecoins er blevet brugt i kopien, men ikke er markeret som brugt her. + 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 størrelse, kompleksitet eller anvendelse af nyligt modtagne dogecoins. + Fejl: Denne transaktion kræver et transaktionsgebyr på minimum %s pga. dens størrelse, kompleksitet eller anvendelse af nyligt modtagne bitcoins! - 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) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + + + 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. 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 Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Advarsel: Undersøg venligst, at din computers dato og klokkeslæt er korrekt indstillet! Hvis der er fejl i disse, vil Dogecoin ikke fungere korrekt. - 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. 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.net gemt som wallet.{timestamp}.bak i %s; hvis din saldo eller dine transaktioner er forkert, bør du genskabe fra en sikkerhedskopi. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: - Attempt to recover private keys from a corrupt wallet.dat Forsøg at genskabe private nøgler fra ødelagt wallet.dat - Dogecoin Core Daemon - - Dogecoin Core RPC client version - - - - Block creation options: Blokoprettelsestilvalg: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + Connect only to the specified node(s) Tilslut kun til de(n) angivne knude(r) - Connect through SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: - Corrupted block database detected Ødelagt blokdatabase opdaget - + Debugging/Testing options: + + + + Disable safemode, override a real safe mode event (default: 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 - Do you want to rebuild the block database now? Ønsker du at genbygge blokdatabasen nu? - 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 opening block database Åbning af blokdatabase mislykkedes - 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: 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 dogecoin-database mislykkedes + 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 - + Fees smaller than this are considered zero fee (for relaying) (default: + + + Find peers using DNS lookup (default: 1 unless -connect) Find ligeværdige ved DNS-opslag (standard: 1 hvis ikke -connect) - - Generate coins (default: 0) - Generer dogecoins (standard: 0) + Force safe mode (default: 0) + + + + Generate coins (default: 0) + Generer bitcoins (standard: 0) - How many blocks to check at startup (default: 288, 0 = all) Antal blokke som tjekkes ved opstart (0=alle, standard: 288) - - How thorough the block verification is (0-4, default: 3) - Grundighed af verificéring af blokke (0-4, standard: 3) - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? - Invalid -onion address: '%s' - Not enough file descriptors available. For få tilgængelige fildeskriptorer. - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files Genbyg blokkædeindeks fra nuværende blk000??.dat filer - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server + Set database cache size in megabytes (%d to %d, default: %d) - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) Angiv antallet af tråde til at håndtere RPC-kald (standard: 4) - Specify wallet file (within data directory) - - Start Dogecoin Core server - Start Dogecoin Core server + Spend unconfirmed change when sending transactions (default: 1) + - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): + Usage (deprecated, use bitcoin-cli): - Verifying blocks... - Verificere blokke... + Verificerer blokke... - Verifying wallet... - Verificere tegnebog... + Verificerer tegnebog... - Wait for RPC server to start - Wallet %s resides outside data directory %s - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex - Imports blocks from external blk000??.dat file Importerer blokke fra ekstern blk000??.dat fil - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Angiv nummeret af tråde til verificering af script (op til 16, 0 = automatisk, <0 = efterlad det antal kerner tilgængelige, standard: 0) - - - Information Information - 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' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) Vedligehold et komplet transaktionsindeks (standard: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Maksimum for modtagelsesbuffer pr. forbindelse, <n>*1000 bytes (standard: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Maksimum for afsendelsesbuffer pr. forbindelse, <n>*1000 bytes (standard: 1000) - Only accept block chain matching built-in checkpoints (default: 1) Accepter 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) - + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL-indstillinger: (se Bitcoin Wiki for SSL-opsætningsinstruktioner) - + Send command to Dogecoin Core + + + Send trace/debug info to console instead of debug.log file Send sporings-/fejlsøgningsinformation til konsollen i stedet for debug.log filen - Set minimum block size in bytes (default: 0) Angiv minimumsblokstørrelse i bytes (standard: 0) - + 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) Formindsk debug.log filen ved klientopstart (standard: 1 hvis ikke -debug) - Signing transaction failed Underskrift af transaktion mislykkedes - Specify connection timeout in milliseconds (default: 5000) Angiv tilslutningstimeout i millisekunder (standard: 5000) - + Start Dogecoin Core Daemon + + + System error: Systemfejl: - Transaction amount too small Transaktionsbeløb er for lavt - Transaction amounts must be positive Transaktionsbeløb skal være positive - Transaction too large Transaktionen er for stor - Use UPnP to map the listening port (default: 0) Forsøg at bruge UPnP til at konfigurere den lyttende port (standard: 0) - Use UPnP to map the listening port (default: 1 when listening) Forsøg at bruge UPnP til at konfigurere den lyttende port (standard: 1 når lytter) - Username for JSON-RPC connections Brugernavn til JSON-RPC-forbindelser - Warning Advarsel - Warning: This version is obsolete, upgrade required! Advarsel: Denne version er forældet, opgradering påkrævet! - + Zapping all transactions from wallet... + + + + on startup + + + version version - wallet.dat corrupt, salvage failed wallet.dat ødelagt, redning af data mislykkedes - Password for JSON-RPC connections Adgangskode til JSON-RPC-forbindelser - Allow JSON-RPC connections from specified IP address Tillad JSON-RPC-forbindelser fra bestemt IP-adresse - 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) - 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) - Upgrade wallet to latest format Opgrader tegnebog til seneste format - Set key pool size to <n> (default: 100) Angiv nøglepoolstørrelse til <n> (standard: 100) - Rescan the block chain for missing wallet transactions Gennemsøg blokkæden for manglende tegnebogstransaktioner - Use OpenSSL (https) for JSON-RPC connections Brug OpenSSL (https) for JSON-RPC-forbindelser - Server certificate file (default: server.cert) Servercertifikat-fil (standard: server.cert) - Server private key (default: server.pem) Serverens private nøgle (standard: server.pem) - This help message Denne hjælpebesked - Unable to bind to %s on this computer (bind returned error %d, %s) Kunne ikke tildele %s på denne computer (bind returnerede fejl %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Tillad DNS-opslag for -addnode, -seednode og -connect - Loading addresses... Indlæser adresser... - Error loading wallet.dat: Wallet corrupted Fejl ved indlæsning af wallet.dat: Tegnebog ødelagt - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Fejl ved indlæsning af wallet.dat: Tegnebog kræver en nyere version af Dogecoin - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Det var nødvendigt at genskrive tegnebogen: genstart Dogecoin for at gennemføre - Error loading wallet.dat Fejl ved indlæsning af wallet.dat - Invalid -proxy address: '%s' Ugyldig -proxy adresse: '%s' - Unknown network specified in -onlynet: '%s' Ukendt netværk anført i -onlynet: '%s' - Unknown -socks proxy version requested: %i Ukendt -socks proxy-version: %i - Cannot resolve -bind address: '%s' Kan ikke finde -bind adressen: '%s' - Cannot resolve -externalip address: '%s' Kan ikke finde -externalip adressen: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Ugyldigt beløb for -paytxfee=<amount>: '%s' - Invalid amount Ugyldigt beløb - Insufficient funds Manglende dækning - Loading block index... Indlæser blokindeks... - 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 - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Kunne ikke tildele %s på denne computer. Dogecoin kører sikkert allerede. - - - Loading wallet... Indlæser tegnebog... - Cannot downgrade wallet Kan ikke nedgradere tegnebog - Cannot write default address Kan ikke skrive standardadresse - Rescanning... Genindlæser... - Done loading Indlæsning gennemført - To use the %s option For at bruge %s mulighed - Error Fejl - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4038,4 +3378,4 @@ 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. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts index dfb6299d5..9ea76fac5 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core Über Dogecoin Core - <b>Dogecoin Core</b> version <b>"Dogecoin Core"</b>-Version - This is experimental software. @@ -24,138 +21,116 @@ Dies ist experimentelle Software. Veröffentlicht unter der MIT/X11-Softwarelizenz, siehe beiligende Datei COPYING oder http://www.opensource.org/licenses/mit-license.php. -Dieses Produkt enthält Software, die vom OpenSSL-Projekt zur Verwendung im OpenSSL-Toolkit (http://www.openssl.org/) entwickelt wurde, sowie kryptographische Software geschrieben von Eric Young (eay@cryptsoft.com) und UPnP-Software geschrieben von Thomas Bernard. +Dieses Produkt enthält Software, die vom OpenSSL-Projekt zur Verwendung im OpenSSL-Toolkit (https://www.openssl.org) entwickelt wird, sowie von Eric Young (eay@cryptsoft.com) geschriebene kryptographische Software und von Thomas Bernard geschriebene UPnP-Software. - Copyright - Copyright + Urheberrecht - The Dogecoin Core developers Die "Dogecoin Core"-Entwickler + + (%1-bit) + (%1-Bit) + AddressBookPage - Double-click to edit address or label - Doppelklicken, um die Adresse oder die Bezeichnung zu bearbeiten + Doppelklick zum Bearbeiten der Adresse oder der Bezeichnung - Create a new address Eine neue Adresse erstellen - &New &Neu - Copy the currently selected address to the system clipboard Ausgewählte Adresse in die Zwischenablage kopieren - &Copy &Kopieren - C&lose &Schließen - &Copy Address Adresse &kopieren - Delete the currently selected address from the list Ausgewählte Adresse aus der Liste entfernen - Export the data in the current tab to a file Daten der aktuellen Ansicht in eine Datei exportieren - &Export E&xportieren - &Delete &Löschen - Choose the address to send coins to Wählen Sie die Adresse aus, an die Sie Dogecoins überweisen möchten - Choose the address to receive coins with Wählen Sie die Adresse aus, über die Sie Dogecoins empfangen wollen - C&hoose &Auswählen - Very sending addresses Zahlungsadressen - Much receiving addresses Empfangsadressen - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Dies sind ihre Dogecoin-Adressen zum Tätigen von Überweisungen. Bitte prüfen Sie den Betrag und die Empfangsadresse, bevor Sie Dogecoins überweisen. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Dies sind ihre Dogecoin-Adressen zum Empfangen von Zahlungen. Es wird empfohlen für jede Transaktion eine neue Empfangsadresse zu verwenden. - Copy &Label &Bezeichnung kopieren - &Edit &Editieren - Export Address List Addressliste exportieren - Comma separated file (*.csv) Kommagetrennte-Datei (*.csv) - Exporting Failed Exportieren fehlgeschlagen - There was an error trying to save the address list to %1. Beim Speichern der Adressliste nach %1 ist ein Fehler aufgetreten. @@ -163,17 +138,14 @@ Dieses Produkt enthält Software, die vom OpenSSL-Projekt zur Verwendung im Open AddressTableModel - Label Bezeichnung - Address Adresse - (no label) (keine Bezeichnung) @@ -181,493 +153,393 @@ Dieses Produkt enthält Software, die vom OpenSSL-Projekt zur Verwendung im Open AskPassphraseDialog - Passphrase Dialog - Passwortdialog + Passphrasendialog - Enter passphrase - Passwort eingeben + Passphrase eingeben - New passphrase - Neues Passwort + Neue Passphrase - Repeat new passphrase - Neues Passwort wiederholen + Neue Passphrase wiederholen - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Geben Sie das neue Passwort für die Brieftasche ein.<br>Bitte benutzen Sie ein Passwort bestehend aus <b>10 oder mehr zufälligen Zeichen</b> oder <b>8 oder mehr Wörtern</b>. + Geben Sie die neue Passphrase für die Brieftasche ein.<br>Bitte benutzen Sie eine Passphrase bestehend aus <b>10 oder mehr zufälligen Zeichen</b> oder <b>8 oder mehr Wörtern</b>. - Encrypt wallet Brieftasche verschlüsseln - This operation needs your wallet passphrase to unlock the wallet. - Dieser Vorgang benötigt ihr Passwort um die Brieftasche zu entsperren. + Dieser Vorgang benötigt ihre Passphrase, um die Brieftasche zu entsperren. - Unlock wallet Brieftasche entsperren - This operation needs your wallet passphrase to decrypt the wallet. - Dieser Vorgang benötigt ihr Passwort um die Brieftasche zu entschlüsseln. + Dieser Vorgang benötigt ihre Passphrase, um die Brieftasche zu entschlüsseln. - Decrypt wallet Brieftasche entschlüsseln - Change passphrase - Passwort ändern + Passphrase ändern - Enter the old and new passphrase to the wallet. - Geben Sie das alte und neue Brieftaschen-Passwort ein. + Geben Sie die alte und neue Passphrase für die Brieftasche ein. - Confirm wallet encryption Verschlüsselung der Brieftasche bestätigen - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Warnung: Wenn Sie ihre Brieftasche verschlüsseln und ihr Passwort verlieren, werden Sie <b>alle ihre Dogecoins verlieren</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Warnung: Wenn Sie ihre Brieftasche verschlüsseln und ihre Passphrase verlieren, werden Sie <b>alle ihre Dogecoins verlieren</b>! - Are you sure you wish to encrypt your wallet? Sind Sie sich sicher, dass Sie ihre Brieftasche verschlüsseln möchten? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. WICHTIG: Alle vorherigen Brieftaschen-Sicherungen sollten durch die neu erzeugte, verschlüsselte Brieftasche ersetzt werden. Aus Sicherheitsgründen werden vorherige Sicherungen der unverschlüsselten Brieftasche nutzlos, sobald Sie die neue, verschlüsselte Brieftasche verwenden. - - Warning: The Caps Lock key is on! Warnung: Die Feststelltaste ist aktiviert! - - Wallet encrypted Brieftasche verschlüsselt - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin-Client wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Verschlüsselung ihrer Brieftasche nicht vollständig vor Diebstahl ihrer Dogecoins durch Schadsoftware schützt, die ihren Computer befällt. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Verschlüsselung der Brieftasche nicht vollständig vor Diebstahl ihrer Dogecoins durch Schadsoftware schützt, die ihren Computer befällt. - - - - Wallet encryption failed Verschlüsselung der Brieftasche fehlgeschlagen - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Die Verschlüsselung der Brieftasche ist aufgrund eines internen Fehlers fehlgeschlagen. Ihre Brieftasche wurde nicht verschlüsselt. - - The supplied passphrases do not match. - Die eingegebenen Passwörter stimmen nicht überein. + Die eingegebenen Passphrasen stimmen nicht überein. - Wallet unlock failed Entsperrung der Brieftasche fehlgeschlagen - - - The passphrase entered for the wallet decryption was incorrect. - Das eingegebene Passwort zur Entschlüsselung war nicht korrekt. + Die eingegebene Passphrase zur Entschlüsselung der Brieftasche war nicht korrekt. - Wallet decryption failed Entschlüsselung der Brieftasche fehlgeschlagen - Wallet passphrase was successfully changed. - Das Passwort der Brieftasche wurde erfolgreich geändert. + Die Passphrase der Brieftasche wurde erfolgreich geändert. BitcoinGUI - Sign &message... Nachricht s&ignieren... - Synchronizing with network... Synchronisiere mit Netzwerk... - &Overview &Übersicht - Node Knoten - Show general overview of wallet - Allgemeine Übersicht der Brieftasche anzeigen + Allgemeine Übersicht über die Brieftasche anzeigen - &Transactions &Transaktionen - Browse transaction history Transaktionsverlauf durchsehen - E&xit &Beenden - Quit application Anwendung beenden - - Show information about Dogecoin Core + Show information about Dogecoin Informationen über Dogecoin anzeigen - - About &Qt Über &Qt - Show information about Qt Informationen über Qt anzeigen - &Options... &Konfiguration... - &Encrypt Wallet... Brieftasche &verschlüsseln... - &Backup Wallet... Brieftasche &sichern... - &Change Passphrase... - Passwort &ändern... + Passphrase &ändern... - Very &sending addresses... &Zahlungsadressen... - Much &receiving addresses... &Empfangsadressen... - Open &URI... &URI öffnen... - Importing blocks from disk... - Importiere Blöcke von Laufwerk... + Importiere Blöcke von Datenträger... - Reindexing blocks on disk... - Reindiziere Blöcke auf Laufwerk... + Reindiziere Blöcke auf Datenträger... - Send coins to a Dogecoin address - An eine Dogecoin-Adresse überweisen + Dogecoins an eine Dogecoin-Adresse überweisen - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Die Konfiguration des Clients bearbeiten - Backup wallet to another location Eine Sicherungskopie der Brieftasche erstellen und abspeichern - Change the passphrase used for wallet encryption - Ändert das Passwort, welches für die Verschlüsselung der Brieftasche benutzt wird + Ändert die Passphrase, die für die Verschlüsselung der Brieftasche benutzt wird - &Debug window &Debugfenster - Open debugging and diagnostic console Debugging- und Diagnosekonsole öffnen - &Verify message... Nachricht &verifizieren... - Dogecoin Dogecoin - Wallet Brieftasche - &Send - Überweisen + &Überweisen - &Receive &Empfangen - - &Show / Hide &Anzeigen / Verstecken - Show or hide the main Window Das Hauptfenster anzeigen oder verstecken - Encrypt the private keys that belong to your wallet Verschlüsselt die zu ihrer Brieftasche gehörenden privaten Schlüssel - Sign messages with your Dogecoin addresses to prove you own them Nachrichten signieren, um den Besitz ihrer Dogecoin-Adressen zu beweisen - Verify messages to ensure they were signed with specified Dogecoin addresses Nachrichten verifizieren, um sicherzustellen, dass diese mit den angegebenen Dogecoin-Adressen signiert wurden - &File &Datei - &Settings &Einstellungen - &Help &Hilfe - Tabs toolbar Registerkartenleiste - - [testnet] [Testnetz] - Dogecoin Core - Dogecoin-Kern + Dogecoin Core - Request payments (generates QR codes and dogecoin: URIs) - Zahlungen anfordern (erzeugt QR-Codes und dogecoin: URIs) + Zahlungen anfordern (erzeugt QR-Codes und "dogecoin:"-URIs) - - &About Dogecoin Core &Über Dogecoin Core - Show the list of used sending addresses and labels Liste verwendeter Zahlungsadressen und Bezeichnungen anzeigen - Show the list of used receiving addresses and labels Liste verwendeter Empfangsadressen und Bezeichnungen anzeigen - Open a dogecoin: URI or payment request Eine "dogecoin:"-URI oder Zahlungsanforderung öffnen - &Command-line options &Kommandozeilenoptionen - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options - Zeige die "Dogecoin Core"-Hilfsnachricht, um eine Liste mit möglichen Kommandozeilenoptionen zu erhalten + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options + Zeige den "Dogecoin Core"-Hilfetext, um eine Liste mit möglichen Kommandozeilenoptionen zu erhalten - - Dogecoin client Dogecoin-Client - %n active connection(s) to Dogecoin network %n aktive Verbindung zum Dogecoin-Netzwerk%n aktive Verbindungen zum Dogecoin-Netzwerk - No block source available... Keine Blockquelle verfügbar... - Processed %1 of %2 (estimated) blocks of transaction history. %1 von (geschätzten) %2 Blöcken des Transaktionsverlaufs verarbeitet. - Processed %1 blocks of transaction history. %1 Blöcke des Transaktionsverlaufs verarbeitet. - %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 - 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. - Error Fehler - Warning Warnung - Information Hinweis - Up to date Auf aktuellem Stand - Catching up... Hole auf... - Sent transaction Gesendete Transaktion - Incoming transaction Eingehende Transaktion - Date: %1 Amount: %2 Type: %3 @@ -679,25 +551,21 @@ Typ: %3 Adresse: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Brieftasche ist <b>verschlüsselt</b> und aktuell <b>entsperrt</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Brieftasche ist <b>verschlüsselt</b> und aktuell <b>gesperrt</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. - Ein schwerer Fehler ist aufgetreten. Dogecoin-Client kann nicht stabil weiter ausgeführt werden und wird beendet. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. + Ein schwerer Fehler ist aufgetreten. Dogecoin kann nicht stabil weiter ausgeführt werden und wird beendet. ClientModel - Network Alert Netzwerkalarm @@ -705,291 +573,230 @@ Adresse: %4 CoinControlDialog - Coin Control Address Selection "Coin Control"-Adressauswahl - Quantity: Anzahl: - Bytes: Byte: - Amount: Betrag: - Priority: Priorität: - Fee: Gebühr: - Low Output: Zu geringer Ausgabebetrag: - After Fee: Abzüglich Gebühr: - Change: Wechselgeld: - (un)select all Alles (de)selektieren - Tree mode Baumansicht - List mode Listenansicht - Amount Betrag - Address Adresse - Date Datum - Confirmations Bestätigungen - Confirmed Bestätigt - Priority Priorität - Copy address Adresse kopieren - Copy label Bezeichnung kopieren - - Copy amount Betrag kopieren - Copy transaction ID Transaktions-ID kopieren - Lock unspent Nicht ausgegebenen Betrag sperren - Unlock unspent Nicht ausgegebenen Betrag entsperren - Copy quantity Anzahl kopieren - Copy fee Gebühr kopieren - Copy after fee Abzüglich Gebühr kopieren - Copy bytes Byte kopieren - Copy priority Priorität kopieren - Copy low output Zu geringen Ausgabebetrag kopieren - Copy change Wechselgeld kopieren - highest am höchsten - higher höher - high hoch - medium-high mittel-hoch - medium mittel - low-medium niedrig-mittel - low niedrig - lower niedriger - lowest am niedrigsten - (%1 locked) (%1 gesperrt) - none keine - Dust - Dust + "Dust" - yes ja - no nein - This label turns red, if the transaction size is greater than 1000 bytes. Diese Bezeichnung wird rot, wenn die Transaktion größer als 1000 Byte ist. - - This means a fee of at least %1 per kB is required. Das bedeutet, dass eine Gebühr von mindestens %1 pro kB erforderlich ist. - Can vary +/- 1 byte per input. Kann um +/- 1 Byte pro Eingabe variieren. - Transactions with higher priority are more likely to get included into a block. Transaktionen mit höherer Priorität haben eine größere Chance in einen Block aufgenommen zu werden. - This label turns red, if the priority is smaller than "medium". Diese Bezeichnung wird rot, wenn die Priorität niedriger als "mittel" ist. - This label turns red, if any recipient receives an amount smaller than %1. Diese Bezeichnung wird rot, wenn irgendein Empfänger einen Betrag kleiner als %1 erhält. - - This means a fee of at least %1 is required. Das bedeutet, dass eine Gebühr von mindestens %1 erforderlich ist. - Amounts below 0.546 times the minimum relay fee are shown as dust. - Beträge kleiner als das 0,546-fache der niedrigsten Vermittlungsgebühr werden als Dust angezeigt. + Beträge kleiner als das 0,546-fache der niedrigsten Vermittlungsgebühr werden als "Dust" angezeigt. - This label turns red, if the change is smaller than %1. - Diese Bezeichnung wird rot, wenn das Wechselgeld weniger als %1 beträgt. + Diese Bezeichnung wird rot, wenn das Wechselgeld weniger als %1 ist. - - (no label) (keine Bezeichnung) - change from %1 (%2) Wechselgeld von %1 (%2) - (change) (Wechselgeld) @@ -997,95 +804,77 @@ Adresse: %4 EditAddressDialog - Edit Address Adresse bearbeiten - &Label &Bezeichnung - The label associated with this address list entry Bezeichnung, die dem Adresslisteneintrag zugeordnet ist. - The address associated with this address list entry. This can only be modified for sending addresses. Adresse, die dem Adresslisteneintrag zugeordnet ist. Diese kann nur bei Zahlungsadressen verändert werden. - &Address &Adresse - New receiving address Neue Empfangsadresse - New sending address Neue Zahlungsadresse - Edit receiving address Empfangsadresse bearbeiten - Edit sending address Zahlungsadresse bearbeiten - The entered address "%1" is already in the address book. Die eingegebene Adresse "%1" befindet sich bereits im Adressbuch. - The entered address "%1" is not a valid Dogecoin address. Die eingegebene Adresse "%1" ist keine gültige Dogecoin-Adresse. - Could not unlock wallet. Brieftasche konnte nicht entsperrt werden. - New key generation failed. - Generierung eines neuen Schlüssels fehlgeschlagen. + Erzeugung eines neuen Schlüssels fehlgeschlagen. FreespaceChecker - A new data directory will be created. Es wird ein neues Datenverzeichnis angelegt. - name Name - Directory already exists. Add %1 if you intend to create a new directory here. Verzeichnis existiert bereits. Fügen Sie %1 an, wenn Sie beabsichtigen hier ein neues Verzeichnis anzulegen. - Path already exists, and is not a directory. Pfad existiert bereits und ist kein Verzeichnis. - Cannot create data directory here. Datenverzeichnis kann hier nicht angelegt werden. @@ -1093,52 +882,46 @@ Adresse: %4 HelpMessageDialog - Dogecoin Core - Command-line options Dogecoin Core - Kommandozeilenoptionen - Dogecoin Core - Dogecoin-Kern + Dogecoin Core - version Version - Usage: Benutzung: - command-line options Kommandozeilenoptionen - UI options UI-Optionen - Set language, for example "de_DE" (default: system locale) - Sprache festlegen, z.B. "de_DE" (Standard: System Locale) + Sprache festlegen, z.B. "de_DE" (Standard: Systemstandard) - Start minimized Minimiert starten - + Set SSL root certificates for payment request (default: -system-) + SSL-Wurzelzertifikate für Zahlungsanforderungen festlegen (Standard: Systemstandard) + + Show splash screen on startup (default: 1) Startbildschirm beim Starten anzeigen (Standard: 1) - Choose data directory on startup (default: 0) Datenverzeichnis beim Starten auswählen (Standard: 0) @@ -1146,57 +929,46 @@ Adresse: %4 Intro - Welcome Willkommen - Welcome to Dogecoin Core. Willkommen zu Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Da Sie das Programm gerade zum ersten Mal starten, können Sie nun auswählen wo Dogecoin Core seine Daten ablegen wird. + Da Sie das Programm gerade zum ersten Mal starten, können Sie nun auswählen wo Dogecoin Core seine Daten ablegen soll. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. Dogecoin Core wird eine Kopie der Blockkette herunterladen und speichern. Mindestens %1GB Daten werden in diesem Verzeichnis abgelegt und die Datenmenge wächst über die Zeit an. Auch die Brieftasche wird in diesem Verzeichnis abgelegt. - Use the default data directory Standard-Datenverzeichnis verwenden - Use a custom data directory: Ein benutzerdefiniertes Datenverzeichnis verwenden: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. Fehler: Angegebenes Datenverzeichnis "%1" kann nicht angelegt werden. - Error Fehler - GB of free space available GB freier Speicherplatz verfügbar - (of %1GB needed) (von benötigten %1GB) @@ -1204,27 +976,22 @@ Adresse: %4 OpenURIDialog - Open URI URI öffnen - Open payment request from URI or file Zahlungsanforderung über URI oder aus Datei öffnen - URI: URI: - Select payment request file Zahlungsanforderungsdatei auswählen - Select payment request file to open Zu öffnende Zahlungsanforderungsdatei auswählen @@ -1232,243 +999,206 @@ Adresse: %4 OptionsDialog - Options - Erweiterte Einstellungen + Konfiguration - &Main &Allgemein - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Optionale Transaktionsgebühr pro kB, die sicherstellt, dass ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. - Pay transaction &fee Transaktions&gebühr bezahlen - - Automatically start Dogecoin Core after logging in to the system. - Dogecoin-Client nach der Anmeldung am System automatisch ausführen. + Automatically start Dogecoin after logging in to the system. + Dogecoin nach der Anmeldung am System automatisch ausführen. - - &Start Dogecoin Core on system login - &Starte Dogecoin-Client nach Systemanmeldung + &Start Dogecoin on system login + &Starte Dogecoin nach Systemanmeldung - Size of &database cache Größe des &Datenbankcaches - - Set database cache size in megabytes (default: 25) - Größe des Datenbankcaches in MB festlegen (Standard: 25) - - - MB MB - Number of script &verification threads Anzahl an Skript-&Verifizierungs-Threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Maximale Anzahl an Skript-Verifizierungs-Threads festlegen (bis zu 16, 0 = automatisch, <0 = so viele Kerne frei lassen, Standard: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. Über einen SOCKS-Proxy mit dem Dogecoin-Netzwerk verbinden. - &Connect through SOCKS proxy (default proxy): Über einen SOCKS-Proxy &verbinden (Standardproxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) IP-Adresse des Proxies (z.B. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: Aktive Kommandozeilenoptionen, die obige Konfiguration überschreiben: - Reset all client options to default. Setzt die Clientkonfiguration auf Standardwerte zurück. - &Reset Options Konfiguration &zurücksetzen - &Network &Netzwerk - + (0 = auto, <0 = leave that many cores free) + (0 = automatisch, <0 = so viele Kerne frei lassen) + + + W&allet + W&allet + + + Expert + Erweiterte Optionen der Brieftasche + + + Enable coin &control features + "&Coin Control"-Funktionen aktivieren + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Wenn Sie das Ausgeben von unbestätigtem Wechselgeld deaktivieren, kann das Wechselgeld einer Transaktion nicht verwendet werden, bis es mindestens eine Bestätigung erhalten hat. Dies wirkt sich auf die Berechnung des Kontostands aus. + + + &Spend unconfirmed change + &Unbestätigtes Wechselgeld darf ausgegeben werden + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Automatisch den Dogecoin-Clientport auf dem Router öffnen. Dies funktioniert nur, wenn ihr Router UPnP unterstützt und dies aktiviert ist. - Map port using &UPnP Portweiterleitung via &UPnP - Proxy &IP: Proxy-&IP: - &Port: &Port: - Port of the proxy (e.g. 9050) Port des Proxies (z.B. 9050) - SOCKS &Version: SOCKS-&Version: - SOCKS version of the proxy (e.g. 5) SOCKS-Version des Proxies (z.B. 5) - &Window &Programmfenster - Show only a tray icon after minimizing the window. Nur ein Symbol im Infobereich anzeigen, nachdem das Programmfenster minimiert wurde. - &Minimize to the tray instead of the taskbar In den Infobereich anstatt in die Taskleiste &minimieren - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimiert die Anwendung anstatt sie zu beenden wenn das Fenster geschlossen wird. Wenn dies aktiviert ist, müssen Sie das Programm über "Beenden" im Menü schließen. - M&inimize on close Beim Schließen m&inimieren - &Display - &Anzeige + Anzei&ge - User Interface &language: &Sprache der Benutzeroberfläche: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. - Legt die Sprache der Benutzeroberfläche fest. Diese Einstellung wird erst nach einem Neustart des Clients aktiv. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. + Legt die Sprache der Benutzeroberfläche fest. Diese Einstellung wird erst nach einem Neustart von Dogecoin aktiv. - &Unit to show amounts in: &Einheit der Beträge: - Choose the default subdivision unit to show in the interface and when sending coins. - Wählen Sie die Standarduntereinheit, die in der Benutzeroberfläche und beim Überweisen von Dogecoins angezeigt werden soll. + Wählen Sie die standardmäßige Untereinheit, die in der Benutzeroberfläche und beim Überweisen von Dogecoins angezeigt werden soll. - Whether to show Dogecoin addresses in the transaction list or not. - Legt fest, ob Dogecoin-Adressen in der Transaktionsliste angezeigt werden. + Legt fest, ob Dogecoin-Adressen im Transaktionsverlauf angezeigt werden. - &Display addresses in transaction list - Adressen in der Transaktionsliste &anzeigen + Adressen im Transaktionsverlauf &anzeigen - Whether to show coin control features or not. Legt fest, ob die "Coin Control"-Funktionen angezeigt werden. - - Display coin &control features (experts only) - "&Coin Control"-Funktionen anzeigen (nur für Experten) - - - &OK &OK - &Cancel - &Abbrechen + A&bbrechen - default Standard - none keine - Confirm options reset Zurücksetzen der Konfiguration bestätigen - - Client restart required to activate changes. Clientneustart nötig, um die Änderungen zu aktivieren. - Client will be shutdown, do you want to proceed? Client wird beendet, wollen Sie fortfahren? - This change would require a client restart. Diese Änderung würde einen Clientneustart benötigen. - The supplied proxy address is invalid. Die eingegebene Proxyadresse ist ungültig. @@ -1476,69 +1206,54 @@ Adresse: %4 OverviewPage - Form Formular - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Die angezeigten Informationen sind möglicherweise nicht mehr aktuell. Ihre Brieftasche wird automatisch synchronisiert, nachdem eine Verbindung zum Dogecoin-Netzwerk hergestellt wurde. Dieser Prozess ist jedoch derzeit noch nicht abgeschlossen. - - Unconfirmed: - Unbestätigt: - - - Wallet Brieftasche - - Confirmed: - Bestätigt: + Available: + Verfügbar: - Your current spendable balance Ihr aktuell verfügbarer Kontostand - + Pending: + Ausstehend: + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Betrag aus unbestätigten Transaktionen, der noch nicht im aktuell verfügbaren Kontostand enthalten ist - Immature: Unreif: - Mined balance that has not yet matured Erarbeiteter Betrag der noch nicht gereift ist - Total: Gesamtbetrag: - Your current total balance Aktueller Gesamtbetrag aus obigen Kategorien - <b>Recent transactions</b> <b>Letzte Transaktionen</b> - - out of sync nicht synchron @@ -1546,93 +1261,70 @@ Adresse: %4 PaymentServer - - URI handling - URI Verarbeitung + URI-Verarbeitung - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. URI kann nicht analysiert werden! Dies kann durch eine ungültige Dogecoin-Adresse oder fehlerhafte URI-Parameter verursacht werden. - Requested payment amount of %1 is too small (considered dust). - Angeforderter Zahlungsbetrag in Höhe von %1 ist zu niedrig (als Dust eingestuft). + Angeforderter Zahlungsbetrag in Höhe von %1 ist zu niedrig und wurde als "Dust" eingestuft. - - - - - - Payment request error fehlerhafte Zahlungsanforderung - Cannot start dogecoin: click-to-pay handler "dogecoin: Klicken-zum-Bezahlen"-Handler konnte nicht gestartet werden - Net manager warning Netzwerkmanager-Warnung - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. Ihr aktiver Proxy unterstützt kein SOCKS5, dies wird jedoch für Zahlungsanforderungen über einen Proxy benötigt. - Payment request fetch URL is invalid: %1 Abruf-URL der Zahlungsanforderung ist ungültig: %1 - Payment request file handling Zahlungsanforderungsdatei-Verarbeitung - Payment request file can not be read or processed! This can be caused by an invalid payment request file. Zahlungsanforderungsdatei kann nicht gelesen oder verarbeitet werden! Dies kann durch eine ungültige Zahlungsanforderungsdatei verursacht werden. - Unverified payment requests to custom payment scripts are unsupported. Unverifizierte Zahlungsanforderungen an benutzerdefinierte Zahlungsskripte werden nicht unterstützt. - Refund from %1 Rücküberweisung von %1 - Error communicating with %1: %2 Kommunikationsfehler mit %1: %2 - Payment request can not be parsed or processed! Zahlungsanforderung kann nicht analysiert oder verarbeitet werden! - Bad response from server %1 Fehlerhafte Antwort vom Server: %1 - Payment acknowledged Zahlung bestätigt - Network request error fehlerhafte Netzwerkanfrage @@ -1640,23 +1332,26 @@ Adresse: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Fehler: Angegebenes Datenverzeichnis "%1" existiert nicht. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Fehler: Konfigurationsdatei kann nicht analysiert werden: %1. Bitte nur "Schlüssel=Wert"-Syntax verwenden. + + Error: Invalid combination of -regtest and -testnet. Fehler: Ungültige Kombination von -regtest und -testnet. - + Dogecoin Core did't yet exit safely... + Dogecoin Core wurde noch nicht sicher beendet... + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Dogecoin-Adresse eingeben (z.B. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1664,22 +1359,18 @@ Adresse: %4 QRImageWidget - &Save Image... Grafik &speichern... - &Copy Image Grafik &kopieren - Save QR Code - QR-Code abspeichern + QR-Code speichern - PNG Image (*.png) PNG-Grafik (*.png) @@ -1687,192 +1378,146 @@ Adresse: %4 RPCConsole - Client name Clientname - - - - - - - - - - - N/A k.A. - Client version Clientversion - &Information &Information - Debug window Debugfenster - General Allgemein - Using OpenSSL version Verwendete OpenSSL-Version - Startup time Startzeit - Network Netzwerk - Name Name - Number of connections Anzahl Verbindungen - Block chain Blockkette - Current number of blocks Aktuelle Anzahl Blöcke - Estimated total blocks Geschätzte Gesamtzahl Blöcke - Last block time Letzte Blockzeit - &Open &Öffnen - &Console &Konsole - &Network Traffic &Netzwerkauslastung - &Clear &Zurücksetzen - Totals Summen - In: eingehend: - Out: ausgehend: - Build date Erstellungsdatum - Debug log file Debugprotokolldatei - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Öffnet die Dogecoin-Debugprotokolldatei aus dem aktuellen Datenverzeichnis. Dies kann bei großen Protokolldateien einige Sekunden dauern. - Clear console Konsole zurücksetzen - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Willkommen in der Dogecoin-RPC-Konsole. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Pfeiltaste hoch und runter, um den Verlauf durchzublättern und <b>Strg-L</b>, um die Konsole zurückzusetzen. - Type <b>help</b> for an overview of available commands. Bitte <b>help</b> eingeben, um eine Übersicht verfügbarer Befehle zu erhalten. - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 m - %1 h %1 h - %1 h %2 m %1 h %2 m @@ -1880,105 +1525,82 @@ Adresse: %4 ReceiveCoinsDialog - &Amount: &Betrag: - &Label: &Bezeichnung: - &Message: &Nachricht: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. Eine der bereits verwendeten Empfangsadressen wiederverwenden. Addressen wiederzuverwenden birgt Sicherheits- und Datenschutzrisiken. Außer zum Neuerstellen einer bereits erzeugten Zahlungsanforderung sollten Sie dies nicht nutzen. - R&euse an existing receiving address (not recommended) Vorhandene Empfangsadresse &wiederverwenden (nicht empfohlen) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. Eine optionale Nachricht, die an die Zahlungsanforderung angehängt wird. Sie wird angezeigt, wenn die Anforderung geöffnet wird. Hinweis: Diese Nachricht wird nicht mit der Zahlung über das Dogecoin-Netzwerk gesendet. - - An optional label to associate with the new receiving address. Eine optionale Bezeichnung, die der neuen Empfangsadresse zugeordnet wird. - Use this form to request payments. All fields are <b>optional</b>. - Verwenden Sie dieses Formular um Zahlungen anzufordern. Alle Felder sind <b>optional</b>. + Verwenden Sie dieses Formular, um Zahlungen anzufordern. Alle Felder sind <b>optional</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. Ein optional angeforderte Betrag. Lassen Sie dieses Feld leer oder setzen Sie es auf 0, um keinen spezifischen Betrag anzufordern. - Clear all fields of the form. Alle Formularfelder zurücksetzen. - Clear Zurücksetzen - Requested payments history Verlauf der angeforderten Zahlungen - &Request payment &Zahlung anfordern - Show the selected request (does the same as double clicking an entry) - Die ausgewählten Anforderungen anzeigen (entspricht einem Doppelklick auf einen Eintrag) + Ausgewählte Zahlungsanforderungen anzeigen (entspricht einem Doppelklick auf einen Eintrag) - Show Anzeigen - Remove the selected entries from the list - Die ausgewählten Einträge aus der Liste entfernen + Ausgewählte Einträge aus der Liste entfernen - Remove Entfernen - Copy label Bezeichnung kopieren - Copy message Nachricht kopieren - Copy amount Betrag kopieren @@ -1986,105 +1608,85 @@ Adresse: %4 ReceiveRequestDialog - QR Code QR-Code - Copy &URI &URI kopieren - Copy &Address &Addresse kopieren - &Save Image... Grafik &speichern... - Request payment to %1 Zahlung anfordern an %1 - Payment information Zahlungsinformationen - URI URI - Address Adresse - Amount Betrag - Label Bezeichnung - Message - Nachricht signieren + Nachricht - Resulting URI too long, try to reduce the text for label / message. - Resultierende URI zu lang, bitte den Text für Bezeichnung / Nachricht kürzen. + Resultierende URI ist zu lang, bitte den Text für Bezeichnung/Nachricht kürzen. - Error encoding URI into QR Code. - Fehler beim Kodieren der URI in den QR-Code. + Beim Enkodieren der URI in den QR-Code ist ein Fehler aufgetreten. RecentRequestsTableModel - Date Datum - Label Bezeichnung - Message - Nachricht signieren + Nachricht - Amount Betrag - (no label) (keine Bezeichnung) - (no message) (keine Nachricht) - (no amount) (kein Betrag) @@ -2092,247 +1694,194 @@ Adresse: %4 SendCoinsDialog - - - Send Coins Dogecoins überweisen - Coin Control Features "Coin Control"-Funktionen - Inputs... Eingaben... - automatically selected automatisch ausgewählt - Insufficient funds! Unzureichender Kontostand! - Quantity: Anzahl: - Bytes: - Bytes: + Byte: - Amount: Betrag: - Priority: Priorität: - Fee: Gebühr: - Low Output: Zu geringer Ausgabebetrag: - After Fee: Abzüglich Gebühr: - Change: Wechselgeld: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Wenn diese Option aktivert ist und die Wechselgeld-Adresse leer oder ungültig ist, wird das Wechselgeld an eine neu erzeugte Adresse überwiesen. + Wenn dies aktivert, und die Wechselgeld-Adresse leer oder ungültig ist, wird das Wechselgeld einer neu erzeugten Adresse gutgeschrieben. - Custom change address Benutzerdefinierte Wechselgeld-Adresse - Send to multiple recipients at once - In einer Transaktion an mehrere Empfänger auf einmal überweisen + An mehrere Empfänger auf einmal überweisen - Add &Recipient Empfänger &hinzufügen - Clear all fields of the form. Alle Formularfelder zurücksetzen. - Clear &All &Zurücksetzen - Balance: Kontostand: - Confirm the send action Überweisung bestätigen - S&end &Überweisen - Confirm send coins Überweisung bestätigen - - - - %1 to %2 %1 an %2 - Copy quantity Anzahl kopieren - Copy amount Betrag kopieren - Copy fee Gebühr kopieren - Copy after fee Abzüglich Gebühr kopieren - Copy bytes Byte kopieren - Copy priority Priorität kopieren - Copy low output Zu geringen Ausgabebetrag kopieren - Copy change Wechselgeld kopieren - Total Amount %1 (= %2) Gesamtbetrag %1 (= %2) - or oder - The recipient address is not valid, please recheck. Die Zahlungsadresse ist ungültig, bitte nochmals überprüfen. - The amount to pay must be larger than 0. Der zu zahlende Betrag muss größer als 0 sein. - The amount exceeds your balance. Der angegebene Betrag übersteigt ihren Kontostand. - The total exceeds your balance when the %1 transaction fee is included. Der angegebene Betrag übersteigt aufgrund der Transaktionsgebühr in Höhe von %1 ihren Kontostand. - Duplicate address found, can only send to each address once per send operation. - Doppelte Adresse gefunden, pro Überweisung kann an jede Adresse nur einmalig etwas überwiesen werden. + Doppelte Zahlungsadresse gefunden, pro Überweisung kann an jede Adresse nur einmalig etwas überwiesen werden. - Transaction creation failed! - Transaktion konnte nicht erstellt werden! + Transaktionserstellung fehlgeschlagen! - 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. - Die Transaktion wurde abgelehnt! Dies kann passieren, wenn einige Dogecoins aus ihrer Brieftasche bereits ausgegeben wurden. Beispielsweise weil Sie eine Kopie ihrer wallet.dat benutzt haben, die Dogecoins dort ausgegeben haben, und dies in der derzeit aktiven Brieftasche nicht vermerkt ist. + Die Transaktion wurde abgelehnt! Dies kann passieren, wenn einige Dogecoins aus ihrer Brieftasche bereits ausgegeben wurden. Beispielsweise weil Sie eine Kopie ihrer wallet.dat genutzt, die Dogecoins dort ausgegeben haben und dies daher in der derzeit aktiven Brieftasche nicht vermerkt ist. - Warning: Invalid Dogecoin address Warnung: Ungültige Dogecoin-Adresse - (no label) (keine Bezeichnung) - Warning: Unknown change address Warnung: Unbekannte Wechselgeld-Adresse - Are you sure you want to send? Wollen Sie die Überweisung ausführen? - added as transaction fee als Transaktionsgebühr hinzugefügt - Payment request expired Zahlungsanforderung abgelaufen - Invalid payment address %1 Ungültige Zahlungsadresse %1 @@ -2340,98 +1889,74 @@ Adresse: %4 SendCoinsEntry - - - A&mount: - &Betrag: + Betra&g: - Pay &To: - &Empfänger: + E&mpfänger: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Die Zahlungsadresse der Überweisung (z.B. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Adressbezeichnung eingeben (diese wird zusammen mit der Adresse dem Adressbuch hinzugefügt) - &Label: &Bezeichnung: - Choose previously used address - Bereits verwendeten Adresse auswählen + Bereits verwendete Adresse auswählen - This is a normal payment. Dies ist eine normale Überweisung. - Alt+A Alt+A - Paste address from clipboard Adresse aus der Zwischenablage einfügen - Alt+P Alt+P - - - Remove this entry Diesen Eintrag entfernen - Message: Nachricht: - This is a verified payment request. Dies is eine verifizierte Zahlungsanforderung. - Enter a label for this address to add it to the list of used addresses Adressbezeichnung eingeben, die dann zusammen mit der Adresse der Liste bereits verwendeter Adressen hinzugefügt wird. - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. Eine an die "dogecoin:"-URI angefügte Nachricht, die zusammen mit der Transaktion gespeichert wird. Hinweis: Diese Nachricht wird nicht über das Dogecoin-Netzwerk gesendet. - This is an unverified payment request. Dies is eine unverifizierte Zahlungsanforderung. - - Pay To: Empfänger: - - Memo: Memo: @@ -2439,12 +1964,10 @@ Adresse: %4 ShutdownWindow - Dogecoin Core is shutting down... Dogecoin Core wird beendet... - Do not shut down the computer until this window disappears. Fahren Sie den Computer nicht herunter, bevor dieses Fenster verschwindet. @@ -2452,186 +1975,142 @@ Adresse: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Signaturen - eine Nachricht signieren / verifizieren - &Sign Message Nachricht &signieren - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Sie können Nachrichten mit ihren Adressen signieren, um den Besitz dieser Adressen zu beweisen. Bitte nutzen Sie diese Funktion mit Vorsicht und nehmen Sie sich vor Phishingangriffen in Acht. Signieren Sie nur Nachrichten, mit denen Sie vollständig einverstanden sind. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Die Adresse mit der die Nachricht signiert wird (z.B. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Bereits verwendete Adresse auswählen - - Alt+A Alt+A - Paste address from clipboard Adresse aus der Zwischenablage einfügen - Alt+P Alt+P - Enter the message you want to sign here Zu signierende Nachricht hier eingeben - Signature Signatur - Copy the current signature to the system clipboard Aktuelle Signatur in die Zwischenablage kopieren - Sign the message to prove you own this Dogecoin address Die Nachricht signieren, um den Besitz dieser Dogecoin-Adresse zu beweisen - Sign &Message &Nachricht signieren - Reset all sign message fields Alle "Nachricht signieren"-Felder zurücksetzen - - Clear &All &Zurücksetzen - &Verify Message Nachricht &verifizieren - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - Geben Sie die signierende Adresse, Nachricht (achten Sie darauf Zeilenumbrüche, Leerzeichen, Tabulatoren usw. exakt zu kopieren) und Signatur unten ein, um die Nachricht zu verifizieren. Vorsicht, interpretieren Sie nicht mehr in die Signatur, als in der signierten Nachricht selber enthalten ist, um nicht von einem Man-in-the-middle-Angriff hinters Licht geführt zu werden. + Geben Sie die signierende Adresse, Nachricht (achten Sie darauf Zeilenumbrüche, Leerzeichen, Tabulatoren usw. exakt zu kopieren) und Signatur unten ein, um die Nachricht zu verifizieren. Vorsicht, interpretieren Sie nicht mehr in die Signatur hinein, als in der signierten Nachricht selber enthalten ist, um nicht von einem Man-in-the-middle-Angriff hinters Licht geführt zu werden. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Die Adresse mit der die Nachricht signiert wurde (z.B. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Die Nachricht verifizieren, um sicherzustellen, dass diese mit der angegebenen Dogecoin-Adresse signiert wurde - Verify &Message &Nachricht verifizieren - Reset all verify message fields Alle "Nachricht verifizieren"-Felder zurücksetzen - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Dogecoin-Adresse eingeben (z.B. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Auf "Nachricht signieren" klicken, um die Signatur zu erzeugen - - The entered address is invalid. Die eingegebene Adresse ist ungültig. - - - - Please check the address and try again. Bitte überprüfen Sie die Adresse und versuchen Sie es erneut. - - The entered address does not refer to a key. Die eingegebene Adresse verweist nicht auf einen Schlüssel. - Wallet unlock was cancelled. - Entsperrung der Brieftasche wurde abgebrochen. + Entsperrung der Brieftaschewurde abgebrochen. - Private key for the entered address is not available. Privater Schlüssel zur eingegebenen Adresse ist nicht verfügbar. - Message signing failed. Signierung der Nachricht fehlgeschlagen. - Message signed. Nachricht signiert. - The signature could not be decoded. Die Signatur konnte nicht dekodiert werden. - - Please check the signature and try again. Bitte überprüfen Sie die Signatur und versuchen Sie es erneut. - The signature did not match the message digest. - Die Signatur entspricht nicht dem Message Digest. + Die Signatur entspricht nicht dem "Message Digest". - Message verification failed. Verifikation der Nachricht fehlgeschlagen. - Message verified. Nachricht verifiziert. @@ -2639,17 +2118,14 @@ Adresse: %4 SplashScreen - Dogecoin Core - Dogecoin-Kern + Dogecoin Core - The Dogecoin Core developers Die "Dogecoin Core"-Entwickler - [testnet] [Testnetz] @@ -2657,7 +2133,6 @@ Adresse: %4 TrafficGraphWidget - KB/s KB/s @@ -2665,179 +2140,138 @@ Adresse: %4 TransactionDesc - Open until %1 Offen bis %1 - + conflicted + in Konflikt stehend + + %1/offline %1/offline - %1/unconfirmed %1/unbestätigt - %1 confirmations %1 Bestätigungen - Status Status - , broadcast through %n node(s) , über %n Knoten übertragen, über %n Knoten übertragen - Date Datum - Source Quelle - Generated - Generiert + Erzeugt - - From Von - - - To An - - own address eigene Adresse - label Bezeichnung - - - - - Credit Gutschrift - matures in %n more block(s) reift noch %n weiteren Blockreift noch %n weitere Blöcke - not accepted nicht angenommen - - - - Debit Belastung - Transaction fee Transaktionsgebühr - Net amount Nettobetrag - - Message - Nachricht signieren + Nachricht - Comment Kommentar - Transaction ID Transaktions-ID - Merchant Händler - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Generierte Dogecoins müssen %1 Blöcke lang reifen, bevor sie ausgegeben werden können. Als Sie diesen Block generierten, wurde er an das Netzwerk übertragen, um ihn der Blockkette hinzuzufügen. Falls dies fehlschlägt wird der Status in "nicht angenommen" geändert und der Betrag wird nicht verfügbar werden. Das kann gelegentlich passieren, wenn ein anderer Knoten einen Block fast zeitgleich generiert. + Erzeugte Dogecoins müssen %1 Blöcke lang reifen, bevor sie ausgegeben werden können. Als Sie diesen Block erzeugten, wurde er an das Netzwerk übertragen, um ihn der Blockkette hinzuzufügen. Falls dies fehlschlägt wird der Status in "nicht angenommen" geändert und Sie werden keine Dogecoins gutgeschrieben bekommen. Das kann gelegentlich passieren, wenn ein anderer Knoten einen Block fast zeitgleich erzeugt. - Debug information Debuginformationen - Transaction Transaktion - Inputs Eingaben - Amount Betrag - true wahr - false falsch - , has not been successfully broadcast yet , wurde noch nicht erfolgreich übertragen - Open for %n more block(s) Offen für %n weiteren BlockOffen für %n weitere Blöcke - unknown unbekannt @@ -2845,12 +2279,10 @@ Adresse: %4 TransactionDescDialog - Transaction details Transaktionsdetails - This pane shows a detailed description of the transaction Dieser Bereich zeigt eine detaillierte Beschreibung der Transaktion an @@ -2858,118 +2290,102 @@ Adresse: %4 TransactionTableModel - Date Datum - Type Typ - Address Adresse - Amount Betrag - Immature (%1 confirmations, will be available after %2) Unreif (%1 Bestätigungen, wird verfügbar sein nach %2) - Open for %n more block(s) Offen für %n weiteren BlockOffen für %n weitere Blöcke - Open until %1 Offen bis %1 - - Offline (%1 confirmations) - Offline (%1 Bestätigungen) - - - - Unconfirmed (%1 of %2 confirmations) - Unbestätigt (%1 von %2 Bestätigungen) - - - - Confirmed (%1 confirmations) Bestätigt (%1 Bestätigungen) - This block was not received by any other nodes and will probably not be accepted! Dieser Block wurde von keinem anderen Knoten empfangen und wird wahrscheinlich nicht angenommen werden! - Generated but not accepted - Generiert, jedoch nicht angenommen + Erzeugt, jedoch nicht angenommen + + + Offline + Offline + + + Unconfirmed + Unbestätigt + + + Confirming (%1 of %2 recommended confirmations) + Wird bestätigt (%1 von %2 empfohlenen Bestätigungen) + + + Conflicted + in Konflikt stehend - Received with Empfangen über - Received from Empfangen von - Sent to Überwiesen an - Payment to yourself Eigenüberweisung - Mined Erarbeitet - (n/a) (k.A.) - Transaction status. Hover over this field to show number of confirmations. - Transaktionsstatus. Fahren Sie mit der Maus über dieses Feld, um die Anzahl der Bestätigungen zu sehen. + Transaktionsstatus, fahren Sie mit der Maus über dieses Feld, um die Anzahl der Bestätigungen zu sehen. - Date and time that the transaction was received. - Datum und Uhrzeit als die Transaktion empfangen wurde. + Datum und Uhrzeit zu der die Transaktion empfangen wurde. - Type of transaction. Art der Transaktion - Destination address of transaction. Zieladresse der Transaktion - Amount removed from or added to balance. Der Betrag, der dem Kontostand abgezogen oder hinzugefügt wurde. @@ -2977,178 +2393,142 @@ Adresse: %4 TransactionView - - All Alle - Today Heute - This week Diese Woche - This month Diesen Monat - Last month Letzten Monat - This year Dieses Jahr - Range... Zeitraum... - Received with Empfangen über - Sent to Überwiesen an - To yourself Eigenüberweisung - Mined Erarbeitet - Other Andere - Enter address or label to search Zu suchende Adresse oder Bezeichnung eingeben - Min amount Minimaler Betrag - Copy address Adresse kopieren - Copy label Bezeichnung kopieren - Copy amount Betrag kopieren - Copy transaction ID Transaktions-ID kopieren - Edit label Bezeichnung bearbeiten - Show transaction details Transaktionsdetails anzeigen - Export Transaction History Transaktionsverlauf exportieren - Exporting Failed Exportieren fehlgeschlagen - There was an error trying to save the transaction history to %1. Beim Speichern des Transaktionsverlaufs nach %1 ist ein Fehler aufgetreten. - Exporting Successful Exportieren erfolgreich - The transaction history was successfully saved to %1. Speichern des Transaktionsverlaufs nach %1 war erfolgreich. - Comma separated file (*.csv) Kommagetrennte-Datei (*.csv) - Confirmed Bestätigt - Date Datum - Type Typ - Label Bezeichnung - Address Adresse - Amount Betrag - ID ID - Range: Zeitraum: - to bis @@ -3156,7 +2536,6 @@ Adresse: %4 WalletFrame - No wallet has been loaded. Es wurde keine Brieftasche geladen. @@ -3164,7 +2543,6 @@ Adresse: %4 WalletModel - Send Coins Dogecoins überweisen @@ -3172,154 +2550,125 @@ Adresse: %4 WalletView - &Export E&xportieren - Export the data in the current tab to a file Daten der aktuellen Ansicht in eine Datei exportieren - Backup Wallet Brieftasche sichern - Wallet Data (*.dat) Brieftaschen-Daten (*.dat) - Backup Failed Sicherung fehlgeschlagen - There was an error trying to save the wallet data to %1. Beim Speichern der Brieftaschen-Daten nach %1 ist ein Fehler aufgetreten. - The wallet data was successfully saved to %1. Speichern der Brieftaschen-Daten nach %1 war erfolgreich. - Backup Successful Sicherung erfolgreich - dogecoin-core + bitcoin-core - Usage: Benutzung: - List commands Befehle auflisten - Get help for a command Hilfe zu einem Befehl erhalten - Options: Optionen: - Specify configuration file (default: dogecoin.conf) Konfigurationsdatei festlegen (Standard: dogecoin.conf) - - Specify pid file (default: dogecoind.pid) - PID-Datei festlegen (Standard: dogecoin.pid) + Specify pid file (default: bitcoind.pid) + PID-Datei festlegen (Standard: bitcoind.pid) - Specify data directory Datenverzeichnis festlegen - - Set database cache size in megabytes (default: 25) - Größe des Datenbankcaches in MB festlegen (Standard: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + <port> nach Verbindungen abhören (Standard: 8333 oder Testnetz: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - <port> nach Verbindungen abhören (Standard: 22556 oder Testnetz: 44556) - - - Maintain at most <n> connections to peers (default: 125) Maximal <n> Verbindungen zu Gegenstellen aufrechterhalten (Standard: 125) - Connect to a node to retrieve peer addresses, and disconnect - Mit dem Knoten verbinden um Adressen von Gegenstellen abzufragen, danach trennen + Mit dem angegebenen Knoten verbinden, um Adressen von Gegenstellen abzufragen, danach trennen - Specify your own public address Die eigene öffentliche Adresse angeben - Threshold for disconnecting misbehaving peers (default: 100) Schwellenwert, um Verbindungen zu sich nicht konform verhaltenden Gegenstellen zu beenden (Standard: 100) - 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) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - Beim Einrichten des abzuhörenden RPC-Ports %u für IPv4 ist ein Fehler aufgetreten: %s + Beim Einrichten des RPC-Ports %u zum Abhören von IPv4 ist ein Fehler aufgetreten: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - <port> nach JSON-RPC-Verbindungen abhören (Standard: 22555 oder Testnetz: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + <port> nach JSON-RPC-Verbindungen abhören (Standard: 8332 oder Testnetz: 18332) - Accept command line and JSON-RPC commands - Kommandozeilenbefehle und JSON-RPC-Befehle annehmen + Kommandozeilen- und JSON-RPC-Befehle annehmen + + + Dogecoin Core RPC client version + "Dogecoin Core"-RPC-Client-Version - Run in the background as a daemon and accept commands - Als Hintergrunddienst starten und Befehle annehmen + Als Hintergrunddienst ausführen und Befehle annehmen - Use the test network Das Testnetz verwenden - Accept connections from outside (default: 1 if no -proxy or -connect) Eingehende Verbindungen annehmen (Standard: 1, wenn nicht -proxy oder -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3330,7 +2679,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, Sie müssen den Wert rpcpasswort in dieser Konfigurationsdatei angeben: %s Es wird empfohlen das folgende Zufallspasswort zu verwenden: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (Sie müssen sich dieses Passwort nicht merken!) Der Benutzername und das Passwort dürfen NICHT identisch sein. @@ -3340,707 +2689,686 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Dogecoin Alert\" admin@ - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - Akzeptierte Chiffren (Standard: 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 IPv6, falling back to IPv4: %s - Beim Einrichten des abzuhörenden RPC-Ports %u für IPv6 ist ein Fehler aufgetreten, es wird auf IPv4 zurückgegriffen: %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 + An die angegebene Adresse binden und immer abhören. Für IPv6 "[Host]:Port"-Schreibweise verwenden - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - Datenverzeichnis %s kann nicht gesperrt werden. Evtl. wurde der Dogecoin-Client bereits gestartet. + 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) - 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, welcher eine spezielle Kette nutzt, in der Blöcke sofort gelöst werden. Dies ist für Regressionstest-Tools und Anwendungsentwicklung gedacht. + 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, welcher eine spezielle Kette nutzt, in der Blöcke sofort gelöst werden. + 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 %d) + Fehler: Abhören nach eingehenden Verbindungen fehlgeschlagen (Fehler %d) - 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 Dogecoins aus ihrer Brieftasche bereits ausgegeben wurden. Beispielsweise weil Sie eine Kopie ihrer wallet.dat genutzt, die Dogecoins dort ausgegeben haben und dies daher in der derzeit aktiven Brieftasche nicht vermerkt ist. + Fehler: Die Transaktion wurde abgelehnt! Dies kann passieren, wenn einige Dogecoins aus ihrer Wallet bereits ausgegeben wurden. Beispielsweise weil Sie eine Kopie ihrer wallet.dat genutzt, die Dogecoins dort ausgegeben haben und dies daher in der derzeit aktiven Brieftasche 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 kürzlich erhaltener Zahlungen eine Transaktionsgebühr in Höhe von mindestens %s! + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Kommando ausführen wenn sich eine Brieftaschen-Transaktion verändert (%s im Kommando wird durch die TxID ersetzt) + Befehl ausführen wenn sich eine Transaktion in der Brieftasche verändert (%s im Befehl wird durch die TxID 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) + + + 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. + + + 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) - 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. Dogecoin Core is probably already running. + Kann auf diesem Computer nicht an %s binden, da Dogecoin Core wahrscheinlich bereits gestartet wurde. + + 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 Dogecoin Core will not work properly. - Warnung: Bitte korrigieren Sie die Datums- und Uhrzeiteinstellungen ihres Computers, da Dogecoin-Client ansonsten nicht ordnungsgemäß funktionieren wird! + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. + Warnung: Bitte korrigieren Sie die Datums- und Uhrzeiteinstellungen ihres Computers, da Dogecoin 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 (den Client) aktualisieren. + 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, Rettung erfolgreich! Original wallet.dat wurde als wallet.{Zeitstempel}.dat in %s gespeichert. Falls ihr Kontostand oder Transaktionen nicht korrekt sind, sollten Sie von einer Datensicherung wiederherstellen. + 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 von einer Datensicherung wiederherstellen. + + + (default: 1) + (Standard: 1) + + + (default: wallet.dat) + (Standard: wallet.dat) - <category> can be: <category> kann sein: - Attempt to recover private keys from a corrupt wallet.dat - Versucht private Schlüssel aus einer beschädigten wallet.dat wiederherzustellen + Versuchen, private Schlüssel aus einer beschädigten wallet.dat wiederherzustellen - Dogecoin Core Daemon - "Dogecoin Core"-Daemon + "Dogecoin Core"-Hintergrunddienst - - Dogecoin Core RPC client version - Dogecoin-RPC-Clientversion - - - Block creation options: Blockerzeugungsoptionen: - - Connect only to the specified node(s) - Nur mit dem/den angegebenen Knoten verbinden + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Liste der Transaktionen der Brieftasche zurücksetzen (Diagnosetool; beinhaltet -rescan) + + + 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: 22555 or testnet: 44555) - Mit JSON-RPC über <port> verbinden (Standard: 22555 oder Testnetz: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + Mit JSON-RPC auf <port> verbinden (Standard: 8332 oder Testnetz: 18332) + + + Connection options: + Verbindungsoptionen: - Corrupted block database detected Beschädigte Blockdatenbank erkannt - + 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 Brieftasche nicht laden und Wallet-RPC-Aufrufe deaktivieren + Die Brieftasche nicht laden und Brieftaschen-RPC-Aufrufe deaktivieren - Do you want to rebuild the block database now? - Möchten Sie die Blockdatenbank nun neu aufbauen? + Möchten Sie die Blockdatenbank jetzt neu aufbauen? - Error initializing block database Fehler beim Initialisieren der Blockdatenbank - Error initializing wallet database environment %s! Fehler beim Initialisieren der Brieftaschen-Datenbankumgebung %s! - Error loading block database Fehler beim Laden der Blockdatenbank - Error opening block database Fehler beim Öffnen der Blockdatenbank - Error: Disk space is low! - Fehler: Zu wenig freier Laufwerksspeicherplatz! + Fehler: Zu wenig freier Speicherplatz auf dem Datenträger! - Error: Wallet locked, unable to create transaction! Fehler: Brieftasche gesperrt, Transaktion kann nicht erstellt werden! - 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: + + Find peers using DNS lookup (default: 1 unless -connect) - Gegenstellen via DNS-Namensauflösung finden (Standard: 1, außer bei -connect) + Gegenstellen via DNS-Abfrage finden (Standard: 1, außer bei -connect) + + + Force safe mode (default: 0) + Sicherheitsmodus erzwingen (Standard: 0) - Generate coins (default: 0) - Dogecoins generieren (Standard: 0) + Dogecoins erzeugen (Standard: 0) - How many blocks to check at startup (default: 288, 0 = all) - Wieviele Blöcke sollen beim Starten geprüft werden (Standard: 288, 0 = alle) + Wieviele Blöcke beim Starten geprüft werden sollen (Standard: 288, 0 = alle) - - How thorough the block verification is (0-4, default: 3) - Wie gründlich soll die Blockprüfung sein (0-4, Standard: 3) - - - If <category> is not supplied, output all debugging information. Wenn <category> nicht angegeben wird, jegliche Debugginginformationen ausgeben. - + Importing... + Importiere... + + Incorrect or no genesis block found. Wrong datadir for network? Fehlerhafter oder kein Genesis-Block gefunden. Falsches Datenverzeichnis für das Netzwerk? - Invalid -onion address: '%s' Ungültige "-onion"-Adresse: '%s' - Not enough file descriptors available. - Nicht genügend File-Deskriptoren verfügbar. + Nicht genügend Datei-Deskriptoren verfügbar. - Prepend debug output with timestamp (default: 1) - Der Debugausgabe einen Zeitstempel voranstellen (Standard: 1) + Debugausgaben einen Zeitstempel voranstellen (Standard: 1) - RPC client options: RPC-Client-Optionen: - Rebuild block chain index from current blk000??.dat files Blockkettenindex aus aktuellen Dateien blk000??.dat wiederaufbauen - Select SOCKS version for -proxy (4 or 5, default: 5) SOCKS-Version des Proxies wählen (4 oder 5, Standard: 5) - - Send command to Dogecoin Core server - Befehl an Dogecoin-Server senden + Set database cache size in megabytes (%d to %d, default: %d) + Größe des Datenbankcaches in Megabyte festlegen (%d bis %d, Standard: %d) - Set maximum block size in bytes (default: %d) Maximale Blockgröße in Byte festlegen (Standard: %d) - Set the number of threads to service RPC calls (default: 4) Maximale Anzahl an Threads zur Verarbeitung von RPC-Anfragen festlegen (Standard: 4) - Specify wallet file (within data directory) - Brieftaschen-Datei festlegen (innerhalb des Datenverzeichnisses) + Brieftaschen-Datei angeben (innerhalb des Datenverzeichnisses) - - Start Dogecoin Core server - Dogecoin-Server starten + Spend unconfirmed change when sending transactions (default: 1) + Unbestätigtes Wechselgeld beim Senden von Transaktionen ausgeben (Standard: 1) - This is intended for regression testing tools and app development. Dies ist für Regressionstest-Tools und Anwendungsentwicklung gedacht. - Usage (deprecated, use dogecoin-cli): Benutzung (veraltet, bitte dogecoin-cli verwenden): - Verifying blocks... Verifiziere Blöcke... - Verifying wallet... Verifiziere Brieftasche... - Wait for RPC server to start Warten, bis der RPC-Server gestartet ist - Wallet %s resides outside data directory %s Brieftasche %s liegt außerhalb des Datenverzeichnisses %s - Wallet options: Brieftaschen-Optionen: - Warning: Deprecated argument -debugnet ignored, use -debug=net Warnung: Veraltetes Argument -debugnet gefunden, bitte -debug=net verwenden - 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 - Imports blocks from external blk000??.dat file Blöcke aus externer Datei blk000??.dat importieren - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Kommando ausführen wenn ein relevanter Alarm empfangen wird oder wir einen wirklich langen Fork entdecken (%s im Kommando wird durch die Nachricht ersetzt) + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + Datenverzeichnis %s kann nicht gesperrt werden, da Dogecoin Core wahrscheinlich bereits gestartet wurde. + + + 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) - Output debugging information (default: 0, supplying <category> is optional) Debugginginformationen ausgeben (Standard: 0, <category> anzugeben ist optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Maximale Größe von "high-priority/low-fee"-Transaktionen in Byte festlegen (Standard: %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 (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Maximale Anzahl an Skript-Verifizierungs-Threads festlegen (bis zu 16, 0 = automatisch, <0 = so viele Kerne frei lassen, Standard: 0) - - - Information Hinweis - 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' - + Limit size of signature cache to <n> entries (default: 50000) + Größe des Signaturcaches auf <n> Einträge begrenzen (Standard: 50000) + + + 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 pflegen (Standard: 0) + Einen vollständigen Transaktionsindex führen (Standard: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Maximale Größe, <n> * 1000 Byte, des Empfangspuffers pro Verbindung (Standard: 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, <n> * 1000 Byte, des Sendepuffers pro Verbindung (Standard: 1000) + Maximale Größe des Sendepuffers pro Verbindung, <n> * 1000 Byte (Standard: 1000) - Only accept block chain matching built-in checkpoints (default: 1) - Blockkette nur akzeptieren, wenn sie mit den integrierten Prüfpunkten übereinstimmt (Standard: 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) - + 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 SSL-Einrichtung): + + + 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 + + + Run a thread to flush wallet periodically (default: 1) + Einen Thread starten, der periodisch die Brieftasche sicher auf den Datenträger schreibt (Standard: 1) + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL-Optionen: (siehe Dogecoin-Wiki für SSL-Installationsanweisungen) + SSL-Optionen (siehe Bitcoin-Wiki für SSL-Einrichtungssanweisungen): + + + Send command to Dogecoin Core + Befehl an Dogecoin Core senden - Send trace/debug info to console instead of debug.log file - Rückverfolgungs- und Debuginformationen an die Konsole senden anstatt sie in die Datei debug.log zu schreiben + Rückverfolgungs- und Debuginformationen an die Konsole senden, anstatt sie in debug.log zu schreiben - Set minimum block size in bytes (default: 0) Minimale Blockgröße in Byte festlegen (Standard: 0) - - Shrink debug.log file on client startup (default: 1 when no -debug) - Verkleinere Datei debug.log beim Starten des Clients (Standard: 1, wenn kein -debug) + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + DB_PRIVATE-Flag in der Brieftaschen-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 transaction failed Signierung der Transaktion fehlgeschlagen - Specify connection timeout in milliseconds (default: 5000) - Verbindungstimeout in Millisekunden festlegen (Standard: 5000) + Verbindungzeitüberschreitung in Millisekunden festlegen (Standard: 5000) + + + Start Dogecoin Core Daemon + "Dogecoin Core"-Hintergrunddienst starten - System error: Systemfehler: - Transaction amount too small Transaktionsbetrag zu niedrig - Transaction amounts must be positive Transaktionsbeträge müssen positiv sein - Transaction too large Transaktion zu groß - Use UPnP to map the listening port (default: 0) - UPnP verwenden, um die Portweiterleitung einzurichten (Standard: 0) + UPnP verwenden, um eine Portweiterleitung einzurichten (Standard: 0) - Use UPnP to map the listening port (default: 1 when listening) - UPnP verwenden, um die Portweiterleitung einzurichten (Standard: 1, wenn abgehört wird) + UPnP verwenden, um eine Portweiterleitung einzurichten (Standard: 1, wenn abgehört wird) - Username for JSON-RPC connections Benutzername für JSON-RPC-Verbindungen - Warning Warnung - Warning: This version is obsolete, upgrade required! Warnung: Diese Version is veraltet, Aktualisierung erforderlich! - + Zapping all transactions from wallet... + Lösche alle Transaktionen aus Brieftasche... + + + on startup + beim Starten + + version Version - wallet.dat corrupt, salvage failed - wallet.dat beschädigt, Rettung fehlgeschlagen + wallet.dat beschädigt, Datenrettung fehlgeschlagen - Password for JSON-RPC connections Passwort für JSON-RPC-Verbindungen - Allow JSON-RPC connections from specified IP address JSON-RPC-Verbindungen von der angegebenen IP-Adresse erlauben - Send commands to node running on <ip> (default: 127.0.0.1) Sende Befehle an Knoten <ip> (Standard: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) - Kommando ausführen wenn der beste Block wechselt (%s im Kommando wird durch den Hash des Blocks ersetzt) + Befehl ausführen wenn der beste Block wechselt (%s im Befehl wird durch den Hash des Blocks ersetzt) - Upgrade wallet to latest format Brieftasche auf das neueste Format aktualisieren - Set key pool size to <n> (default: 100) Größe des Schlüsselpools festlegen auf <n> (Standard: 100) - Rescan the block chain for missing wallet transactions - Blockkette erneut nach fehlenden Brieftaschen-Transaktionen durchsuchen + Blockkette erneut nach fehlenden Transaktionen der Brieftasche durchsuchen - Use OpenSSL (https) for JSON-RPC connections OpenSSL (https) für JSON-RPC-Verbindungen verwenden - Server certificate file (default: server.cert) Serverzertifikat (Standard: server.cert) - Server private key (default: server.pem) Privater Serverschlüssel (Standard: server.pem) - This help message Dieser Hilfetext - Unable to bind to %s on this computer (bind returned error %d, %s) Kann auf diesem Computer nicht an %s binden (von bind zurückgegebener Fehler %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect - Erlaube DNS-Namensauflösung für -addnode, -seednode und -connect + Erlaube DNS-Abfragen für -addnode, -seednode und -connect - Loading addresses... Lade Adressen... - Error loading wallet.dat: Wallet corrupted Fehler beim Laden von wallet.dat: Brieftasche beschädigt - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - Fehler beim Laden von wallet.dat: Brieftasche benötigt neuere Version des Dogecoin-Client + Error loading wallet.dat: Wallet requires newer version of Dogecoin + Fehler beim Laden von wallet.dat: Brieftasche benötigt neuere Version von Dogecoin - - Wallet needed to be rewritten: restart Dogecoin Core to complete - Brieftasche musste neu geschrieben werden: starten Sie den Dogecoin-Client zur Fertigstellung neu + Wallet needed to be rewritten: restart Dogecoin to complete + Brieftasche musste neu geschrieben werden: starten Sie Dogecoin zur Fertigstellung neu - Error loading wallet.dat Fehler beim Laden von wallet.dat - Invalid -proxy address: '%s' Ungültige Adresse in -proxy: '%s' - Unknown network specified in -onlynet: '%s' Unbekannter Netztyp in -onlynet angegeben: '%s' - Unknown -socks proxy version requested: %i Unbekannte Proxyversion in -socks angefordert: %i - 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' - Invalid amount for -paytxfee=<amount>: '%s' Ungültiger Betrag für -paytxfee=<amount>: '%s' - Invalid amount Ungültiger Betrag - Insufficient funds Unzureichender Kontostand - Loading block index... Lade Blockindex... - Add a node to connect to and attempt to keep the connection open - Mit dem Knoten verbinden und versuchen die Verbindung aufrecht zu halten + Mit dem angegebenen Knoten verbinden und versuchen die Verbindung aufrecht zu erhalten - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Kann auf diesem Computer nicht an %s binden. Evtl. wurde der Dogecoin-Client bereits gestartet. - - - Loading wallet... Lade Brieftasche... - Cannot downgrade wallet Brieftasche kann nicht auf eine ältere Version herabgestuft werden - Cannot write default address Standardadresse kann nicht geschrieben werden - Rescanning... Durchsuche erneut... - Done loading Laden abgeschlossen - To use the %s option - Zur Nutzung der %s Option + Zur Nutzung der %s-Option - Error Fehler - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4049,4 +3377,4 @@ 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. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_de_AT.ts b/src/qt/locale/bitcoin_de_AT.ts index 2bdfbbe7d..ed58718c9 100644 --- a/src/qt/locale/bitcoin_de_AT.ts +++ b/src/qt/locale/bitcoin_de_AT.ts @@ -31,13 +31,19 @@ This product includes software developed by the OpenSSL Project for use in the O The Dogecoin Core developers + + + + (%1-bit) + + AddressBookPage Double-click to edit address or label - Doppelklickn zan Editian vo Adress und Titl + Doppelklickn zan Editian vo da Adress und Titl @@ -52,7 +58,7 @@ This product includes software developed by the OpenSSL Project for use in the O Copy the currently selected address to the system clipboard - Kopia di ausgwöhte Adress in' Puffa + Kopia de ausgwöhte Adress in de Zwischenoblog @@ -142,7 +148,7 @@ This product includes software developed by the OpenSSL Project for use in the O Comma separated file (*.csv) - Beistrich 'trennte Weate (*.csv) + Mid Beistrich 'trennte Weate (*.csv) @@ -611,6 +617,16 @@ This product includes software developed by the OpenSSL Project for use in the O %n week(s) + + + %1 and %2 + + + + + %n year(s) + + %1 behind @@ -685,7 +701,7 @@ Wohin: %4 's Beasl is <b>vaschlisslt</b> und deazeit grod <b>zuagschpeat</b> - + A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. @@ -728,7 +744,7 @@ Wohin: %4 Fee: - Gebühr: + Obolus: @@ -746,7 +762,7 @@ Wohin: %4 - + (un)select all @@ -761,7 +777,7 @@ Wohin: %4 - + Amount Betrog @@ -912,23 +928,23 @@ Wohin: %4 - + Dust yes - ja + jo no - nein + na - This label turns red, if the transaction size is greater than 1000 bytes. + This label turns red, if the transaction size is greater than 5000 bytes. @@ -1094,7 +1110,7 @@ Wohin: %4 - + Dogecoin Core @@ -1238,7 +1254,7 @@ Wohin: %4 &Masta - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. @@ -1248,7 +1264,7 @@ Wohin: %4 Iwaweisungs-Gebührn zoin - + Automatically start Dogecoin Core after logging in to the system. Dogecoin automatisch nochm Einloggn starten. @@ -1263,12 +1279,7 @@ Wohin: %4 - - Set database cache size in megabytes (default: 25) - Zwischnspeichagreß fia de Datenbank in megabeits (sunsta: 25) - - - + MB @@ -1283,7 +1294,12 @@ Wohin: %4 - + + &Spend unconfirmed change (experts only) + + + + Connect to the Dogecoin network through a SOCKS proxy. @@ -1318,7 +1334,17 @@ Wohin: %4 &Netzwerk - + + W&allet + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Automatisch den Router fia 'n Dogecoin port eistölln. Des geht nur, waunn da Router UPnP kaunn und waunns des durtn aa eigschoitn is. @@ -1433,17 +1459,17 @@ Wohin: %4 &Na Ned! - + default sunsta - + none - + Confirm options reset @@ -1483,18 +1509,13 @@ Wohin: %4 De aunzeigtn Datn san meglichaweis ned aktuö. Dei Beasl gleicht si automatisch mitm Netz au, soboid a Vabindung aufrecht is, owa soweit samma no ned. - - Unconfirmed: - Gerüchteweis: - - - + Wallet Beasl - Confirmed: + Available: @@ -1503,7 +1524,12 @@ Wohin: %4 - + + Pending: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance @@ -1536,7 +1562,7 @@ Wohin: %4 out of sync - nimma atkuö + nimma aktuö @@ -1651,6 +1677,11 @@ Wohin: %4 Error: Invalid combination of -regtest and -testnet. + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Gib a Dogecoin-Adress ei (sowos wia: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget @@ -1871,22 +1902,22 @@ Wohin: %4 ReceiveCoinsDialog - + &Amount: - + &Label: &Titl: - + &Message: - + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. @@ -1896,27 +1927,30 @@ Wohin: %4 - - An optional label to associate with the new receiving address - - - - + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + + + An optional label to associate with the new receiving address. + + + + Use this form to request payments. All fields are <b>optional</b>. - + + An optional amount to request. Leave this empty or zero to not request a specific amount. - + Clear all fields of the form. @@ -1926,17 +1960,17 @@ Wohin: %4 - + + Requested payments history + + + + &Request payment - - Requested payments - - - - + Show the selected request (does the same as double clicking an entry) @@ -1955,6 +1989,21 @@ Wohin: %4 Remove + + + Copy label + Titl in' Puffa kopian + + + + Copy message + + + + + Copy amount + Betrog in' Puffa kopian + ReceiveRequestDialog @@ -2056,12 +2105,17 @@ Wohin: %4 (no message) + + + (no amount) + + SendCoinsDialog - + Send Coins Vaschick Zasta @@ -2109,7 +2163,7 @@ Wohin: %4 Fee: - Gebühr: + Obolus: @@ -2137,7 +2191,7 @@ Wohin: %4 - + Send to multiple recipients at once Vaschick Zasta glei aun mehrare auf aamoi @@ -2147,7 +2201,7 @@ Wohin: %4 - + Clear all fields of the form. @@ -2157,12 +2211,12 @@ Wohin: %4 &Ois Leschn - + Balance: Kontostaund: - + Confirm the send action Bschtätige de Iwaweisung @@ -2172,7 +2226,7 @@ Wohin: %4 - + Confirm send coins Iwaweisung bschtätign @@ -2185,12 +2239,7 @@ Wohin: %4 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Gib a Dogecoin-Adress ei (sowos wia: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - + Copy quantity @@ -2237,10 +2286,10 @@ Wohin: %4 or - oder + oda - + The recipient address is not valid, please recheck. @@ -2275,12 +2324,12 @@ Wohin: %4 - + Warning: Invalid Dogecoin address - + (no label) nixda @@ -2290,7 +2339,7 @@ Wohin: %4 - + Are you sure you want to send? @@ -2300,7 +2349,7 @@ Wohin: %4 - + Payment request expired @@ -2377,12 +2426,7 @@ Wohin: %4 Mödung: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - + This is a verified payment request. @@ -2392,7 +2436,12 @@ Wohin: %4 - + + A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + + This is an unverified payment request. @@ -2408,11 +2457,6 @@ Wohin: %4 Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Gib a Dogecoin-Adress ei (sowos wia: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow @@ -2450,19 +2494,19 @@ Wohin: %4 De Adress mit dera'st untaschreibst (z.B. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - + + Choose previously used address - - + + Alt+A Alt+A - + Paste address from clipboard Eifügn da Adress ausm Puffa @@ -2503,12 +2547,12 @@ Wohin: %4 - + Clear &All &Ois Leschn - + &Verify Message &Untaschrift tscheckn @@ -2523,7 +2567,7 @@ Wohin: %4 De Adress, mit dera untaschriem wuan is (z.B. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - + Verify the message to ensure it was signed with the specified Dogecoin address Tscheck, doss de Mödung a wiakli mit da aungebanan Adress untaschriem wuan is @@ -2538,43 +2582,37 @@ Wohin: %4 Olle Föda zrucksetzn - - + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Gib a Dogecoin-Adress ei (sowos wia: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - + Click "Sign Message" to generate signature Klick auf "Mödung untaschreim" zum Untaschreim - - - Enter Dogecoin signature - Gib de Untaschrift ei - - + The entered address is invalid. De eingebane Adress is a Kas. - + - + Please check the address and try again. Tscheck dassd Adress richtig is, und prowias noamoi. - - + + The entered address does not refer to a key. De eingebene Adress gheat zu kaan Schlissl. - + Wallet unlock was cancelled. @@ -2594,7 +2632,7 @@ Wohin: %4 Mödung is untaschriem. - + The signature could not be decoded. De Untaschrift woara Kas. @@ -2655,6 +2693,11 @@ Wohin: %4 + conflicted + + + + %1/offline %1/koa netz @@ -2816,12 +2859,12 @@ Wohin: %4 , is no ned eafoigreich oogschickt wuan. - + Open for %n more block(s) - + unknown unbekaunnt @@ -2862,12 +2905,12 @@ Wohin: %4 Betrog - + Immature (%1 confirmations, will be available after %2) - + Open for %n more block(s) @@ -2877,23 +2920,12 @@ Wohin: %4 Offn bis %1 - - Offline (%1 confirmations) - Koa Netz (%1 Bschtätigungen) - - - - Unconfirmed (%1 of %2 confirmations) - unbschtätigt (nua %1 vo %2 Bschtätigungen) - - - - + Confirmed (%1 confirmations) bschtätigt (%1 Bschtätigungen) - + This block was not received by any other nodes and will probably not be accepted! Den Block kaunnst da in d' Hoa schmian! @@ -2903,7 +2935,27 @@ Wohin: %4 Eazeigt, owa ned aungnumman - + + Offline + + + + + Unconfirmed + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Conflicted + + + + Received with Empfaungen mid @@ -2933,7 +2985,7 @@ Wohin: %4 (nix) - + Transaction status. Hover over this field to show number of confirmations. Zuastaund da Iwaweisung. Fia de Aunzoi da Bschtätigungan foah mid da Maus driwa. @@ -3199,12 +3251,12 @@ Wohin: %4 dogecoin-core - + Usage: Vawendung: - + List commands Kommandos aunzeign @@ -3259,12 +3311,12 @@ Wohin: %4 Gib dei eigene öffentliche Adress aun - + Threshold for disconnecting misbehaving peers (default: 100) Geduidsfodnstärke gegniwa deppate Netz-Knotn (sunsta: 100) - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Waunn Geduidsfodn amoi grissn, daunn wia long bis wieda guat (sunsta: 86400) @@ -3284,17 +3336,17 @@ Wohin: %4 Hob a Uawaschl offn fia de Kommandozeuln und JSON-RPC Beföhle - + Run in the background as a daemon and accept commands Ois Dämon im Hintagrund laafn und auf Beföhle lauschn - + Use the test network Des Test-Netz vawenden - + Accept connections from outside (default: 1 if no -proxy or -connect) Nimm Vabindungen vo aussn aun (waunn nix aungebn is, güt 1, aussa waunn -proxy oda -connect optionen aungebm san) @@ -3425,6 +3477,11 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) Nur mit de aungebanen Netz-Knotn vabindn. @@ -3635,6 +3692,11 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo + Spend unconfirmed change when sending transactions (default: 1) + + + + Start Dogecoin Core server @@ -3684,12 +3746,12 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo - + Imports blocks from external blk000??.dat file - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) A programmal startn, waunn de Alarmglockn leitn, oda waunn de Block-Kettn oag vazweigt. (a %s wiad dabei duach a Nochricht easetzt) @@ -3709,7 +3771,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo - + Information @@ -3779,7 +3841,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo - + System error: @@ -3825,6 +3887,11 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo + Zapping all transactions from wallet... + + + + version veasion @@ -3834,32 +3901,32 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo - + Password for JSON-RPC connections Geheimwuat fia JSON-RPC Vabindungen - + Allow JSON-RPC connections from specified IP address JSON-RPC Beföhle nua vo da aungebanen Netz-Adress ealaubn - + Send commands to node running on <ip> (default: 127.0.0.1) Beföhle zum Netz-Knotn mit da <ip>-Adress schickn (sunsta: 127.0.0.1) - + Execute command when the best block changes (%s in cmd is replaced by block hash) A programmal startn, waunn si wos am bestn Block ändat. (a %s wiad dabei duachn Block-Hash easetzt) - + Upgrade wallet to latest format 's Beasl ins neichaste Foamat bringan - + Set key pool size to <n> (default: 100) Schlisslvorratsgreß auf <n> setzn (sunsta: 100) @@ -3869,12 +3936,12 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo De gaunze Block-kettn noch föhlende Iwaweisungen oosuachn - + Use OpenSSL (https) for JSON-RPC connections Vawend OpenSSL (https) fia JSON-RPC Vabindungan - + Server certificate file (default: server.cert) Söawa Zeatifikatsdatei (sunsta: server.cert) @@ -3884,7 +3951,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Söawa Privatschlissl (sunsta: server.pem) - + This help message Dea Hüfe-Text @@ -3894,12 +3961,12 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Kaun mi ned aun %s auf dera Maschin draunhängan (bind returned error %d, %s) - + Allow DNS lookups for -addnode, -seednode and -connect Ealaub DNS nochfrogn fia -addnode, -seednode und -connect - + Loading addresses... Adressbiachl lodn... @@ -3914,12 +3981,12 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Föhla beim Lodn vom Beasl: fia des Beasl brauchst a neichare Dogecoin veasion - + Wallet needed to be rewritten: restart Dogecoin Core to complete 's Beasl hod neich gschriem weadn miassn: beend des Programmal und starts noamoi zum Featigmochn - + Error loading wallet.dat Föhla beim Lodn vom Beasl (wallet.dat) @@ -3929,7 +3996,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Ungültige "-proxy" Adress: '%s' - + Unknown network specified in -onlynet: '%s' Des Netzwerk in -onlynet is a Kas: '%s' @@ -3939,7 +4006,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo De valongte -socks proxy version is ned bekaunnt: %i - + Cannot resolve -bind address: '%s' Kaunn de -bind Adressn ned auflösn: '%s' @@ -3949,7 +4016,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Kaunn de -externalip Adressn ned auflösn: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Da Betrog fia -paytxfee=<amount> is a Kas: '%s' @@ -3969,7 +4036,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Block index lodn... - + Add a node to connect to and attempt to keep the connection open An Netz-Knotn aufnehman, und bei da Staungan hoitn @@ -3979,12 +4046,12 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Konnt mi ned aun %s auf dera Maschin aunhängan. Meglichaweis rennt des Programmal scho. - + Loading wallet... Beasl lodn... - + Cannot downgrade wallet Zrucksteign geht nimma beim Beasl @@ -3994,7 +4061,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo De Easotz Adress kaunn ned gschriem weadn - + Rescanning... Noch-tscheckn... @@ -4004,17 +4071,17 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Featig midm Lodn - + To use the %s option Um de Option %s z'vawendn - + Error Föhla - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. diff --git a/src/qt/locale/bitcoin_el_GR.ts b/src/qt/locale/bitcoin_el_GR.ts index ab52c8273..539d1ac7d 100644 --- a/src/qt/locale/bitcoin_el_GR.ts +++ b/src/qt/locale/bitcoin_el_GR.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -27,135 +24,113 @@ Distributed under the MIT/X11 software license, see the accompanying file COPYIN This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - Copyright Πνευματική ιδιοκτησία - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Διπλό-κλικ για επεξεργασία της διεύθυνσης ή της ετικέτας - Create a new address Δημιούργησε νέα διεύθυνση - &New &Νέα - Copy the currently selected address to the system clipboard Αντέγραψε την επιλεγμένη διεύθυνση στο πρόχειρο του συστήματος - &Copy - + &Αντιγραφή - C&lose Κ&λείσιμο - &Copy Address &Αντιγραφή διεύθυνσης - Delete the currently selected address from the list Αντιγραφη της επιλεγμενης διεύθυνσης στο πρόχειρο του συστηματος - Export the data in the current tab to a file Εξαγωγή δεδομένων καρτέλας σε αρχείο - &Export &Εξαγωγή - &Delete &Διαγραφή - Choose the address to send coins to Επιλογή διεύθυνσης όπου θα σταλθούν νομίσματα - Choose the address to receive coins with Επιλογή διεύθυνσης απ' όπου θα ληφθούν νομίσματα - C&hoose - Very sending addresses Διευθύνσεις αποστολής - Much receiving addresses Διευθύνσεις λήψης - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Αυτές είναι οι Dogecoin διευθύνσεις σας για να λαμβάνετε πληρωμές. Δίνοντας μία ξεχωριστή διεύθυνση σε κάθε αποστολέα, θα μπορείτε να ελέγχετε ποιος σας πληρώνει. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label Αντιγραφή &επιγραφής - &Edit &Επεξεργασία - Export Address List Εξαγωγή της λίστας διευθύνσεων - Comma separated file (*.csv) Αρχείο οριοθετημένο με κόμματα (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -163,17 +138,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Ετικέτα - Address Διεύθυνση - (no label) (χωρίς ετικέτα) @@ -181,141 +153,107 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog Φράση πρόσβασης - Enter passphrase Βάλτε κωδικό πρόσβασης - New passphrase Νέος κωδικός πρόσβασης - Repeat new passphrase Επανέλαβε τον νέο κωδικό πρόσβασης - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Εισάγετε τον νέο κωδικό πρόσβασης στον πορτοφόλι <br/> Παρακαλώ χρησιμοποιείστε ένα κωδικό με <b> 10 ή περισσότερους τυχαίους χαρακτήρες</b> ή <b> οχτώ ή παραπάνω λέξεις</b>. - Encrypt wallet Κρυπτογράφησε το πορτοφόλι - This operation needs your wallet passphrase to unlock the wallet. Αυτη η ενεργεία χρειάζεται τον κωδικό του πορτοφολιού για να ξεκλειδώσει το πορτοφόλι. - Unlock wallet Ξεκλειδωσε το πορτοφολι - This operation needs your wallet passphrase to decrypt the wallet. Αυτη η ενεργεια χρειάζεται τον κωδικο του πορτοφολιου για να αποκρυπτογραφησειι το πορτοφολι. - Decrypt wallet Αποκρυπτογράφησε το πορτοφολι - Change passphrase Άλλαξε κωδικο πρόσβασης - Enter the old and new passphrase to the wallet. Εισάγετε τον παλιό και τον νεο κωδικο στο πορτοφολι. - Confirm wallet encryption Επιβεβαίωσε την κρυπτογραφηση του πορτοφολιού - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Προσοχη: Εαν κρυπτογραφησεις το πορτοφολι σου και χάσεις τον κωδικο σου θα χάσεις <b> ΟΛΑ ΣΟΥ ΤΑ DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Προσοχη: Εαν κρυπτογραφησεις το πορτοφολι σου και χάσεις τον κωδικο σου θα χάσεις <b> ΟΛΑ ΣΟΥ ΤΑ DogecoinS</b>! Είσαι σίγουρος ότι θέλεις να κρυπτογραφησεις το πορτοφολι; - Are you sure you wish to encrypt your wallet? Είστε σίγουροι ότι θέλετε να κρυπτογραφήσετε το πορτοφόλι σας; - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. ΣΗΜΑΝΤΙΚΟ: Τα προηγούμενα αντίγραφα ασφαλείας που έχετε κάνει από το αρχείο του πορτοφόλιου σας θα πρέπει να αντικατασταθουν με το νέο που δημιουργείται, κρυπτογραφημένο αρχείο πορτοφόλιου. Για λόγους ασφαλείας, τα προηγούμενα αντίγραφα ασφαλείας του μη κρυπτογραφημένου αρχείου πορτοφόλιου θα καταστουν άχρηστα μόλις αρχίσετε να χρησιμοποιείτε το νέο κρυπτογραφημένο πορτοφόλι. - - Warning: The Caps Lock key is on! Προσοχη: το πλήκτρο Caps Lock είναι ενεργο. - - Wallet encrypted Κρυπτογραφημενο πορτοφολι - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Το Dogecoin θα κλεισει τώρα για να τελειώσει την διαδικασία κρυπτογραφησης. Θυμησου ότι κρυπτογραφώντας το πορτοφολι σου δεν μπορείς να προστατέψεις πλήρως τα dogecoins σου από κλοπή στην περίπτωση όπου μολυνθεί ο υπολογιστής σου με κακόβουλο λογισμικό. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Το Dogecoin θα κλεισει τώρα για να τελειώσει την διαδικασία κρυπτογραφησης. Θυμησου ότι κρυπτογραφώντας το πορτοφολι σου δεν μπορείς να προστατέψεις πλήρως τα bitcoins σου από κλοπή στην περίπτωση όπου μολυνθεί ο υπολογιστής σου με κακόβουλο λογισμικό. - - - - Wallet encryption failed Η κρυπτογραφηση του πορτοφολιού απέτυχε - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Η κρυπτογράφηση του πορτοφολιού απέτυχε λογω εσωτερικού σφάλματος. Το πορτοφολι δεν κρυπτογραφηθηκε. - - The supplied passphrases do not match. Οι εισαχθέντες κωδικοί δεν ταιριάζουν. - Wallet unlock failed το ξεκλείδωμα του πορτοφολιού απέτυχε - - - The passphrase entered for the wallet decryption was incorrect. Ο κωδικος που εισήχθη για την αποκρυπτογραφηση του πορτοφολιού ήταν λαθος. - Wallet decryption failed Η αποκρυπτογραφηση του πορτοφολιού απέτυχε - Wallet passphrase was successfully changed. Ο κωδικος του πορτοφολιού άλλαξε με επιτυχία. @@ -323,352 +261,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... Υπογραφή &Μηνύματος... - Synchronizing with network... Συγχρονισμός με το δίκτυο... - &Overview &Επισκόπηση - Node - Show general overview of wallet Εμφάνισε τη γενική εικόνα του πορτοφολιού - &Transactions &Συναλλαγές - Browse transaction history Περιήγηση στο ιστορικό συναλλαγών - E&xit Έ&ξοδος - Quit application Εξοδος από την εφαρμογή - - Show information about Dogecoin Core + Show information about Dogecoin Εμφάνιση πληροφοριών σχετικά με το Dogecoin - - About &Qt Σχετικά με &Qt - Show information about Qt Εμφάνισε πληροφορίες σχετικά με Qt - &Options... &Επιλογές... - &Encrypt Wallet... &Κρυπτογράφησε το πορτοφόλι - &Backup Wallet... &Αντίγραφο ασφαλείας του πορτοφολιού - &Change Passphrase... &Άλλαξε κωδικο πρόσβασης - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... Εισαγωγή μπλοκ από τον σκληρο δίσκο ... - Reindexing blocks on disk... Φόρτωση ευρετηρίου μπλοκ στον σκληρο δισκο... - Send coins to a Dogecoin address - Στείλε νομίσματα σε μια διεύθυνση dogecoin + Στείλε νομίσματα σε μια διεύθυνση bitcoin - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Επεργασία ρυθμισεων επιλογών για το Dogecoin - Backup wallet to another location Δημιουργία αντιγράφου ασφαλείας πορτοφολιού σε άλλη τοποθεσία - Change the passphrase used for wallet encryption Αλλαγή του κωδικού κρυπτογράφησης του πορτοφολιού - &Debug window &Παράθυρο αποσφαλμάτωσης - Open debugging and diagnostic console Άνοιγμα κονσόλας αποσφαλμάτωσης και διαγνωστικών - &Verify message... &Επιβεβαίωση μηνύματος - Dogecoin Dogecoin - Wallet Πορτοφόλι - &Send &Αποστολή - &Receive &Παραλαβή - - &Show / Hide &Εμφάνισε/Κρύψε - Show or hide the main Window Εμφάνιση ή αποκρύψη του κεντρικου παράθυρου - Encrypt the private keys that belong to your wallet Κρυπτογραφήστε τα ιδιωτικά κλειδιά που ανήκουν στο πορτοφόλι σας - Sign messages with your Dogecoin addresses to prove you own them Υπογράψτε ένα μήνυμα για να βεβαιώσετε πως είστε ο κάτοχος αυτής της διεύθυνσης - Verify messages to ensure they were signed with specified Dogecoin addresses Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως ανήκει μια συγκεκριμένη διεύθυνση Dogecoin - &File &Αρχείο - &Settings &Ρυθμίσεις - &Help &Βοήθεια - Tabs toolbar Εργαλειοθήκη καρτελών - - [testnet] [testnet] - Dogecoin Core Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) - Αίτηση πληρωμών (δημιουργεί QR codes και διευθύνσεις dogecoin: ) + Request payments (generates QR codes and bitcoin: URIs) + Αίτηση πληρωμών (δημιουργεί QR codes και διευθύνσεις bitcoin: ) - - &About Dogecoin Core - Show the list of used sending addresses and labels Προβολή της λίστας των χρησιμοποιημένων διευθύνσεων και ετικετών αποστολής - Show the list of used receiving addresses and labels Προβολή της λίστας των χρησιμοποιημένων διευθύνσεων και ετικετών λήψεως - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Πελάτης Dogecoin - %n active connection(s) to Dogecoin network %n ενεργή σύνδεση στο δίκτυο Dogecoin%n ενεργές συνδέσεις στο δίκτυο Βitcoin - No block source available... Η πηγή του μπλοκ δεν ειναι διαθέσιμη... - Processed %1 of %2 (estimated) blocks of transaction history. Μεταποιημένα %1 απο %2 (κατ 'εκτίμηση) μπλοκ της ιστορίας της συναλλαγής. - Processed %1 blocks of transaction history. Έγινε λήψη %1 μπλοκ ιστορικού συναλλαγών - %n hour(s) %n ώρες %n ώρες - %n day(s) %n ημέρες %n ημέρες - %n week(s) %n εβδομαδες%n εβδομαδες - + %1 and %2 + + + + %n year(s) + + + %1 behind %1 πίσω - Last received block was generated %1 ago. Το τελευταίο μπλοκ που ελήφθη δημιουργήθηκε %1 πριν. - Transactions after this will not yet be visible. Οι συναλλαγές μετά από αυτό δεν θα είναι ακόμη ορατες. - Error Σφάλμα - Warning Προειδοποίηση - Information Πληροφορία - Up to date Ενημερωμένο - Catching up... Ενημέρωση... - Sent transaction Η συναλλαγή απεστάλη - Incoming transaction Εισερχόμενη συναλλαγή - Date: %1 Amount: %2 Type: %3 @@ -681,25 +553,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Το πορτοφόλι είναι <b>κρυπτογραφημένο</b> και <b>ξεκλείδωτο</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Το πορτοφόλι είναι <b>κρυπτογραφημένο</b> και <b>κλειδωμένο</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Παρουσιάστηκε ανεπανόρθωτο σφάλμα. Το Dogecoin δεν μπορεί πλέον να συνεχίσει με ασφάλεια και θα τερματισθει. ClientModel - Network Alert Ειδοποίηση Δικτύου @@ -707,291 +575,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - + Ποσότητα: - Bytes: - + Bytes: - Amount: Ποσό: - Priority: - + Προτεραιότητα: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Ποσό - Address Διεύθυνση - Date Ημερομηνία - Confirmations - + Επικυρώσεις - Confirmed Επικυρωμένες - Priority - + Προτεραιότητα - Copy address Αντιγραφή διεύθυνσης - Copy label Αντιγραφή επιγραφής - - Copy amount Αντιγραφή ποσού - Copy transaction ID Αντιγραφη του ID Συναλλαγής - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - + ναι - no - + όχι - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (χωρίς ετικέτα) - change from %1 (%2) - (change) @@ -999,67 +806,54 @@ Address: %4 EditAddressDialog - Edit Address Επεξεργασία Διεύθυνσης - &Label &Επιγραφή - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Διεύθυνση - New receiving address Νέα διεύθυνση λήψης - New sending address Νέα διεύθυνση αποστολής - Edit receiving address Επεξεργασία διεύθυνσης λήψης - Edit sending address Επεξεργασία διεύθυνσης αποστολής - The entered address "%1" is already in the address book. Η διεύθυνση "%1" βρίσκεται ήδη στο βιβλίο διευθύνσεων. - The entered address "%1" is not a valid Dogecoin address. Η διεύθυνση "%1" δεν είναι έγκυρη Dogecoin διεύθυνση. - Could not unlock wallet. Δεν είναι δυνατό το ξεκλείδωμα του πορτοφολιού. - New key generation failed. Η δημιουργία νέου κλειδιού απέτυχε. @@ -1067,27 +861,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. Θα δημιουργηθεί ένας νέος φάκελος δεδομένων. - name όνομα - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. Δεν μπορεί να δημιουργηθεί φάκελος δεδομένων εδώ. @@ -1095,52 +884,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Dogecoin Core - version έκδοση - Usage: Χρήση: - command-line options επιλογής γραμμής εντολών - UI options επιλογές UI - Set language, for example "de_DE" (default: system locale) Όρισε γλώσσα, για παράδειγμα "de_DE"(προεπιλογή:τοπικές ρυθμίσεις) - Start minimized Έναρξη ελαχιστοποιημένο - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Εμφάνισε την οθόνη εκκίνησης κατά την εκκίνηση(προεπιλογή:1) - Choose data directory on startup (default: 0) @@ -1148,57 +931,46 @@ Address: %4 Intro - Welcome Καλώς ήρθατε - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory Χρήση του προεπιλεγμένου φακέλου δεδομένων - Use a custom data directory: Προσαρμογή του φακέλου δεδομένων: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. Σφάλμα: Ο καθορισμένος φάκελος δεδομένων "%1" δεν μπορεί να δημιουργηθεί. - Error Σφάλμα - GB of free space available GB ελεύθερου χώρου διαθέσιμα - (of %1GB needed) (από τα %1GB που χρειάζονται) @@ -1206,27 +978,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1234,243 +1001,206 @@ Address: %4 OptionsDialog - Options Ρυθμίσεις - &Main &Κύριο - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Η προαιρετική αμοιβή για κάθε kB επισπεύδει την επεξεργασία των συναλλαγών σας. Οι περισσότερες συναλλαγές είναι 1 kB. - Pay transaction &fee Αμοιβή &συναλλαγής - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Αυτόματη εκκίνηση του Dogecoin μετά την εισαγωγή στο σύστημα - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Έναρξη του Βιtcoin κατά την εκκίνηση του συστήματος - Size of &database cache - - Set database cache size in megabytes (default: 25) - Όρισε το μέγεθος της βάσης προσωρινής αποθήκευσης σε megabytes(προεπιλογή:25) - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Ορίσμος του αριθμό των νημάτων ελέγχου σεναρίου (μέχρι 16, 0 = auto, <0 = αφήνουν τους πολλους πυρήνες δωρεάν, default: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. Επαναφορα όλων των επιλογων του πελάτη σε default. - &Reset Options Επαναφορα ρυθμίσεων - &Network &Δίκτυο - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Αυτόματο άνοιγμα των θυρών Dogecoin στον δρομολογητή. Λειτουργεί μόνο αν ο δρομολογητής σας υποστηρίζει τη λειτουργία UPnP. - Map port using &UPnP Απόδοση θυρών με χρήστη &UPnP - Proxy &IP: &IP διαμεσολαβητή: - &Port: &Θύρα: - Port of the proxy (e.g. 9050) Θύρα διαμεσολαβητή - SOCKS &Version: SOCKS &Έκδοση: - SOCKS version of the proxy (e.g. 5) SOCKS εκδοση του διαμεσολαβητη (e.g. 5) - &Window &Παράθυρο - Show only a tray icon after minimizing the window. Εμφάνιση μόνο εικονιδίου στην περιοχή ειδοποιήσεων κατά την ελαχιστοποίηση - &Minimize to the tray instead of the taskbar &Ελαχιστοποίηση στην περιοχή ειδοποιήσεων αντί της γραμμής εργασιών - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Ελαχιστοποίηση αντί για έξοδο κατά το κλείσιμο του παραθύρου - M&inimize on close Ε&λαχιστοποίηση κατά το κλείσιμο - &Display &Απεικόνιση - User Interface &language: Γλώσσα περιβάλλοντος εργασίας: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Εδώ μπορεί να ρυθμιστεί η γλώσσα διεπαφής χρήστη. Αυτή η ρύθμιση θα ισχύσει μετά την επανεκκίνηση του Dogecoin. - &Unit to show amounts in: &Μονάδα μέτρησης: - Choose the default subdivision unit to show in the interface and when sending coins. Διαλέξτε την προεπιλεγμένη υποδιαίρεση που θα εμφανίζεται όταν στέλνετε νομίσματα. - Whether to show Dogecoin addresses in the transaction list or not. Επιλέξτε αν θέλετε να εμφανίζονται οι διευθύνσεις Dogecoin στη λίστα συναλλαγών. - &Display addresses in transaction list Εμφάνιση διευθύνσεων στη λίστα συναλλαγών - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &ΟΚ - &Cancel &Ακύρωση - default προεπιλογή - none - Confirm options reset Επιβεβαιώση των επιλογων επαναφοράς - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. Δεν είναι έγκυρη η διεύθυνση διαμεσολαβητή @@ -1478,69 +1208,54 @@ Address: %4 OverviewPage - Form Φόρμα - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Οι πληροφορίες που εμφανίζονται μπορεί να είναι ξεπερασμένες. Το πορτοφόλι σας συγχρονίζεται αυτόματα με το δίκτυο Dogecoin μετά από μια σύνδεση, αλλά αυτή η διαδικασία δεν έχει ακόμη ολοκληρωθεί. - - Unconfirmed: - Ανεπιβεβαίωτες - - - Wallet Πορτοφόλι - - Confirmed: - Επικυρωμένες: + Available: + - Your current spendable balance Το τρέχον διαθέσιμο υπόλοιπο - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Το άθροισμα των συναλλαγών που δεν έχουν ακόμα επιβεβαιωθεί και δεν προσμετρώνται στο τρέχον διαθέσιμο υπόλοιπό σας - Immature: Ανώριμος - Mined balance that has not yet matured Εξορυγμενο υπόλοιπο που δεν έχει ακόμα ωριμάσει - Total: Σύνολο: - Your current total balance Το τρέχον συνολικό υπόλοιπο - <b>Recent transactions</b> <b>Πρόσφατες συναλλαγές</b> - - out of sync εκτός συγχρονισμού @@ -1548,93 +1263,70 @@ Address: %4 PaymentServer - - URI handling Χειρισμός URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. Το URI δεν μπορεί να αναλυθεί! Αυτό μπορεί να προκληθεί από μια μη έγκυρη διεύθυνση Dogecoin ή ακατάλληλη παραμέτρο URI. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error Σφάλμα αιτήματος πληρωμής - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler Δεν είναι δυνατή η εκκίνηση του Dogecoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged Πληρωμή αναγνωρίστηκε - Network request error Σφάλμα αιτήματος δικτύου @@ -1642,234 +1334,192 @@ Address: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Σφάλμα: Ο καθορισμένος φάκελος δεδομένων "%1" δεν υπάρχει. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. Σφάλμα: Άκυρος συνδυασμός των -regtest και -testnet + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Εισάγετε μια διεύθυνση Dogecoin (π.χ. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code Αποθήκευση κώδικα QR - PNG Image (*.png) - + Εικόνες PNG (*.png) RPCConsole - Client name Όνομα Πελάτη - - - - - - - - - - - N/A Μη διαθέσιμο - Client version Έκδοση Πελάτη - &Information &Πληροφορία - Debug window - + Παράθυρο αποσφαλμάτωσης - General - Using OpenSSL version Χρησιμοποιηση της OpenSSL εκδοσης - Startup time Χρόνος εκκίνησης - Network Δίκτυο - Name - Number of connections Αριθμός συνδέσεων - Block chain Αλυσίδα μπλοκ - Current number of blocks Τρέχον αριθμός μπλοκ - Estimated total blocks Κατ' εκτίμηση συνολικά μπλοκς - Last block time Χρόνος τελευταίου μπλοκ - &Open &Άνοιγμα - &Console &Κονσόλα - &Network Traffic - &Clear - Totals Σύνολα - In: Εισερχόμενα: - Out: Εξερχόμενα: - Build date Ημερομηνία κατασκευής - Debug log file Αρχείο καταγραφής εντοπισμού σφαλμάτων - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Ανοίξτε το αρχείο καταγραφής εντοπισμού σφαλμάτων από τον τρέχοντα κατάλογο δεδομένων. Αυτό μπορεί να πάρει μερικά δευτερόλεπτα για τα μεγάλα αρχεία καταγραφής. - Clear console Καθαρισμός κονσόλας - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Καλώς ήρθατε στην Dogecoin RPC κονσόλα. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Χρησιμοποιήστε το πάνω και κάτω βέλος για να περιηγηθείτε στο ιστορικο, και <b>Ctrl-L</b> για εκκαθαριση οθονης. - Type <b>help</b> for an overview of available commands. Γράψτε <b>help</b> για μια επισκόπηση των διαθέσιμων εντολών - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 λ - %1 h %1 ώ - %1 h %2 m %1 ώ %2 λ @@ -1877,155 +1527,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: &Επιγραφή - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. Καθαρισμός όλων των πεδίων της φόρμας. - Clear Καθαρισμός - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - + Εμφάνιση - Remove the selected entries from the list - Remove + Αφαίρεση + + + Copy label + Αντιγραφή επιγραφής + + + Copy message + + Copy amount + Αντιγραφή ποσού + ReceiveRequestDialog - QR Code Κώδικας QR - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information Πληροφορίες πληρωμής - URI - Address Διεύθυνση - Amount Ποσό - Label Ετικέτα - Message Μήνυμα - Resulting URI too long, try to reduce the text for label / message. Το αποτέλεσμα της διεύθυνσης είναι πολύ μεγάλο. Μειώστε το μέγεθος για το κείμενο της ετικέτας/ μηνύματος. - Error encoding URI into QR Code. Σφάλμα κατά την κωδικοποίηση του URI σε κώδικα QR @@ -2033,285 +1665,225 @@ Address: %4 RecentRequestsTableModel - Date Ημερομηνία - Label Ετικέτα - Message Μήνυμα - Amount Ποσό - (no label) (χωρίς ετικέτα) - (no message) + (κανένα μήνυμα) + + + (no amount) SendCoinsDialog - - - Send Coins Αποστολή νομισμάτων - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - + Ανεπαρκές κεφάλαιο! - Quantity: - + Ποσότητα: - Bytes: - + Bytes: - Amount: Ποσό: - Priority: - + Προτεραιότητα: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Αποστολή σε πολλούς αποδέκτες ταυτόχρονα - Add &Recipient &Προσθήκη αποδέκτη - Clear all fields of the form. Καθαρισμός όλων των πεδίων της φόρμας. - Clear &All Καθαρισμός &Όλων - Balance: Υπόλοιπο: - Confirm the send action Επιβεβαίωση αποστολής - S&end Αποστολη - Confirm send coins Επιβεβαίωση αποστολής νομισμάτων - - - - %1 to %2 %1 σε %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Εισάγετε μια διεύθυνση Dogecoin (π.χ. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount Αντιγραφή ποσού - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. Η διεύθυνση του αποδέκτη δεν είναι σωστή. Παρακαλώ ελέγξτε ξανά. - The amount to pay must be larger than 0. Το ποσό πληρωμής πρέπει να είναι μεγαλύτερο από 0. - The amount exceeds your balance. Το ποσό ξεπερνάει το διαθέσιμο υπόλοιπο - The total exceeds your balance when the %1 transaction fee is included. Το σύνολο υπερβαίνει το υπόλοιπό σας όταν συμπεριληφθεί και η αμοιβή %1 - Duplicate address found, can only send to each address once per send operation. Βρέθηκε η ίδια διεύθυνση δύο φορές. Επιτρέπεται μία μόνο εγγραφή για κάθε διεύθυνση, σε κάθε διαδικασία αποστολής. - Transaction creation failed! - + Η δημιουργία της συναλλαγής απέτυχε! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - + Προειδοποίηση: Μη έγκυρη διεύθυνση Dogecoin - (no label) (χωρίς ετικέτα) - Warning: Unknown change address - Are you sure you want to send? Είστε βέβαιοι για την αποστολή; - added as transaction fee προστέθηκαν ως αμοιβή συναλλαγής - Payment request expired Έληξε η αίτηση πληρωμής - Invalid payment address %1 Μη έγκυρη διεύθυνση πληρωμής %1 @@ -2319,116 +1891,85 @@ Address: %4 SendCoinsEntry - - - A&mount: &Ποσό: - Pay &To: Πληρωμή &σε: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Διεύθυνση αποστολής της πληρωμής (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Εισάγετε μια επιγραφή για αυτή τη διεύθυνση ώστε να καταχωρηθεί στο βιβλίο διευθύνσεων - &Label: &Επιγραφή - Choose previously used address Επιλογή διεύθυνσης που έχει ήδη χρησιμοποιηθεί - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard Επικόλληση διεύθυνσης από το πρόχειρο - Alt+P Alt+P - - - Remove this entry - Message: Μήνυμα: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - + Πληρωμή σε: - - Memo: - - - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Εισάγετε μια διεύθυνση Dogecoin (π.χ. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Σημείωση: ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2436,192 +1977,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Υπογραφές - Είσοδος / Επαλήθευση μήνυματος - &Sign Message &Υπογραφή Μηνύματος - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Μπορείτε να υπογράφετε μηνύματα με τις διευθύνσεις σας, ώστε ν' αποδεικνύετε πως αυτές σας ανήκουν. Αποφεύγετε να υπογράφετε κάτι αόριστο καθώς ενδέχεται να εξαπατηθείτε. Υπογράφετε μόνο πλήρης δηλώσεις με τις οποίες συμφωνείτε. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Εισάγετε μια διεύθυνση Dogecoin (π.χ. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Επιλογή διεύθυνσης που έχει ήδη χρησιμοποιηθεί - - Alt+A Alt+A - Paste address from clipboard Επικόλληση διεύθυνσης από το βιβλίο διευθύνσεων - Alt+P Alt+P - Enter the message you want to sign here Εισάγετε εδώ το μήνυμα που θέλετε να υπογράψετε - Signature Υπογραφή - Copy the current signature to the system clipboard Αντέγραφη της επιλεγμενης διεύθυνσης στο πρόχειρο του συστηματος - Sign the message to prove you own this Dogecoin address Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως σας ανήκει μια συγκεκριμένη διεύθυνση Dogecoin - Sign &Message Υπογραφη μήνυματος - Reset all sign message fields Επαναφορά όλων των πεδίων μήνυματος - - Clear &All Καθαρισμός &Όλων - &Verify Message &Επιβεβαίωση μηνύματος - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Πληκτρολογήστε την υπογραφή διεύθυνσης, μήνυμα (βεβαιωθείτε ότι έχετε αντιγράψει τις αλλαγές γραμμής, κενά, tabs, κ.λπ. ακριβώς) και την υπογραφή παρακάτω, για να ελέγξει το μήνυμα. Να είστε προσεκτικοί για να μην διαβάσετε περισσότερα στην υπογραφή ό, τι είναι στην υπογραφή ίδιο το μήνυμα , για να μην εξαπατηθούν από έναν άνθρωπο -in - the-middle επίθεση. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Εισάγετε μια διεύθυνση Dogecoin (π.χ. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως υπογραφθηκε απο μια συγκεκριμένη διεύθυνση Dogecoin - Verify &Message Επιβεβαίωση μηνύματος - Reset all verify message fields Επαναφορά όλων επαλήθευμενων πεδίων μήνυματος - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Εισάγετε μια διεύθυνση Dogecoin (π.χ. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Κάντε κλικ στο "Υπογραφή Μηνύματος" για να λάβετε την υπογραφή - - Enter Dogecoin signature - Εισαγωγή υπογραφής Dogecoin - - - - The entered address is invalid. Η διεύθυνση που εισήχθη είναι λάθος. - - - - Please check the address and try again. Παρακαλούμε ελέγξτε την διεύθυνση και δοκιμάστε ξανά. - - The entered address does not refer to a key. Η διεύθυνση που έχει εισαχθεί δεν αναφέρεται σε ένα πλήκτρο. - Wallet unlock was cancelled. το ξεκλείδωμα του πορτοφολιού απέτυχε - Private key for the entered address is not available. Το προσωπικό κλειδί εισαγμενης διευθυνσης δεν είναι διαθέσιμο. - Message signing failed. Η υπογραφή του μηνύματος απέτυχε. - Message signed. Μήνυμα υπεγράφη. - The signature could not be decoded. Η υπογραφή δεν μπόρεσε να αποκρυπτογραφηθεί. - - Please check the signature and try again. Παρακαλούμε ελέγξτε την υπογραφή και δοκιμάστε ξανά. - The signature did not match the message digest. Η υπογραφή δεν ταιριάζει με το μήνυμα. - Message verification failed. Η επιβεβαίωση του μηνύματος απέτυχε - Message verified. Μήνυμα επιβεβαιώθηκε. @@ -2629,17 +2120,14 @@ Address: %4 SplashScreen - Dogecoin Core Dogecoin Core - The Dogecoin Core developers - [testnet] [testnet] @@ -2647,7 +2135,6 @@ Address: %4 TrafficGraphWidget - KB/s KB/s @@ -2655,179 +2142,138 @@ Address: %4 TransactionDesc - Open until %1 Ανοιχτό μέχρι %1 - + conflicted + + + %1/offline %1/χωρίς σύνδεση; - %1/unconfirmed %1/χωρίς επιβεβαίωση - %1 confirmations %1 επιβεβαιώσεις - Status Κατάσταση - , broadcast through %n node(s) , έχει μεταδοθεί μέσω %n κόμβων, έχει μεταδοθεί μέσω %n κόμβων - Date Ημερομηνία - Source Πηγή - Generated Δημιουργία - - From Από - - - To Προς - - own address δική σας διεύθυνση - label eπιγραφή - - - - - Credit Πίστωση - matures in %n more block(s) ωρίμανση σε %n επιπλέον μπλοκωρίμανση σε %n επιπλέον μπλοκ - not accepted μη αποδεκτό - - - - Debit Debit - Transaction fee Τέλος συναλλαγής - Net amount Καθαρό ποσό - - Message Μήνυμα - Comment Σχόλιο: - Transaction ID ID Συναλλαγής: - Merchant Έμπορος - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information Πληροφορίες αποσφαλμάτωσης - Transaction Συναλλαγή - Inputs εισροές - Amount Ποσό - true αληθής - false αναληθής - , has not been successfully broadcast yet , δεν έχει ακόμα μεταδοθεί μ' επιτυχία - Open for %n more block(s) Ανοιχτό για %n μπλοκΑνοιχτό για %n μπλοκ - unknown άγνωστο @@ -2835,12 +2281,10 @@ Address: %4 TransactionDescDialog - Transaction details Λεπτομέρειες συναλλαγής - This pane shows a detailed description of the transaction Αυτό το παράθυρο δείχνει μια λεπτομερή περιγραφή της συναλλαγής @@ -2848,118 +2292,102 @@ Address: %4 TransactionTableModel - Date Ημερομηνία - Type Τύπος - Address Διεύθυνση - Amount Ποσό - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) Ανοιχτό για %n μπλοκΑνοιχτό για %n μπλοκ - Open until %1 Ανοιχτό μέχρι %1 - - Offline (%1 confirmations) - Χωρίς σύνδεση (%1 επικυρώσεις) - - - - Unconfirmed (%1 of %2 confirmations) - Χωρίς επιβεβαίωση (%1 από %2 επικυρώσεις) - - - - Confirmed (%1 confirmations) Επικυρωμένη (%1 επικυρώσεις) - This block was not received by any other nodes and will probably not be accepted! Αυτό το μπλοκ δεν έχει παραληφθεί από κανέναν άλλο κόμβο και κατά πάσα πιθανότητα θα απορριφθεί! - Generated but not accepted Δημιουργήθηκε αλλά απορρίφθηκε - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Παραλαβή με - Received from Ελήφθη από - Sent to Αποστολή προς - Payment to yourself Πληρωμή προς εσάς - Mined Εξόρυξη - (n/a) (δ/α) - Transaction status. Hover over this field to show number of confirmations. Κατάσταση συναλλαγής. Πηγαίνετε το ποντίκι πάνω από αυτό το πεδίο για να δείτε τον αριθμό των επικυρώσεων - Date and time that the transaction was received. Ημερομηνία κι ώρα λήψης της συναλλαγής. - Type of transaction. Είδος συναλλαγής. - Destination address of transaction. Διεύθυνση αποστολής της συναλλαγής. - Amount removed from or added to balance. Ποσό που αφαιρέθηκε ή προστέθηκε στο υπόλοιπο. @@ -2967,178 +2395,142 @@ Address: %4 TransactionView - - All Όλα - Today Σήμερα - This week Αυτή την εβδομάδα - This month Αυτόν τον μήνα - Last month Τον προηγούμενο μήνα - This year Αυτό το έτος - Range... Έκταση... - Received with Ελήφθη με - Sent to Απεστάλη προς - To yourself Προς εσάς - Mined Εξόρυξη - Other Άλλο - Enter address or label to search Αναζήτηση με βάση τη διεύθυνση ή την επιγραφή - Min amount Ελάχιστο ποσό - Copy address Αντιγραφή διεύθυνσης - Copy label Αντιγραφή επιγραφής - Copy amount Αντιγραφή ποσού - Copy transaction ID Αντιγραφη του ID Συναλλαγής - Edit label Επεξεργασία επιγραφής - Show transaction details Εμφάνιση λεπτομερειών συναλλαγής - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Αρχείο οριοθετημένο με κόμματα (*.csv) - Confirmed Επικυρωμένες - Date Ημερομηνία - Type Τύπος - Label Επιγραφή - Address Διεύθυνση - Amount Ποσό - ID ID - Range: Έκταση: - to έως @@ -3146,7 +2538,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3154,7 +2545,6 @@ Address: %4 WalletModel - Send Coins Αποστολή νομισμάτων @@ -3162,154 +2552,125 @@ Address: %4 WalletView - &Export &Εξαγωγή - Export the data in the current tab to a file Εξαγωγή δεδομένων καρτέλας σε αρχείο - Backup Wallet Αντίγραφο ασφαλείας του πορτοφολιού - Wallet Data (*.dat) Αρχεία δεδομένων πορτοφολιού (*.dat) - Backup Failed Αποτυχία κατά τη δημιουργία αντιγράφου - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful Η δημιουργια αντιγραφου ασφαλειας πετυχε - dogecoin-core + bitcoin-core - Usage: Χρήση: - List commands Λίστα εντολών - Get help for a command Επεξήγηση εντολής - Options: Επιλογές: - - Specify configuration file (default: dogecoin.conf) - Ορίστε αρχείο ρυθμίσεων (προεπιλογή: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Ορίστε αρχείο ρυθμίσεων (προεπιλογή: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Ορίστε αρχείο pid (προεπιλογή: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Ορίστε αρχείο pid (προεπιλογή: bitcoind.pid) - Specify data directory Ορισμός φακέλου δεδομένων - - Set database cache size in megabytes (default: 25) - Όρισε το μέγεθος της βάσης προσωρινής αποθήκευσης σε megabytes(προεπιλογή:25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Εισερχόμενες συνδέσεις στη θύρα <port> (προεπιλογή: 8333 ή στο testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Εισερχόμενες συνδέσεις στη θύρα <port> (προεπιλογή: 22556 ή στο testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Μέγιστες αριθμός συνδέσεων με τους peers <n> (προεπιλογή: 125) - Connect to a node to retrieve peer addresses, and disconnect Σύνδεση σε έναν κόμβο για την ανάκτηση διευθύνσεων από ομοτίμους, και αποσυνδέσh - Specify your own public address Διευκρινίστε τη δικιά σας δημόσια διεύθυνση. - Threshold for disconnecting misbehaving peers (default: 100) Όριο αποσύνδεσης προβληματικών peers (προεπιλογή: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Δευτερόλεπτα πριν επιτραπεί ξανά η σύνδεση των προβληματικών peers (προεπιλογή: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s Ένα σφάλμα συνέβη καθώς προετοιμαζόταν η πόρτα RPC %u για αναμονή IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Εισερχόμενες συνδέσεις JSON-RPC στη θύρα <port> (προεπιλογή: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Εισερχόμενες συνδέσεις JSON-RPC στη θύρα <port> (προεπιλογή: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands Αποδοχή εντολών κονσόλας και JSON-RPC - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Εκτέλεση στο παρασκήνιο κι αποδοχή εντολών - Use the test network Χρήση του δοκιμαστικού δικτύου - Accept connections from outside (default: 1 if no -proxy or -connect) Να δέχεσαι συνδέσεις από έξω(προεπιλογή:1) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3320,7 +2681,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3330,708 +2691,687 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. - Αδυναμία κλειδώματος του φακέλου δεδομένων %s. Πιθανώς το Dogecoin να είναι ήδη ενεργό. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + - 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 %d) + + + 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 λόγω του μεγέθους, πολυπλοκότητας ή της χρήσης πρόσφατης παραλαβής κεφαλαίου - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Εκτέλεσε την εντολή όταν το καλύτερο μπλοκ αλλάξει(%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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + + + 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 Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Προειδοποίηση: Παρακαλώ βεβαιωθείτε πως η ημερομηνία κι ώρα του συστήματός σας είναι σωστές. Αν το ρολόι του υπολογιστή σας πάει λάθος, ενδέχεται να μη λειτουργεί σωστά το Dogecoin. - 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 . Αν το υπόλοιπο του ή τις συναλλαγές σας, είναι λάθος θα πρέπει να επαναφέρετε από ένα αντίγραφο ασφαλείας - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: - Attempt to recover private keys from a corrupt wallet.dat Προσπάθεια για ανακτησει ιδιωτικων κλειδιων από ενα διεφθαρμένο αρχειο wallet.dat - Dogecoin Core Daemon - - Dogecoin Core RPC client version - - - - Block creation options: Αποκλεισμός επιλογων δημιουργίας: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + Connect only to the specified node(s) Σύνδεση μόνο με ορισμένους κόμβους - Connect through SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: - Corrupted block database detected Εντοπισθηκε διεφθαρμενη βαση δεδομενων των μπλοκ - + 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? Θελετε να δημιουργηθει τωρα η βαση δεδομενων του μπλοκ? - Error initializing block database Σφάλμα κατά την ενεργοποίηση της βάσης δεδομένων μπλοκ - Error initializing wallet database environment %s! Σφάλμα κατά την ενεργοποίηση της βάσης δεδομένων πορτοφόλιου %s! - Error loading block database Σφάλμα φορτωσης της βασης δεδομενων των μπλοκ - Error opening block database Σφάλμα φορτωσης της βασης δεδομενων των μπλοκ - Error: Disk space is low! Προειδοποίηση: Χαμηλός χώρος στο δίσκο - Error: Wallet locked, unable to create transaction! Σφάλμα: το πορτοφόλι είναι κλειδωμένο, δεν μπορεί να δημιουργηθεί συναλλαγή - 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: + + + Find peers using DNS lookup (default: 1 unless -connect) Βρες ομότιμους υπολογιστές χρησιμοποιώντας αναζήτηση DNS(προεπιλογή:1) - + Force safe mode (default: 0) + + + Generate coins (default: 0) Δημιουργία νομισμάτων (προκαθορισμος: 0) - How many blocks to check at startup (default: 288, 0 = all) Πόσα μπλοκ να ελέγχθουν κατά την εκκίνηση (προεπιλογή:288,0=όλα) - - How thorough the block verification is (0-4, default: 3) - Πόσο εξονυχιστική να είναι η επιβεβαίωση του μπλοκ(0-4, προεπιλογή:3) - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? - Invalid -onion address: '%s' Άκυρη διεύθυνση -onion : '%s' - Not enough file descriptors available. Δεν ειναι αρκετες περιγραφες αρχείων διαθέσιμες. - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files Εισαγωγή μπλοκ από εξωτερικό αρχείο blk000?.dat - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server + Set database cache size in megabytes (%d to %d, default: %d) - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) Ορίσμος του αριθμόυ θεματων στην υπηρεσία κλήσεων RPC (προεπιλογή: 4) - Specify wallet file (within data directory) - - Start Dogecoin Core server + Spend unconfirmed change when sending transactions (default: 1) - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): + Usage (deprecated, use bitcoin-cli): - Verifying blocks... Επαλήθευση των μπλοκ... - Verifying wallet... Επαλήθευση πορτοφολιου... - Wait for RPC server to start - Wallet %s resides outside data directory %s - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex - Imports blocks from external blk000??.dat file Εισαγωγή μπλοκ από εξωτερικό αρχείο blk000?.dat - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Ορίσμος του αριθμό των νημάτων ελέγχου σεναρίου (μέχρι 16, 0 = auto, <0 = αφήνουν τους πολλους πυρήνες δωρεάν, default: 0) - - - Information Πληροφορία - Invalid amount for -minrelaytxfee=<amount>: '%s' Μη έγκυρο ποσό για την παράμετρο -paytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' Μη έγκυρο ποσό για την παράμετρο -paytxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) Διατηρήση ένος πλήρες ευρετήριου συναλλαγών (προεπιλογή: 0) - 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) - 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) - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Ρυθμίσεις SSL: (ανατρέξτε στο Bitcoin Wiki για οδηγίες ρυθμίσεων SSL) + Print block on startup, if found in block index + + + + Print block tree on startup (default: 0) + + + + RPC SSL options: (see the Dogecoin Wiki for SSL setup instructions) + + + + RPC server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Dogecoin Wiki for SSL setup instructions) + Ρυθμίσεις SSL: (ανατρέξτε στο Dogecoin Wiki για οδηγίες ρυθμίσεων SSL) + + + Send command to Dogecoin Core + - Send trace/debug info to console instead of debug.log file Αποστολή πληροφοριών εντοπισμού σφαλμάτων στην κονσόλα αντί του αρχείου debug.log - Set minimum block size in bytes (default: 0) Ορίστε το μέγιστο μέγεθος μπλοκ σε bytes (προεπιλογή: 0) - + 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 transaction failed Η υπογραφή συναλλαγής απέτυχε - Specify connection timeout in milliseconds (default: 5000) Ορισμός λήξης χρονικού ορίου σε χιλιοστά του δευτερολέπτου(προεπιλογή:5000) - + Start Dogecoin Core Daemon + + + System error: Λάθος Συστήματος: - Transaction amount too small Το ποσό της συναλλαγής είναι πολύ μικρο - Transaction amounts must be positive Τα ποσά των συναλλαγών πρέπει να είναι θετικα - Transaction too large Η συναλλαγή ειναι πολύ μεγάλη - Use UPnP to map the listening port (default: 0) Χρησιμοποίηση του UPnP για την χρήση της πόρτας αναμονής (προεπιλογή:0) - Use UPnP to map the listening port (default: 1 when listening) Χρησιμοποίηση του UPnP για την χρήση της πόρτας αναμονής (προεπιλογή:1) - Username for JSON-RPC connections Όνομα χρήστη για τις συνδέσεις JSON-RPC - Warning Προειδοποίηση - Warning: This version is obsolete, upgrade required! Προειδοποίηση: Αυτή η έκδοση είναι ξεπερασμένη, απαιτείται αναβάθμιση - + Zapping all transactions from wallet... + + + + on startup + + + version έκδοση - wallet.dat corrupt, salvage failed Το αρχειο wallet.dat ειναι διεφθαρμένο, η διάσωση απέτυχε - Password for JSON-RPC connections Κωδικός για τις συνδέσεις JSON-RPC - Allow JSON-RPC connections from specified IP address Αποδοχή συνδέσεων JSON-RPC από συγκεκριμένη διεύθυνση IP - Send commands to node running on <ip> (default: 127.0.0.1) Αποστολή εντολών στον κόμβο <ip> (προεπιλογή: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) Εκτέλεσε την εντολή όταν το καλύτερο μπλοκ αλλάξει(%s στην εντολή αντικαθίσταται από το hash του μπλοκ) - Upgrade wallet to latest format Αναβάθμισε το πορτοφόλι στην τελευταία έκδοση - Set key pool size to <n> (default: 100) Όριο πλήθους κλειδιών pool <n> (προεπιλογή: 100) - Rescan the block chain for missing wallet transactions Επανέλεγχος της αλυσίδας μπλοκ για απούσες συναλλαγές - Use OpenSSL (https) for JSON-RPC connections Χρήση του OpenSSL (https) για συνδέσεις JSON-RPC - Server certificate file (default: server.cert) Αρχείο πιστοποιητικού του διακομιστή (προεπιλογή: server.cert) - Server private key (default: server.pem) Προσωπικό κλειδί του διακομιστή (προεπιλογή: server.pem) - This help message Αυτό το κείμενο βοήθειας - Unable to bind to %s on this computer (bind returned error %d, %s) Αδύνατη η σύνδεση με τη θύρα %s αυτού του υπολογιστή (bind returned error %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Να επιτρέπονται οι έλεγχοι DNS για προσθήκη και σύνδεση κόμβων - Loading addresses... Φόρτωση διευθύνσεων... - Error loading wallet.dat: Wallet corrupted Σφάλμα φόρτωσης wallet.dat: Κατεστραμμένο Πορτοφόλι - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Σφάλμα φόρτωσης wallet.dat: Το Πορτοφόλι απαιτεί μια νεότερη έκδοση του Dogecoin - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Απαιτείται η επανεγγραφή του Πορτοφολιού, η οποία θα ολοκληρωθεί στην επανεκκίνηση του Dogecoin - Error loading wallet.dat Σφάλμα φόρτωσης αρχείου wallet.dat - Invalid -proxy address: '%s' Δεν είναι έγκυρη η διεύθυνση διαμεσολαβητή: '%s' - Unknown network specified in -onlynet: '%s' Άγνωστo δίκτυο ορίζεται σε onlynet: '%s' - Unknown -socks proxy version requested: %i Άγνωστo δίκτυο ορίζεται: %i - Cannot resolve -bind address: '%s' Δεν μπορώ να γράψω την προεπιλεγμένη διεύθυνση: '%s' - Cannot resolve -externalip address: '%s' Δεν μπορώ να γράψω την προεπιλεγμένη διεύθυνση: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Μη έγκυρο ποσό για την παράμετρο -paytxfee=<amount>: '%s' - Invalid amount Λάθος ποσότητα - Insufficient funds Ανεπαρκές κεφάλαιο - Loading block index... Φόρτωση ευρετηρίου μπλοκ... - Add a node to connect to and attempt to keep the connection open Προσέθεσε ένα κόμβο για σύνδεση και προσπάθησε να κρατήσεις την σύνδεση ανοιχτή - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Αδύνατη η σύνδεση με τη θύρα %s αυτού του υπολογιστή. Το Dogecoin είναι πιθανώς ήδη ενεργό. - - - Loading wallet... Φόρτωση πορτοφολιού... - Cannot downgrade wallet Δεν μπορώ να υποβαθμίσω το πορτοφόλι - Cannot write default address Δεν μπορώ να γράψω την προεπιλεγμένη διεύθυνση - Rescanning... Ανίχνευση... - Done loading Η φόρτωση ολοκληρώθηκε - To use the %s option Χρήση της %s επιλογής - Error Σφάλμα - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4039,4 +3379,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Εάν το αρχείο δεν υπάρχει, δημιούργησε το με δικαιώματα μόνο για ανάγνωση από τον δημιουργό - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts index cd25c1a6e..77e1a8c5b 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -41,7 +41,7 @@ This product includes software developed by the OpenSSL Project for use in the O - (%1-bit) + (%1-bit) @@ -73,7 +73,7 @@ This product includes software developed by the OpenSSL Project for use in the O - + C&lose @@ -83,7 +83,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy Address - + Delete the currently selected address from the list Delete the currently selected address from the list @@ -330,7 +330,7 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - + Sign &message... Sign &message... @@ -345,12 +345,12 @@ This product includes software developed by the OpenSSL Project for use in the O &Wow - + Node - + Show general overview of wallet Show general overview of wallet @@ -471,17 +471,17 @@ This product includes software developed by the OpenSSL Project for use in the O &Verify message... - + Dogecoin Dogecoin - + Wallet Wallet - + &Send &Pls Send @@ -537,18 +537,18 @@ This product includes software developed by the OpenSSL Project for use in the O Tabs toolbar - - + + [testnet] [testnet] - + Dogecoin Core Dogecoin Core - + Request payments (generates QR codes and dogecoin: URIs) @@ -613,7 +613,7 @@ This product includes software developed by the OpenSSL Project for use in the O Processed %1 blocks of transaction history. - + %n hour(s) %n hour @@ -630,12 +630,26 @@ This product includes software developed by the OpenSSL Project for use in the O + %n week(s) %n week %n weeks + + + %1 and %2 + + + + + %n year(s) + + %n year + %n years + + %1 behind @@ -667,12 +681,12 @@ This product includes software developed by the OpenSSL Project for use in the O Information - + Up to date Up to date - + Catching up... Catching up... @@ -710,7 +724,7 @@ Address: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> - + A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. @@ -718,7 +732,7 @@ Address: %4 ClientModel - + Network Alert Network Alert @@ -816,7 +830,7 @@ Address: %4 - + Copy address Copy address @@ -882,7 +896,7 @@ Address: %4 - + highest @@ -932,7 +946,7 @@ Address: %4 - + none @@ -953,7 +967,7 @@ Address: %4 - This label turns red, if the transaction size is greater than 1000 bytes. + This label turns red, if the transaction size is greater than 5000 bytes. @@ -1000,12 +1014,12 @@ Address: %4 - + (no label) (no label) - + change from %1 (%2) @@ -1086,7 +1100,7 @@ Address: %4 FreespaceChecker - + A new data directory will be created. A new data directory will be created. @@ -1144,7 +1158,7 @@ Address: %4 UI options - + Set language, for example "de_DE" (default: system locale) Set language, for example "de_DE" (default: system locale) @@ -1153,13 +1167,18 @@ Address: %4 Start minimized Start minimized + + + Set SSL root certificates for payment request (default: -system-) + + Show splash screen on startup (default: 1) Show splash screen on startup (default: 1) - + Choose data directory on startup (default: 0) Choose data directory on startup (default: 0) @@ -1197,7 +1216,7 @@ Address: %4 Use a custom data directory: - + Dogecoin Dogecoin @@ -1207,7 +1226,7 @@ Address: %4 Error: Specified data directory "%1" can not be created. - + Error Error @@ -1263,7 +1282,7 @@ Address: %4 &Main - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. @@ -1273,7 +1292,7 @@ Address: %4 Pay transaction &fee - + Automatically start Dogecoin Core after logging in to the system. Automatically start Dogecoin Core after logging in to the system. @@ -1298,17 +1317,7 @@ Address: %4 - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - &Spend unconfirmed change (experts only) - - - - + Connect to the Dogecoin network through a SOCKS proxy. @@ -1323,7 +1332,18 @@ Address: %4 - + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Third party transaction URLs + + + + Active command-line options that override above options: @@ -1338,22 +1358,42 @@ Address: %4 &Reset Options - + &Network &Network - + + (0 = auto, <0 = leave that many cores free) + + + + W&allet - + + Expert + + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - + + &Spend unconfirmed change + + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. @@ -1448,17 +1488,12 @@ Address: %4 &Display addresses in transaction list - + Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - + &OK &OK @@ -1468,17 +1503,17 @@ Address: %4 &Cancel - + default default - + none - + Confirm options reset Confirm options reset @@ -1672,22 +1707,33 @@ Address: %4 QObject - + + Dogecoin Dogecoin - + Error: Specified data directory "%1" does not exist. Error: Specified data directory "%1" does not exist. - + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + Error: Invalid combination of -regtest and -testnet. - + + Dogecoin Core didn't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1733,7 +1779,7 @@ Address: %4 - + N/A N/A @@ -1829,11 +1875,13 @@ Address: %4 + In: + Out: @@ -1858,7 +1906,7 @@ Address: %4 Clear console - + Welcome to the Dogecoin RPC console. Welcome to the Dogecoin RPC console. @@ -1873,7 +1921,7 @@ Address: %4 Type <b>help</b> for an overview of available commands. - + %1 B @@ -1989,7 +2037,7 @@ Address: %4 - + Remove the selected entries from the list @@ -1999,7 +2047,7 @@ Address: %4 - + Copy label Copy label @@ -2220,12 +2268,12 @@ Address: %4 Clear &All - + Balance: Balance: - + Confirm the send action Confirm the send action @@ -2470,7 +2518,7 @@ Address: %4 ShutdownWindow - + Dogecoin Core is shutting down... @@ -2670,7 +2718,7 @@ Address: %4 SplashScreen - + Dogecoin Core Dogecoin Core @@ -2696,7 +2744,7 @@ Address: %4 TransactionDesc - + Open until %1 Open until %1 @@ -2721,7 +2769,7 @@ Address: %4 %1 confirmations - + Status Status @@ -2854,7 +2902,7 @@ Address: %4 Inputs - + Amount Amount @@ -2869,12 +2917,12 @@ Address: %4 false - + , has not been successfully broadcast yet , has not been successfully broadcast yet - + Open for %n more block(s) Open for %n more block @@ -2882,7 +2930,7 @@ Address: %4 - + unknown unknown @@ -2903,7 +2951,7 @@ Address: %4 TransactionTableModel - + Date Date @@ -2923,7 +2971,7 @@ Address: %4 Amount - + Immature (%1 confirmations, will be available after %2) @@ -3006,7 +3054,7 @@ Address: %4 (n/a) - + Transaction status. Hover over this field to show number of confirmations. Transaction status. Hover over this field to show number of confirmations. @@ -3034,7 +3082,7 @@ Address: %4 TransactionView - + All All @@ -3135,7 +3183,7 @@ Address: %4 Show transaction details - + Export Transaction History @@ -3200,7 +3248,7 @@ Address: %4 ID - + Range: Range: @@ -3221,7 +3269,7 @@ Address: %4 WalletModel - + Send Coins Send Coins @@ -3229,7 +3277,7 @@ Address: %4 WalletView - + &Export &Export @@ -3239,7 +3287,7 @@ Address: %4 Export the data in the current tab to a file - + Backup Wallet Backup Wallet @@ -3272,27 +3320,27 @@ Address: %4 dogecoin-core - + Usage: Usage: - + List commands List commands - + Get help for a command Get help for a command - + Options: Options: - + Specify configuration file (default: dogecoin.conf) Specify configuration file (default: dogecoin.conf) @@ -3307,27 +3355,22 @@ Address: %4 Specify data directory - - Set database cache size in megabytes (default: 25) - Set database cache size in megabytes (default: 25) - - - + Listen for connections on <port> (default: 22556 or testnet: 44556) Listen for connections on <port> (default: 22556 or testnet: 44556) - + Maintain at most <n> connections to peers (default: 125) Maintain at most <n> connections to peers (default: 125) - + Connect to a node to retrieve peer addresses, and disconnect Connect to a node to retrieve peer addresses, and disconnect - + Specify your own public address Specify your own public address @@ -3337,42 +3380,47 @@ Address: %4 Threshold for disconnecting misbehaving peers (default: 100) - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + 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 - + Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - + Accept command line and JSON-RPC commands Accept command line and JSON-RPC commands - + + Dogecoin Core RPC client version + + + + Run in the background as a daemon and accept commands Run in the background as a daemon and accept commands - + Use the test network Use the test network - + Accept connections from outside (default: 1 if no -proxy or -connect) Accept connections from outside (default: 1 if no -proxy or -connect) - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3412,9 +3460,9 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Bind to given address and always listen on it. Use [host]:port notation for IPv6 - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + @@ -3428,6 +3476,11 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo + Error: Listening for incoming connections failed (listen returned error %d) + + + + 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. @@ -3442,12 +3495,47 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + + 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) + + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + + 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) + + + + 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. Dogecoin Core is probably already running. + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) @@ -3483,6 +3571,16 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo + (default: 1) + + + + + (default: wallet.dat) + + + + <category> can be: @@ -3497,12 +3595,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo - - Dogecoin RPC client version - - - - + Block creation options: Block creation options: @@ -3528,9 +3621,24 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo + Connection options: + + + + Corrupted block database detected Corrupted block database detected + + + Debugging/Testing options: + + + + + Disable safemode, override a real safe mode event (default: 0) + + Discover own IP address (default: 1 when listening and no -externalip) @@ -3641,11 +3749,21 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Fee per kB to add to transactions you send + + + Fees smaller than this are considered zero fee (for relaying) (default: + + Find peers using DNS lookup (default: 1 unless -connect) Find peers using DNS lookup (default: 1 unless -connect) + + + Force safe mode (default: 0) + + Generate coins (default: 0) @@ -3658,12 +3776,12 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo - How thorough the block verification is (0-4, default: 3) - How thorough the block verification is (0-4, default: 3) + If <category> is not supplied, output all debugging information. + - If <category> is not supplied, output all debugging information. + Importing... @@ -3677,7 +3795,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo - + Not enough file descriptors available. Not enough file descriptors available. @@ -3687,27 +3805,27 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo - + RPC client options: - + Rebuild block chain index from current blk000??.dat files Rebuild block chain index from current blk000??.dat files - + Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin server + + Set database cache size in megabytes (%d to %d, default: %d) - + Set maximum block size in bytes (default: %d) @@ -3717,7 +3835,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Set the number of threads to service RPC calls (default: 4) - + Specify wallet file (within data directory) Specify wallet file (within data directory) @@ -3727,12 +3845,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo - - Start Dogecoin server - - - - + This is intended for regression testing tools and app development. @@ -3777,17 +3890,22 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo You need to rebuild the database using -reindex to change -txindex - + Imports blocks from external blk000??.dat file Imports blocks from external blk000??.dat file - + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + 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) - + Output debugging information (default: 0, supplying <category> is optional) @@ -3797,12 +3915,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - + Information Information @@ -3817,7 +3930,17 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Invalid amount for -mintxfee=<amount>: '%s' - + + Limit size of signature cache to <n> entries (default: 50000) + + + + + 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) @@ -3842,12 +3965,52 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + 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 server options: + + + + + Randomly drop 1 of every <n> network messages + + + + + Randomly fuzz 1 of every <n> network messages + + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file Send trace/debug info to console instead of debug.log file @@ -3858,6 +4021,21 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo + 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) Shrink debug.log file on client startup (default: 1 when no -debug) @@ -3872,7 +4050,12 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Specify connection timeout in milliseconds (default: 5000) - + + Start Dogecoin Core Daemon + + + + System error: System error: @@ -3921,6 +4104,11 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Zapping all transactions from wallet... + + + on startup + + version @@ -3932,47 +4120,47 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo wallet.dat corrupt, salvage failed - + Password for JSON-RPC connections Password for JSON-RPC connections - + Allow JSON-RPC connections from specified IP address Allow JSON-RPC connections from specified IP address - + Send commands to node running on <ip> (default: 127.0.0.1) Send commands to node running on <ip> (default: 127.0.0.1) - + 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) - + Upgrade wallet to latest format Upgrade wallet to latest format - + Set key pool size to <n> (default: 100) Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions Rescan the block chain for missing wallet transactions - + Use OpenSSL (https) for JSON-RPC connections Use OpenSSL (https) for JSON-RPC connections - + Server certificate file (default: server.cert) Server certificate file (default: server.cert) @@ -3982,7 +4170,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Server private key (default: server.pem) - + This help message This help message @@ -3992,17 +4180,17 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Unable to bind to %s on this computer (bind returned error %d, %s) - + Allow DNS lookups for -addnode, -seednode and -connect Allow DNS lookups for -addnode, -seednode and -connect - + Loading addresses... Loading addresses... - + Error loading wallet.dat: Wallet corrupted Error loading wallet.dat: Wallet corrupted @@ -4012,22 +4200,22 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - + Wallet needed to be rewritten: restart Dogecoin Core to complete Wallet needed to be rewritten: restart Dogecoin Core to complete - + Error loading wallet.dat Error loading wallet.dat - + Invalid -proxy address: '%s' Invalid -proxy address: '%s' - + Unknown network specified in -onlynet: '%s' Unknown network specified in -onlynet: '%s' @@ -4037,7 +4225,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Unknown -socks proxy version requested: %i - + Cannot resolve -bind address: '%s' Cannot resolve -bind address: '%s' @@ -4047,7 +4235,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Cannot resolve -externalip address: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Invalid amount for -paytxfee=<amount>: '%s' @@ -4062,27 +4250,22 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Insufficient funds - + Loading block index... Loading block index... - + 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 - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - - - + Loading wallet... Loading wallet... - + Cannot downgrade wallet Cannot downgrade wallet @@ -4092,27 +4275,27 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Cannot write default address - + Rescanning... Rescanning... - + Done loading Done loading - + To use the %s option To use the %s option - + Error Error - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. diff --git a/src/qt/locale/bitcoin_eo.ts b/src/qt/locale/bitcoin_eo.ts index a619768da..e7cadda95 100644 --- a/src/qt/locale/bitcoin_eo.ts +++ b/src/qt/locale/bitcoin_eo.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core Pri la Bitmona Kerno - <b>Dogecoin Core</b> version Versio de <b>Bitmona Kerno</b> - This is experimental software. @@ -27,135 +24,113 @@ Eldonita laŭ la permesilo MIT/X11. Vidu la kunan dosieron COPYING aŭ http://ww Tiu ĉi produkto enhavas erojn kreitajn de la "OpenSSL Project" por uzo en la "OpenSSL Toolkit" (http://www.openssl.org/) kaj ĉifrajn erojn kreitajn de Eric Young (eay@cryptsoft.com) kaj UPnP-erojn kreitajn de Thomas Bernard. - Copyright Kopirajto - The Dogecoin Core developers La programistoj de Bitmona Kerno + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Duoble-klaku por redakti adreson aŭ etikedon - Create a new address Krei novan adreson - &New &Nova - Copy the currently selected address to the system clipboard Kopii elektitan adreson al la tondejo - &Copy &Kopii - C&lose &Fermi - &Copy Address &Kopii Adreson - Delete the currently selected address from the list Forigi la elektitan adreson el la listo - Export the data in the current tab to a file Eksporti al dosiero la datumojn el la aktuala langeto - &Export &Eksporti - &Delete &Forigi - Choose the address to send coins to Elektu la alsendotan adreson - Choose the address to receive coins with Elektu la ricevontan adreson - C&hoose &Elekti - Very sending addresses Sendaj adresoj - Much receiving addresses Ricevaj adresoj - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Jen viaj Bitmon-adresoj por sendi pagojn. Zorge kontrolu la sumon kaj la alsendan adreson antaŭ ol sendi. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Jen viaj bitmonaj adresoj por ricevi pagojn. Estas konsilinde uzi apartan ricevan adreson por ĉiu transakcio. - Copy &Label Kopii &Etikedon - &Edit &Redakti - Export Address List Eksporti Adresliston - Comma separated file (*.csv) Perkome disigita dosiero (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -163,17 +138,14 @@ Tiu ĉi produkto enhavas erojn kreitajn de la "OpenSSL Project" por uz AddressTableModel - Label Etikedo - Address Adreso - (no label) (neniu etikedo) @@ -181,140 +153,106 @@ Tiu ĉi produkto enhavas erojn kreitajn de la "OpenSSL Project" por uz AskPassphraseDialog - Passphrase Dialog Dialogo pri pasfrazo - Enter passphrase - Tajpu vian pasfrazon + Enigu pasfrazon - New passphrase - Tajpu novan pasfrazon + Nova pasfrazo - Repeat new passphrase Ripetu la novan pasfrazon - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Enigu novan pasfrazon por la monujo.<br/>Bonvolu uzi pasfrazon kun <b>almenaŭ 10 hazardaj signoj</b>, aŭ <b>almenaŭ ok vortoj</b>. - Encrypt wallet Ĉifri la monujon - This operation needs your wallet passphrase to unlock the wallet. Ĉi tiu operacio bezonas vian monujan pasfrazon, por malŝlosi la monujon. - Unlock wallet Malŝlosi la monujon - This operation needs your wallet passphrase to decrypt the wallet. Ĉi tiu operacio bezonas vian monujan pasfrazon, por malĉifri la monujon. - Decrypt wallet Malĉifri la monujon - Change passphrase Ŝanĝi la pasfrazon - Enter the old and new passphrase to the wallet. Tajpu la malnovan kaj novan monujajn pasfrazojn. - Confirm wallet encryption Konfirmo de ĉifrado de la monujo - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! Atentu! Se vi ĉifras vian monujon kaj perdas la pasfrazon, vi <b>PERDOS LA TUTON DE VIA BITMONO<b>! - Are you sure you wish to encrypt your wallet? Ĉu vi certas, ke vi volas ĉifri la monujon? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. GRAVE: antaŭaj sekur-kopioj de via monujo-dosiero estas forigindaj kiam vi havas nove kreitan ĉifritan monujo-dosieron. Pro sekureco, antaŭaj kopioj de la neĉifrita dosiero ne plu funkcios tuj kiam vi ekuzos la novan ĉifritan dosieron. - - Warning: The Caps Lock key is on! Atentu: la majuskla baskulo estas ŝaltita! - - Wallet encrypted La monujo estas ĉifrita - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitmono nun fermiĝos por fini la ĉifradon. Memoru, ke eĉ ĉifrado ne protektas kontraŭ ĉiu atako, ekz. se viruso infektus vian komputilon. - - - - Wallet encryption failed Ĉifrado de la monujo fiaskis - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Ĉifrado de monujo fiaskis pro interna eraro. Via monujo ne estas ĉifrita. - - The supplied passphrases do not match. La pasfrazoj entajpitaj ne samas. - Wallet unlock failed Malŝloso de la monujo fiaskis - - - The passphrase entered for the wallet decryption was incorrect. La pasfrazo enigita por ĉifrado de monujo ne ĝustas. - Wallet decryption failed Malĉifrado de la monujo fiaskis - Wallet passphrase was successfully changed. Vi sukcese ŝanĝis la pasfrazon de la monujo. @@ -322,352 +260,286 @@ Tiu ĉi produkto enhavas erojn kreitajn de la "OpenSSL Project" por uz BitcoinGUI - Sign &message... Subskribi &mesaĝon... - Synchronizing with network... Sinkronigante kun reto... - &Overview &Superrigardo - Node Nodo - Show general overview of wallet Vidigi ĝeneralan superrigardon de la monujo - &Transactions &Transakcioj - Browse transaction history Esplori historion de transakcioj - E&xit &Eliri - Quit application Eliri la aplikaĵon - - Show information about Dogecoin Core + Show information about Dogecoin Vidigi informojjn pri Bitmono - - About &Qt Pri &Qt - Show information about Qt Vidigi informojn pri Qt - &Options... &Agordoj... - &Encrypt Wallet... Ĉifri &Monujon... - &Backup Wallet... &Krei sekurkopion de la monujo... - &Change Passphrase... Ŝanĝi &Pasfrazon... - Very &sending addresses... &Sendaj adresoj... - Much &receiving addresses... &Ricevaj adresoj... - Open &URI... Malfermi &URI-on... - Importing blocks from disk... Importado de blokoj el disko... - Reindexing blocks on disk... Reindeksado de blokoj sur disko... - Send coins to a Dogecoin address Sendi monon al Bitmon-adreso - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Modifi agordaĵojn por Bitmono - Backup wallet to another location Krei alilokan sekurkopion de monujo - Change the passphrase used for wallet encryption Ŝanĝi la pasfrazon por ĉifri la monujon - &Debug window Sen&cimiga fenestro - Open debugging and diagnostic console Malfermi konzolon de sencimigo kaj diagnozo - &Verify message... &Kontroli mesaĝon... - Dogecoin Bitmono - Wallet Monujo - &Send &Sendi - &Receive &Ricevi - - &Show / Hide &Montri / Kaŝi - Show or hide the main Window Montri aŭ kaŝi la ĉefan fenestron - Encrypt the private keys that belong to your wallet Ĉifri la privatajn ŝlosilojn de via monujo - Sign messages with your Dogecoin addresses to prove you own them Subskribi mesaĝojn per via Bitmon-adresoj por pravigi, ke vi estas la posedanto - Verify messages to ensure they were signed with specified Dogecoin addresses Kontroli mesaĝojn por kontroli ĉu ili estas subskribitaj per specifaj Bitmon-adresoj - &File &Dosiero - &Settings &Agordoj - &Help &Helpo - Tabs toolbar Langeto-breto - - [testnet] [testnet] - Dogecoin Core Kerno de Bitmono - - Request payments (generates QR codes and dogecoin: URIs) - Peti pagon (kreas QR-kodojn kaj URI-ojn kun prefikso dogecoin:) + Request payments (generates QR codes and bitcoin: URIs) + Peti pagon (kreas QR-kodojn kaj URI-ojn kun prefikso bitcoin:) - - &About Dogecoin Core &Pri la Bitmona Kerno - Show the list of used sending addresses and labels Vidigi la liston de uzitaj sendaj adresoj kaj etikedoj - Show the list of used receiving addresses and labels Vidigi la liston de uzitaj ricevaj adresoj kaj etikedoj - - Open a dogecoin: URI or payment request - Malfermi dogecoin:-URI-on aŭ pagpeton + Open a bitcoin: URI or payment request + Malfermi bitcoin:-URI-on aŭ pagpeton - &Command-line options &Komandliniaj agordaĵoj - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Bitmon-kliento - %n active connection(s) to Dogecoin network %n aktiva konekto al la bitmona reto%n aktivaj konektoj al la bitmona reto - No block source available... Neniu fonto de blokoj trovebla... - Processed %1 of %2 (estimated) blocks of transaction history. Traktis %1 el (ĉirkaŭ) %2 blokoj de la transakcia historio. - Processed %1 blocks of transaction history. Traktis %1 blokoj de la transakcia historio. - %n hour(s) %n horo%n horoj - %n day(s) %n tago%n tagoj - %n week(s) %n semajno%n semajnoj - + %1 and %2 + %1 kaj %2 + + + %n year(s) + + + %1 behind mankas %1 - 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. - Error Eraro - Warning Averto - Information Informoj - Up to date Ĝisdata - Catching up... Ĝisdatigante... - Sent transaction Sendita transakcio - Incoming transaction Envenanta transakcio - Date: %1 Amount: %2 Type: %3 @@ -680,25 +552,21 @@ 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>locked</b> Monujo estas <b>ĉifrita</b> kaj aktuale <b>ŝlosita</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Okazis neriparebla eraro. Bitmono ne plu povas sekure daŭri, do ĝi sekure ĉesos. ClientModel - Network Alert Reta Averto @@ -706,291 +574,230 @@ Adreso: %4 CoinControlDialog - Coin Control Address Selection - Quantity: Kvanto: - Bytes: Bajtoj: - Amount: Sumo: - Priority: Prioritato: - Fee: Krompago: - Low Output: Malalta Eligo: - After Fee: Post krompago: - Change: Restmono: - (un)select all (mal)elekti ĉion - Tree mode Arboreĝimo - List mode Listreĝimo - Amount Sumo - Address Adreso - Date Dato - Confirmations Konfirmoj - Confirmed Konfirmita - Priority Prioritato - Copy address Kopii adreson - Copy label Kopii etikedon - - Copy amount Kopii sumon - Copy transaction ID Kopii transakcian ID-on - Lock unspent Ŝlosi la neelspezitajn - Unlock unspent Malŝlosi la neelspezitajn - Copy quantity Kopii kvanton - Copy fee Kopii krompagon - Copy after fee Kopii post krompago - Copy bytes Kopii bajtojn - Copy priority Kopii prioritaton - Copy low output Kopii malaltan eligon - Copy change Kopii restmonon - highest plej alta - higher pli alta - high alta - medium-high mezalta - medium meza - low-medium mezmalalta - low malalta - lower pli malalta - lowest plej malalta - (%1 locked) (%1 ŝlosita) - none neniu - Dust Polvo - yes jes - no ne - This label turns red, if the transaction size is greater than 1000 bytes. Tiu ĉi etikedo ruĝiĝas se la grando de la transakcio estas pli ol 1000 bajtoj. - - This means a fee of at least %1 per kB is required. Tio signifas, ke krompago de almenaŭ po %1 por ĉiu kB estas deviga. - Can vary +/- 1 byte per input. Povas varii po +/- 1 bajton por ĉiu enigo. - Transactions with higher priority are more likely to get included into a block. Transakcioj kun pli alta prioritato havas pli altan ŝancon inkluziviĝi en bloko. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. Tiu ĉi etikedo ruĝiĝas se iu ajn ricevonto ricevos sumon malpli ol %1. - - This means a fee of at least %1 is required. Tio signifas, ke krompago de almenaŭ %1 estas deviga. - Amounts below 0.546 times the minimum relay fee are shown as dust. Sumoj, kiuj valoras malpli ol 0.545 oble la minimuman plusendan kromkoston vidiĝas kiel polvo. - This label turns red, if the change is smaller than %1. Tiu ĉi etikedo ruĝiĝas se la restmono estas malpli ol %1. - - (no label) (neniu etikedo) - change from %1 (%2) restmono de %1 (%2) - (change) (restmono) @@ -998,67 +805,54 @@ Adreso: %4 EditAddressDialog - Edit Address Redakti Adreson - &Label &Etikedo - The label associated with this address list entry La etikedo ligita al tiu ĉi adreslistero - The address associated with this address list entry. This can only be modified for sending addresses. La adreso ligita al tiu ĉi adreslistero. Eblas modifi tion nur por sendaj adresoj. - &Address &Adreso - New receiving address Nova adreso por ricevi - New sending address Nova adreso por sendi - Edit receiving address Redakti adreson por ricevi - Edit sending address Redakti adreson por sendi - The entered address "%1" is already in the address book. La adreso enigita "%1" jam ekzistas en la adresaro. - The entered address "%1" is not a valid Dogecoin address. La adreso enigita "%1" ne estas valida Bitmon-adreso. - Could not unlock wallet. Ne eblis malŝlosi monujon. - New key generation failed. Fiaskis kreo de nova ŝlosilo. @@ -1066,27 +860,22 @@ Adreso: %4 FreespaceChecker - A new data directory will be created. Kreiĝos nova dosierujo por la datumoj. - name nomo - Directory already exists. Add %1 if you intend to create a new directory here. Tiu dosierujo jam ekzistas. Aldonu %1 si vi volas krei novan dosierujon ĉi tie. - Path already exists, and is not a directory. Vojo jam ekzistas, kaj ne estas dosierujo. - Cannot create data directory here. Ne eblas krei dosierujon por datumoj ĉi tie. @@ -1094,52 +883,46 @@ Adreso: %4 HelpMessageDialog - Dogecoin Core - Command-line options Bitmona Kerno - Komandliniaj agordaĵoj - Dogecoin Core Kerno de Bitmono - version versio - Usage: Uzado: - command-line options komandliniaj agordaĵoj - UI options UI-agordaĵoj - Set language, for example "de_DE" (default: system locale) Agordi lingvon, ekzemple "de_DE" (defaŭlte: tiu de la sistemo) - Start minimized Lanĉiĝi plejete - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Montri salutŝildon dum lanĉo (defaŭlte: 1) - Choose data directory on startup (default: 0) Elekti dosierujon por datumoj dum lanĉo (defaŭlte: 0) @@ -1147,57 +930,46 @@ Adreso: %4 Intro - Welcome Bonvenon - Welcome to Dogecoin Core. Bonvenon al la bitmona kerno, Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. Dum tiu ĉi unua uzo de la programo, vi povas elekti lokon, kie Dogecoin Core stokos siajn datumojn. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. Dogecoin Core elŝutos kaj konservos kopion de la bitmona blokĉeno. Almenaŭ %1GB da datumoj konserviĝos en tiu loko, kaj tio poiome kreskos. Ankaŭ via monujo konserviĝos en tiu dosierujo. - Use the default data directory Uzi la defaŭltan dosierujon por datumoj - Use a custom data directory: Uzi alian dosierujon por datumoj: - Dogecoin Bitmono - Error: Specified data directory "%1" can not be created. Eraro: ne eblas krei la elektitan dosierujon por datumoj "%1". - Error Eraro - GB of free space available GB de libera loko disponebla - (of %1GB needed) (el %1GB bezonataj) @@ -1205,27 +977,22 @@ Adreso: %4 OpenURIDialog - Open URI Malfermi URI-on - Open payment request from URI or file Malfermi pagpeton el URI aŭ dosiero - URI: URI: - Select payment request file Elektu la dosieron de la pagpeto - Select payment request file to open Elektu la malfermotan dosieron de la pagpeto @@ -1233,243 +1000,206 @@ Adreso: %4 OptionsDialog - Options Agordaĵoj - &Main Ĉ&efa - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Nedeviga krompago por ĉiu kB, kiu helpas plirapidigi la traktadon de via transakcio. Plej multaj transakcioj grandas je 1kB. - Pay transaction &fee Krompago - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Aŭtomate lanĉi Bitmonon post ensaluto al la sistemo. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Lanĉi Bitmonon tuj post ensaluto al la sistemo - Size of &database cache Dosiergrando de &datumbasa kaŝmemoro - - Set database cache size in megabytes (default: 25) - Specifi grandon de datumbazo je megabajtoj (defaŭlte: 25) - - - MB MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Agordi la nombron de fadenoj por skriptkontrolado (ĝis 16, 0 = aŭtomate, <0 = lasi tiom da kernoj liberaj, defaŭlte: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. Reagordi ĉion al defaŭlataj valoroj. - &Reset Options &Rekomenci agordadon - &Network &Reto - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Aŭtomate malfermi la kursilan pordon por Bitmono. Tio funkcias nur se via kursilo havas la UPnP-funkcion, kaj se tiu ĉi estas ŝaltita. - Map port using &UPnP Mapigi pordon per &UPnP - Proxy &IP: Prokurila &IP: - &Port: &Pordo: - Port of the proxy (e.g. 9050) la pordo de la prokurilo (ekz. 9050) - SOCKS &Version: Versio de SOCKS: - SOCKS version of the proxy (e.g. 5) la versio de SOCKS ĉe la prokurilo (ekz. 5) - &Window &Fenestro - Show only a tray icon after minimizing the window. Montri nur sistempletan piktogramon post minimumigo de la fenestro. - &Minimize to the tray instead of the taskbar &Minimumigi al la sistempleto anstataŭ al la taskopleto - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimumigi la aplikaĵon anstataŭ eliri kaj ĉesi kiam la fenestro estas fermita. Se tiu ĉi estas agordita, la aplikaĵo ĉesas nur kiam oni elektas "Eliri" el la menuo. - M&inimize on close M&inimumigi je fermo - &Display &Aspekto - User Interface &language: &Lingvo de la fasado: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Vi povas elekti la lingvon uzata en la aplikaĵo ĉi tie. Tiu ekefikos nur post relanĉo de Bitmono. - &Unit to show amounts in: &Unuo por vidigi sumojn: - Choose the default subdivision unit to show in the interface and when sending coins. Elekti la defaŭltan manieron por montri bitmonajn sumojn en la interfaco, kaj kiam vi sendos bitmonon. - Whether to show Dogecoin addresses in the transaction list or not. Elekti ĉu videblu Bitmon-adresoj en la listo de transakcioj. - &Display addresses in transaction list &Montri adresojn en la listo de transakcioj - Whether to show coin control features or not. Ĉu montri detalan adres-regilon, aŭ ne. - - Display coin &control features (experts only) - Montri &detalan adres-regilon (nur por spertuloj) - - - &OK &Bone - &Cancel &Nuligi - default defaŭlta - none neniu - Confirm options reset Konfirmi reŝargo de agordoj - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. La prokurila adreso estas malvalida. @@ -1477,69 +1207,54 @@ Adreso: %4 OverviewPage - Form Formularo - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Eblas, ke la informoj videblaj ĉi tie estas eksdataj. Via monujo aŭtomate sinkoniĝas kun la bitmona reto kiam ili konektiĝas, sed tiu procezo ankoraŭ ne finfariĝis. - - Unconfirmed: - Nekonfirmita: - - - Wallet Monujo - - Confirmed: - Konfirmita: + Available: + - Your current spendable balance via aktuala elspezebla saldo - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance la sumo de transakcioj ankoraŭ ne konfirmitaj, kiuj ankoraŭ ne elspezeblas - Immature: Nematura: - Mined balance that has not yet matured Minita saldo, kiu ankoraŭ ne maturiĝis - Total: Totalo: - Your current total balance via aktuala totala saldo - <b>Recent transactions</b> <b>Lastaj transakcioj</b> - - out of sync nesinkronigita @@ -1547,93 +1262,70 @@ Adreso: %4 PaymentServer - - URI handling Traktado de URI-oj - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. Fiaskis la analizon de la URI! Eble la Bitmon-adreso estas nevalida, aŭ povus esti problemo kun la parametroj de la URI. - Requested payment amount of %1 is too small (considered dust). La petita pagosumo de %1 estas tro malgranda (konsiderata kiel polvo). - - - - - - Payment request error Eraro dum pagopeto - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler Ne eblas lanĉi la ilon 'klaki-por-pagi' - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 Repago de %1 - Error communicating with %1: %2 Eraro dum komunikado kun %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 Malbona respondo de la servilo %1 - Payment acknowledged Pago agnoskita - Network request error Eraro dum ret-peto @@ -1641,234 +1333,192 @@ Adreso: %4 QObject - - Dogecoin Bitmono - Error: Specified data directory "%1" does not exist. Eraro: la elektita dosierujo por datumoj "%1" ne ekzistas. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. Eraro: nevalida kunigo de -regtest kaj -testnet + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Enigi Bitmon-adreson (ekz. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... &Konservi Bildon... - &Copy Image &Kopii Bildon - Save QR Code Konservi QR-kodon - PNG Image (*.png) - + PNG-bildo (*.png) RPCConsole - Client name Nomo de kliento - - - - - - - - - - - N/A neaplikebla - Client version Versio de kliento - &Information &Informoj - Debug window - + Sencimiga fenestro - General Ĝenerala - Using OpenSSL version uzas OpenSSL-version - Startup time Horo de lanĉo - Network Reto - Name Nomo - Number of connections Nombro de konektoj - Block chain Blokĉeno - Current number of blocks Aktuala nombro de blokoj - Estimated total blocks Supozita totalo da blokoj - Last block time Horo de la lasta bloko - &Open &Malfermi - &Console &Konzolo - &Network Traffic &Reta Trafiko - &Clear &Forigi ĉion - Totals Totaloj - In: En: - Out: El: - Build date Dato de kompilado - Debug log file Sencimiga protokoldosiero - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Malfermi la sencimiga protokoldosiero de Bitmono el la aktuala dosierujo por datumoj. Tio eble daŭros plurajn sekundojn por granda protokoldosiero. - Clear console Malplenigi konzolon - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Bonvenon al la RPC-konzolo de Bitmono. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Uzu la sagojn supran kaj malsupran por esplori la historion, kaj <b>stir-L</b> por malplenigi la ekranon. - Type <b>help</b> for an overview of available commands. Tajpu <b>help</b> por superrigardo de la disponeblaj komandoj. - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 m - %1 h %1 h - %1 h %2 m %1 h %2 m @@ -1876,155 +1526,137 @@ Adreso: %4 ReceiveCoinsDialog - &Amount: &Kvanto: - &Label: &Etikedo: - &Message: &Mesaĝo: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. Reuzi unu el la jam uzitaj ricevaj adresoj. Reuzo de adresoj povas krei problemojn pri sekureco kaj privateco. Ne uzu tiun ĉi funkcion krom por rekrei antaŭe faritan pagopeton. - R&euse an existing receiving address (not recommended) R&euzi ekzistantan ricevan adreson (malrekomendinda) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. Malplenigi ĉiujn kampojn de la formularo. - Clear Forigi - + Requested payments history + + + &Request payment &Peti pagon - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - + Vidigi - Remove the selected entries from the list - Remove Forigi + + Copy label + Kopii etikedon + + + Copy message + Kopiu mesaĝon + + + Copy amount + Kopii sumon + ReceiveRequestDialog - QR Code QR-kodo - Copy &URI Kopii &URI - Copy &Address Kopii &Adreson - &Save Image... &Konservi Bildon... - Request payment to %1 Peti pagon al %1 - Payment information Paginformoj - URI URI - Address Adreso - Amount Sumo - Label Etikedo - Message Mesaĝo - Resulting URI too long, try to reduce the text for label / message. La rezultanta URI estas tro longa. Provu malplilongigi la tekston de la etikedo / mesaĝo. - Error encoding URI into QR Code. Eraro de kodigo de URI en la QR-kodon. @@ -2032,285 +1664,225 @@ Adreso: %4 RecentRequestsTableModel - Date Dato - Label Etikedo - Message Mesaĝo - Amount Sumo - (no label) (neniu etikedo) - (no message) (neniu mesaĝo) + + (no amount) + + SendCoinsDialog - - - Send Coins Sendi Monon - Coin Control Features - + Monregaj Opcioj - Inputs... Enigoj... - automatically selected - Insufficient funds! - + Nesufiĉa mono! - Quantity: Kvanto: - Bytes: Bajtoj: - Amount: Sumo: - Priority: Prioritato: - Fee: Krompago: - Low Output: Malalta Eligo: - After Fee: Post krompago: - Change: Restmono: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Sendi samtempe al pluraj ricevantoj - Add &Recipient Aldoni &Ricevonton - Clear all fields of the form. Malplenigi ĉiujn kampojn de la formularo. - Clear &All &Forigi ĉion - Balance: Saldo: - Confirm the send action Konfirmi la sendon - S&end Ŝendi - Confirm send coins Konfirmi sendon de bitmono - - - - %1 to %2 %1 al %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enigi Bitmon-adreson (ekz. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity Kopii kvanton - Copy amount Kopii sumon - Copy fee Kopii krompagon - Copy after fee Kopii post krompago - Copy bytes Kopii bajtojn - Copy priority Kopii prioritaton - Copy low output Kopii malaltan eligon - Copy change Kopii restmonon - Total Amount %1 (= %2) Totala Sumo %1 (= %2) - or - The recipient address is not valid, please recheck. La adreso de la ricevonto ne validas. Bonvolu kontroli. - The amount to pay must be larger than 0. La pagenda sumo devas esti pli ol 0. - The amount exceeds your balance. La sumo estas pli granda ol via saldo. - The total exceeds your balance when the %1 transaction fee is included. La sumo kun la %1 krompago estas pli granda ol via saldo. - Duplicate address found, can only send to each address once per send operation. Iu adreso estas ripetita. Vi povas sendi al ĉiu adreso po unufoje en iu send-operacio. - Transaction creation failed! Kreo de transakcio fiaskis! - 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. - Warning: Invalid Dogecoin address Averto: Nevalida Bitmon-adreso - (no label) (neniu etikedo) - Warning: Unknown change address - Are you sure you want to send? Ĉu vi certas, ke vi volas sendi? - added as transaction fee aldonita kiel krompago - Payment request expired Pagopeto nun estas eksdata - Invalid payment address %1 Nevalida pagadreso %1 @@ -2318,116 +1890,85 @@ Adreso: %4 SendCoinsEntry - - - A&mount: &Sumo: - Pay &To: &Ricevonto: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) La adreso kie vi sendos la pagon (ekz. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Tajpu etikedon por tiu ĉi adreso kaj aldonu ĝin al via adresaro - &Label: &Etikedo: - Choose previously used address Elektu la jam uzitan adreson - This is a normal payment. Tio estas normala pago. - Alt+A Alt+A - Paste address from clipboard Alglui adreson el tondejo - Alt+P Alt+P - - - Remove this entry Forigu ĉi tiun enskribon - Message: Mesaĝo: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses Tajpu etikedon por tiu ĉi adreso por aldoni ĝin al la listo de uzitaj adresoj - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: Pagi Al: - - Memo: Memorando: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enigi Bitmon-adreson (ekz. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. Ne sistemfermu ĝis ĉi tiu fenestro malaperas. @@ -2435,192 +1976,142 @@ Adreso: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Subskriboj - Subskribi / Kontroli mesaĝon - &Sign Message &Subskribi Mesaĝon - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Vi povas subskribi mesaĝon per viaj adresoj, por pravigi ke vi estas la posedanto de tiuj adresoj. Atentu, ke vi ne subskriu ion neprecizan, ĉar trompisto povus ruzi kontraŭ vi kaj ŝteli vian identecon. Subskribu nur plene detaligitaj deklaroj pri kiuj vi konsentas. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) La adreso por subskribi la mesaĝon (ekz. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Elektu la jam uzitan adreson - - Alt+A Alt+A - Paste address from clipboard Alglui adreson de tondejo - Alt+P Alt+P - Enter the message you want to sign here Tajpu la mesaĝon, kiun vi volas sendi, cîi tie - Signature Subskribo - Copy the current signature to the system clipboard Kopii la aktualan subskribon al la tondejo - Sign the message to prove you own this Dogecoin address Subskribi la mesaĝon por pravigi, ke vi estas la posedanto de tiu Bitmon-adreso - Sign &Message Subskribi &Mesaĝon - Reset all sign message fields Reagordigi ĉiujn prisubskribajn kampojn - - Clear &All &Forigi Ĉion - &Verify Message &Kontroli Mesaĝon - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Enmeti la subskriban adreson, la mesaĝon (kune kun ĉiu linisalto, spaceto, taboj, ktp. precize) kaj la subskribon ĉi sube por kontroli la mesaĝon. Atentu, ke vi ne komprenu per la subskribo pli ol la enhavo de la mesaĝo mem, por eviti homo-en-la-mezo-atakon. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) La adreso per kio oni subskribis la mesaĝon (ekz. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Kontroli la mesaĝon por pravigi, ke ĝi ja estas subskribita per la specifa Bitmon-adreso - Verify &Message Kontroli &Mesaĝon - Reset all verify message fields Reagordigi ĉiujn prikontrolajn kampojn - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Enigi Bitmon-adreson (ekz. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Klaku "Subskribi Mesaĝon" por krei subskribon - - Enter Dogecoin signature - Enigi Bitmon-subskribon - - - - The entered address is invalid. La adreso, kiun vi enmetis, estas nevalida. - - - - Please check the address and try again. Bonvolu kontroli la adreson kaj reprovi. - - The entered address does not refer to a key. La adreso, kiun vi enmetis, referencas neniun ŝlosilon. - Wallet unlock was cancelled. Malŝloso de monujo estas nuligita. - Private key for the entered address is not available. La privata ŝlosilo por la enigita adreso ne disponeblas. - Message signing failed. Subskribo de mesaĝo fiaskis. - Message signed. Mesaĝo estas subskribita. - The signature could not be decoded. Ne eblis malĉifri la subskribon. - - Please check the signature and try again. Bonvolu kontroli la subskribon kaj reprovu. - The signature did not match the message digest. La subskribo ne kongruis kun la mesaĝ-kompilaĵo. - Message verification failed. Kontrolo de mesaĝo malsukcesis. - Message verified. Mesaĝo sukcese kontrolita. @@ -2628,17 +2119,14 @@ Adreso: %4 SplashScreen - Dogecoin Core Kerno de Bitmono - The Dogecoin Core developers La programistoj de Bitmona Kerno - [testnet] [testnet] @@ -2646,7 +2134,6 @@ Adreso: %4 TrafficGraphWidget - KB/s KB/s @@ -2654,179 +2141,138 @@ Adreso: %4 TransactionDesc - Open until %1 Malferma ĝis %1 - + conflicted + + + %1/offline %1/senkonekte - %1/unconfirmed %1/nekonfirmite - %1 confirmations %1 konfirmoj - Status Stato - , broadcast through %n node(s) , elsendita(j) tra %n nodo, elsendita(j) tra %n nodoj - Date Dato - Source Fonto - Generated Kreita - - From De - - - To Al - - own address propra adreso - label etikedo - - - - - Credit Kredito - matures in %n more block(s) maturiĝos post %n blokomaturiĝos post %n blokoj - not accepted ne akceptita - - - - Debit Debeto - Transaction fee Krompago - Net amount Neta sumo - - Message Mesaĝo - Comment Komento - Transaction ID Transakcia ID - Merchant Vendisto - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Kreitaj moneroj devas esti maturaj je %1 blokoj antaŭ ol eblas elspezi ilin. Kiam vi generis tiun ĉi blokon, ĝi estis elsendita al la reto por aldono al la blokĉeno. Se tiu aldono malsukcesas, ĝia stato ŝanĝiĝos al "neakceptita" kaj ne eblos elspezi ĝin. Tio estas malofta, sed povas okazi se alia bloko estas kreita je preskaŭ la sama momento kiel la via. - Debug information Sencimigaj informoj - Transaction Transakcio - Inputs Enigoj - Amount Sumo - true vera - false malvera - , has not been successfully broadcast yet , ankoraŭ ne elsendita sukcese - Open for %n more block(s) Malferma dum ankoraŭ %n blokoMalferma dum ankoraŭ %n blokoj - unknown nekonata @@ -2834,12 +2280,10 @@ Adreso: %4 TransactionDescDialog - Transaction details Transakciaj detaloj - This pane shows a detailed description of the transaction Tiu ĉi panelo montras detalan priskribon de la transakcio @@ -2847,118 +2291,102 @@ Adreso: %4 TransactionTableModel - Date Dato - Type Tipo - Address Adreso - Amount Sumo - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) Malferma dum ankoraŭ %n blokoMalferma dum ankoraŭ %n blokoj - Open until %1 Malferma ĝis %1 - - Offline (%1 confirmations) - Senkonekta (%1 konfirmoj) - - - - Unconfirmed (%1 of %2 confirmations) - Nekonfirmita (%1 el %2 konfirmoj) - - - - Confirmed (%1 confirmations) Konfirmita (%1 konfirmoj) - This block was not received by any other nodes and will probably not be accepted! Tiun ĉi blokon ne ricevis ajna alia nodo, kaj ĝi verŝajne ne akceptiĝos! - Generated but not accepted Kreita sed ne akceptita - + Offline + Senkonekte + + + Unconfirmed + Nekonfirmita + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Ricevita kun - Received from Ricevita de - Sent to Sendita al - Payment to yourself Pago al vi mem - Mined Minita - (n/a) neaplikebla - Transaction status. Hover over this field to show number of confirmations. Transakcia stato. Ŝvebi super tiu ĉi kampo por montri la nombron de konfirmoj. - Date and time that the transaction was received. Dato kaj horo kiam la transakcio alvenis. - Type of transaction. Tipo de transakcio. - Destination address of transaction. Celadreso de la transakcio. - Amount removed from or added to balance. Sumo elprenita de aŭ aldonita al la saldo. @@ -2966,178 +2394,142 @@ Adreso: %4 TransactionView - - All Ĉiuj - Today Hodiaŭ - This week Ĉi-semajne - This month Ĉi-monate - Last month Pasintmonate - This year Ĉi-jare - Range... Intervalo... - Received with Ricevita kun - Sent to Sendita al - To yourself Al vi mem - Mined Minita - Other Aliaj - Enter address or label to search Tajpu adreson aŭ etikedon por serĉi - Min amount Minimuma sumo - Copy address Kopii adreson - Copy label Kopii etikedon - Copy amount Kopii sumon - Copy transaction ID Kopii transakcian ID-on - Edit label Redakti etikedon - Show transaction details Montri detalojn de transakcio - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Perkome disigita dosiero (*.csv) - Confirmed Konfirmita - Date Dato - Type Tipo - Label Etikedo - Address Adreso - Amount Sumo - ID ID - Range: Intervalo: - to al @@ -3145,7 +2537,6 @@ Adreso: %4 WalletFrame - No wallet has been loaded. @@ -3153,7 +2544,6 @@ Adreso: %4 WalletModel - Send Coins Sendi Bitmonon @@ -3161,154 +2551,125 @@ Adreso: %4 WalletView - &Export &Eksporti - Export the data in the current tab to a file Eksporti la datumojn el la aktuala langeto al dosiero - Backup Wallet Krei sekurkopion de monujo - Wallet Data (*.dat) Monuj-datumoj (*.dat) - Backup Failed Malsukcesis sekurkopio - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful Sukcesis krei sekurkopion - dogecoin-core + bitcoin-core - Usage: Uzado: - List commands Listigi komandojn - Get help for a command Vidigi helpon pri iu komando - Options: Agordoj: - - Specify configuration file (default: dogecoin.conf) - Specifi konfiguran dosieron (defaŭlte: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Specifi konfiguran dosieron (defaŭlte: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Specifi pid-dosieron (defaŭlte: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Specifi pid-dosieron (defaŭlte: bitcoind.pid) - Specify data directory Specifi dosieron por datumoj - - Set database cache size in megabytes (default: 25) - Specifi grandon de datumbazo je megabajtoj (defaŭlte: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Aŭskulti al <port> por konektoj (defaŭlte: 8333 aŭ testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Aŭskulti al <port> por konektoj (defaŭlte: 22556 aŭ testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Subteni maksimume <n> konektojn al samtavolanoj (defaŭlte: 125) - Connect to a node to retrieve peer addresses, and disconnect Konekti al nodo por ricevi adresojn de samtavolanoj, kaj malkonekti - Specify your own public address Specifi vian propran publikan adreson - Threshold for disconnecting misbehaving peers (default: 100) Sojlo por malkonekti misagantajn samtavolanojn (defaŭlte: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Nombro da sekundoj por rifuzi rekonekton de misagantaj samtavolanoj (defaŭlte: 86400) - 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 - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Aŭskulti al <port> por JSON-RPC-konektoj (defaŭlte: 22555 aŭ testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Aŭskulti al <port> por JSON-RPC-konektoj (defaŭlte: 8332 aŭ testnet: 18332) - Accept command line and JSON-RPC commands Akcepti komandojn JSON-RPC kaj el komandlinio - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Ruli fone kiel demono kaj akcepti komandojn - Use the test network Uzi la test-reton - Accept connections from outside (default: 1 if no -proxy or -connect) Akcepti konektojn el ekstere (defaŭlte: 1 se ne estas -proxy nek -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3319,7 +2680,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, vi devas specifi rpcpassword en la konfigura dosiero: %s Estas konsilinde uzi tiun ĉi aleatore kreitan pasvorton: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (ne utilas al vi memorigi tiun ĉi pasvorton) La salutnomo kaj la pasvorto estu nepre MALSAMAJ. @@ -3329,707 +2690,686 @@ ekzemple: alertnotify=echo %%s | mail -s "Averto de Bitmono" 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 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. Dogecoin Core is probably already running. - Ne eblas akiri eksklusivan rajton al dosierujo de datumoj %s. Verŝajne Bitmono jam rulas. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + - 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 %d) + + + 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! - 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) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + + + 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 Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Averto: Bonvolu kontroli, ke la horo kaj dato de via komputilo estas ĝuste agorditaj! Se via horloĝo malĝustas, Bitmono ne bone funkcios. - 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. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: <category> povas esti: - Attempt to recover private keys from a corrupt wallet.dat Provo ripari privatajn ŝlosilojn el difektita wallet.dat - Dogecoin Core Daemon Bitmonakerna Demono - - Dogecoin Core RPC client version - Versio de la Bitmono-RPC-kliento - - - Block creation options: Blok-kreaj agordaĵoj: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + 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: 22555 or testnet: 44555) - Konekti al la JSON-RPC per <port> (defaŭlte: 22555 aŭ testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + Konekti al la JSON-RPC per <port> (defaŭlte: 8332 aŭ testnet: 18332) + + + Connection options: + - Corrupted block database detected Difektita blokdatumbazo trovita - + 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? - 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 opening block database Eraro dum malfermado de blokdatumbazo - 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: 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: + + + Find peers using DNS lookup (default: 1 unless -connect) Trovi samtavolanojn per DNS-elserĉo (defaŭlte: 1 krom kaze de -connect) - + Force safe mode (default: 0) + + + Generate coins (default: 0) Generi Bitmonon (defaŭlte: 0) - How many blocks to check at startup (default: 288, 0 = all) Kiom da blokoj kontrolendas dum lanĉo (defaŭlte: 288, 0=ĉiuj) - - How thorough the block verification is (0-4, default: 3) - Kiom prizorgema estu la blokkontrolado (0-4, defaŭlte: 3) - - - If <category> is not supplied, output all debugging information. - + Importing... + + + 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? - Invalid -onion address: '%s' Nevalida -onion-adreso: '%s' - Not enough file descriptors available. Nesufiĉa nombro de dosierpriskribiloj disponeblas. - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files Rekontrui blokĉenan indekson el la aktualaj blk000??.dat dosieroj - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server - Sendi komandon al bitmona servilo + Set database cache size in megabytes (%d to %d, default: %d) + - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) Specifi la nombron de fadenoj por priatenti RPC-alvokojn (defaŭlte: 4) - Specify wallet file (within data directory) Specifi monujan dosieron (ene de dosierujo por datumoj) - - Start Dogecoin Core server - Starti bitmonan servilon + Spend unconfirmed change when sending transactions (default: 1) + - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): - Uzado (malaktuala, uzu anstataŭe dogecoin-cli): + Usage (deprecated, use bitcoin-cli): + Uzado (malaktuala, uzu anstataŭe bitcoin-cli): - 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 options: Monujaj opcioj: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex Vi devas rekontrui la datumbazon kun -reindex por ŝanĝi -txindex - Imports blocks from external blk000??.dat file Importas blokojn el ekstera dosiero blk000??.dat - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + 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) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Agordi la nombron de fadenoj por skriptkontrolado (ĝis 16, 0 = aŭtomate, <0 = lasi tiom da kernoj liberaj, defaŭlte: 0) - - - Information Informoj - Invalid amount for -minrelaytxfee=<amount>: '%s' Nevalida sumo por -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' Nevalida sumo por -mintxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + 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) - 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) - 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) - + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL-agordaĵoj: (vidu la vikio de Bitmono por instrukcioj pri agordado de SSL) - + Send command to Dogecoin Core + + + Send trace/debug info to console instead of debug.log file Sendi spurajn/sencimigajn informojn al la konzolo anstataŭ al dosiero debug.log - Set minimum block size in bytes (default: 0) Agordi minimuman grandon de blokoj je bajtoj (defaŭlte: 0) - + 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 transaction failed Subskriba transakcio fiaskis - Specify connection timeout in milliseconds (default: 5000) Specifi konektan tempolimon je milisekundoj (defaŭlte: 5000) - + Start Dogecoin Core Daemon + + + System error: Sistema eraro: - Transaction amount too small Transakcia sumo tro malgranda - Transaction amounts must be positive Transakcia sumo devas esti pozitiva - Transaction too large Transakcio estas tro granda - 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) - Username for JSON-RPC connections Salutnomo por konektoj JSON-RPC - Warning Averto - Warning: This version is obsolete, upgrade required! Averto: tiu ĉi versio estas eksdata. Vi bezonas ĝisdatigon! - + Zapping all transactions from wallet... + + + + on startup + + + version versio - wallet.dat corrupt, salvage failed wallet.dat estas difektita, riparo malsukcesis - Password for JSON-RPC connections Pasvorto por konektoj JSON-RPC - Allow JSON-RPC connections from specified IP address Permesi konektojn JSON-RPC de specifa IP-adreso - Send commands to node running on <ip> (default: 127.0.0.1) Sendi komandon al nodo ĉe <ip> (defaŭlte: 127.0.0.1) - 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) - Upgrade wallet to latest format Ĝisdatigi monujon al plej lasta formato - Set key pool size to <n> (default: 100) Agordi la grandon de la ŝlosilo-vico al <n> (defaŭlte: 100) - Rescan the block chain for missing wallet transactions Reskani la blokĉenon por mankantaj monujaj transakcioj - Use OpenSSL (https) for JSON-RPC connections Uzi OpenSSL (https) por konektoj JSON-RPC - 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) - This help message Tiu ĉi helpmesaĝo - Unable to bind to %s on this computer (bind returned error %d, %s) Ne eblis bindi al %s en tiu ĉi komputilo (bind resendis eraron %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Permesi DNS-elserĉojn por -addnote, -seednote kaj -connect - Loading addresses... Ŝarĝante adresojn... - Error loading wallet.dat: Wallet corrupted Eraro dum ŝargado de wallet.dat: monujo difektita - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Eraro dum ŝargo de wallet.dat: monujo bezonas pli novan version de Bitmono - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Monujo bezonas esti reskribita: relanĉu Bitmonon por finfari tion - Error loading wallet.dat Eraro dum ŝargado de wallet.dat - Invalid -proxy address: '%s' Nevalid adreso -proxy: '%s' - Unknown network specified in -onlynet: '%s' Nekonata reto specifita en -onlynet: '%s' - Unknown -socks proxy version requested: %i Nekonata versio de -socks petita: %i - Cannot resolve -bind address: '%s' Ne eblas trovi la adreson -bind: '%s' - Cannot resolve -externalip address: '%s' Ne eblas trovi la adreson -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Nevalida sumo por -paytxfee=<amount>: '%s' - Invalid amount Nevalida sumo - Insufficient funds Nesufiĉa mono - Loading block index... Ŝarĝante blok-indekson... - Add a node to connect to and attempt to keep the connection open Aldoni nodon por alkonekti kaj provi daŭrigi la malferman konekton - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Ne eblas bindi al %s ĉe tiu ĉi komputilo. Bitmono verŝajne jam rulas. - - - Loading wallet... Ŝargado de monujo... - Cannot downgrade wallet Ne eblas malpromocii monujon - Cannot write default address Ne eblas skribi defaŭltan adreson - Rescanning... Reskanado... - Done loading Ŝargado finiĝis - To use the %s option Por uzi la agordon %s - Error Eraro - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4038,4 +3378,4 @@ 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". - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts index 597f09eec..67e3e63b4 100644 --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core Acerca de Dogecoin Core - <b>Dogecoin Core</b> version - Versión del <b>Núcleo de Dogecoin<b> + Versión de <b>Dogecoin Core<b> - This is experimental software. @@ -30,141 +27,113 @@ el OpenSSL Toolkit (http://www.openssl.org/) y software criptográfico escrito p Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard. - Copyright Copyright - The Dogecoin Core developers - Los desarrolladores del Núcleo de Dogecoin + Los desarrolladores de Dogecoin Core - - - (%1-bit) - (%1-bit) + (%1-bit) + (%1-bit) AddressBookPage - Double-click to edit address or label - Haga doble clic para editar una etiqueta o dirección + Haga doble clic para editar la etiqueta o dirección - Create a new address Crear una nueva dirección - &New Nuevo - Copy the currently selected address to the system clipboard Copiar la dirección seleccionada al portapapeles del sistema - &Copy &Copiar - C&lose &Cerrar - &Copy Address &Copiar dirección - Delete the currently selected address from the list Borrar de la lista la dirección seleccionada - Export the data in the current tab to a file Exportar a un archivo los datos de esta pestaña - &Export &Exportar - &Delete &Eliminar - Choose the address to send coins to - Escoja la dirección a la que enviar dogecoins + Escoja la dirección a la que enviar bitcoins - Choose the address to receive coins with - Escoja la dirección de la que recibir dogecoins + Escoja la dirección de la que recibir bitcoins - C&hoose &Escoger - Very sending addresses Direcciones de envío - Much receiving addresses Direcciones de recepción - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Estas son sus direcciones Dogecoin para enviar pagos. Compruebe siempre la cantidad y la dirección receptora antes de enviar dogecoins. + Estas son sus direcciones Dogecoin para enviar pagos. Compruebe siempre la cantidad y la dirección receptora antes de enviar bitcoins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Estas son sus direcciones de Dogecoin para recibir pagos. Se recomienda utilizar una nueva dirección de recepción para cada transacción. - Copy &Label Copiar &etiqueta - &Edit &Editar - Export Address List Exportar la lista de direcciones - Comma separated file (*.csv) Archivos de columnas separadas por coma (*.csv) - Exporting Failed Error exportando - There was an error trying to save the address list to %1. Ha habido un error al intentar guardar los datos del monedero en %1. @@ -172,17 +141,14 @@ Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard.
AddressTableModel - Label Etiqueta - Address Dirección - (no label) (sin etiqueta) @@ -190,140 +156,106 @@ Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard.
AskPassphraseDialog - Passphrase Dialog Diálogo de contraseña - Enter passphrase Introducir contraseña - New passphrase Nueva contraseña - Repeat new passphrase Repita la nueva contraseña - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Introduzca la nueva contraseña del monedero.<br/>Por favor elija una con <b>10 o más caracteres aleatorios</b>, u <b>ocho o más palabras</b>. - Encrypt wallet Cifrar el monedero - This operation needs your wallet passphrase to unlock the wallet. Esta operación requiere su contraseña para desbloquear el monedero. - Unlock wallet Desbloquear monedero - This operation needs your wallet passphrase to decrypt the wallet. Esta operación requiere su contraseña para descifrar el monedero. - Decrypt wallet Descifrar el monedero - Change passphrase Cambiar contraseña - Enter the old and new passphrase to the wallet. Introduzca la contraseña anterior del monedero y la nueva. - Confirm wallet encryption Confirmar cifrado del monedero - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Atencion: ¡Si cifra su monedero y pierde la contraseña perderá <b>TODOS SUS DOGECOINS</b>!" + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Atencion: ¡Si cifra su monedero y pierde la contraseña perderá <b>TODOS SUS DogecoinS</b>!" - Are you sure you wish to encrypt your wallet? ¿Seguro que desea cifrar su monedero? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANTE: Cualquier copia de seguridad que haya realizado previamente de su archivo de monedero debe reemplazarse con el nuevo archivo de monedero cifrado. Por razones de seguridad, las copias de seguridad previas del archivo de monedero no cifradas serán inservibles en cuanto comience a usar el nuevo monedero cifrado. - - Warning: The Caps Lock key is on! Aviso: ¡La tecla de bloqueo de mayúsculas está activada! - - Wallet encrypted Monedero cifrado - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin se cerrará para finalizar el proceso de cifrado. Recuerde que el cifrado de su monedero no puede proteger totalmente sus dogecoins de robo por malware que infecte su sistema. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin se cerrará para finalizar el proceso de cifrado. Recuerde que el cifrado de su monedero no puede proteger totalmente sus bitcoins de robo por malware que infecte su sistema. - - - - Wallet encryption failed Ha fallado el cifrado del monedero - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Ha fallado el cifrado del monedero debido a un error interno. El monedero no ha sido cifrado. - - The supplied passphrases do not match. Las contraseñas no coinciden. - Wallet unlock failed Ha fallado el desbloqueo del monedero - - - The passphrase entered for the wallet decryption was incorrect. La contraseña introducida para descifrar el monedero es incorrecta. - Wallet decryption failed Ha fallado el descifrado del monedero - Wallet passphrase was successfully changed. Se ha cambiado correctamente la contraseña del monedero. @@ -331,352 +263,286 @@ Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard.
BitcoinGUI - Sign &message... Firmar &mensaje... - Synchronizing with network... Sincronizando con la red… - &Overview &Vista general - Node Nodo - Show general overview of wallet Mostrar vista general del monedero - &Transactions &Transacciones - Browse transaction history Examinar el historial de transacciones - E&xit &Salir - Quit application Salir de la aplicación - - Show information about Dogecoin Core + Show information about Dogecoin Mostrar información acerca de Dogecoin - - About &Qt Acerca de &Qt - Show information about Qt Mostrar información acerca de Qt - &Options... &Opciones... - &Encrypt Wallet... &Cifrar monedero… - &Backup Wallet... - Copia de &respaldo del monedero... + %Guardar copia del monedero... - &Change Passphrase... &Cambiar la contraseña… - Very &sending addresses... Direcciones de &envío... - Much &receiving addresses... Direcciones de &recepción... - Open &URI... Abrir &URI... - Importing blocks from disk... Importando bloques de disco... - Reindexing blocks on disk... Reindexando bloques en disco... - Send coins to a Dogecoin address - Enviar dogecoins a una dirección Dogecoin + Enviar bitcoins a una dirección Dogecoin - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Modificar las opciones de configuración de Dogecoin - Backup wallet to another location Copia de seguridad del monedero en otra ubicación - Change the passphrase used for wallet encryption Cambiar la contraseña utilizada para el cifrado del monedero - &Debug window Ventana de &depuración - Open debugging and diagnostic console Abrir la consola de depuración y diagnóstico - &Verify message... &Verificar mensaje... - Dogecoin Dogecoin - Wallet Monedero - &Send &Enviar - &Receive &Recibir - - &Show / Hide Mo&strar/ocultar - Show or hide the main Window Mostrar u ocultar la ventana principal - Encrypt the private keys that belong to your wallet Cifrar las claves privadas de su monedero - Sign messages with your Dogecoin addresses to prove you own them Firmar mensajes con sus direcciones Dogecoin para demostrar la propiedad - Verify messages to ensure they were signed with specified Dogecoin addresses Verificar mensajes comprobando que están firmados con direcciones Dogecoin concretas - &File &Archivo - &Settings &Configuración - &Help A&yuda - Tabs toolbar Barra de pestañas - - [testnet] [testnet] - Dogecoin Core Dogecoin Core - Request payments (generates QR codes and dogecoin: URIs) Solicitar pagos (genera codigo QR y URL's de Dogecoin) - - &About Dogecoin Core &Acerca de Dogecoin Core - Show the list of used sending addresses and labels Mostrar la lista de direcciones de envío y etiquetas - Show the list of used receiving addresses and labels Muestra la lista de direcciones de recepción y etiquetas - Open a dogecoin: URI or payment request Abrir un dogecoin: URI o petición de pago - &Command-line options - &Opciones de línea de comandos + &Opciones de consola de comandos - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options - Muestra el mensaje de ayuda Dogecoin Core para obtener una lista con las posibles opciones de línea de comandos Dogecoin + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options + Muestra el mensaje de ayuda Dogecoin Core para obtener una lista con las posibles opciones de la consola de comandos de Dogecoin - - Dogecoin client Cliente Dogecoin - %n active connection(s) to Dogecoin network %n conexión activa hacia la red Dogecoin%n conexiones activas hacia la red Dogecoin - No block source available... Ninguna fuente de bloques disponible ... - Processed %1 of %2 (estimated) blocks of transaction history. Se han procesado %1 de %2 bloques (estimados) del historial de transacciones. - Processed %1 blocks of transaction history. Procesados %1 bloques del historial de transacciones. - %n hour(s) %n hora%n horas - %n day(s) %n día%n días - %n week(s) %n semana%n semanas - + %1 and %2 + %1 y %2 + + + %n year(s) + %n año%n años + + %1 behind %1 por detrás - 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. - Error Error - Warning Aviso - Information Información - Up to date Actualizado - Catching up... Actualizando... - Sent transaction Transacción enviada - Incoming transaction Transacción entrante - Date: %1 Amount: %2 Type: %3 @@ -689,25 +555,21 @@ 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>locked</b> El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Ha ocurrido un error crítico. Dogecoin ya no puede continuar con seguridad y se cerrará. ClientModel - Network Alert Alerta de red @@ -715,291 +577,230 @@ Dirección: %4 CoinControlDialog - Coin Control Address Selection Selección de direcciones bajo Coin Control - Quantity: Cantidad: - Bytes: Bytes: - Amount: Cuantía: - Priority: Prioridad: - Fee: Tasa: - Low Output: Envío pequeño: - After Fee: Después de tasas: - Change: Cambio: - (un)select all - (des)selecciona todos + (des)marcar todos - Tree mode - Modo arbol + Modo árbol - List mode Modo lista - Amount Cantidad - Address Dirección - Date Fecha - Confirmations Confirmaciones - Confirmed Confirmado - Priority Prioridad - Copy address Copiar dirección - Copy label Copiar etiqueta - - Copy amount Copiar cuantía - Copy transaction ID Copiar identificador de transacción - Lock unspent Bloquear lo no gastado - Unlock unspent Desbloquear lo no gastado - Copy quantity Copiar cantidad - Copy fee Copiar donación - Copy after fee Copiar después de aplicar donación - Copy bytes Copiar bytes - Copy priority Copiar prioridad - Copy low output Copiar envío pequeño - Copy change Copiar cambio - highest lo más alto - higher más alto - high alto - medium-high medio-alto - medium medio - low-medium bajo-medio - low bajo - lower más bajo - lowest lo más bajo - (%1 locked) (%1 bloqueado) - none - nada + ninguna - Dust Basura - yes si - no no - This label turns red, if the transaction size is greater than 1000 bytes. Esta etiqueta se torna roja si el tamaño de la transación es mayor a 1000 bytes. - - This means a fee of at least %1 per kB is required. Esto implica que se requiere una tarifa de al menos %1 por kB - Can vary +/- 1 byte per input. Puede variar +/- 1 byte por entrada. - Transactions with higher priority are more likely to get included into a block. Las transacciones con alta prioridad son más propensas a ser incluidas dentro de un bloque. - This label turns red, if the priority is smaller than "medium". Esta etiqueta se muestra en rojo si la prioridad es menor que "media". - This label turns red, if any recipient receives an amount smaller than %1. Esta etiqueta se torna roja si cualquier destinatario recibe una cantidad menor a %1. - - This means a fee of at least %1 is required. Esto significa que se necesita una tarifa de al menos %1. - Amounts below 0.546 times the minimum relay fee are shown as dust. Cantidades por debajo de 0.546 veces la tasa serán mostradas como basura - This label turns red, if the change is smaller than %1. Esta etiqueta se vuelve roja si el cambio es menor que %1 - - (no label) (sin etiqueta) - change from %1 (%2) Enviar desde %1 (%2) - (change) (cambio) @@ -1007,67 +808,54 @@ Dirección: %4 EditAddressDialog - Edit Address Editar Dirección - &Label &Etiqueta - The label associated with this address list entry La etiqueta asociada con esta entrada de la lista de direcciones - The address associated with this address list entry. This can only be modified for sending addresses. La dirección asociada con esta entrada de la lista de direcciones. Solo puede ser modificada para direcciones de envío. - &Address &Dirección - New receiving address Nueva dirección de recepción - New sending address Nueva dirección de envío - Edit receiving address Editar dirección de recepción - Edit sending address Editar dirección de envío - The entered address "%1" is already in the address book. La dirección introducida "%1" ya está presente en la libreta de direcciones. - The entered address "%1" is not a valid Dogecoin address. La dirección introducida "%1" no es una dirección Dogecoin válida. - Could not unlock wallet. No se pudo desbloquear el monedero. - New key generation failed. Ha fallado la generación de la nueva clave. @@ -1075,27 +863,22 @@ Dirección: %4 FreespaceChecker - A new data directory will be created. Se creará un nuevo directorio de datos. - name nombre - Directory already exists. Add %1 if you intend to create a new directory here. El directorio ya existe. Añada %1 si pretende crear aquí un directorio nuevo. - Path already exists, and is not a directory. La ruta ya existe y no es un directorio. - Cannot create data directory here. No se puede crear un directorio de datos aquí. @@ -1103,52 +886,46 @@ Dirección: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - opciones de línea de comandos + Dogecoin Core - Opciones de consola de comandos - Dogecoin Core - Núcleo de Dogecoin + Dogecoin Core - version versión - Usage: Uso: - command-line options - opciones de la línea de órdenes + opciones de la consola de comandos - UI options Opciones GUI - Set language, for example "de_DE" (default: system locale) Establecer el idioma, por ejemplo, "es_ES" (predeterminado: configuración regional del sistema) - Start minimized Arrancar minimizado - + Set SSL root certificates for payment request (default: -system-) + Establecer los certificados raíz SSL para solicitudes de pago (predeterminado: -system-) + + Show splash screen on startup (default: 1) Mostrar pantalla de bienvenida en el inicio (predeterminado: 1) - Choose data directory on startup (default: 0) Elegir directorio de datos al iniciar (predeterminado: 0) @@ -1156,57 +933,46 @@ Dirección: %4 Intro - Welcome Bienvenido - Welcome to Dogecoin Core. - Bienvenido al Núcleo de Dogecoin + Bienvenido a Dogecoin Core - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Al ser la primera vez que se ejecuta el programa, puede elegir dónde almacenará sus datos Dogecoin-Qt. + Al ser la primera vez que se ejecuta el programa, puede elegir dónde almacenará sus datos Dogecoin Core. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Dogecoin-Qt va a descargar y guardar una copia de la cadena de bloques de Dogecoin. Se almacenará al menos %1GB de datos en este directorio, que irá creciendo con el tiempo. El monedero se guardará también en este directorio. + Dogecoin Core va a descargar y guardar una copia de la cadena de bloques de Dogecoin. Se almacenará al menos %1GB de datos en este directorio, que irá creciendo con el tiempo. El monedero se guardará también en este directorio. - Use the default data directory Utilizar el directorio de datos predeterminado - Use a custom data directory: Utilice un directorio de datos personalizado: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. Error: No puede crearse el directorio de datos especificado "%1". - Error Error - GB of free space available GB de espacio libre disponible - (of %1GB needed) (de los %1GB necesarios) @@ -1214,27 +980,22 @@ Dirección: %4 OpenURIDialog - Open URI Abrir URI... - Open payment request from URI or file El pago requiere una URI o archivo - URI: URI: - Select payment request file Seleccione archivo de sulicitud de pago - Select payment request file to open Abrir archivo de solicitud de pago @@ -1242,253 +1003,206 @@ Dirección: %4 OptionsDialog - Options Opciones - &Main &Principal - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Tarifa de transacción opcional por kB que ayuda a asegurar que sus transacciones sean procesadas rápidamente. La mayoría de transacciones son de 1kB. - Pay transaction &fee Comisión de &transacciones - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Iniciar Dogecoin automáticamente al encender el sistema. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Iniciar Dogecoin al iniciar el sistema - Size of &database cache Tamaño de cache de la &base de datos - MB MB - Number of script &verification threads - Número de hilos de &verificación de scripts + Número de procesos de &verificación de scripts - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Configura el número de hilos para el script de verificación (hasta 16, 0 = auto, <0 = leave that many cores free, por fecto: 0) - - - - &Spend unconfirmed change (experts only) - &Gastar cambio no confirmado (solo expertos) - - - Connect to the Dogecoin network through a SOCKS proxy. Conectarse a la red Dogecoin a través de un proxy SOCKS. - &Connect through SOCKS proxy (default proxy): &Conectarse a través de proxy SOCKS (proxy predeterminado): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) Dirección IP del proxy (p. ej. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Opciones activas de línea de comandos que tienen preferencia sobre las opciones antes mencionadas: + Opciones activas de consola de comandos que tienen preferencia sobre las opciones antes mencionadas: - Reset all client options to default. Restablecer todas las opciones del cliente a las predeterminadas. - &Reset Options &Restablecer opciones - &Network &Red - + (0 = auto, <0 = leave that many cores free) + (0 = automático, <0 = dejar libres ese número de núcleos) + + W&allet &Monedero - + Expert + Experto + + + Enable coin &control features + Habilitar funcionalidad de &coin control + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. Si desactiva el gasto del cambio no confirmado, no se podrá usar el cambio de una transacción hasta que se alcance al menos una confirmación. Esto afecta también a cómo se calcula su saldo. - + &Spend unconfirmed change + &Gastar cambio no confirmado + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Abrir automáticamente el puerto del cliente Dogecoin en el router. Esta opción solo funciona si el router admite UPnP y está activado. - Map port using &UPnP Mapear el puerto usando &UPnP - Proxy &IP: Dirección &IP del proxy: - &Port: &Puerto: - Port of the proxy (e.g. 9050) Puerto del servidor proxy (ej. 9050) - SOCKS &Version: &Versión SOCKS: - SOCKS version of the proxy (e.g. 5) Versión SOCKS del proxy (ej. 5) - &Window &Ventana - Show only a tray icon after minimizing the window. Minimizar la ventana a la bandeja de iconos del sistema. - &Minimize to the tray instead of the taskbar &Minimizar a la bandeja en vez de a la barra de tareas - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimizar en lugar de salir de la aplicación al cerrar la ventana. Cuando esta opción está activa, la aplicación solo se puede cerrar seleccionando Salir desde el menú. - M&inimize on close M&inimizar al cerrar - &Display &Interfaz - User Interface &language: I&dioma de la interfaz de usuario - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. El idioma de la interfaz de usuario puede establecerse aquí. Este ajuste se aplicará cuando se reinicie Dogecoin. - &Unit to show amounts in: Mostrar las cantidades en la &unidad: - Choose the default subdivision unit to show in the interface and when sending coins. - Elegir la subdivisión predeterminada para mostrar cantidades en la interfaz y cuando se envían dogecoins. + Elegir la subdivisión predeterminada para mostrar cantidades en la interfaz y cuando se envían bitcoins. - Whether to show Dogecoin addresses in the transaction list or not. Mostrar o no las direcciones Dogecoin en la lista de transacciones. - &Display addresses in transaction list &Mostrar las direcciones en la lista de transacciones - Whether to show coin control features or not. Mostrar o no funcionalidad de Coin Control - - Display coin &control features (experts only) - Mostrar funcionalidad de Coin Control (solo expertos) - - - &OK &Aceptar - &Cancel &Cancelar - default predeterminado - none - nada + ninguna - Confirm options reset Confirme el restablecimiento de las opciones - - Client restart required to activate changes. Se necesita reiniciar el cliente para activar los cambios. - Client will be shutdown, do you want to proceed? El cliente se cerrará. ¿Desea continuar? - This change would require a client restart. Este cambio exige el reinicio del cliente. - The supplied proxy address is invalid. La dirección proxy indicada es inválida. @@ -1496,69 +1210,54 @@ Dirección: %4 OverviewPage - Form Desde - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red Dogecoin después de que se haya establecido una conexión, pero este proceso aún no se ha completado. - Wallet Monedero - Available: Disponible: - Your current spendable balance Su balance actual gastable - Pending: Pendiente: - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Total de transacciones que deben ser confirmadas, y que no cuentan con el balance gastable necesario - Immature: No disponible: - Mined balance that has not yet matured Saldo recién minado que aún no está disponible. - Total: Total: - Your current total balance Su balance actual total - <b>Recent transactions</b> <b>Movimientos recientes</b> - - out of sync desincronizado @@ -1566,93 +1265,70 @@ Dirección: %4 PaymentServer - - URI handling Gestión de URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. ¡No se puede interpretar la URI! Esto puede deberse a una dirección Dogecoin inválida o a parámetros de URI mal formados. - Requested payment amount of %1 is too small (considered dust). La cantidad del pago solicitado (%1) es demasiado pequeña (considerada polvo). - - - - - - Payment request error Error en petición de pago - Cannot start dogecoin: click-to-pay handler No se pudo iniciar dogecoin: manejador de pago-al-clic - Net manager warning Advertencia del gestor de red - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. El proxy configurado no soporta el protocolo SOCKS5, el cual es requerido para pagos vía proxy. - Payment request fetch URL is invalid: %1 La URL de obtención de la solicitud de pago es inválida: %1 - Payment request file handling Procesado del archivo de solicitud de pago - Payment request file can not be read or processed! This can be caused by an invalid payment request file. ¡No se ha podido leer o procesar el archivo de solicitud de pago! Esto puede deberse a un archivo inválido de solicitud de pago. - Unverified payment requests to custom payment scripts are unsupported. No están soportadas las peticiones inseguras a scripts de pago personalizados - Refund from %1 Devolución de %1 - Error communicating with %1: %2 Error en la comunicación con %1: %2 - Payment request can not be parsed or processed! ¡La solicitud de pago no puede leerse ni procesarse! - Bad response from server %1 Respuesta errónea del servidor %1 - Payment acknowledged Pago aceptado - Network request error Error en petición de red @@ -1660,23 +1336,26 @@ Dirección: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Error: El directorio de datos especificado "%1" no existe. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Error: No se ha podido leer el archivo de configuración: %1. Debe utilizarse solamente la sintaxis clave=valor. + + Error: Invalid combination of -regtest and -testnet. Error: Combinación no válida de -regtest y -testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Introduzca una dirección Dogecoin (ej. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1684,22 +1363,18 @@ Dirección: %4 QRImageWidget - &Save Image... Guardar Imagen... - &Copy Image Copiar imagen - Save QR Code Guardar código QR - PNG Image (*.png) Imágenes PNG (*.png) @@ -1707,192 +1382,146 @@ Dirección: %4 RPCConsole - Client name Nombre del cliente - - - - - - - - - - - N/A N/D - Client version Versión del cliente - &Information &Información - Debug window Ventana de depuración - General General - Using OpenSSL version Utilizando la versión OpenSSL - Startup time Hora de inicio - Network Red - Name Nombre - Number of connections Número de conexiones - Block chain Cadena de bloques - Current number of blocks Número actual de bloques - Estimated total blocks Bloques totales estimados - Last block time Hora del último bloque - &Open &Abrir - &Console &Consola - &Network Traffic &Tráfico de Red - &Clear - &Limpiar + &Vaciar - Totals Total: - In: Entrante: - Out: Saliente: - Build date Fecha de compilación - Debug log file Archivo de registro de depuración - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Abrir el archivo de registro de depuración en el directorio actual de datos. Esto puede llevar varios segundos para archivos de registro grandes. - Clear console Borrar consola - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Bienvenido a la consola RPC de Dogecoin - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Use las flechas arriba y abajo para navegar por el historial y <b>Control+L</b> para limpiar la pantalla. + Use las flechas arriba y abajo para navegar por el historial y <b>Control+L</b> para vaciar la pantalla. - Type <b>help</b> for an overview of available commands. Escriba <b>help</b> para ver un resumen de los comandos disponibles. - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 m - %1 h %1 h - %1 h %2 m %1 h %2 m @@ -1900,105 +1529,82 @@ Dirección: %4 ReceiveCoinsDialog - &Amount: Cantidad - &Label: &Etiqueta: - &Message: Mensaje: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. Reutilizar una de las direcciones previamente usadas para recibir. Reutilizar direcciones tiene problemas de seguridad y privacidad. No lo uses a menos que antes regeneres una solicitud de pago. - R&euse an existing receiving address (not recommended) R&eutilizar una dirección existente para recibir (no recomendado) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. Un mensaje opcional para adjuntar a la solicitud de pago, que se muestra cuando se abre la solicitud. Nota: El mensaje no se enviará con el pago por la red Dogecoin. - - An optional label to associate with the new receiving address. Etiqueta opcional para asociar con la nueva dirección de recepción. - Use this form to request payments. All fields are <b>optional</b>. - Utiliza este formulario para solicitar pagos. Todos los campos son <b>opcionales</b>. + Utilice este formulario para solicitar pagos. Todos los campos son <b>opcionales</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. Para solicitar una cantidad opcional. Deje este vacío o cero para no solicitar una cantidad específica. - Clear all fields of the form. - Limpiar todos los campos del formulario. + Vaciar todos los campos del formulario. - Clear - Limpiar + Vaciar - Requested payments history - Se solicita historial de pagos + Historial de pagos solicitados - &Request payment &Solicitar pago - Show the selected request (does the same as double clicking an entry) Muestra la petición seleccionada (También doble clic) - Show Mostrar - Remove the selected entries from the list Borrar de la lista las direcciónes actualmente seleccionadas - Remove Eliminar - Copy label Copiar etiqueta - Copy message Mensaje - Copy amount Copiar cuantía @@ -2006,67 +1612,54 @@ Dirección: %4 ReceiveRequestDialog - QR Code Código QR - Copy &URI Copiar &URI - Copy &Address Copiar &Dirección - &Save Image... Guardar Imagen... - Request payment to %1 Solicitar pago a %1 - Payment information Información de pago - URI URI - Address Dirección - Amount Cantidad - Label Etiqueta - Message Mensaje - Resulting URI too long, try to reduce the text for label / message. URI resultante demasiado larga. Intente reducir el texto de la etiqueta / mensaje. - Error encoding URI into QR Code. Error al codificar la URI en el código QR. @@ -2074,37 +1667,30 @@ Dirección: %4 RecentRequestsTableModel - Date Fecha - Label Etiqueta - Message Mensaje - Amount Cantidad - (no label) (sin etiqueta) - (no message) (Ningun mensaje) - (no amount) (sin cantidad) @@ -2112,247 +1698,194 @@ Dirección: %4 SendCoinsDialog - - - Send Coins - Enviar dogecoins + Enviar bitcoins - Coin Control Features Características de Coin Control - Inputs... Entradas... - automatically selected - Seleccionado automaticamente + Seleccionado automáticamente - Insufficient funds! Fondos insuficientes! - Quantity: Cantidad: - Bytes: Bytes: - Amount: Cuantía: - Priority: Prioridad: - Fee: Tasa: - Low Output: Envío pequeño: - After Fee: Después de tasas: - Change: Cambio: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Si esto se activa pero la dirección de cambio está vacía o es inválida, el cambio se enviará a una nueva dirección recién generada. + Si se marca esta opción pero la dirección de cambio está vacía o es inválida, el cambio se enviará a una nueva dirección recién generada. - Custom change address Dirección propia - Send to multiple recipients at once Enviar a múltiples destinatarios de una vez - Add &Recipient Añadir &destinatario - Clear all fields of the form. - Limpiar todos los campos del formulario + Vaciar todos los campos del formulario - Clear &All - Limpiar &todo + Vaciar &todo - Balance: Saldo: - Confirm the send action Confirmar el envío - S&end &Enviar - Confirm send coins - Confirmar el envío de dogecoins + Confirmar el envío de bitcoins - - - - %1 to %2 %1 a %2 - Copy quantity Copiar cantidad - Copy amount Copiar cuantía - Copy fee Copiar donación - Copy after fee Copiar después de aplicar donación - Copy bytes Copiar bytes - Copy priority Copiar prioridad - Copy low output Copiar envío pequeño - Copy change Copiar Cambio - Total Amount %1 (= %2) Cuantía Total %1 (=%2) - or o - The recipient address is not valid, please recheck. La dirección de recepción no es válida, compruébela de nuevo. - The amount to pay must be larger than 0. La cantidad por pagar tiene que ser mayor de 0. - The amount exceeds your balance. La cantidad sobrepasa su saldo. - The total exceeds your balance when the %1 transaction fee is included. El total sobrepasa su saldo cuando se incluye la tasa de envío de %1 - Duplicate address found, can only send to each address once per send operation. Se ha encontrado una dirección duplicada. Solo se puede enviar a cada dirección una vez por operación de envío. - Transaction creation failed! ¡Ha fallado la creación de la transacción! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - ¡La transacción fue rechazada! Esto puede haber ocurrido si alguno de los dogecoins de su monedero ya estaba gastado o si ha usado una copia de wallet.dat y los dogecoins estaban gastados en la copia pero no se habían marcado como gastados aqui. + ¡La transacción fue rechazada! Esto puede haber ocurrido si alguno de los bitcoins de su monedero ya estaba gastado o si ha usado una copia de wallet.dat y los bitcoins estaban gastados en la copia pero no se habían marcado como gastados aqui. - Warning: Invalid Dogecoin address Alerta: Dirección de Dogecoin inválida - (no label) (sin etiqueta) - Warning: Unknown change address Alerta: Dirección de Dogecoin inválida - Are you sure you want to send? ¿Está seguro que desea enviar? - added as transaction fee añadido como comisión de transacción - Payment request expired Petición de pago expirada - Invalid payment address %1 Dirección de pago no válida %1 @@ -2360,98 +1893,74 @@ Dirección: %4 SendCoinsEntry - - - A&mount: Ca&ntidad: - Pay &To: &Pagar a: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) La dirección a la que enviar el pago (p. ej. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Etiquete esta dirección para añadirla a la libreta - &Label: &Etiqueta: - Choose previously used address Escoger direcciones previamente usadas - This is a normal payment. Esto es un pago ordinario. - Alt+A Alt+A - Paste address from clipboard Pegar dirección desde portapapeles - Alt+P Alt+P - - - Remove this entry Eliminar esta transacción - Message: Mensaje: - This is a verified payment request. Esto es una petición de pago verificado. - Enter a label for this address to add it to the list of used addresses Introduce una etiqueta para esta dirección para añadirla a la lista de direcciones utilizadas - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. Un mensaje que se adjuntó a la dogecoin: URL que será almacenada con la transacción para su referencia. Nota: Este mensaje no se envía a través de la red Dogecoin. - This is an unverified payment request. Esto es una petición de pago no verificado. - - Pay To: Paga a: - - Memo: Memo: @@ -2459,13 +1968,11 @@ Dirección: %4 ShutdownWindow - Dogecoin Core is shutting down... - El núcleo de Dogecoin se está cerrando... + Dogecoin Core se está cerrando... - Do not shut down the computer until this window disappears. No apague el equipo hasta que desaparezca esta ventana. @@ -2473,186 +1980,142 @@ Dirección: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Firmas - Firmar / verificar un mensaje - &Sign Message &Firmar mensaje - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Puede firmar mensajes con sus direcciones para demostrar que las posee. Tenga cuidado de no firmar cualquier cosa vaga, ya que los ataques de phishing pueden tratar de engañarle para suplantar su identidad. Firme solo declaraciones totalmente detalladas con las que usted esté de acuerdo. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) La dirección con la que firmar el mensaje (ej. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Escoger dirección previamente usada - - Alt+A Alt+A - Paste address from clipboard Pegar dirección desde portapapeles - Alt+P Alt+P - Enter the message you want to sign here Introduzca el mensaje que desea firmar aquí - Signature Firma - Copy the current signature to the system clipboard Copiar la firma actual al portapapeles del sistema - Sign the message to prove you own this Dogecoin address Firmar el mensaje para demostrar que se posee esta dirección Dogecoin - Sign &Message Firmar &mensaje - Reset all sign message fields - Limpiar todos los campos de la firma de mensaje + Vaciar todos los campos de la firma de mensaje - - Clear &All - Limpiar &todo + Vaciar &todo - &Verify Message &Verificar mensaje - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Introduzca la dirección para la firma, el mensaje (asegurándose de copiar tal cual los saltos de línea, espacios, tabulaciones, etc.) y la firma a continuación para verificar el mensaje. Tenga cuidado de no asumir más información de lo que dice el propio mensaje firmado para evitar fraudes basados en ataques de tipo man-in-the-middle. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) La dirección con la que se firmó el mensaje (ej. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Verificar el mensaje para comprobar que fue firmado con la dirección Dogecoin indicada - Verify &Message Verificar &mensaje - Reset all verify message fields - Limpiar todos los campos de la verificación de mensaje + Vaciar todos los campos de la verificación de mensaje - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Introduzca una dirección Dogecoin (ej. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Haga clic en "Firmar mensaje" para generar la firma - - The entered address is invalid. La dirección introducida es inválida. - - - - Please check the address and try again. Verifique la dirección e inténtelo de nuevo. - - The entered address does not refer to a key. La dirección introducida no corresponde a una clave. - Wallet unlock was cancelled. Se ha cancelado el desbloqueo del monedero. - Private key for the entered address is not available. No se dispone de la clave privada para la dirección introducida. - Message signing failed. Ha fallado la firma del mensaje. - Message signed. Mensaje firmado. - The signature could not be decoded. No se puede decodificar la firma. - - Please check the signature and try again. Compruebe la firma e inténtelo de nuevo. - The signature did not match the message digest. La firma no coincide con el resumen del mensaje. - Message verification failed. La verificación del mensaje ha fallado. - Message verified. Mensaje verificado. @@ -2660,17 +2123,14 @@ Dirección: %4 SplashScreen - Dogecoin Core - Núcleo de Dogecoin + Dogecoin Core - The Dogecoin Core developers - Los desarrolladores del Núcleo de Dogecoin + Los desarrolladores de Dogecoin Core - [testnet] [testnet] @@ -2678,7 +2138,6 @@ Dirección: %4 TrafficGraphWidget - KB/s KB/s @@ -2686,184 +2145,138 @@ Dirección: %4 TransactionDesc - Open until %1 Abierto hasta %1 - conflicted en conflicto - %1/offline %1/fuera de línea - %1/unconfirmed %1/no confirmado - %1 confirmations %1 confirmaciones - Status Estado - , broadcast through %n node(s) , transmitir a través de %n nodo, transmitir a través de %n nodos - Date Fecha - Source Fuente - Generated Generado - - From De - - - To Para - - own address dirección propia - label etiqueta - - - - - Credit Crédito - matures in %n more block(s) disponible en %n bloque másdisponible en %n bloques más - not accepted no aceptada - - - - Debit Débito - Transaction fee Comisión de transacción - Net amount Cantidad neta - - Message Mensaje - Comment Comentario - Transaction ID Identificador de transacción - Merchant Vendedor - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Los dogecoins generados deben madurar %1 bloques antes de que puedan gastarse. Cuando generó este bloque, se transmitió a la red para que se añadiera a la cadena de bloques. Si no consigue entrar en la cadena, su estado cambiará a "no aceptado" y ya no se podrá gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque a pocos segundos del suyo. + Los bitcoins generados deben madurar %1 bloques antes de que puedan gastarse. Cuando generó este bloque, se transmitió a la red para que se añadiera a la cadena de bloques. Si no consigue entrar en la cadena, su estado cambiará a "no aceptado" y ya no se podrá gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque a pocos segundos del suyo. - Debug information Información de depuración - Transaction Transacción - Inputs entradas - Amount Cantidad - true verdadero - false falso - , has not been successfully broadcast yet , todavía no se ha sido difundido satisfactoriamente - Open for %n more block(s) Abrir para %n bloque másAbrir para %n bloques más - unknown desconocido @@ -2871,12 +2284,10 @@ Dirección: %4 TransactionDescDialog - Transaction details Detalles de transacción - This pane shows a detailed description of the transaction Esta ventana muestra información detallada sobre la transacción @@ -2884,127 +2295,102 @@ Dirección: %4 TransactionTableModel - Date Fecha - Type Tipo - Address Dirección - Amount Cantidad - Immature (%1 confirmations, will be available after %2) No vencidos (%1 confirmaciones. Estarán disponibles al cabo de %2) - Open for %n more block(s) Abrir para %n bloque másAbrir para %n bloques más - Open until %1 Abierto hasta %1 - Confirmed (%1 confirmations) Confirmado (%1 confirmaciones) - This block was not received by any other nodes and will probably not be accepted! Este bloque no ha sido recibido por otros nodos y probablemente no sea aceptado! - Generated but not accepted Generado pero no aceptado - Offline Sin conexión - Unconfirmed Sin confirmar - Confirming (%1 of %2 recommended confirmations) Confirmando (%1 de %2 confirmaciones recomendadas) - Conflicted En conflicto - Received with Recibido con - Received from Recibidos de - Sent to Enviado a - Payment to yourself Pago propio - Mined Minado - (n/a) (nd) - Transaction status. Hover over this field to show number of confirmations. Estado de transacción. Pasa el ratón sobre este campo para ver el número de confirmaciones. - Date and time that the transaction was received. Fecha y hora en que se recibió la transacción. - Type of transaction. Tipo de transacción. - Destination address of transaction. Dirección de destino de la transacción. - Amount removed from or added to balance. Cantidad retirada o añadida al saldo. @@ -3012,178 +2398,142 @@ Dirección: %4 TransactionView - - All Todo - Today Hoy - This week Esta semana - This month Este mes - Last month Mes pasado - This year Este año - Range... Rango... - Received with Recibido con - Sent to Enviado a - To yourself A usted mismo - Mined Minado - Other Otra - Enter address or label to search Introduzca una dirección o etiqueta que buscar - Min amount Cantidad mínima - Copy address Copiar dirección - Copy label Copiar etiqueta - Copy amount Copiar cuantía - Copy transaction ID Copiar identificador de transacción - Edit label Editar etiqueta - Show transaction details Mostrar detalles de la transacción - Export Transaction History Exportar historial de transacciones - Exporting Failed Error exportando - There was an error trying to save the transaction history to %1. Ha habido un error al intentar guardar la transacción con %1. - Exporting Successful Exportación finalizada - The transaction history was successfully saved to %1. La transacción ha sido guardada en %1. - Comma separated file (*.csv) Archivos de columnas separadas por coma (*.csv) - Confirmed Confirmado - Date Fecha - Type Tipo - Label Etiqueta - Address Dirección - Amount Cantidad - ID ID - Range: Rango: - to para @@ -3191,7 +2541,6 @@ Dirección: %4 WalletFrame - No wallet has been loaded. No se ha cargado ningún monedero @@ -3199,170 +2548,140 @@ Dirección: %4 WalletModel - Send Coins - Enviar dogecoins + Enviar bitcoins WalletView - &Export &Exportar - Export the data in the current tab to a file Exportar a un archivo los datos de esta pestaña - Backup Wallet - Respaldo de monedero + Copia de seguridad del monedero - Wallet Data (*.dat) Datos de monedero (*.dat) - Backup Failed Ha fallado el respaldo - There was an error trying to save the wallet data to %1. Ha habido un error al intentar guardar los datos del monedero en %1. - The wallet data was successfully saved to %1. Los datos del monedero se han guardado con éxito en %1. - Backup Successful - Se ha completado con éxito la copia de respaldo + Se ha completado la copia de seguridad del monedero - dogecoin-core + bitcoin-core - Usage: Uso: - List commands Muestra comandos - Get help for a command Recibir ayuda para un comando - Options: Opciones: - Specify configuration file (default: dogecoin.conf) Especificar archivo de configuración (predeterminado: dogecoin.conf) - - Specify pid file (default: dogecoind.pid) - Especificar archivo pid (predeterminado: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Especificar archivo pid (predeterminado: dogecoin.pid) - Specify data directory Especificar directorio para los datos - - Set database cache size in megabytes (default: 25) - Establecer el tamaño de caché de la base de datos en megabytes (predeterminado: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Escuchar conexiones en <puerto> (predeterminado: 8333 o testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Escuchar conexiones en <puerto> (predeterminado: 22556 o testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Mantener como máximo <n> conexiones a pares (predeterminado: 125) - Connect to a node to retrieve peer addresses, and disconnect Conectar a un nodo para obtener direcciones de pares y desconectar - Specify your own public address Especifique su propia dirección pública - Threshold for disconnecting misbehaving peers (default: 100) Umbral para la desconexión de pares con mal comportamiento (predeterminado: 100) - 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) - 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 - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Escuchar conexiones JSON-RPC en <puerto> (predeterminado: 22555 o testnet:44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Escuchar conexiones JSON-RPC en <puerto> (predeterminado: 8332 o testnet:18332) - Accept command line and JSON-RPC commands Aceptar comandos consola y JSON-RPC - + Dogecoin Core RPC client version + Versión del cliente RPC de Dogecoin Core RPC + + Run in the background as a daemon and accept commands Ejecutar en segundo plano como daemon y aceptar comandos - Use the test network Usar la red de pruebas - Accept connections from outside (default: 1 if no -proxy or -connect) Aceptar conexiones desde el exterior (predeterminado: 1 si no -proxy o -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3373,7 +2692,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, debe establecer un valor rpcpassword en el archivo de configuración: %s Se recomienda utilizar la siguiente contraseña aleatoria: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (no es necesario recordar esta contraseña) El nombre de usuario y la contraseña DEBEN NO ser iguales. @@ -3383,731 +2702,695 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. - No se puede bloquear el directorio de datos %s. Probablemente Dogecoin ya se está ejecutando. + 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) - 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: 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 dogecoins del monedero, como ocurriría si hubiera hecho una copia de wallet.dat y se hubieran gastado dogecoins a partir de la copia, con lo que no se habrían marcado aquí como gastados. + Error: Listening for incoming connections failed (listen returned error %d) + Error: Ha fallado la escucha de conexiones entrantes (listen ha devuelto el error %d) + + + 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 bitcoins del monedero, como ocurriría si hubiera hecho una copia de wallet.dat y se hubieran gastado bitcoins 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! - 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) - + 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) + + + 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. + + + 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) + + 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. Dogecoin Core is probably already running. + No se ha podido acceder a %s en esta máquina. Probablemente ya se está ejecutando Dogecoin Core. + + 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 Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Precaución: Por favor, ¡revise que la fecha y hora de su ordenador son correctas! Si su reloj está mal, Dogecoin no funcionará correctamente. - Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Atención: ¡Parece que la red no está totalmente de acuerdo! Algunos mineros están presentando inconvenientes. - Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Atención: ¡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. - + (default: 1) + (predeterminado: 1) + + + (default: wallet.dat) + (predeterminado: wallet.dat) + + <category> can be: <category> puede ser: - Attempt to recover private keys from a corrupt wallet.dat Intento de recuperar claves privadas de un wallet.dat corrupto - Dogecoin Core Daemon - Proceso Dogecoin Core + Dogecoin Core Daemon (proceso independiente) - - Dogecoin Core RPC client version - Versión de cliente DogecoinROC - - - Block creation options: Opciones de creación de bloques: - Clear list of wallet transactions (diagnostic tool; implies -rescan) Vaciar lista de transacciones del monedero (herramienta de diagnóstico; implica -rescan) - 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: 22555 or testnet: 44555) - Conectar a JSON-RPC en <puerto> (predeterminado: 22555 o testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + Conectar a JSON-RPC en <puerto> (predeterminado: 8332 o testnet: 18332) + + + Connection options: + Opciones de conexión: - Corrupted block database detected Corrupción de base de datos de bloques detectada. - + Debugging/Testing options: + Opciones de depuración/pruebas: + + + Disable safemode, override a real safe mode event (default: 0) + Inhabilitar 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? - 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 opening block database Error al abrir base de datos de bloques. - 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: 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 dogecoins + No se ha podido escribir en la base de datos de bitcoins - 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 Donación por KB añadida 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: + + Find peers using DNS lookup (default: 1 unless -connect) Encontrar pares mediante búsqueda de DNS (predeterminado: 1 salvo con -connect) - - Generate coins (default: 0) - Generar dogecoins (predeterminado: 0) + Force safe mode (default: 0) + Forzar modo seguro (predeterminado: 0) + + + Generate coins (default: 0) + Generar bitcoins (predeterminado: 0) - How many blocks to check at startup (default: 288, 0 = all) Cuántos bloques comprobar al iniciar (predeterminado: 288, 0 = todos) - - How thorough the block verification is (0-4, default: 3) - Cómo es de exhaustiva la verificación de bloques (0-4, predeterminado 3) - - - If <category> is not supplied, output all debugging information. Si no se proporciona <category>, mostrar toda la depuración - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? Incorrecto o bloque de génesis no encontrado. Datadir equivocada para la red? - Invalid -onion address: '%s' Dirección -onion inválida: '%s' - Not enough file descriptors available. No hay suficientes descriptores de archivo disponibles. - Prepend debug output with timestamp (default: 1) Anteponer marca temporal a la información de depuración (predeterminado: 1) - RPC client options: Opciones para cliente RPC: - 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 - 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 Dogecoin Core server - Enviar comando a servidor Dogecoin + 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 maximum block size in bytes (default: %d) Establecer tamaño máximo de bloque en bytes (predeterminado: %d) - Set the number of threads to service RPC calls (default: 4) - Establecer el número de hilos para atender las llamadas RPC (predeterminado: 4) + Establecer el número de procesos para atender las llamadas RPC (predeterminado: 4) - Specify wallet file (within data directory) Especificar archivo de monedero (dentro del directorio de datos) - Spend unconfirmed change when sending transactions (default: 1) Gastar cambio no confirmado al enviar transacciones (predeterminado: 1) - - Start Dogecoin Core server - Iniciar servidor Dogecoin - - - This is intended for regression testing tools and app development. Esto afecta a las herramientas de prueba de regresión y al desarrollo informático de la aplicación. - Usage (deprecated, use dogecoin-cli): Uso (desaconsejado, usar dogecoin-cli) - 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 options: Opciones de monedero: - Warning: Deprecated argument -debugnet ignored, use -debug=net Aviso: Argumento -debugnet anticuado, utilice -debug=net - You need to rebuild the database using -reindex to change -txindex Usted necesita reconstruir la base de datos utilizando -reindex para cambiar -txindex - Imports blocks from external blk000??.dat file Importa los bloques desde un archivo blk000??.dat externo - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + No se ha podido bloquear el directorio de datos %s. Probablemente ya se está ejecutando Dogecoin Core. + + 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 una alerta importante o cuando veamos un fork demasiado largo (%s en cmd se reemplazará por el mensaje) - Output debugging information (default: 0, supplying <category> is optional) Mostrar información de depuración (predeterminado: 0, proporcionar <category> es opcional) - 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 (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Configura el número de hilos para el script de verificación (hasta 16, 0 = auto, <0 = leave that many cores free, por fecto: 0) - - - Information Información - Invalid amount for -minrelaytxfee=<amount>: '%s' Cantidad inválida para -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' Cantidad inválida para -mintxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + Limitar tamaño de la cache de firmas a <n> entradas (predeterminado: 50000) + + + Log transaction priority and fee per kB when mining blocks (default: 0) + Registrar en el log la prioridad de transacciones y la comisión por kB al minar bloques (predeterminado: 0) + + Maintain a full transaction index (default: 0) Mantener índice de transacciones completo (predeterminado: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Búfer de recepción máximo por conexión, <n>*1000 bytes (predeterminado: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Búfer de recepción máximo por conexión, , <n>*1000 bytes (predeterminado: 1000) - 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) - + 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 Dogecoin para las instrucciones de instalación de SSL) + + + 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 + Introducir datos fuzz en 1 de cada <n> mensajes de red al azar + + + Run a thread to flush wallet periodically (default: 1) + Ejecutar un hilo (thread) para limpiar de la memoria el monedero periódicamente (predeterminado: 1) + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) - + Send command to Dogecoin Core + Enviar orden a Dogecoin Core + + 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 - Set minimum block size in bytes (default: 0) Establecer tamaño mínimo de bloque en bytes (predeterminado: 0) - + 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 transaction failed Transacción falló - Specify connection timeout in milliseconds (default: 5000) Especificar el tiempo máximo de conexión en milisegundos (predeterminado: 5000) - + Start Dogecoin Core Daemon + Iniciar Dogecoin Core Daemon + + System error: Error de sistema: - Transaction amount too small Cantidad de la transacción demasiado pequeña - Transaction amounts must be positive Las cantidades en las transacciones deben ser positivas - Transaction too large Transacción demasiado grande - 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) - Username for JSON-RPC connections Nombre de usuario para las conexiones JSON-RPC - Warning Aviso - Warning: This version is obsolete, upgrade required! Aviso: Esta versión es obsoleta, actualización necesaria! - 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 corrupto. Ha fallado la recuperación. - Password for JSON-RPC connections Contraseña para las conexiones JSON-RPC - Allow JSON-RPC connections from specified IP address Permitir conexiones JSON-RPC desde la dirección IP especificada - Send commands to node running on <ip> (default: 127.0.0.1) Enviar comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - 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) - Upgrade wallet to latest format Actualizar el monedero al último formato - Set key pool size to <n> (default: 100) Ajustar el número de claves en reserva <n> (predeterminado: 100) - Rescan the block chain for missing wallet transactions Volver a examinar la cadena de bloques en busca de transacciones del monedero perdidas - Use OpenSSL (https) for JSON-RPC connections Usar OpenSSL (https) para las conexiones JSON-RPC - 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) - This help message Este mensaje de ayuda - Unable to bind to %s on this computer (bind returned error %d, %s) No es posible conectar con %s en este sistema (bind ha dado el error %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Permitir búsquedas DNS para -addnode, -seednode y -connect - Loading addresses... Cargando direcciones... - 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 Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Error al cargar wallet.dat: El monedero requiere una versión más reciente de Dogecoin - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete El monedero ha necesitado ser reescrito. Reinicie Dogecoin para completar el proceso - Error loading wallet.dat Error al cargar wallet.dat - Invalid -proxy address: '%s' Dirección -proxy inválida: '%s' - Unknown network specified in -onlynet: '%s' La red especificada en -onlynet '%s' es desconocida - Unknown -socks proxy version requested: %i Solicitada versión de proxy -socks desconocida: %i - 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' - Invalid amount for -paytxfee=<amount>: '%s' Cantidad inválida para -paytxfee=<amount>: '%s' - Invalid amount Cuantía no válida - Insufficient funds Fondos insuficientes - Loading block index... Cargando el índice de bloques... - 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 - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - No es posible conectar con %s en este sistema. Probablemente Dogecoin ya está ejecutándose. - - - Loading wallet... Cargando monedero... - Cannot downgrade wallet No se puede rebajar el monedero - Cannot write default address No se puede escribir la dirección predeterminada - Rescanning... Reexplorando... - Done loading Generado pero no aceptado - To use the %s option Para utilizar la opción %s - Error Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4116,4 +3399,4 @@ 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. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index 791d2bbd3..61711c6d1 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -30,135 +27,113 @@ el OpenSSL Toolkit (http://www.openssl.org/), software criptográfico escrito po Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. - Copyright Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Haz doble clic para editar una dirección o etiqueta - Create a new address Crea una nueva dirección - &New - Copy the currently selected address to the system clipboard Copia la dirección seleccionada al portapapeles - &Copy - C&lose - &Copy Address &Copia dirección - Delete the currently selected address from the list - Export the data in the current tab to a file Exportar los datos de la pestaña actual a un archivo - &Export - &Delete &Borrar - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label Copia &etiqueta - &Edit &Editar - Export Address List - Comma separated file (*.csv) Archivos separados por coma (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -166,17 +141,14 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. AddressTableModel - Label Etiqueta - Address Dirección - (no label) (sin etiqueta) @@ -184,140 +156,106 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. AskPassphraseDialog - Passphrase Dialog - Enter passphrase Introduce contraseña actual - New passphrase Nueva contraseña - Repeat new passphrase Repite nueva contraseña - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Introduce la nueva contraseña para la billetera.<br/>Por favor utiliza un contraseña de<b>10 o más caracteres aleatorios</b>, u <b>ocho o más palabras</b>. - Encrypt wallet Codificar billetera - This operation needs your wallet passphrase to unlock the wallet. Esta operación necesita la contraseña para desbloquear la billetera. - Unlock wallet Desbloquea billetera - This operation needs your wallet passphrase to decrypt the wallet. Esta operación necesita la contraseña para decodificar la billetara. - Decrypt wallet Decodificar cartera - Change passphrase Cambia contraseña - Enter the old and new passphrase to the wallet. Introduce la contraseña anterior y la nueva de cartera - Confirm wallet encryption Confirma la codificación de cartera - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Atención: ¡Si codificas tu billetera y pierdes la contraseña perderás <b>TODOS TUS DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Atención: ¡Si codificas tu billetera y pierdes la contraseña perderás <b>TODOS TUS DogecoinS</b>! - Are you sure you wish to encrypt your wallet? ¿Seguro que quieres seguir codificando la billetera? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANTE: Cualquier versión anterior que hayas realizado de tu archivo de billetera será reemplazada por el nuevo archivo de billetera encriptado. Por razones de seguridad, los respaldos anteriores de los archivos de billetera se volverán inútiles en tanto comiences a usar la nueva billetera encriptada. - - Warning: The Caps Lock key is on! Precaucion: Mayúsculas Activadas - - Wallet encrypted Billetera codificada - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin se cerrará para finalizar el proceso de encriptación. Recuerde que encriptar su billetera no protegera completatamente sus dogecoins de ser robados por malware que infecte su computador + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin se cerrará para finalizar el proceso de encriptación. Recuerde que encriptar su billetera no protegera completatamente sus bitcoins de ser robados por malware que infecte su computador - - - - Wallet encryption failed Falló la codificación de la billetera - Wallet encryption failed due to an internal error. Your wallet was not encrypted. La codificación de la billetera falló debido a un error interno. Tu billetera no ha sido codificada. - - The supplied passphrases do not match. Las contraseñas no coinciden. - Wallet unlock failed Ha fallado el desbloqueo de la billetera - - - The passphrase entered for the wallet decryption was incorrect. La contraseña introducida para decodificar la billetera es incorrecta. - Wallet decryption failed Ha fallado la decodificación de la billetera - Wallet passphrase was successfully changed. La contraseña de billetera ha sido cambiada con éxito. @@ -325,352 +263,286 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. BitcoinGUI - Sign &message... Firmar &Mensaje... - Synchronizing with network... Sincronizando con la red... - &Overview &Vista general - Node - Show general overview of wallet Muestra una vista general de la billetera - &Transactions &Transacciones - Browse transaction history Explora el historial de transacciónes - E&xit &Salir - Quit application Salir del programa - - Show information about Dogecoin Core + Show information about Dogecoin Muestra información acerca de Dogecoin - - About &Qt Acerca de - Show information about Qt Mostrar Información sobre QT - &Options... &Opciones - &Encrypt Wallet... &Codificar la billetera... - &Backup Wallet... &Respaldar billetera... - &Change Passphrase... &Cambiar la contraseña... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... Cargando el index de bloques... - Send coins to a Dogecoin address - Enviar monedas a una dirección dogecoin + Enviar monedas a una dirección bitcoin - - Modify configuration options for Dogecoin Core - Modifica las opciones de configuración de dogecoin + Modify configuration options for Dogecoin + Modifica las opciones de configuración de bitcoin - Backup wallet to another location Respaldar billetera en otra ubicación - Change the passphrase used for wallet encryption Cambiar la contraseña utilizada para la codificación de la billetera - &Debug window Ventana &Debug - Open debugging and diagnostic console Abre consola de depuración y diagnóstico - &Verify message... - Dogecoin Dogecoin - Wallet Cartera - &Send - &Receive - - &Show / Hide &Mostrar/Ocultar - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them Firmar un mensaje para provar que usted es dueño de esta dirección - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &Archivo - &Settings &Configuración - &Help &Ayuda - Tabs toolbar Barra de pestañas - - [testnet] [red-de-pruebas] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Cliente Dogecoin - %n active connection(s) to Dogecoin network %n conexión activa hacia la red Dogecoin%n conexiones activas hacia la red Dogecoin - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) %n hora%n horas - %n day(s) %n día%n días - %n week(s) %n semana%n semanas - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error Error - Warning Atención - Information Información - Up to date Actualizado - Catching up... Recuperando... - Sent transaction Transacción enviada - Incoming transaction Transacción entrante - Date: %1 Amount: %2 Type: %3 @@ -682,25 +554,21 @@ Tipo: %3 Dirección: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> La billetera esta <b>codificada</b> y actualmente <b>desbloqueda</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> La billetera esta <b>codificada</b> y actualmente <b>bloqueda</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert Alerta de Red @@ -708,291 +576,230 @@ Dirección: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: Cantidad: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Cantidad - Address Dirección - Date Fecha - Confirmations - Confirmed Confirmado - Priority - Copy address Copia dirección - Copy label Copia etiqueta - - Copy amount Copiar Cantidad - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (sin etiqueta) - change from %1 (%2) - (change) @@ -1000,67 +807,54 @@ Dirección: %4 EditAddressDialog - Edit Address Editar dirección - &Label &Etiqueta - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Dirección - New receiving address Nueva dirección para recibir - New sending address Nueva dirección para enviar - Edit receiving address Editar dirección de recepción - Edit sending address Editar dirección de envio - The entered address "%1" is already in the address book. La dirección introducida "%1" ya esta guardada en la libreta de direcciones. - The entered address "%1" is not a valid Dogecoin address. La dirección introducida "%1" no es una dirección Dogecoin valida. - Could not unlock wallet. No se pudo desbloquear la billetera. - New key generation failed. La generación de nueva clave falló. @@ -1068,27 +862,22 @@ Dirección: %4 FreespaceChecker - A new data directory will be created. - name Nombre - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1096,53 +885,47 @@ Dirección: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version versión - Usage: Uso: - command-line options - UI options UI opciones - Set language, for example "de_DE" (default: system locale) - Start minimized Arranca minimizado - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1150,57 +933,46 @@ Dirección: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Error Error - GB of free space available - (of %1GB needed) @@ -1208,27 +980,22 @@ Dirección: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1236,243 +1003,206 @@ Dirección: %4 OptionsDialog - Options Opciones - &Main &Principal - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee Comisión de &transacciónes - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Inicia Dogecoin automáticamente despues de encender el computador - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Inicia Dogecoin al iniciar el sistema - Size of &database cache - - Set database cache size in megabytes (default: 25) - Asigna el tamaño del caché de la base de datos en MB (25 predeterminado) - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. Reestablece todas las opciones. - &Reset Options - &Network &Red - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Abre automáticamente el puerto del cliente Dogecoin en el router. Esto funciona solo cuando tu router es compatible con UPnP y está habilitado. - Map port using &UPnP Direcciona el puerto usando &UPnP - Proxy &IP: &IP Proxy: - &Port: &Puerto: - Port of the proxy (e.g. 9050) Puerto del servidor proxy (ej. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. Muestra solo un ícono en la bandeja después de minimizar la ventana - &Minimize to the tray instead of the taskbar &Minimiza a la bandeja en vez de la barra de tareas - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimiza la ventana en lugar de salir del programa cuando la ventana se cierra. Cuando esta opción esta activa el programa solo se puede cerrar seleccionando Salir desde el menu. - M&inimize on close M&inimiza a la bandeja al cerrar - &Display &Mostrado - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: &Unidad en la que mostrar cantitades: - Choose the default subdivision unit to show in the interface and when sending coins. Elige la subdivisión por defecto para mostrar cantidaded en la interfaz cuando se envien monedas - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list &Muestra direcciones en el listado de transaccioines - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &OK - &Cancel &Cancela - default predeterminado - none - Confirm options reset Confirmar reestablecimiento de las opciones - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1480,69 +1210,54 @@ Dirección: %4 OverviewPage - Form Formulario - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - No confirmados: - - - Wallet Cartera - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: Total: - Your current total balance - <b>Recent transactions</b> <b>Transacciones recientes</b> - - out of sync desincronizado @@ -1550,93 +1265,70 @@ Dirección: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged Pago completado - Network request error @@ -1644,23 +1336,26 @@ Dirección: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Introduce una dirección Dogecoin (ej. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1668,22 +1363,18 @@ Dirección: %4 QRImageWidget - &Save Image... Guardar imagen... - &Copy Image Copiar Imagen - Save QR Code - PNG Image (*.png) @@ -1691,192 +1382,146 @@ Dirección: %4 RPCConsole - Client name Nombre del cliente - - - - - - - - - - - N/A N/A - Client version Versión del Cliente - &Information &Información - Debug window - General - Using OpenSSL version - Startup time Tiempo de inicio - Network Red - Name Nombre - Number of connections Número de conexiones - Block chain Bloquea cadena - Current number of blocks - Estimated total blocks - Last block time - &Open &Abrir - &Console &Consola - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console Limpiar Consola - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1884,105 +1529,82 @@ Dirección: %4 ReceiveCoinsDialog - &Amount: - &Label: &Etiqueta: - &Message: &mensaje - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - - An optional label to associate with the new receiving address. - Use this form to request payments. All fields are <b>optional</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - Requested payments history - &Request payment - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove - Copy label Copia etiqueta - Copy message - Copy amount Copiar Cantidad @@ -1990,67 +1612,54 @@ Dirección: %4 ReceiveRequestDialog - QR Code Código QR - Copy &URI - Copy &Address &Copia dirección - &Save Image... Guardar imagen... - Request payment to %1 - Payment information - URI - Address Dirección - Amount Cantidad - Label Etiqueta - Message Mensaje - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2058,37 +1667,30 @@ Dirección: %4 RecentRequestsTableModel - Date Fecha - Label Etiqueta - Message Mensaje - Amount Cantidad - (no label) (sin etiqueta) - (no message) - (no amount) @@ -2096,247 +1698,194 @@ Dirección: %4 SendCoinsDialog - - - Send Coins Enviar monedas - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: Cantidad: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Enviar a múltiples destinatarios - Add &Recipient &Agrega destinatario - Clear all fields of the form. - Clear &All &Borra todos - Balance: Balance: - Confirm the send action Confirma el envio - S&end &Envía - Confirm send coins Confirmar el envio de monedas - - - - %1 to %2 - Copy quantity - Copy amount Copiar Cantidad - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. La dirección de destinatarion no es valida, comprueba otra vez. - The amount to pay must be larger than 0. La cantidad por pagar tiene que ser mayor 0. - The amount exceeds your balance. La cantidad sobrepasa tu saldo. - The total exceeds your balance when the %1 transaction fee is included. El total sobrepasa tu saldo cuando se incluyen %1 como tasa de envio. - Duplicate address found, can only send to each address once per send operation. Tienes una dirección duplicada, solo puedes enviar a direcciónes individuales de una sola vez. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (sin etiqueta) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2344,98 +1893,74 @@ Dirección: %4 SendCoinsEntry - - - A&mount: Cantidad: - Pay &To: &Pagar a: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) La dirección donde enviar el pago (ej. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Introduce una etiqueta a esta dirección para añadirla a tu guia - &Label: &Etiqueta: - Choose previously used address - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard Pega dirección desde portapapeles - Alt+P Alt+P - - - Remove this entry - Message: Mensaje: - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. - - Pay To: - - Memo: @@ -2443,12 +1968,10 @@ Dirección: %4 ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2456,186 +1979,142 @@ Dirección: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message &Firmar Mensaje - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Introduce una dirección Dogecoin (ej. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard Pega dirección desde portapapeles - Alt+P Alt+P - Enter the message you want to sign here Escriba el mensaje que desea firmar - Signature Firma - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address Firmar un mensjage para probar que usted es dueño de esta dirección - Sign &Message Firmar Mensaje - Reset all sign message fields - - Clear &All &Borra todos - &Verify Message &Firmar Mensaje - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Introduce una dirección Dogecoin (ej. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message &Firmar Mensaje - Reset all verify message fields - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Introduce una dirección Dogecoin (ej. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Click en "Firmar Mensage" para conseguir firma - - The entered address is invalid. La dirección introducida "%1" no es una dirección Dogecoin valida. - - - - Please check the address and try again. Por favor, revise la dirección Dogecoin e inténtelo denuevo - - The entered address does not refer to a key. - Wallet unlock was cancelled. Ha fallado el desbloqueo de la billetera - Private key for the entered address is not available. - Message signing failed. Firma fallida - Message signed. Mensaje firmado - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. Mensaje comprobado @@ -2643,17 +2122,14 @@ Dirección: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] [red-de-pruebas] @@ -2661,7 +2137,6 @@ Dirección: %4 TrafficGraphWidget - KB/s KB/s @@ -2669,179 +2144,138 @@ Dirección: %4 TransactionDesc - Open until %1 Abierto hasta %1 - + conflicted + + + %1/offline %1/fuera de linea - %1/unconfirmed %1/no confirmado - %1 confirmations %1 confirmaciónes - Status Estado - , broadcast through %n node(s) - Date Fecha - Source - Generated Generado - - From De - - - To A - - own address propia dirección - label etiqueta - - - - - Credit Credito - matures in %n more block(s) - not accepted no aceptada - - - - Debit Debito - Transaction fee Comisión transacción - Net amount Cantidad total - - Message Mensaje - Comment Comentario - Transaction ID ID de Transacción - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction Transacción - Inputs - Amount Cantidad - true - false - , has not been successfully broadcast yet , no ha sido emitido satisfactoriamente todavía - Open for %n more block(s) Abierto para %n bloque másAbierto para %n bloques más - unknown desconocido @@ -2849,12 +2283,10 @@ Dirección: %4 TransactionDescDialog - Transaction details Detalles de transacción - This pane shows a detailed description of the transaction Esta ventana muestra información detallada sobre la transacción @@ -2862,118 +2294,102 @@ Dirección: %4 TransactionTableModel - Date Fecha - Type Tipo - Address Dirección - Amount Cantidad - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) Abierto para &n bloque másAbierto para &n bloques más - Open until %1 Abierto hasta %1 - - Offline (%1 confirmations) - Fuera de linea (%1 confirmaciónes) - - - - Unconfirmed (%1 of %2 confirmations) - No confirmado (%1 de %2 confirmaciónes) - - - - Confirmed (%1 confirmations) Confirmado (%1 confirmaciones) - This block was not received by any other nodes and will probably not be accepted! Este bloque no ha sido recibido por otros nodos y probablemente no sea aceptado ! - Generated but not accepted Generado pero no acceptado - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Recibido con - Received from Recibido de - Sent to Enviado a - Payment to yourself Pagar a usted mismo - Mined Minado - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. Estado de transacción. Pasa el raton sobre este campo para ver el numero de confirmaciónes. - Date and time that the transaction was received. Fecha y hora cuando se recibió la transaccion - Type of transaction. Tipo de transacción. - Destination address of transaction. Dirección de destino para la transacción - Amount removed from or added to balance. Cantidad restada o añadida al balance @@ -2981,178 +2397,142 @@ Dirección: %4 TransactionView - - All Todo - Today Hoy - This week Esta semana - This month Esta mes - Last month Mes pasado - This year Este año - Range... Rango... - Received with Recibido con - Sent to Enviado a - To yourself A ti mismo - Mined Minado - Other Otra - Enter address or label to search Introduce una dirección o etiqueta para buscar - Min amount Cantidad minima - Copy address Copia dirección - Copy label Copia etiqueta - Copy amount Copiar Cantidad - Copy transaction ID - Edit label Edita etiqueta - Show transaction details Mostrar detalles de la transacción - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Archivos separados por coma (*.csv) - Confirmed Confirmado - Date Fecha - Type Tipo - Label Etiqueta - Address Dirección - Amount Cantidad - ID ID - Range: Rango: - to para @@ -3160,7 +2540,6 @@ Dirección: %4 WalletFrame - No wallet has been loaded. @@ -3168,7 +2547,6 @@ Dirección: %4 WalletModel - Send Coins Enviar monedas @@ -3176,163 +2554,134 @@ Dirección: %4 WalletView - &Export - Export the data in the current tab to a file Exportar los datos de la pestaña actual a un archivo - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: Uso: - List commands Muestra comandos - Get help for a command Recibir ayuda para un comando - Options: Opciones: - - Specify configuration file (default: dogecoin.conf) - Especifica archivo de configuración (predeterminado: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Especifica archivo de configuración (predeterminado: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Especifica archivo pid (predeterminado: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Especifica archivo pid (predeterminado: bitcoin.pid) - Specify data directory Especifica directorio para los datos - - Set database cache size in megabytes (default: 25) - Asigna el tamaño del caché de la base de datos en MB (25 predeterminado) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Escuchar por conecciones en <puerto> (Por defecto: 8333 o red de prueba: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Escuchar por conecciones en <puerto> (Por defecto: 22556 o red de prueba: 44556) - - - Maintain at most <n> connections to peers (default: 125) Mantener al menos <n> conecciones por cliente (por defecto: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) Umbral de desconección de clientes con mal comportamiento (por defecto: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands Aceptar comandos consola y JSON-RPC - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Correr como demonio y acepta comandos - Use the test network Usa la red de pruebas - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3343,723 +2692,702 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + + + 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. Precaución: -paytxfee es muy alta. Esta es la comisión que pagarás si envias una transacción. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Precaución: Por favor revise que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal configurado Dogecoin no funcionará correctamente. - 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. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: - Attempt to recover private keys from a corrupt wallet.dat - Dogecoin Core Daemon - - Dogecoin Core RPC client version - - - - Block creation options: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + Connect only to the specified node(s) Conecta solo al nodo especificado - Connect through SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: - Corrupted block database detected - + 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? - Error initializing block database - Error initializing wallet database environment %s! - Error loading block database Error cargando blkindex.dat - Error opening block database - Error: Disk space is low! Atención: Poco espacio en el disco duro - Error: Wallet locked, unable to create transaction! - Error: system error: Error: error de sistema: - Failed to listen on any port. Use -listen=0 if you want this. - Failed to read block info Falló la lectura de la información del bloque - Failed to read block Falló la lectura del bloque - Failed to sync block index Falló sincronización del índice del bloque - Failed to write block index Falló la escritura del bloque del índice - Failed to write block info Falló la escritura de la información del bloque - Failed to write block Falló la escritura del bloque - 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 Comisión por kB para adicionarla a las transacciones enviadas - + Fees smaller than this are considered zero fee (for relaying) (default: + + + Find peers using DNS lookup (default: 1 unless -connect) - + Force safe mode (default: 0) + + + Generate coins (default: 0) - How many blocks to check at startup (default: 288, 0 = all) - - How thorough the block verification is (0-4, default: 3) - - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? - Invalid -onion address: '%s' - Not enough file descriptors available. - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server + Set database cache size in megabytes (%d to %d, default: %d) - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) - Specify wallet file (within data directory) - - Start Dogecoin Core server - Iniciar Dogecoin + Spend unconfirmed change when sending transactions (default: 1) + - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): + Usage (deprecated, use bitcoin-cli): - Verifying blocks... - Verifying wallet... - Wait for RPC server to start - Wallet %s resides outside data directory %s - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex - Imports blocks from external blk000??.dat file Importar bloques desde el archivo externo blk000??.dat - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Information Información - Invalid amount for -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - Only accept block chain matching built-in checkpoints (default: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) - + Send command to Dogecoin Core + + + Send trace/debug info to console instead of debug.log file Enviar informacion de seguimiento a la consola en vez del archivo debug.log - Set minimum block size in bytes (default: 0) Establezca el tamaño mínimo del bloque en bytes (por defecto: 0) - + 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 transaction failed - Specify connection timeout in milliseconds (default: 5000) Especifica tiempo de espera para conexion en milisegundos (predeterminado: 5000) - + Start Dogecoin Core Daemon + + + System error: Error de sistema: - Transaction amount too small - Transaction amounts must be positive - Transaction too large - Use UPnP to map the listening port (default: 0) Intenta usar UPnP para mapear el puerto de escucha (default: 0) - Use UPnP to map the listening port (default: 1 when listening) Intenta usar UPnP para mapear el puerto de escucha (default: 1 when listening) - Username for JSON-RPC connections Usuario para las conexiones JSON-RPC - Warning Atención - Warning: This version is obsolete, upgrade required! Advertencia: Esta versión está obsoleta, se necesita actualizar! - + Zapping all transactions from wallet... + + + + on startup + + + version versión - wallet.dat corrupt, salvage failed wallet.dat corrompió, guardado fallido - Password for JSON-RPC connections Contraseña para las conexiones JSON-RPC - Allow JSON-RPC connections from specified IP address Permite conexiones JSON-RPC desde la dirección IP especificada - Send commands to node running on <ip> (default: 127.0.0.1) Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) - Upgrade wallet to latest format Actualizar billetera al formato actual - Set key pool size to <n> (default: 100) Ajusta el numero de claves en reserva <n> (predeterminado: 100) - Rescan the block chain for missing wallet transactions Rescanea la cadena de bloques para transacciones perdidas de la cartera - Use OpenSSL (https) for JSON-RPC connections Usa OpenSSL (https) para las conexiones JSON-RPC - 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) - This help message Este mensaje de ayuda - Unable to bind to %s on this computer (bind returned error %d, %s) No es posible escuchar en el %s en este ordenador (bind returned error %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Permite búsqueda DNS para addnode y connect - Loading addresses... Cargando direcciónes... - Error loading wallet.dat: Wallet corrupted Error cargando wallet.dat: Billetera corrupta - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Error cargando wallet.dat: Billetera necesita una vercion reciente de Dogecoin - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete La billetera necesita ser reescrita: reinicie Dogecoin para completar - Error loading wallet.dat Error cargando wallet.dat - Invalid -proxy address: '%s' Dirección -proxy invalida: '%s' - Unknown network specified in -onlynet: '%s' - Unknown -socks proxy version requested: %i - Cannot resolve -bind address: '%s' - Cannot resolve -externalip address: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Cantidad inválida para -paytxfee=<amount>: '%s' - Invalid amount Cantidad inválida - Insufficient funds Fondos insuficientes - Loading block index... Cargando el index de bloques... - Add a node to connect to and attempt to keep the connection open Agrega un nodo para conectarse and attempt to keep the connection open - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - No es posible escuchar en el %s en este ordenador. Probablemente Dogecoin ya se está ejecutando. - - - Loading wallet... Cargando cartera... - Cannot downgrade wallet - Cannot write default address - Rescanning... Rescaneando... - Done loading Carga completa - To use the %s option Para utilizar la opción %s - Error Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_es_DO.ts b/src/qt/locale/bitcoin_es_DO.ts index 130e099f5..f92751fd6 100644 --- a/src/qt/locale/bitcoin_es_DO.ts +++ b/src/qt/locale/bitcoin_es_DO.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core Acerca del Núcleo de Dogecoin - <b>Dogecoin Core</b> version Versión del <b>Núcleo de Dogecoin<b> - This is experimental software. @@ -30,135 +27,113 @@ el OpenSSL Toolkit (http://www.openssl.org/) y software criptográfico escrito p Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard. - Copyright Copyright - The Dogecoin Core developers Los desarrolladores del Núcleo de Dogecoin + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Haga doble clic para editar una dirección o etiqueta - Create a new address Crear una nueva dirección - &New Nuevo - Copy the currently selected address to the system clipboard Copiar la dirección seleccionada al portapapeles del sistema - &Copy &Copiar - C&lose &Cerrar - &Copy Address &Copiar dirección - Delete the currently selected address from the list Borrar de la lista la dirección seleccionada - Export the data in the current tab to a file Exportar a un archivo los datos de esta pestaña - &Export &Exportar - &Delete &Eliminar - Choose the address to send coins to Escoja la dirección para enviar monedas - Choose the address to receive coins with Escoja la dirección para recibir monedas - C&hoose &Escoger - Very sending addresses Enviando dirección - Much receiving addresses Recibiendo dirección - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Estas son sus direcciones Dogecoin para enviar pagos. Compruebe siempre la cantidad y la dirección receptora antes de transferir monedas. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Estas son sus direcciones de Dogecoin para recibir pagos. Se recomienda utilizar una nueva dirección de recepción para cada transacción. - Copy &Label Copiar &etiqueta - &Edit &Editar - Export Address List Exportar la lista de direcciones - Comma separated file (*.csv) Archivos de columnas separadas por coma (*.csv) - Exporting Failed Error exportando - There was an error trying to save the address list to %1. @@ -166,17 +141,14 @@ Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard.
AddressTableModel - Label Etiqueta - Address Dirección - (no label) (sin etiqueta) @@ -184,140 +156,106 @@ Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard.
AskPassphraseDialog - Passphrase Dialog Diálogo de contraseña - Enter passphrase Introducir contraseña - New passphrase Nueva contraseña - Repeat new passphrase Repita la nueva contraseña - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Introduzca la nueva contraseña de la cartera.<br/>Por favor elija una con <b>10 o más caracteres aleatorios</b>, u <b>ocho o más palabras</b>. - Encrypt wallet Cifrar la cartera - This operation needs your wallet passphrase to unlock the wallet. Esta operación requiere su contraseña para desbloquear la cartera - Unlock wallet Desbloquear cartera - This operation needs your wallet passphrase to decrypt the wallet. Esta operación requiere su contraseña para descifrar la cartera. - Decrypt wallet Descifrar la certare - Change passphrase Cambiar contraseña - Enter the old and new passphrase to the wallet. Introduzca la contraseña anterior de la cartera y la nueva. - Confirm wallet encryption Confirmar cifrado de la cartera - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Atencion: ¡Si cifra su monedero y pierde la contraseña perderá <b>TODOS SUS DOGECOINS</b>!" + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Atencion: ¡Si cifra su monedero y pierde la contraseña perderá <b>TODOS SUS DogecoinS</b>!" - Are you sure you wish to encrypt your wallet? ¿Seguro que desea cifrar su monedero? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANTE: Cualquier copia de seguridad que haya realizado previamente de su archivo de monedero debe reemplazarse con el nuevo archivo de monedero cifrado. Por razones de seguridad, las copias de seguridad previas del archivo de monedero no cifradas serán inservibles en cuanto comience a usar el nuevo monedero cifrado. - - Warning: The Caps Lock key is on! Aviso: ¡La tecla de bloqueo de mayúsculas está activada! - - Wallet encrypted Monedero cifrado - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin se cerrará para finalizar el proceso de cifrado. Recuerde que el cifrado de su monedero no puede proteger totalmente sus dogecoins de robo por malware que infecte su sistema. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin se cerrará para finalizar el proceso de cifrado. Recuerde que el cifrado de su monedero no puede proteger totalmente sus bitcoins de robo por malware que infecte su sistema. - - - - Wallet encryption failed Ha fallado el cifrado del monedero - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Ha fallado el cifrado del monedero debido a un error interno. El monedero no ha sido cifrado. - - The supplied passphrases do not match. Las contraseñas no coinciden. - Wallet unlock failed Ha fallado el desbloqueo del monedero - - - The passphrase entered for the wallet decryption was incorrect. La contraseña introducida para descifrar el monedero es incorrecta. - Wallet decryption failed Ha fallado el descifrado del monedero - Wallet passphrase was successfully changed. Se ha cambiado correctamente la contraseña del monedero. @@ -325,352 +263,286 @@ Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard.
BitcoinGUI - Sign &message... Firmar &mensaje... - Synchronizing with network... Sincronizando con la red… - &Overview &Vista general - Node Nodo - Show general overview of wallet Mostrar vista general del monedero - &Transactions &Transacciones - Browse transaction history Examinar el historial de transacciones - E&xit &Salir - Quit application Salir de la aplicación - - Show information about Dogecoin Core + Show information about Dogecoin Mostrar información acerca de Dogecoin - - About &Qt Acerca de &Qt - Show information about Qt Mostrar información acerca de Qt - &Options... &Opciones... - &Encrypt Wallet... &Cifrar monedero… - &Backup Wallet... Copia de &respaldo del monedero... - &Change Passphrase... &Cambiar la contraseña… - Very &sending addresses... $Enviando dirección... - Much &receiving addresses... &Recibiendo dirección - Open &URI... Abrir URI... - Importing blocks from disk... Importando bloques de disco... - Reindexing blocks on disk... Reindexando bloques en disco... - Send coins to a Dogecoin address Enviar monedas a una dirección Dogecoin - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Modificar las opciones de configuración de Dogecoin - Backup wallet to another location Copia de seguridad del monedero en otra ubicación - Change the passphrase used for wallet encryption Cambiar la contraseña utilizada para el cifrado del monedero - &Debug window Ventana de &depuración - Open debugging and diagnostic console Abrir la consola de depuración y diagnóstico - &Verify message... &Verificar mensaje... - Dogecoin Dogecoin - Wallet Monedero - &Send &Enviar - &Receive &Recibir - - &Show / Hide Mo&strar/ocultar - Show or hide the main Window Mostrar u ocultar la ventana principal - Encrypt the private keys that belong to your wallet Cifrar las claves privadas de su monedero - Sign messages with your Dogecoin addresses to prove you own them Firmar mensajes con sus direcciones Dogecoin para demostrar la propiedad - Verify messages to ensure they were signed with specified Dogecoin addresses Verificar mensajes comprobando que están firmados con direcciones Dogecoin concretas - &File &Archivo - &Settings &Configuración - &Help A&yuda - Tabs toolbar Barra de pestañas - - [testnet] [testnet] - Dogecoin Core Núcleo de Dogecoin - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) Solicitar pagos (genera codigo QR y URL's de Dogecoin) - - &About Dogecoin Core &Acerca del Núcleo de Dogecoin - Show the list of used sending addresses and labels Mostrar la lista de direcciones de envío y etiquetas - Show the list of used receiving addresses and labels Muestra la lista de direcciones de recepción y etiquetas - - Open a dogecoin: URI or payment request - Abrir un dogecoin: URI o petición de pago + Open a bitcoin: URI or payment request + Abrir un bitcoin: URI o petición de pago - &Command-line options + &Opciones de linea de comando + + + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options - - - - - Dogecoin client Cliente Dogecoin - %n active connection(s) to Dogecoin network %n conexión activa hacia la red Dogecoin%n conexiones activas hacia la red Dogecoin - No block source available... Ninguna fuente de bloques disponible ... - Processed %1 of %2 (estimated) blocks of transaction history. Se han procesado %1 de %2 bloques (estimados) del historial de transacciones. - Processed %1 blocks of transaction history. Procesados %1 bloques del historial de transacciones. - %n hour(s) %n hora%n horas - %n day(s) %n día%n días - %n week(s) %n semana%n semanas - + %1 and %2 + + + + %n year(s) + + + %1 behind %1 atrás - 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. - Error Error - Warning Aviso - Information Información - Up to date Actualizado - Catching up... Actualizando... - Sent transaction Transacción enviada - Incoming transaction Transacción entrante - Date: %1 Amount: %2 Type: %3 @@ -683,25 +555,21 @@ 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>locked</b> El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Ha ocurrido un error crítico. Dogecoin ya no puede continuar con seguridad y se cerrará. ClientModel - Network Alert Alerta de red @@ -709,291 +577,230 @@ Dirección: %4 CoinControlDialog - Coin Control Address Selection Selección de la dirección de control de la moneda - Quantity: Cantidad: - Bytes: Bytes: - Amount: Cuantía: - Priority: Prioridad: - Fee: Tasa: - Low Output: Envío pequeño: - After Fee: Después de tasas: - Change: Cambio: - (un)select all (des)selecciona todos - Tree mode Modo arbol - List mode Modo lista - Amount Cantidad - Address Dirección - Date Fecha - Confirmations Confirmaciones - Confirmed Confirmado - Priority Prioridad - Copy address Copiar dirección - Copy label Copiar etiqueta - - Copy amount Copiar cantidad - Copy transaction ID Copiar identificador de transacción - Lock unspent Bloquear lo no gastado - Unlock unspent Desbloquear lo no gastado - Copy quantity Copiar cantidad - Copy fee Copiar donación - Copy after fee Copiar después de aplicar donación - Copy bytes Copiar bytes - Copy priority Copiar prioridad - Copy low output Copiar envío pequeño - Copy change Copiar cambio - highest lo más alto - higher más alto - high alto - medium-high medio-alto - medium medio - low-medium bajo-medio - low bajo - lower más bajo - lowest lo más bajo - (%1 locked) (%1 bloqueado) - none - + ninguno - Dust Basura - yes si - no no - This label turns red, if the transaction size is greater than 1000 bytes. Esta etiqueta se torna roja si el tamaño de la transación es mayor a 1000 bytes. - - This means a fee of at least %1 per kB is required. Esto implica que se requiere una tarifa de al menos %1 por kB - Can vary +/- 1 byte per input. Puede variar +/- 1 byte por entrada. - Transactions with higher priority are more likely to get included into a block. Las transacciones con alta prioridad son más propensas a ser incluidas dentro de un bloque. - This label turns red, if the priority is smaller than "medium". - + Esta etiqueta se convierte en rojo, si la prioridad es menor que "medio". - This label turns red, if any recipient receives an amount smaller than %1. Esta etiqueta se torna roja si cualquier destinatario recibe una cantidad menor a %1. - - This means a fee of at least %1 is required. Esto significa que se necesita una tarifa de al menos %1. - Amounts below 0.546 times the minimum relay fee are shown as dust. Cantidades por debajo de 0.546 veces la tasa serán mostradas como basura - This label turns red, if the change is smaller than %1. Esta etiqueta se vuelve roja si la cantidad de monedas es menor a %1 - - (no label) (sin etiqueta) - change from %1 (%2) Enviar desde %1 (%2) - (change) (cambio) @@ -1001,67 +808,54 @@ Dirección: %4 EditAddressDialog - Edit Address Editar Dirección - &Label &Etiqueta - The label associated with this address list entry La etiqueta asociada con esta entrada de la lista de direcciones - The address associated with this address list entry. This can only be modified for sending addresses. La dirección asociada con esta entrada de la lista de direcciones. Solo puede ser modificada para direcciones de envío. - &Address &Dirección - New receiving address Nueva dirección de recepción - New sending address Nueva dirección de envío - Edit receiving address Editar dirección de recepción - Edit sending address Editar dirección de envío - The entered address "%1" is already in the address book. La dirección introducida "%1" ya está presente en la libreta de direcciones. - The entered address "%1" is not a valid Dogecoin address. La dirección introducida "%1" no es una dirección Dogecoin válida. - Could not unlock wallet. No se pudo desbloquear el monedero. - New key generation failed. Ha fallado la generación de la nueva clave. @@ -1069,27 +863,22 @@ Dirección: %4 FreespaceChecker - A new data directory will be created. Se creará un nuevo directorio de datos. - name nombre - Directory already exists. Add %1 if you intend to create a new directory here. El directorio ya existe. Añada %1 si pretende crear aquí un directorio nuevo. - Path already exists, and is not a directory. La ruta ya existe y no es un directorio. - Cannot create data directory here. No se puede crear un directorio de datos aquí. @@ -1097,52 +886,46 @@ Dirección: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Núcleo de Dogecoin - version versión - Usage: Uso: - command-line options opciones de la línea de órdenes - UI options Opciones GUI - Set language, for example "de_DE" (default: system locale) Establecer el idioma, por ejemplo, "es_ES" (predeterminado: configuración regional del sistema) - Start minimized Arrancar minimizado - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Mostrar pantalla de bienvenida en el inicio (predeterminado: 1) - Choose data directory on startup (default: 0) Elegir directorio de datos al iniciar (predeterminado: 0) @@ -1150,57 +933,46 @@ Dirección: %4 Intro - Welcome Bienvenido - Welcome to Dogecoin Core. Bienvenido al Núcleo de Dogecoin - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. Al ser la primera vez que se ejecuta el programa, puede elegir dónde almacenará sus datos Dogecoin-Qt. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. Dogecoin-Qt va a descargar y guardar una copia de la cadena de bloques de Dogecoin. Se almacenará al menos %1GB de datos en este directorio, que irá creciendo con el tiempo. El monedero se guardará también en este directorio. - Use the default data directory Utilizar el directorio de datos predeterminado - Use a custom data directory: Utilice un directorio de datos personalizado: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. Error: No puede crearse el directorio de datos especificado "%1". - Error Error - GB of free space available GB de espacio libre disponible - (of %1GB needed) (de los %1GB necesarios) @@ -1208,27 +980,22 @@ Dirección: %4 OpenURIDialog - Open URI Abrir URI... - Open payment request from URI or file El pago requiere una URI o archivo - URI: URI: - Select payment request file Seleccione archivo de sulicitud de pago - Select payment request file to open Abrir archivo de solicitud de pago @@ -1236,243 +1003,206 @@ Dirección: %4 OptionsDialog - Options Opciones - &Main &Principal - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Tarifa de transacción opcional por kB que ayuda a asegurar que sus transacciones sean procesadas rápidamente. La mayoría de transacciones son de 1kB. - Pay transaction &fee Comisión de &transacciones - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Iniciar Dogecoin automáticamente al encender el sistema. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Iniciar Dogecoin al iniciar el sistema - Size of &database cache - - Set database cache size in megabytes (default: 25) - Establecer el tamaño de caché de la base de datos en megabytes (predeterminado: 25) - - - MB - + MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Configura el número de hilos para el script de verificación (hasta 16, 0 = auto, <0 = leave that many cores free, por fecto: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - + Conéctese a la red Dogecoin través de un proxy SOCKS. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - + Dirección IP del proxy (ej. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. Restablecer todas las opciones del cliente a las predeterminadas. - &Reset Options &Restablecer opciones - &Network &Red - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + Experto + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Abrir automáticamente el puerto del cliente Dogecoin en el router. Esta opción solo funciona si el router admite UPnP y está activado. - Map port using &UPnP Mapear el puerto usando &UPnP - Proxy &IP: Dirección &IP del proxy: - &Port: &Puerto: - Port of the proxy (e.g. 9050) Puerto del servidor proxy (ej. 9050) - SOCKS &Version: &Versión SOCKS: - SOCKS version of the proxy (e.g. 5) Versión del proxy SOCKS (ej. 5) - &Window &Ventana - Show only a tray icon after minimizing the window. Minimizar la ventana a la bandeja de iconos del sistema. - &Minimize to the tray instead of the taskbar &Minimizar a la bandeja en vez de a la barra de tareas - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimizar en lugar de salir de la aplicación al cerrar la ventana. Cuando esta opción está activa, la aplicación solo se puede cerrar seleccionando Salir desde el menú. - M&inimize on close M&inimizar al cerrar - &Display &Interfaz - User Interface &language: I&dioma de la interfaz de usuario - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. El idioma de la interfaz de usuario puede establecerse aquí. Este ajuste se aplicará cuando se reinicie Dogecoin. - &Unit to show amounts in: Mostrar las cantidades en la &unidad: - Choose the default subdivision unit to show in the interface and when sending coins. Elegir la subdivisión predeterminada para mostrar cantidades en la interfaz y cuando se envían monedas. - Whether to show Dogecoin addresses in the transaction list or not. Mostrar o no las direcciones Dogecoin en la lista de transacciones. - &Display addresses in transaction list &Mostrar las direcciones en la lista de transacciones - Whether to show coin control features or not. Mostrar o no características de control de moneda - - Display coin &control features (experts only) - Mostrar moneda y características de control (Avanzado) - - - &OK &Aceptar - &Cancel &Cancelar - default predeterminado - none - + Ninguna - Confirm options reset Confirme el restablecimiento de las opciones - - Client restart required to activate changes. - + Reinicio del cliente para activar cambios. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - + Este cambio requiere reinicio por parte del cliente. - The supplied proxy address is invalid. La dirección proxy indicada es inválida. @@ -1480,69 +1210,54 @@ Dirección: %4 OverviewPage - Form Desde - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red Dogecoin después de que se haya establecido una conexión, pero este proceso aún no se ha completado. - - Unconfirmed: - No confirmado(s): - - - Wallet Monedero - - Confirmed: - Confirmado: + Available: + - Your current spendable balance Su balance actual gastable - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Total de transacciones que deben ser confirmadas, y que no cuentan con el balance gastable necesario - Immature: No disponible: - Mined balance that has not yet matured Saldo recién minado que aún no está disponible. - Total: Total: - Your current total balance Su balance actual total - <b>Recent transactions</b> <b>Movimientos recientes</b> - - out of sync desincronizado @@ -1550,93 +1265,70 @@ Dirección: %4 PaymentServer - - URI handling Gestión de URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. ¡No se puede interpretar la URI! Esto puede deberse a una dirección Dogecoin inválida o a parámetros de URI mal formados. - Requested payment amount of %1 is too small (considered dust). La cantidad del pago solicitado (%1) es demasiado pequeña (considerada polvo). - - - - - - Payment request error Error en petición de pago - - Cannot start dogecoin: click-to-pay handler - No se pudo iniciar dogecoin: manejador de pago-al-clic + Cannot start bitcoin: click-to-pay handler + No se pudo iniciar bitcoin: manejador de pago-al-clic - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. No están soportadas las peticiones inseguras a scripts de pago personalizados - Refund from %1 Devolución de %1 - Error communicating with %1: %2 Error en la comunicación con %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 Respuesta errónea del servidor %1 - Payment acknowledged Pago aceptado - Network request error Error en petición de red @@ -1644,23 +1336,26 @@ Dirección: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Error: El directorio de datos especificado "%1" no existe. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. Error: Combinación no válida de -regtest y -testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Introduzca una dirección Dogecoin (ej. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1668,22 +1363,18 @@ Dirección: %4 QRImageWidget - &Save Image... Guardar Imagen... - &Copy Image Copiar imagen - Save QR Code Guardar código QR - PNG Image (*.png) Imágenes PNG (*.png) @@ -1691,192 +1382,146 @@ Dirección: %4 RPCConsole - Client name Nombre del cliente - - - - - - - - - - - N/A N/D - Client version Versión del cliente - &Information &Información - Debug window Ventana de depuración - General - + General - Using OpenSSL version Utilizando la versión OpenSSL - Startup time Hora de inicio - Network Red - Name - + Nombre - Number of connections Número de conexiones - Block chain Cadena de bloques - Current number of blocks Número actual de bloques - Estimated total blocks Bloques totales estimados - Last block time Hora del último bloque - &Open &Abrir - &Console &Consola - &Network Traffic &Tráfico de Red - &Clear &Limpiar - Totals Total: - In: Dentro: - Out: Fuera: - Build date Fecha de compilación - Debug log file Archivo de registro de depuración - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Abrir el archivo de registro de depuración en el directorio actual de datos. Esto puede llevar varios segundos para archivos de registro grandes. - Clear console Borrar consola - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Bienvenido a la consola RPC de Dogecoin - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Use las flechas arriba y abajo para navegar por el historial y <b>Control+L</b> para limpiar la pantalla. - Type <b>help</b> for an overview of available commands. Escriba <b>help</b> para ver un resumen de los comandos disponibles. - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 m - %1 h %1 h - %1 h %2 m %1 h %2 m @@ -1884,105 +1529,82 @@ Dirección: %4 ReceiveCoinsDialog - &Amount: Cantidad - &Label: &Etiqueta: - &Message: Mensaje: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. Reutilizar una de las direcciones previamente usadas para recibir. Reutilizar direcciones tiene problemas de seguridad y privacidad. No lo uses a menos que antes regeneres una solicitud de pago. - R&euse an existing receiving address (not recommended) R&eutilizar una dirección existente para recibir (no recomendado) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - - An optional label to associate with the new receiving address. - Use this form to request payments. All fields are <b>optional</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. Limpiar todos los campos del formulario. - Clear Limpiar - Requested payments history - &Request payment &Solicitar pago - Show the selected request (does the same as double clicking an entry) Muestra la petición seleccionada (También doble clic) - Show Mostrar - Remove the selected entries from the list Borrar de la lista las direcciónes actualmente seleccionadas - Remove Eliminar - Copy label Copiar etiqueta - Copy message - Copy amount Copiar cantidad @@ -1990,67 +1612,54 @@ Dirección: %4 ReceiveRequestDialog - QR Code Código QR - Copy &URI Copiar &URI - Copy &Address Copiar &Dirección - &Save Image... Guardar Imagen... - Request payment to %1 Solicitar pago a %1 - Payment information Información de pago - URI URI - Address Dirección - Amount Cantidad - Label Etiqueta - Message Mensaje - Resulting URI too long, try to reduce the text for label / message. URI resultante demasiado larga. Intente reducir el texto de la etiqueta / mensaje. - Error encoding URI into QR Code. Error al codificar la URI en el código QR. @@ -2058,37 +1667,30 @@ Dirección: %4 RecentRequestsTableModel - Date Fecha - Label Etiqueta - Message Mensaje - Amount Cantidad - (no label) (sin etiqueta) - (no message) (Ningun mensaje) - (no amount) @@ -2096,247 +1698,194 @@ Dirección: %4 SendCoinsDialog - - - Send Coins Enviar monedas - Coin Control Features Características de control de la moneda - Inputs... Entradas... - automatically selected Seleccionado automaticamente - Insufficient funds! Fondos insuficientes! - Quantity: Cantidad: - Bytes: Bytes: - Amount: Cuantía: - Priority: Prioridad: - Fee: Tasa: - Low Output: Envío pequeño: - After Fee: Después de tasas: - Change: Cambio: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Al activarse, si la dirección esta vacía o es inválida, las monedas serán enviadas a una nueva dirección generada. - Custom change address Dirección propia - Send to multiple recipients at once Enviar a múltiples destinatarios de una vez - Add &Recipient Añadir &destinatario - Clear all fields of the form. Limpiar todos los campos del formulario - Clear &All Limpiar &todo - Balance: Saldo: - Confirm the send action Confirmar el envío - S&end &Enviar - Confirm send coins Confirmar el envío de monedas - - - - %1 to %2 %1 a %2 - Copy quantity Copiar cantidad - Copy amount Copiar cuantía - Copy fee Copiar donación - Copy after fee Copiar después de aplicar donación - Copy bytes Copiar bytes - Copy priority Copiar prioridad - Copy low output Copiar envío pequeño - Copy change Copiar Cambio - Total Amount %1 (= %2) Cuantía Total %1 (=%2) - or o - The recipient address is not valid, please recheck. La dirección de recepción no es válida, compruébela de nuevo. - The amount to pay must be larger than 0. La cantidad por pagar tiene que ser mayor de 0. - The amount exceeds your balance. La cantidad sobrepasa su saldo. - The total exceeds your balance when the %1 transaction fee is included. El total sobrepasa su saldo cuando se incluye la tasa de envío de %1 - Duplicate address found, can only send to each address once per send operation. Se ha encontrado una dirección duplicada. Solo se puede enviar a cada dirección una vez por operación de envío. - Transaction creation failed! ¡Ha fallado la creación de la transacción! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. La transacción fue rechazada. Esto puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado como gastadas aqui. - Warning: Invalid Dogecoin address Alerta: Dirección de Dogecoin inválida - (no label) (sin etiqueta) - Warning: Unknown change address Alerta: Dirección de Dogecoin inválida - Are you sure you want to send? ¿Está seguro que desea enviar? - added as transaction fee añadido como comisión de transacción - Payment request expired Petición de pago expirada - Invalid payment address %1 Dirección de pago no válida %1 @@ -2344,98 +1893,74 @@ Dirección: %4 SendCoinsEntry - - - A&mount: Ca&ntidad: - Pay &To: &Pagar a: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) La dirección a la que enviar el pago (p. ej. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Etiquete esta dirección para añadirla a la libreta - &Label: &Etiqueta: - Choose previously used address Escoger direcciones previamente usadas - This is a normal payment. Esto es un pago ordinario. - Alt+A Alt+A - Paste address from clipboard Pegar dirección desde portapapeles - Alt+P Alt+P - - - Remove this entry Eliminar esta transacción - Message: - This is a verified payment request. Esto es una petición de pago verificado. - Enter a label for this address to add it to the list of used addresses Introduce una etiqueta para esta dirección para añadirla a la lista de direcciones utilizadas - - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. Esto es una petición de pago no verificado. - - Pay To: Paga a: - - Memo: Memo: @@ -2443,12 +1968,10 @@ Dirección: %4 ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2456,186 +1979,142 @@ Dirección: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Firmas - Firmar / verificar un mensaje - &Sign Message &Firmar mensaje - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Puede firmar mensajes con sus direcciones para demostrar que las posee. Tenga cuidado de no firmar cualquier cosa vaga, ya que los ataques de phishing pueden tratar de engañarle para suplantar su identidad. Firme solo declaraciones totalmente detalladas con las que usted esté de acuerdo. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) La dirección con la que firmar el mensaje (ej. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Escoger dirección previamente usada - - Alt+A Alt+A - Paste address from clipboard Pegar dirección desde portapapeles - Alt+P Alt+P - Enter the message you want to sign here Introduzca el mensaje que desea firmar aquí - Signature Firma - Copy the current signature to the system clipboard Copiar la firma actual al portapapeles del sistema - Sign the message to prove you own this Dogecoin address Firmar el mensaje para demostrar que se posee esta dirección Dogecoin - Sign &Message Firmar &mensaje - Reset all sign message fields Limpiar todos los campos de la firma de mensaje - - Clear &All Limpiar &todo - &Verify Message &Verificar mensaje - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Introduzca la dirección para la firma, el mensaje (asegurándose de copiar tal cual los saltos de línea, espacios, tabulaciones, etc.) y la firma a continuación para verificar el mensaje. Tenga cuidado de no asumir más información de lo que dice el propio mensaje firmado para evitar fraudes basados en ataques de tipo man-in-the-middle. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) La dirección con la que se firmó el mensaje (ej. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Verificar el mensaje para comprobar que fue firmado con la dirección Dogecoin indicada - Verify &Message Verificar &mensaje - Reset all verify message fields Limpiar todos los campos de la verificación de mensaje - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Introduzca una dirección Dogecoin (ej. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Haga clic en "Firmar mensaje" para generar la firma - - The entered address is invalid. La dirección introducida es inválida. - - - - Please check the address and try again. Verifique la dirección e inténtelo de nuevo. - - The entered address does not refer to a key. La dirección introducida no corresponde a una clave. - Wallet unlock was cancelled. Se ha cancelado el desbloqueo del monedero. - Private key for the entered address is not available. No se dispone de la clave privada para la dirección introducida. - Message signing failed. Ha fallado la firma del mensaje. - Message signed. Mensaje firmado. - The signature could not be decoded. No se puede decodificar la firma. - - Please check the signature and try again. Compruebe la firma e inténtelo de nuevo. - The signature did not match the message digest. La firma no coincide con el resumen del mensaje. - Message verification failed. La verificación del mensaje ha fallado. - Message verified. Mensaje verificado. @@ -2643,17 +2122,14 @@ Dirección: %4 SplashScreen - Dogecoin Core Núcleo de Dogecoin - The Dogecoin Core developers Los desarrolladores del Núcleo de Dogecoin - [testnet] [testnet] @@ -2661,7 +2137,6 @@ Dirección: %4 TrafficGraphWidget - KB/s KB/s @@ -2669,179 +2144,138 @@ Dirección: %4 TransactionDesc - Open until %1 Abierto hasta %1 - + conflicted + + + %1/offline %1/fuera de línea - %1/unconfirmed %1/no confirmado - %1 confirmations %1 confirmaciones - Status Estado - , broadcast through %n node(s) , transmitir a través de %n nodo, transmitir a través de %n nodos - Date Fecha - Source Fuente - Generated Generado - - From De - - - To Para - - own address dirección propia - label etiqueta - - - - - Credit Crédito - matures in %n more block(s) disponible en %n bloque másdisponible en %n bloques más - not accepted no aceptada - - - - Debit Débito - Transaction fee Comisión de transacción - Net amount Cantidad neta - - Message Mensaje - Comment Comentario - Transaction ID Identificador de transacción - Merchant Vendedor - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Las monedas generadas deben madurar %1 bloques antes de que puedan ser gastadas. Una vez que generas este bloque, es propagado por la red para ser añadido a la cadena de bloques. Si falla el intento de meterse en la cadena, su estado cambiará a "no aceptado" y ya no se puede gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque a pocos segundos del tuyo. - Debug information Información de depuración - Transaction Transacción - Inputs entradas - Amount Cantidad - true verdadero - false falso - , has not been successfully broadcast yet , todavía no se ha sido difundido satisfactoriamente - Open for %n more block(s) Abrir para %n bloque másAbrir para %n bloques más - unknown desconocido @@ -2849,12 +2283,10 @@ Dirección: %4 TransactionDescDialog - Transaction details Detalles de transacción - This pane shows a detailed description of the transaction Esta ventana muestra información detallada sobre la transacción @@ -2862,118 +2294,102 @@ Dirección: %4 TransactionTableModel - Date Fecha - Type Tipo - Address Dirección - Amount Cantidad - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) Abrir para %n bloque másAbrir para %n bloques más - Open until %1 Abierto hasta %1 - - Offline (%1 confirmations) - Fuera de línea (%1 confirmaciones) - - - - Unconfirmed (%1 of %2 confirmations) - No confirmado (%1 de %2 confirmaciones) - - - - Confirmed (%1 confirmations) Confirmado (%1 confirmaciones) - This block was not received by any other nodes and will probably not be accepted! Este bloque no ha sido recibido por otros nodos y probablemente no sea aceptado! - Generated but not accepted Generado pero no aceptado - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Recibido con - Received from Recibidos de - Sent to Enviado a - Payment to yourself Pago propio - Mined Minado - (n/a) (nd) - Transaction status. Hover over this field to show number of confirmations. Estado de transacción. Pasa el ratón sobre este campo para ver el número de confirmaciones. - Date and time that the transaction was received. Fecha y hora en que se recibió la transacción. - Type of transaction. Tipo de transacción. - Destination address of transaction. Dirección de destino de la transacción. - Amount removed from or added to balance. Cantidad retirada o añadida al saldo. @@ -2981,178 +2397,142 @@ Dirección: %4 TransactionView - - All Todo - Today Hoy - This week Esta semana - This month Este mes - Last month Mes pasado - This year Este año - Range... Rango... - Received with Recibido con - Sent to Enviado a - To yourself A usted mismo - Mined Minado - Other Otra - Enter address or label to search Introduzca una dirección o etiqueta que buscar - Min amount Cantidad mínima - Copy address Copiar dirección - Copy label Copiar etiqueta - Copy amount Copiar cuantía - Copy transaction ID Copiar identificador de transacción - Edit label Editar etiqueta - Show transaction details Mostrar detalles de la transacción - Export Transaction History Exportar historial de transacciones - Exporting Failed Error exportando - There was an error trying to save the transaction history to %1. Ha habido un error al intentar guardar la transacción con %1. - Exporting Successful Exportación finalizada - The transaction history was successfully saved to %1. La transacción ha sido guardada en %1. - Comma separated file (*.csv) Archivos de columnas separadas por coma (*.csv) - Confirmed Confirmado - Date Fecha - Type Tipo - Label Etiqueta - Address Dirección - Amount Cantidad - ID ID - Range: Rango: - to para @@ -3160,7 +2540,6 @@ Dirección: %4 WalletFrame - No wallet has been loaded. No se ha cargado ningún monedero @@ -3168,7 +2547,6 @@ Dirección: %4 WalletModel - Send Coins Enviar monedas @@ -3176,162 +2554,133 @@ Dirección: %4 WalletView - &Export &Exportar - Export the data in the current tab to a file Exportar a un archivo los datos de esta pestaña - Backup Wallet Respaldo de monedero - Wallet Data (*.dat) Datos de monedero (*.dat) - Backup Failed Ha fallado el respaldo - There was an error trying to save the wallet data to %1. Ha habido un error al intentar guardar los datos del monedero en %1. - The wallet data was successfully saved to %1. Los datos del monedero se han guardado con éxito en %1. - Backup Successful Se ha completado con éxito la copia de respaldo - dogecoin-core + bitcoin-core - Usage: Uso: - List commands Muestra comandos - Get help for a command Recibir ayuda para un comando - Options: Opciones: - - Specify configuration file (default: dogecoin.conf) - Especificar archivo de configuración (predeterminado: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Especificar archivo de configuración (predeterminado: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Especificar archivo pid (predeterminado: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Especificar archivo pid (predeterminado: bitcoin.pid) - Specify data directory Especificar directorio para los datos - - Set database cache size in megabytes (default: 25) - Establecer el tamaño de caché de la base de datos en megabytes (predeterminado: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Escuchar conexiones en <puerto> (predeterminado: 8333 o testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Escuchar conexiones en <puerto> (predeterminado: 22556 o testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Mantener como máximo <n> conexiones a pares (predeterminado: 125) - Connect to a node to retrieve peer addresses, and disconnect Conectar a un nodo para obtener direcciones de pares y desconectar - Specify your own public address Especifique su propia dirección pública - Threshold for disconnecting misbehaving peers (default: 100) Umbral para la desconexión de pares con mal comportamiento (predeterminado: 100) - 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) - 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 - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Escuchar conexiones JSON-RPC en <puerto> (predeterminado: 22555 o testnet:44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Escuchar conexiones JSON-RPC en <puerto> (predeterminado: 8332 o testnet:18332) - Accept command line and JSON-RPC commands Aceptar comandos consola y JSON-RPC - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Ejecutar en segundo plano como daemon y aceptar comandos - Use the test network Usar la red de pruebas - Accept connections from outside (default: 1 if no -proxy or -connect) Aceptar conexiones desde el exterior (predeterminado: 1 si no -proxy o -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3342,7 +2691,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, debe establecer un valor rpcpassword en el archivo de configuración: %s Se recomienda utilizar la siguiente contraseña aleatoria: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (no es necesario recordar esta contraseña) El nombre de usuario y la contraseña DEBEN NO ser iguales. @@ -3352,716 +2701,695 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Cifradores aceptables (por defecto: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - 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. Dogecoin Core is probably already running. - No se puede bloquear el directorio de datos %s. Probablemente Dogecoin ya se está ejecutando. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + - 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. - + Error: Listening for incoming connections failed (listen returned error %d) + + + 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 algunas de las monedas del monedero, como ocurriría si hubiera hecho una copia de wallet.dat y se hubieran gastado monedas a partir de la copia, con lo que no se habrían marcado aquí como gastadas. - 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 monto, complejidad, o al uso de fondos recién recibidos! - 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) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Usar distintos proxys SOCKS5 para comunicarse vía Tor de forma anónima (Por defecto: -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 Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Precaución: Por favor, ¡revise que la fecha y hora de su ordenador son correctas! Si su reloj está mal, Dogecoin no funcionará correctamente. - Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Atención: ¡Parece que la red no está totalmente de acuerdo! Algunos mineros están presentando inconvenientes. - Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Atención: ¡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. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: <category> puede ser: - Attempt to recover private keys from a corrupt wallet.dat Intento de recuperar claves privadas de un wallet.dat corrupto - Dogecoin Core Daemon Proceso Dogecoin-QT - - Dogecoin Core RPC client version - Versión de cliente DogecoinROC - - - Block creation options: Opciones de creación de bloques: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + 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: 22555 or testnet: 44555) - Conectar a JSON-RPC en <puerto> (predeterminado: 22555 o testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + Conectar a JSON-RPC en <puerto> (predeterminado: 8332 o testnet: 18332) + + + Connection options: + - Corrupted block database detected Corrupción de base de datos de bloques detectada. - + Debugging/Testing options: + + + + Disable safemode, override a real safe mode event (default: 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 - Do you want to rebuild the block database now? ¿Quieres reconstruir la base de datos de bloques ahora? - 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 opening block database Error al abrir base de datos de bloques. - 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: 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 Donación por KB añadida a las transacciones que envíe - + Fees smaller than this are considered zero fee (for relaying) (default: + + + Find peers using DNS lookup (default: 1 unless -connect) Encontrar pares mediante búsqueda de DNS (predeterminado: 1 salvo con -connect) - + Force safe mode (default: 0) + + + Generate coins (default: 0) Generar monedas (por defecto: 0) - How many blocks to check at startup (default: 288, 0 = all) Cuántos bloques comprobar al iniciar (predeterminado: 288, 0 = todos) - - How thorough the block verification is (0-4, default: 3) - Como es de exhaustiva la verificación de bloques (0-4, por defecto 3) - - - If <category> is not supplied, output all debugging information. Si no se proporciona <category>, mostrar toda la depuración - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? Incorrecto o bloque de génesis no encontrado. Datadir equivocada para la red? - Invalid -onion address: '%s' Dirección -onion inválida: '%s' - Not enough file descriptors available. No hay suficientes descriptores de archivo disponibles. - Prepend debug output with timestamp (default: 1) Anteponer marca temporal a la información de depuración (por defecto: 1) - RPC client options: Opciones para cliente RPC: - 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 - Select SOCKS version for -proxy (4 or 5, default: 5) Seleccionar version de SOCKS para -proxy (4 o 5, por defecto: 5) - - Send command to Dogecoin Core server - Enviar comando a servidor Dogecoin + Set database cache size in megabytes (%d to %d, default: %d) + - Set maximum block size in bytes (default: %d) Establecer tamaño máximo de bloque en bytes (por defecto: %d) - Set the number of threads to service RPC calls (default: 4) Establecer el número de hilos para atender las llamadas RPC (predeterminado: 4) - Specify wallet file (within data directory) Especificar archivo de monedero (dentro del directorio de datos) - - Start Dogecoin Core server - Iniciar servidor Dogecoin + Spend unconfirmed change when sending transactions (default: 1) + - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): - Uso (desaconsejado, usar dogecoin-cli) + Usage (deprecated, use bitcoin-cli): + Uso (desaconsejado, usar bitcoin-cli) - 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 options: - Warning: Deprecated argument -debugnet ignored, use -debug=net Aviso: Argumento -debugnet anticuado, utilice -debug=net - You need to rebuild the database using -reindex to change -txindex Usted necesita reconstruir la base de datos utilizando -reindex para cambiar -txindex - Imports blocks from external blk000??.dat file Importa los bloques desde un archivo blk000??.dat externo - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + 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 una alerta importante o cuando veamos un fork demasiado largo (%s en cmd se reemplazará por el mensaje) - Output debugging information (default: 0, supplying <category> is optional) Mostrar depuración (por defecto: 0, proporcionar <category> es opcional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Establecer tamaño máximo de las transacciones de alta prioridad/comisión baja en bytes (por defecto: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Configura el número de hilos para el script de verificación (hasta 16, 0 = auto, <0 = leave that many cores free, por fecto: 0) - - - Information Información - Invalid amount for -minrelaytxfee=<amount>: '%s' Inválido por el monto -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' Inválido por el monto -mintxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) Mantener índice de transacciones completo (predeterminado: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Búfer de recepción máximo por conexión, <n>*1000 bytes (predeterminado: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Búfer de recepción máximo por conexión, , <n>*1000 bytes (predeterminado: 1000) - 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) - + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) - + Send command to Dogecoin Core + + + 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 - Set minimum block size in bytes (default: 0) Establecer tamaño mínimo de bloque en bytes (predeterminado: 0) - + 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) Reducir el archivo debug.log al iniciar el cliente (predeterminado: 1 sin -debug) - Signing transaction failed Transacción falló - Specify connection timeout in milliseconds (default: 5000) Especificar el tiempo máximo de conexión en milisegundos (predeterminado: 5000) - + Start Dogecoin Core Daemon + + + System error: Error de sistema: - Transaction amount too small Monto de la transacción muy pequeño - Transaction amounts must be positive Montos de transacciones deben ser positivos - Transaction too large Transacción demasiado grande - 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) - Username for JSON-RPC connections Nombre de usuario para las conexiones JSON-RPC - Warning Aviso - Warning: This version is obsolete, upgrade required! Aviso: Esta versión es obsoleta, actualización necesaria! - + Zapping all transactions from wallet... + + + + on startup + + + version versión - wallet.dat corrupt, salvage failed wallet.dat corrupto. Ha fallado la recuperación. - Password for JSON-RPC connections Contraseña para las conexiones JSON-RPC - Allow JSON-RPC connections from specified IP address Permitir conexiones JSON-RPC desde la dirección IP especificada - Send commands to node running on <ip> (default: 127.0.0.1) Enviar comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - 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) - Upgrade wallet to latest format Actualizar el monedero al último formato - Set key pool size to <n> (default: 100) Ajustar el número de claves en reserva <n> (predeterminado: 100) - Rescan the block chain for missing wallet transactions Volver a examinar la cadena de bloques en busca de transacciones del monedero perdidas - Use OpenSSL (https) for JSON-RPC connections Usar OpenSSL (https) para las conexiones JSON-RPC - 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) - This help message Este mensaje de ayuda - Unable to bind to %s on this computer (bind returned error %d, %s) No es posible conectar con %s en este sistema (bind ha dado el error %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Permitir búsquedas DNS para -addnode, -seednode y -connect - Loading addresses... Cargando direcciones... - 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 Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Error al cargar wallet.dat: El monedero requiere una versión más reciente de Dogecoin - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete El monedero ha necesitado ser reescrito. Reinicie Dogecoin para completar el proceso - Error loading wallet.dat Error al cargar wallet.dat - Invalid -proxy address: '%s' Dirección -proxy inválida: '%s' - Unknown network specified in -onlynet: '%s' La red especificada en -onlynet '%s' es desconocida - Unknown -socks proxy version requested: %i Solicitada versión de proxy -socks desconocida: %i - 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' - Invalid amount for -paytxfee=<amount>: '%s' Cantidad inválida para -paytxfee=<amount>: '%s' - Invalid amount Cuantía no válida - Insufficient funds Fondos insuficientes - Loading block index... Cargando el índice de bloques... - 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 - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - No es posible conectar con %s en este sistema. Probablemente Dogecoin ya está ejecutándose. - - - Loading wallet... Cargando monedero... - Cannot downgrade wallet No se puede rebajar el monedero - Cannot write default address No se puede escribir la dirección predeterminada - Rescanning... Reexplorando... - Done loading Generado pero no aceptado - To use the %s option Para utilizar la opción %s - Error Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4070,4 +3398,4 @@ 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. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_es_MX.ts b/src/qt/locale/bitcoin_es_MX.ts index 186d46261..44d503615 100644 --- a/src/qt/locale/bitcoin_es_MX.ts +++ b/src/qt/locale/bitcoin_es_MX.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,153 +19,128 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + El nucleo de Dogecoin de desarrolladores + + + (%1-bit) AddressBookPage - Double-click to edit address or label Haga doble clic para editar el domicilio o la etiqueta - Create a new address Crear una dirección nueva - &New - Copy the currently selected address to the system clipboard Copiar el domicilio seleccionado al portapapeles del sistema - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete &Borrar - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) Archivo separado por comas (*.CSV) - Exporting Failed - + Fallo en la exportación - There was an error trying to save the address list to %1. - + Ocurrio un error al intentar guardar la lista de direccione en %1 AddressTableModel - Label Etiqueta - Address Domicilio - (no label) (sin etiqueta) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase Ingrese la contraseña - New passphrase Nueva contraseña - Repeat new passphrase Repita la nueva contraseña - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Ingrese la nueva contraseña a la cartera<br/>Por favor use una contraseña de<b>10 o más caracteres aleatorios</b> o <b>ocho o más palabras</b>. - Encrypt wallet Cartera encriptada. - This operation needs your wallet passphrase to unlock the wallet. Esta operación necesita la contraseña de su cartera para desbloquear su cartera. - Unlock wallet Desbloquear cartera. - This operation needs your wallet passphrase to decrypt the wallet. Esta operación necesita la contraseña de su cartera para desencriptar su cartera. - Decrypt wallet Desencriptar la cartera - Change passphrase Cambiar contraseña - Enter the old and new passphrase to the wallet. Ingrese la antugüa y nueva contraseña de la cartera - Confirm wallet encryption Confirmar la encriptación de cartera - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted Cartera encriptada - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed La encriptación de la cartera falló - Wallet encryption failed due to an internal error. Your wallet was not encrypted. La encriptación de la cartera falló debido a un error interno. Su cartera no fue encriptada. - - The supplied passphrases do not match. Las contraseñas dadas no coinciden - Wallet unlock failed El desbloqueo de la cartera Fallo - - - The passphrase entered for the wallet decryption was incorrect. La contraseña ingresada para la des encriptación de la cartera es incorrecto - Wallet decryption failed La desencriptación de la cartera fallo - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... Sincronizando con la red... - &Overview &Vista previa - Node - Show general overview of wallet Mostrar la vista previa general de la cartera - &Transactions &Transacciones - Browse transaction history Explorar el historial de transacciones - E&xit S&alir - Quit application Salir de la aplicación - - Show information about Dogecoin Core + Show information about Dogecoin Mostrar información acerca de Dogecoin - - About &Qt - Show information about Qt - &Options... &Opciones - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption Cambiar la contraseña usada para la encriptación de la cartera - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &Archivo - &Settings &Configuraciones - &Help &Ayuda - Tabs toolbar Pestañas - - [testnet] - Dogecoin Core nucleo Dogecoin - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - + opciones de la &Linea de comandos - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options - + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options + Mostrar mensaje de ayuda del nucleo de Dogecoin para optener una lista con los posibles comandos de Dogecoin - - Dogecoin client - %n active connection(s) to Dogecoin network %n Activar conexión a la red de Dogecoin%n Activar conexiones a la red de Dogecoin - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date Actualizado al dia - Catching up... Resiviendo... - Sent transaction Enviar Transacción - Incoming transaction Transacción entrante - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> La cartera esta <b>encriptada</b> y <b>desbloqueada</b> actualmente - Wallet is <b>encrypted</b> and currently <b>locked</b> La cartera esta <b>encriptada</b> y <b>bloqueada</b> actualmente - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: Bytes: - Amount: Monto: - Priority: Prioridad: - Fee: Cuota: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Monto - Address Domicilio - Date Fecha - Confirmations - Confirmed Confirmado - Priority - Copy address Copiar dirección - Copy label Copiar capa - - Copy amount - + copiar monto - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - + copiar cantidad - Copy fee - + copiar cuota - Copy after fee - + copiar despues de cuota - Copy bytes - + copiar bytes - Copy priority - + copiar prioridad - Copy low output - Copy change - + copiar cambio - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (sin etiqueta) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address Editar dirección - &Label &Etiqueta - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Dirección - New receiving address Nueva dirección de entregas - New sending address Nueva dirección de entregas - Edit receiving address Editar dirección de entregas - Edit sending address Editar dirección de envios - The entered address "%1" is already in the address book. El domicilio ingresado "%1" ya existe en la libreta de direcciones - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. No se puede desbloquear la cartera - New key generation failed. La generación de la nueva clave fallo @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - + Opciones de lineas de comando del nucleo de Dogecoin - Dogecoin Core nucleo Dogecoin - version Versión - Usage: Uso: - command-line options Opciones de comando de lineas - UI options Opciones de interfaz - Set language, for example "de_DE" (default: system locale) Definir idioma, por ejemplo "de_DE" (por defecto: Sistema local) - Start minimized Iniciar minimizado - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Mostrar pantalla de arraque al iniciar (por defecto: 1) - Choose data directory on startup (default: 0) Escojer el directorio de información al iniciar (por defecto : 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options Opciones - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: Activar las opciones de linea de comando que sobre escriben las siguientes opciones: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form Formulario - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - Inconformidad : - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> <b>Transacciones recientes</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning advertencia del administrador de red. - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. Tu active proxy no soporta SOCKS5, el cual es requerido para solicitud de pago via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,41 +1324,45 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Ingrese una direccion Dogecoin (ejem. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1674,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1867,155 +1517,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: &Etiqueta - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - Etiqueta opcional para asocuar con el nuevo domicilio de entrgas. - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. Mensaje opcional para agregar a la solicitud de pago, el cual será mostrado cuando la solicitud este abierta. Nota: El mensaje no se manda con el pago a travéz de la red de Dogecoin. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. Use este formulario para la solicitud de pagos. Todos los campos son <b>opcionales</b> - An optional amount to request. Leave this empty or zero to not request a specific amount. Monto opcional a solicitar. Dejarlo vacion o en cero no solicita un monto especifico. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + Copiar capa + + + Copy message + + + + Copy amount + copiar monto + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address Domicilio - Amount Monto - Label Etiqueta - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2023,285 +1655,225 @@ Address: %4 RecentRequestsTableModel - Date Fecha - Label Etiqueta - Message - Amount Monto - (no label) (sin etiqueta) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins Mandar monedas - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: Bytes: - Amount: Monto: - Priority: Prioridad: - Fee: Cuota: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Enviar a múltiples receptores a la vez - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: Saldo: - Confirm the send action Confirme la acción de enviar - S&end - Confirm send coins Confirme para mandar monedas - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Ingrese una direccion Dogecoin (ejem. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - + copiar cantidad - Copy amount - + copiar monto - Copy fee - + copiar cuota - Copy after fee - + copiar despues de cuota - Copy bytes - + copiar bytes - Copy priority - + copiar prioridad - Copy low output - Copy change - + copiar cambio - Total Amount %1 (= %2) - + Monto total %1(=%2) - or - + o - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. El monto a pagar debe ser mayor a 0 - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - + ¡La creación de transacion falló! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - + ¡La transación fue rechazada! Esto puede ocurrir si algunas de tus monedas en tu cartera han sido gastadas, al igual que si usas una cartera copiada y la monedas fueron gastadas en la copia pero no se marcaron como gastadas. - Warning: Invalid Dogecoin address - + Advertencia: Dirección de Dogecoin invalida - (no label) (sin etiqueta) - Warning: Unknown change address - + Advertencia: Cambio de dirección desconocido - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2309,116 +1881,85 @@ Address: %4 SendCoinsEntry - - - A&mount: M&onto - Pay &To: Pagar &a: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Ingrese una etiqueta para esta dirección para agregarlo en su libreta de direcciones. - &Label: &Etiqueta - Choose previously used address - This is a normal payment. - + Este es un pago normal - Alt+A Alt+A - Paste address from clipboard Pegar dirección del portapapeles - Alt+P Alt+P - - - Remove this entry - + Quitar esta entrada - Message: Mensaje: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - Mensaje que se agrgará al URI de Dogecoin el cual sera almacenado con la transacción para su referencia. Nota: Este mensaje no será mandado a travéz de la red de Dogecoin. - - - This is a verified payment request. - + Esta es una verificación de solicituda de pago. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - + Esta es una solicitud de pago no verificada. - - Pay To: - + Pago para: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Ingrese una direccion Dogecoin (ejem. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... Apagando el nucleo de Dogecoin... - Do not shut down the computer until this window disappears. No apague su computadora hasta que esta ventana desaparesca. @@ -2426,192 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard Pegar dirección del portapapeles - Alt+P Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Ingrese una direccion Dogecoin (ejem. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2619,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core nucleo Dogecoin - The Dogecoin Core developers - + El nucleo de Dogecoin de desarrolladores - [testnet] @@ -2637,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2645,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 Abrir hasta %1 - + conflicted + + + %1/offline - %1/unconfirmed %1/No confirmado - %1 confirmations %1 confirmaciones - Status - , broadcast through %n node(s) - Date Fecha - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount Monto - true - false - , has not been successfully broadcast yet , no ha sido transmitido aun - Open for %n more block(s) - unknown desconocido @@ -2825,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details Detalles de la transacción - This pane shows a detailed description of the transaction Este panel muestras una descripción detallada de la transacción @@ -2838,118 +2282,102 @@ Address: %4 TransactionTableModel - Date Fecha - Type Tipo - Address Domicilio - Amount Monto - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 Abrir hasta %1 - - Offline (%1 confirmations) - Sin conexion (%1 confirmaciones) - - - - Unconfirmed (%1 of %2 confirmations) - sin confirmar (%1 de %2 confirmaciones) - - - - Confirmed (%1 confirmations) Confimado (%1 confirmaciones) - This block was not received by any other nodes and will probably not be accepted! Este bloque no fue recibido por ningun nodo y probablemente no fue aceptado ! - Generated but not accepted Generado pero no aprovado - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Recivido con - Received from - Sent to Enviar a - Payment to yourself Pagar a si mismo - Mined Minado - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. Fecha y hora en que la transacción fue recibida - Type of transaction. Escriba una transacción - Destination address of transaction. Direccion del destinatario de la transacción - Amount removed from or added to balance. Cantidad removida del saldo o agregada @@ -2957,178 +2385,142 @@ Address: %4 TransactionView - - All Todo - Today Hoy - This week Esta semana - This month Este mes - Last month El mes pasado - This year Este año - Range... - Received with Recivido con - Sent to Enviar a - To yourself Para ti mismo - Mined Minado - Other Otro - Enter address or label to search Ingrese dirección o capa a buscar - Min amount Monto minimo - Copy address Copiar dirección - Copy label Copiar capa - Copy amount - + copiar monto - Copy transaction ID - Edit label Editar capa - Show transaction details - Export Transaction History - + Exportar el historial de transacción - Exporting Failed - + Fallo en la exportación - There was an error trying to save the transaction history to %1. - + Ocurrio un error intentando guardar el historial de transaciones a %1 - Exporting Successful - + Exportacion satisfactoria - The transaction history was successfully saved to %1. - + el historial de transaciones ha sido guardado exitosamente en 1% - Comma separated file (*.csv) Arhchivo separado por comas (*.CSV) - Confirmed Confirmado - Date Fecha - Type Tipo - Label Etiqueta - Address Domicilio - Amount Monto - ID ID - Range: - to Para @@ -3136,15 +2528,13 @@ Address: %4 WalletFrame - No wallet has been loaded. - + No se há cargado la cartera. WalletModel - Send Coins Mandar monedas @@ -3152,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - + Ocurrio un error tratando de guardar la información de la cartera %1 - The wallet data was successfully saved to %1. - + La información de la cartera fué guardada exitosamente a 1% - Backup Successful - dogecoin-core + bitcoin-core - Usage: Uso: - List commands Lista de comandos - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3310,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - Enviar instrucción al servidor de Dogecoin - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - Iniciar servidor Dogecoin - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - Versión - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - Cargando direcciones... - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - Cargando indice de bloques... - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + <categoria> puede ser: + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + Opciones de cartera: + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + Versión + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + Cargando direcciones... + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + Cargando indice de bloques... + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... Cargando billetera... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading Carga completa - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_es_UY.ts b/src/qt/locale/bitcoin_es_UY.ts index 65a6a5323..f79be3219 100644 --- a/src/qt/locale/bitcoin_es_UY.ts +++ b/src/qt/locale/bitcoin_es_UY.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Doble clic para editar etiqueta o dirección - Create a new address Crear una nueva dirección - &New - Copy the currently selected address to the system clipboard Copia la dirección seleccionada al portapapeles del sistema - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete &Borrar - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) Archivos separados por coma (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Etiqueta - Address Direccion - (no label) (Sin etiqueta) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase Escriba la contraseña - New passphrase Nueva contraseña - Repeat new passphrase Repetir nueva contraseña - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Introduzca la nueva contraseña para el monedero. <br/> Utilice una contraseña de <b> 10 o más caracteres al azar </ b>, o <b> ocho o más palabras </ b>. - Encrypt wallet Monedero cifrado - This operation needs your wallet passphrase to unlock the wallet. Esta operacion necesita la contraseña del monedero para desbloquear el mismo - Unlock wallet Monedero destrabado - This operation needs your wallet passphrase to decrypt the wallet. Esta operacion necesita la contraseña del monedero para descifrar el mismo - Decrypt wallet Monedero descifrado - Change passphrase Cambiar contraseña - Enter the old and new passphrase to the wallet. Ingrese la contraseña anterior y la nueva de acceso a el monedero - Confirm wallet encryption Confirme el cifrado del monedero - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted Monedero cifrado - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed Fallo en el cifrado del monedero - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Fallo en el cifrado del monedero a causa de un error interno. Su monedero no esta cifrado - - The supplied passphrases do not match. Las contraseñas suministradas no coinciden. - Wallet unlock failed Fallo en el desbloqueo del mondero - - - The passphrase entered for the wallet decryption was incorrect. La contraseña introducida para el descifrado del monedero es incorrecta. - Wallet decryption failed Fallo en el descifrado del monedero - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... Sincronizando con la red... - &Overview &Vista previa - Node - Show general overview of wallet Mostrar descripción general del monedero - &Transactions &transaciones - Browse transaction history Buscar en el historial de transacciones - E&xit - Quit application Salir de la aplicacion - - Show information about Dogecoin Core + Show information about Dogecoin Mostrar informacion sobre Dogecoin - - About &Qt - Show information about Qt - &Options... &Opciones... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption Cambie la clave utilizada para el cifrado del monedero - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &Archivo - &Settings &Configuracion - &Help &Ayuda - Tabs toolbar Barra de herramientas - - [testnet] [prueba_de_red] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network %n conexión activa a la red Dogecoin %n conexiones activas a la red Dogecoin - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date A la fecha - Catching up... Ponerse al dia... - Sent transaction Transaccion enviada - Incoming transaction Transacción entrante - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> El Monedero esta <b>cifrado</b> y actualmente <b>desbloqueado</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> El Monedero esta <b>cifrado</b> y actualmente <b>bloqueado</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address Direccion - Date - + Fecha - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (Sin etiqueta) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address Editar dirección - &Label &Etiqueta - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Direccion - New receiving address Nueva dirección de recepción - New sending address Nueva dirección de envío - Edit receiving address Editar dirección de recepcion - Edit sending address Editar dirección de envío - The entered address "%1" is already in the address book. La dirección introducida "% 1" ya está en la libreta de direcciones. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. No se puede abrir el monedero. - New key generation failed. Fallo en la nueva clave generada. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options Opciones - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form Formulario - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - Sin confirmar: - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> <b>Transacciones recientes</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,23 +1324,26 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1656,22 +1351,18 @@ Address: %4 QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1679,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1872,105 +1517,82 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: &Etiqueta: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - - An optional label to associate with the new receiving address. - Use this form to request payments. All fields are <b>optional</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - Requested payments history - &Request payment - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove - Copy label - Copy message - Copy amount @@ -1978,67 +1600,54 @@ Address: %4 ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address Direccion - Amount - Label Etiqueta - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2046,37 +1655,30 @@ Address: %4 RecentRequestsTableModel - Date - + Fecha - Label Etiqueta - Message - Amount - (no label) (Sin etiqueta) - (no message) - (no amount) @@ -2084,247 +1686,194 @@ Address: %4 SendCoinsDialog - - - Send Coins Enviar monedas - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Enviar a varios destinatarios a la vez - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: Balance: - Confirm the send action Confirmar el envío - S&end - Confirm send coins Confirmar el envio de monedas - - - - %1 to %2 - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. La cantidad a pagar debe ser mayor que 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (Sin etiqueta) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2332,98 +1881,74 @@ Address: %4 SendCoinsEntry - - - A&mount: A&Monto: - Pay &To: Pagar &A: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Introduzca una etiqueta para esta dirección para añadirla a su libreta de direcciones - &Label: &Etiqueta: - Choose previously used address - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard Pegar la dirección desde el portapapeles - Alt+P Alt+P - - - Remove this entry - Message: - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. - - Pay To: - - Memo: @@ -2431,12 +1956,10 @@ Address: %4 ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2444,186 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard Pegar la dirección desde el portapapeles - Alt+P Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2631,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] [prueba_de_red] @@ -2649,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2657,192 +2132,149 @@ Address: %4 TransactionDesc - Open until %1 Abrir hasta %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date - + Fecha - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown - + desconocido TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2850,118 +2282,102 @@ Address: %4 TransactionTableModel - Date - + Fecha - Type - Address Direccion - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 Abrir hasta %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2969,178 +2385,142 @@ Address: %4 TransactionView - - All - Today - This week - This month - Last month - This year - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Archivos separados por coma (*.csv) - Confirmed - Date - + Fecha - Type - Label Etiqueta - Address Direccion - Amount - ID - Range: - to @@ -3148,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3156,7 +2535,6 @@ Address: %4 WalletModel - Send Coins Enviar monedas @@ -3164,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3322,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_et.ts b/src/qt/locale/bitcoin_et.ts index 2a6fa07fc..51bb9141b 100644 --- a/src/qt/locale/bitcoin_et.ts +++ b/src/qt/locale/bitcoin_et.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -27,135 +24,113 @@ Levitatud MIT/X11 tarkvara litsentsi all, vaata kaasasolevat faili COPYING või Toode sisaldab OpenSSL Projekti all toodetud tarkvara, mis on kasutamiseks OpenSSL Toolkitis (http://www.openssl.org/) ja Eric Young'i poolt loodud krüptograafilist tarkvara (eay@cryptsoft.com) ning Thomas Bernard'i loodud UPnP tarkvara. - Copyright Autoriõigus - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Topeltklõps aadressi või märgise muutmiseks - Create a new address Loo uus aadress - &New - Copy the currently selected address to the system clipboard Kopeeri märgistatud aadress vahemällu - &Copy - C&lose - &Copy Address &Aadressi kopeerimine - Delete the currently selected address from the list Kustuta märgistatud aadress loetelust - Export the data in the current tab to a file - &Export - &Delete &Kustuta - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Need on sinu Dogecoini aadressid maksete saatmiseks. Müntide saatmisel kontrolli alati summat ning saaja aadressi. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label &Märgise kopeerimine - &Edit &Muuda - Export Address List - Comma separated file (*.csv) Komaeraldatud fail (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -163,17 +138,14 @@ Toode sisaldab OpenSSL Projekti all toodetud tarkvara, mis on kasutamiseks OpenS AddressTableModel - Label Silt - Address Aadress - (no label) (silti pole) @@ -181,140 +153,106 @@ Toode sisaldab OpenSSL Projekti all toodetud tarkvara, mis on kasutamiseks OpenS AskPassphraseDialog - Passphrase Dialog Salafraasi dialoog - Enter passphrase Sisesta salafraas - New passphrase Uus salafraas - Repeat new passphrase Korda salafraasi - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Sisesta rahakotile uus salafraas.<br/>Palun kasuta salafraasina <b>vähemalt 10 tähte/numbrit/sümbolit</b>, või <b>vähemalt 8 sõna</b>. - Encrypt wallet Krüpteeri rahakott - This operation needs your wallet passphrase to unlock the wallet. See toiming nõuab sinu rahakoti salafraasi. - Unlock wallet Tee rahakott lukust lahti. - This operation needs your wallet passphrase to decrypt the wallet. See toiming nõuab sinu rahakoti salafraasi. - Decrypt wallet Dekrüpteeri rahakott. - Change passphrase Muuda salafraasi - Enter the old and new passphrase to the wallet. Sisesta rahakoti vana ning uus salafraas. - Confirm wallet encryption Kinnita rahakoti krüpteering - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Hoiatus: Kui sa kaotad oma, rahakoti krüpteerimisel kasutatud, salafraasi, siis <b>KAOTAD KA KÕIK OMA DOGECOINID</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Hoiatus: Kui sa kaotad oma, rahakoti krüpteerimisel kasutatud, salafraasi, siis <b>KAOTAD KA KÕIK OMA DogecoinID</b>! - Are you sure you wish to encrypt your wallet? Kas soovid oma rahakoti krüpteerida? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. TÄHTIS: Kõik varasemad rahakoti varundfailid tuleks üle kirjutada äsja loodud krüpteeritud rahakoti failiga. Turvakaalutlustel tühistatakse krüpteerimata rahakoti failid alates uue, krüpteeritud rahakoti, kasutusele võtust. - - Warning: The Caps Lock key is on! Hoiatus: Caps Lock on sisse lülitatud! - - Wallet encrypted Rahakott krüpteeritud - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin sulgub krüpteeringu lõpetamiseks. Pea meeles, et rahakoti krüpteerimine ei välista dogecoinide vargust, kui sinu arvuti on nakatunud pahavaraga. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin sulgub krüpteeringu lõpetamiseks. Pea meeles, et rahakoti krüpteerimine ei välista bitcoinide vargust, kui sinu arvuti on nakatunud pahavaraga. - - - - Wallet encryption failed Tõrge rahakoti krüpteerimisel - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Rahakoti krüpteering ebaõnnestus tõrke tõttu. Sinu rahakotti ei krüpteeritud. - - The supplied passphrases do not match. Salafraasid ei kattu. - Wallet unlock failed Rahakoti avamine ebaõnnestus - - - The passphrase entered for the wallet decryption was incorrect. Rahakoti salafraas ei ole õige. - Wallet decryption failed Rahakoti dekrüpteerimine ei õnnestunud - Wallet passphrase was successfully changed. Rahakoti salafraasi muutmine õnnestus. @@ -322,352 +260,286 @@ Toode sisaldab OpenSSL Projekti all toodetud tarkvara, mis on kasutamiseks OpenS BitcoinGUI - Sign &message... Signeeri &sõnum - Synchronizing with network... Võrgusünkimine... - &Overview &Ülevaade - Node - Show general overview of wallet Kuva rahakoti üld-ülevaade - &Transactions &Tehingud - Browse transaction history Sirvi tehingute ajalugu - E&xit V&älju - Quit application Väljumine - - Show information about Dogecoin Core + Show information about Dogecoin Kuva info Dogecoini kohta - - About &Qt Teave &Qt kohta - Show information about Qt Kuva Qt kohta käiv info - &Options... &Valikud... - &Encrypt Wallet... &Krüpteeri Rahakott - &Backup Wallet... &Varunda Rahakott - &Change Passphrase... &Salafraasi muutmine - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... Impordi blokid kettalt... - Reindexing blocks on disk... Kettal olevate blokkide re-indekseerimine... - Send coins to a Dogecoin address Saada münte Dogecoini aadressile - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Muuda Dogecoini seadeid - Backup wallet to another location Varunda rahakott teise asukohta - Change the passphrase used for wallet encryption Rahakoti krüpteerimise salafraasi muutmine - &Debug window &Debugimise aken - Open debugging and diagnostic console Ava debugimise ja diagnostika konsool - &Verify message... &Kontrolli sõnumit... - Dogecoin Dogecoin - Wallet Rahakott - &Send &Saada - &Receive &Saama - - &Show / Hide &Näita / Peida - Show or hide the main Window Näita või peida peaaken - Encrypt the private keys that belong to your wallet Krüpteeri oma rahakoti privaatvõtmed - Sign messages with your Dogecoin addresses to prove you own them Omandi tõestamiseks allkirjasta sõnumid oma Dogecoini aadressiga - Verify messages to ensure they were signed with specified Dogecoin addresses Kinnita sõnumid kindlustamaks et need allkirjastati määratud Dogecoini aadressiga - &File &Fail - &Settings &Seaded - &Help &Abi - Tabs toolbar Vahelehe tööriistariba - - [testnet] [testnet] - Dogecoin Core Dogecoini tuumik - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Dogecoini klient - %n active connection(s) to Dogecoin network %n aktiivne ühendus Dogecoini võrku%n aktiivset ühendust Dogecoini võrku - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. Protsessitud %1 (arvutuslikult) tehingu ajaloo blokki %2-st. - Processed %1 blocks of transaction history. Protsessitud %1 tehingute ajaloo blokki. - %n hour(s) %n tund%n tundi - %n day(s) %n päev%n päeva - %n week(s) %n nädal%n nädalat - + %1 and %2 + + + + %n year(s) + + + %1 behind %1 maas - Last received block was generated %1 ago. Viimane saabunud blokk loodi %1 tagasi. - Transactions after this will not yet be visible. Peale seda ei ole tehingud veel nähtavad. - Error Tõrge - Warning Hoiatus - Information Informatsioon - Up to date Ajakohane - Catching up... Jõuan... - Sent transaction Saadetud tehing - Incoming transaction Sisenev tehing - Date: %1 Amount: %2 Type: %3 @@ -679,25 +551,21 @@ Tüüp: %3⏎ Aadress: %4⏎ - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Rahakott on <b>krüpteeritud</b> ning hetkel <b>avatud</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Rahakott on <b>krüpteeritud</b> ning hetkel <b>suletud</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Ilmnes kriitiline tõrge. Dogecoin suletakse turvakaalutluste tõttu. ClientModel - Network Alert Võrgu Häire @@ -705,291 +573,230 @@ Aadress: %4⏎ CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: Summa: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Kogus - Address Aadress - Date Kuupäev - Confirmations - Confirmed Kinnitatud - Priority - Copy address Aadressi kopeerimine - Copy label Märgise kopeerimine - - Copy amount Kopeeri summa - Copy transaction ID Kopeeri tehingu ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (silti pole) - change from %1 (%2) - (change) @@ -997,67 +804,54 @@ Aadress: %4⏎ EditAddressDialog - Edit Address Muuda aadressi - &Label &Märgis - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Aadress - New receiving address Uus sissetulev aadress - New sending address Uus väljaminev aadress - Edit receiving address Sissetulevate aadresside muutmine - Edit sending address Väljaminevate aadresside muutmine - The entered address "%1" is already in the address book. Selline aadress on juba olemas: "%1" - The entered address "%1" is not a valid Dogecoin address. Sisestatud aadress "%1" ei ole Dogecoinis kehtiv. - Could not unlock wallet. Rahakotti ei avatud - New key generation failed. Tõrge uue võtme loomisel. @@ -1065,27 +859,22 @@ Aadress: %4⏎ FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1093,52 +882,46 @@ Aadress: %4⏎ HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Dogecoini tuumik - version versioon - Usage: Kasutus: - command-line options käsurea valikud - UI options UI valikud - Set language, for example "de_DE" (default: system locale) Keele valik, nt "ee_ET" (vaikeväärtus: system locale) - Start minimized Käivitu tegumiribale - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Käivitamisel teabeakna kuvamine (vaikeväärtus: 1) - Choose data directory on startup (default: 0) @@ -1146,57 +929,46 @@ Aadress: %4⏎ Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1204,27 +976,22 @@ Aadress: %4⏎ OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1232,243 +999,206 @@ Aadress: %4⏎ OptionsDialog - Options Valikud - &Main %Peamine - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee Tasu tehingu &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Käivita Dogecoin süsteemi logimisel. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Start Dogecoin sisselogimisel - Size of &database cache - - Set database cache size in megabytes (default: 25) - Sea andmebaasi vahemälu suurus MB (vaikeväärtus: 25) - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. Taasta kõik klientprogrammi seadete vaikeväärtused. - &Reset Options &Lähtesta valikud - &Network &Võrk - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Dogecoini kliendi pordi automaatne avamine ruuteris. Toimib, kui sinu ruuter aktsepteerib UPnP ühendust. - Map port using &UPnP Suuna port &UPnP kaudu - Proxy &IP: Proxi &IP: - &Port: &Port: - Port of the proxy (e.g. 9050) Proxi port (nt 9050) - SOCKS &Version: Turva proxi SOCKS &Version: - SOCKS version of the proxy (e.g. 5) Turva proxi SOCKS versioon (nt 5) - &Window &Aken - Show only a tray icon after minimizing the window. Minimeeri systray alale. - &Minimize to the tray instead of the taskbar &Minimeeri systray alale - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Sulgemise asemel minimeeri aken. Selle valiku tegemisel suletakse programm Menüüst "Välju" käsuga. - M&inimize on close M&inimeeri sulgemisel - &Display &Kuva - User Interface &language: Kasutajaliidese &keel: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Kasutajaliidese keele valimise koht. Valik rakendub Dogecoini käivitamisel. - &Unit to show amounts in: Summade kuvamise &Unit: - Choose the default subdivision unit to show in the interface and when sending coins. Vali liideses ning müntide saatmisel kuvatav vaikimisi alajaotus. - Whether to show Dogecoin addresses in the transaction list or not. Kuvada Dogecoini aadress tehingute loetelus või mitte. - &Display addresses in transaction list Tehingute loetelu &Display aadress - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &OK - &Cancel &Katkesta - default vaikeväärtus - none - Confirm options reset Kinnita valikute algseadistamine - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. Sisestatud kehtetu proxy aadress. @@ -1476,69 +1206,54 @@ Aadress: %4⏎ OverviewPage - Form Vorm - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Kuvatav info ei pruugi olla ajakohane. Ühenduse loomisel süngitakse sinu rahakott automaatselt Bitconi võrgustikuga, kuid see toiming on hetkel lõpetamata. - - Unconfirmed: - Kinnitamata: - - - Wallet Rahakott - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: Ebaküps: - Mined balance that has not yet matured Mitte aegunud mine'itud jääk - Total: - Your current total balance - <b>Recent transactions</b> <b>Uuesti saadetud tehingud</b> - - out of sync sünkimata @@ -1546,93 +1261,70 @@ Aadress: %4⏎ PaymentServer - - URI handling URI käsitsemine - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. URI ei suudeta parsida. Põhjuseks võib olla kehtetu Dogecoini aadress või vigased URI parameetrid. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler Dogecoin ei käivitu: vajuta-maksa toiming - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1640,41 +1332,45 @@ Aadress: %4⏎ QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Sisesta Dogecoini aadress (nt: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code Salvesta QR kood - PNG Image (*.png) @@ -1682,192 +1378,146 @@ Aadress: %4⏎ RPCConsole - Client name Kliendi nimi - - - - - - - - - - - N/A N/A - Client version Kliendi versioon - &Information &Informatsioon - Debug window - General - Using OpenSSL version Kasutan OpenSSL versiooni - Startup time Käivitamise hetk - Network Võrgustik - Name - Number of connections Ühenduste arv - Block chain Ploki jada - Current number of blocks Plokkide hetkearv - Estimated total blocks Ligikaudne plokkide kogus - Last block time Viimane ploki aeg - &Open &Ava - &Console &Konsool - &Network Traffic - &Clear - Totals - In: - Out: - Build date Valmistusaeg - Debug log file Debugimise logifail - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Ava Dogecoini logifail praegusest andmekaustast. Toiminguks võib kuluda kuni mõni sekund. - Clear console Puhasta konsool - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Teretulemast Dogecoini RPC konsooli. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Ajaloo sirvimiseks kasuta üles ja alla nooli, ekraani puhastamiseks <b>Ctrl-L</b>. - Type <b>help</b> for an overview of available commands. Ülevaateks võimalikest käsklustest trüki <b>help</b>. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1875,155 +1525,137 @@ Aadress: %4⏎ ReceiveCoinsDialog - &Amount: - &Label: &Märgis - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + Märgise kopeerimine + + + Copy message + + + + Copy amount + Kopeeri summa + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address Aadress - Amount Kogus - Label Silt - Message Sõnum - Resulting URI too long, try to reduce the text for label / message. Tulemuseks on liiga pikk URL, püüa lühendada märgise/teate teksti. - Error encoding URI into QR Code. Tõrge URI'st QR koodi loomisel @@ -2031,285 +1663,225 @@ Aadress: %4⏎ RecentRequestsTableModel - Date Kuupäev - Label Silt - Message Sõnum - Amount Kogus - (no label) (silti pole) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins Müntide saatmine - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: Summa: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Saatmine mitmele korraga - Add &Recipient Lisa &Saaja - Clear all fields of the form. - Clear &All Puhasta &Kõik - Balance: Jääk: - Confirm the send action Saatmise kinnitamine - S&end S&aada - Confirm send coins Müntide saatmise kinnitamine - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Sisesta Dogecoini aadress (nt: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount Kopeeri summa - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. Saaja aadress ei ole kehtiv, palun kontrolli. - The amount to pay must be larger than 0. Makstav summa peab olema suurem kui 0. - The amount exceeds your balance. Summa ületab jäägi. - The total exceeds your balance when the %1 transaction fee is included. Summa koos tehingu tasuga %1 ületab sinu jääki. - Duplicate address found, can only send to each address once per send operation. Ühe saatmisega topelt-adressaati olla ei tohi. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (silti pole) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2317,116 +1889,85 @@ Aadress: %4⏎ SendCoinsEntry - - - A&mount: S&umma: - Pay &To: Maksa &: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Tehingu saaja aadress (nt: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Aadressiraamatusse sisestamiseks märgista aadress - &Label: &Märgis - Choose previously used address - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard Kleebi aadress vahemälust - Alt+P Alt+P - - - Remove this entry - Message: Sõnum: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Sisesta Dogecoini aadress (nt: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2434,192 +1975,142 @@ Aadress: %4⏎ SignVerifyMessageDialog - Signatures - Sign / Verify a Message Signatuurid - Allkirjasta / Kinnita Sõnum - &Sign Message &Allkirjastamise teade - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Omandiõigsuse tõestamiseks saad sõnumeid allkirjastada oma aadressiga. Ettevaatust petturitega, kes üritavad saada sinu allkirja endale saada. Allkirjasta ainult korralikult täidetud avaldusi, millega nõustud. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Sõnumi signeerimise aadress (nt: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard Kleebi aadress vahemälust - Alt+P Alt+P - Enter the message you want to sign here Sisesta siia allkirjastamise sõnum - Signature Signatuur - Copy the current signature to the system clipboard Kopeeri praegune signatuur vahemällu - Sign the message to prove you own this Dogecoin address Allkirjasta sõnum Dogecoini aadressi sulle kuulumise tõestamiseks - Sign &Message Allkirjasta &Sõnum - Reset all sign message fields Tühjenda kõik sõnumi allkirjastamise väljad - - Clear &All Puhasta &Kõik - &Verify Message &Kinnita Sõnum - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Kinnitamiseks sisesta allkirjastamise aadress, sõnum (kindlasti kopeeri täpselt ka reavahetused, tühikud, tabulaatorid jms) ning allolev signatuur. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Aadress, millega sõnum allkirjastati (nt: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Kinnita sõnum tõestamaks selle allkirjastatust määratud Dogecoini aadressiga. - Verify &Message Kinnita &Sõnum - Reset all verify message fields Tühjenda kõik sõnumi kinnitamise väljad - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Sisesta Dogecoini aadress (nt: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Signatuuri genereerimiseks vajuta "Allkirjasta Sõnum" - - Enter Dogecoin signature - Sisesta Dogecoini allkiri - - - - The entered address is invalid. Sisestatud aadress ei kehti. - - - - Please check the address and try again. Palun kontrolli aadressi ning proovi uuesti. - - The entered address does not refer to a key. Sisestatud aadress ei viita võtmele. - Wallet unlock was cancelled. Rahakoti avamine katkestati. - Private key for the entered address is not available. Sisestatud aadressi privaatvõti ei ole saadaval. - Message signing failed. Sõnumi signeerimine ebaõnnestus. - Message signed. Sõnum signeeritud. - The signature could not be decoded. Signatuuri ei õnnestunud dekodeerida. - - Please check the signature and try again. Palun kontrolli signatuuri ning proovi uuesti. - The signature did not match the message digest. Signatuur ei kattunud sõnumi kokkuvõttega. - Message verification failed. Sõnumi kontroll ebaõnnestus. - Message verified. Sõnum kontrollitud. @@ -2627,17 +2118,14 @@ Aadress: %4⏎ SplashScreen - Dogecoin Core Dogecoini tuumik - The Dogecoin Core developers - [testnet] @@ -2645,7 +2133,6 @@ Aadress: %4⏎ TrafficGraphWidget - KB/s @@ -2653,179 +2140,138 @@ Aadress: %4⏎ TransactionDesc - Open until %1 Avatud kuni %1 - + conflicted + + + %1/offline %/1offline'is - %1/unconfirmed %1/kinnitamata - %1 confirmations %1 kinnitust - Status Staatus - , broadcast through %n node(s) , levita läbi %n node'i, levita läbi %n node'i - Date Kuupäev - Source Allikas - Generated Genereeritud - - From Saatja - - - To Saaja - - own address oma aadress - label märgis - - - - - Credit Krediit - matures in %n more block(s) aegub %n bloki pärastaegub %n bloki pärast - not accepted mitte aktsepteeritud - - - - Debit Deebet - Transaction fee Tehingu tasu - Net amount Neto summa - - Message Sõnum - Comment Kommentaar - Transaction ID Tehingu ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information Debug'imise info - Transaction Tehing - Inputs Sisendid - Amount Kogus - true õige - false vale - , has not been successfully broadcast yet , veel esitlemata - Open for %n more block(s) Avaneb %n bloki pärastAvaneb %n bloki pärast - unknown tundmatu @@ -2833,12 +2279,10 @@ Aadress: %4⏎ TransactionDescDialog - Transaction details Tehingu üksikasjad - This pane shows a detailed description of the transaction Paan kuvab tehingu detailid @@ -2846,118 +2290,102 @@ Aadress: %4⏎ TransactionTableModel - Date Kuupäev - Type Tüüp - Address Aadress - Amount Kogus - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) Avaneb %n bloki pärastAvaneb %n bloki pärast - Open until %1 Avatud kuni %1 - - Offline (%1 confirmations) - Ühenduseta (%1 kinnitust) - - - - Unconfirmed (%1 of %2 confirmations) - Kinnitamata (%1/%2 kinnitust) - - - - Confirmed (%1 confirmations) Kinnitatud (%1 kinnitust) - This block was not received by any other nodes and will probably not be accepted! Antud klotsi pole saanud ükski osapool ning tõenäoliselt seda ei aktsepteerita! - Generated but not accepted Loodud, kuid aktsepteerimata - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Saadud koos - Received from Kellelt saadud - Sent to Saadetud - Payment to yourself Makse iseendale - Mined Mine'itud - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. Tehingu staatus. Kinnituste arvu kuvamiseks liigu hiire noolega selle peale. - Date and time that the transaction was received. Tehingu saamise kuupäev ning kellaaeg. - Type of transaction. Tehingu tüüp. - Destination address of transaction. Tehingu saaja aadress. - Amount removed from or added to balance. Jäägile lisatud või eemaldatud summa. @@ -2965,178 +2393,142 @@ Aadress: %4⏎ TransactionView - - All Kõik - Today Täna - This week Jooksev nädal - This month Jooksev kuu - Last month Eelmine kuu - This year Jooksev aasta - Range... Ulatus... - Received with Saadud koos - Sent to Saadetud - To yourself Iseendale - Mined Mine'itud - Other Muu - Enter address or label to search Otsimiseks sisesta märgis või aadress - Min amount Vähim summa - Copy address Aadressi kopeerimine - Copy label Märgise kopeerimine - Copy amount Kopeeri summa - Copy transaction ID Kopeeri tehingu ID - Edit label Märgise muutmine - Show transaction details Kuva tehingu detailid - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Komaeraldatud fail (*.csv) - Confirmed Kinnitatud - Date Kuupäev - Type Tüüp - Label Silt - Address Aadress - Amount Kogus - ID ID - Range: Ulatus: - to saaja @@ -3144,7 +2536,6 @@ Aadress: %4⏎ WalletFrame - No wallet has been loaded. @@ -3152,7 +2543,6 @@ Aadress: %4⏎ WalletModel - Send Coins @@ -3160,154 +2550,125 @@ Aadress: %4⏎ WalletView - &Export - Export the data in the current tab to a file - Backup Wallet Varundatud Rahakott - Wallet Data (*.dat) Rahakoti andmed (*.dat) - Backup Failed Varundamine nurjus - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful Varundamine õnnestus - dogecoin-core + bitcoin-core - Usage: Kasutus: - List commands Käskluste loetelu - Get help for a command Käskluste abiinfo - Options: Valikud: - - Specify configuration file (default: dogecoin.conf) - Täpsusta sätete fail (vaikimisi: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Täpsusta sätete fail (vaikimisi: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Täpsusta PID fail (vaikimisi: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Täpsusta PID fail (vaikimisi: bitcoin.pid) - Specify data directory Täpsusta andmekataloog - - Set database cache size in megabytes (default: 25) - Sea andmebaasi vahemälu suurus MB (vaikeväärtus: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Kuula ühendusi pordil <port> (vaikeväärtus: 8333 või testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Kuula ühendusi pordil <port> (vaikeväärtus: 22556 või testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Säilita vähemalt <n> ühendust peeridega (vaikeväärtus: 125) - Connect to a node to retrieve peer addresses, and disconnect Peeri aadressi saamiseks ühendu korraks node'iga - Specify your own public address Täpsusta enda avalik aadress - Threshold for disconnecting misbehaving peers (default: 100) Ulakate peeride valulävi (vaikeväärtus: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Mitme sekundi pärast ulakad peerid tagasi võivad tulla (vaikeväärtus: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s RPC pordi %u kuulamiseks seadistamisel ilmnes viga IPv4'l: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Kuula JSON-RPC ühendusel seda porti <port> (vaikeväärtus: 22555 või testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Kuula JSON-RPC ühendusel seda porti <port> (vaikeväärtus: 8332 või testnet: 18332) - Accept command line and JSON-RPC commands Luba käsurea ning JSON-RPC käsklusi - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Tööta taustal ning aktsepteeri käsklusi - Use the test network Testvõrgu kasutamine - Accept connections from outside (default: 1 if no -proxy or -connect) Luba välisühendusi (vaikeväärtus: 1 kui puudub -proxy või -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3318,7 +2679,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, sul tuleb rpcpassword määrata seadete failis: %s Soovitatav on kasutada järgmist juhuslikku parooli: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (seda parooli ei pea meeles pidama) Kasutajanimi ning parool EI TOHI kattuda. @@ -3328,707 +2689,686 @@ nt: alertnotify=echo %%s | email -s "Dogecoin Alert" admin@foo.com - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s RPC pordi %u kuulamiseks seadistamisel ilmnes viga IPv6'l, lülitumine tagasi IPv4'le : %s - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Määratud aadressiga sidumine ning sellelt kuulamine. IPv6 jaoks kasuta vormingut [host]:port - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - Ei suuda määrata ainuõigust andmekaustale %s. Tõenäolisel on Dogecoin juba avatud. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + - 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 %d) + + + 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. Tõrge: Tehingust keelduti! Põhjuseks võib olla juba kulutatud mündid, nt kui wallet.dat fail koopias kulutatid mündid, kuid ei märgitud neid siin vastavalt. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Tõrge: Selle tehingu jaoks on nõutav lisatasu vähemalt %s. Põhjuseks võib olla summa suurus, keerukus või hiljuti saadud summade kasutamine! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Käivita käsklus, kui rahakoti tehing muutub (%s cmd's muudetakse TxID'ks) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications See on test-versioon - kasutamine omal riisikol - ära kasuta mining'uks ega kaupmeeste programmides - + Unable to bind to %s on this computer. Dogecoin Core is probably already running. + + + 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. Hoiatus: -paytxfee on seatud väga kõrgeks! See on sinu poolt makstav tehingu lisatasu. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Hoiatus: Palun kontrolli oma arvuti kuupäeva/kellaaega! Kui arvuti kell on vale, siis Dogecoin ei tööta korralikult - 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. Hoiatus: ilmnes tõrge wallet.dat faili lugemisel! Võtmed on terved, kuid tehingu andmed või aadressiraamatu kirjed võivad olla kadunud või vigased. - 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. Hoiatus: toimus wallet.dat faili andmete päästmine! Originaal wallet.dat nimetati kaustas %s ümber wallet.{ajatempel}.bak'iks, jäägi või tehingute ebakõlade puhul tuleks teha backup'ist taastamine. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: - Attempt to recover private keys from a corrupt wallet.dat Püüa vigasest wallet.dat failist taastada turvavõtmed - Dogecoin Core Daemon - - Dogecoin Core RPC client version - - - - Block creation options: Blokeeri loomise valikud: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + Connect only to the specified node(s) Ühendu ainult määratud node'i(de)ga - Connect through SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: - Corrupted block database detected Tuvastati vigane bloki andmebaas - + Debugging/Testing options: + + + + Disable safemode, override a real safe mode event (default: 0) + + + Discover own IP address (default: 1 when listening and no -externalip) Leia oma IP aadress (vaikeväärtus: 1, kui kuulatakse ning puudub -externalip) - Do not load the wallet and disable wallet RPC calls - Do you want to rebuild the block database now? Kas soovid bloki andmebaasi taastada? - Error initializing block database Tõrge bloki andmebaasi käivitamisel - Error initializing wallet database environment %s! Tõrge rahakoti keskkonna %s käivitamisel! - Error loading block database Tõrge bloki baasi lugemisel - Error opening block database Tõrge bloki andmebaasi avamisel - Error: Disk space is low! Tõrge: liiga vähe kettaruumi! - Error: Wallet locked, unable to create transaction! Tõrge: Rahakott on lukus, tehingu loomine ei ole võimalik! - Error: system error: Tõrge: süsteemi tõrge: - Failed to listen on any port. Use -listen=0 if you want this. Pordi kuulamine nurjus. Soovikorral kasuta -listen=0. - Failed to read block info Tõrge bloki sisu lugemisel - Failed to read block Bloki lugemine ebaõnnestus - Failed to sync block index Bloki indeksi sünkimine ebaõnnestus - Failed to write block index Bloki indeksi kirjutamine ebaõnnestus - Failed to write block info Bloki sisu kirjutamine ebaõnnestus - Failed to write block Tõrge bloki sisu kirjutamisel - Failed to write file info Tõrge faili info kirjutamisel - Failed to write to coin database Tõrge mündi andmebaasi kirjutamisel - Failed to write transaction index Tehingu indeksi kirjutamine ebaõnnestus - Failed to write undo data Tagasivõtmise andmete kirjutamine ebaõnnestus - Fee per kB to add to transactions you send - + Fees smaller than this are considered zero fee (for relaying) (default: + + + Find peers using DNS lookup (default: 1 unless -connect) Otsi DNS'i lookup'i kastavaid peere (vaikeväärtus: 1, kui mitte -connect) - + Force safe mode (default: 0) + + + Generate coins (default: 0) - How many blocks to check at startup (default: 288, 0 = all) Käivitamisel kontrollitavate blokkide arv (vaikeväärtus: 288, 0=kõik) - - How thorough the block verification is (0-4, default: 3) - Blokkide kontrollimise põhjalikkus (0-4, vaikeväärtus: 3) - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? - Invalid -onion address: '%s' - Not enough file descriptors available. - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files Taasta bloki jada indeks blk000??.dat failist - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server + Set database cache size in megabytes (%d to %d, default: %d) - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) Määra RPC kõnede haldurite arv (vaikeväärtus: 4) - Specify wallet file (within data directory) - - Start Dogecoin Core server + Spend unconfirmed change when sending transactions (default: 1) - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): + Usage (deprecated, use bitcoin-cli): - Verifying blocks... Kontrollin blokke... - Verifying wallet... Kontrollin rahakotti... - Wait for RPC server to start - Wallet %s resides outside data directory %s - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex - Imports blocks from external blk000??.dat file Impordi blokid välisest blk000??.dat failist - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Information Informatsioon - Invalid amount for -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) Säilita kogu tehingu indeks (vaikeväärtus: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Maksimaalne saamise puhver -connection kohta , <n>*1000 baiti (vaikeväärtus: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Maksimaalne saatmise puhver -connection kohta , <n>*1000 baiti (vaikeväärtus: 1000) - Only accept block chain matching built-in checkpoints (default: 1) Tunnusta ainult sisseehitatud turvapunktidele vastavaid bloki jadu (vaikeväärtus: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Ühenda ainult node'idega <net> võrgus (IPv4, IPv6 või Tor) - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL valikud: (vaata Bitcoini Wikist või SSL sätete juhendist) + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL valikud: (vaata Dogecoini Wikist või SSL sätete juhendist) + + + Send command to Dogecoin Core + - Send trace/debug info to console instead of debug.log file Saada jälitus/debug, debug.log faili asemel, konsooli - Set minimum block size in bytes (default: 0) Sea minimaalne bloki suurus baitides (vaikeväärtus: 0) - + 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) Kahanda programmi käivitamisel debug.log faili (vaikeväärtus: 1, kui ei ole -debug) - Signing transaction failed - Specify connection timeout in milliseconds (default: 5000) Sea ühenduse timeout millisekundites (vaikeväärtus: 5000) - + Start Dogecoin Core Daemon + + + System error: Süsteemi tõrge: - Transaction amount too small - Transaction amounts must be positive - Transaction too large - Use UPnP to map the listening port (default: 0) Kasuta kuulatava pordi määramiseks UPnP ühendust (vaikeväärtus: 0) - Use UPnP to map the listening port (default: 1 when listening) Kasuta kuulatava pordi määramiseks UPnP ühendust (vaikeväärtus: 1, kui kuulatakse) - Username for JSON-RPC connections JSON-RPC ühenduste kasutajatunnus - Warning Hoiatus - Warning: This version is obsolete, upgrade required! Hoiatus: versioon on aegunud, uuendus on nõutav! - + Zapping all transactions from wallet... + + + + on startup + + + version versioon - wallet.dat corrupt, salvage failed wallet.dat fail on katki, päästmine ebaõnnestus - Password for JSON-RPC connections JSON-RPC ühenduste salasõna - Allow JSON-RPC connections from specified IP address JSON-RPC ühenduste lubamine kindla IP pealt - Send commands to node running on <ip> (default: 127.0.0.1) Saada käsklusi node'ile IP'ga <ip> (vaikeväärtus: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) Käivita käsklus, kui parim plokk muutub (käskluse %s asendatakse ploki hash'iga) - Upgrade wallet to latest format Uuenda rahakott uusimasse vormingusse - Set key pool size to <n> (default: 100) Sea võtmete hulgaks <n> (vaikeväärtus: 100) - Rescan the block chain for missing wallet transactions Otsi ploki jadast rahakoti kadunud tehinguid - Use OpenSSL (https) for JSON-RPC connections Kasuta JSON-RPC ühenduste jaoks OpenSSL'i (https) - Server certificate file (default: server.cert) Serveri sertifikaadifail (vaikeväärtus: server.cert) - Server private key (default: server.pem) Serveri privaatvõti (vaikeväärtus: server.pem) - This help message Käesolev abitekst - Unable to bind to %s on this computer (bind returned error %d, %s) Selle arvutiga ei ole võimalik siduda %s külge (katse nurjus %d, %s tõttu) - Allow DNS lookups for -addnode, -seednode and -connect -addnode, -seednode ja -connect tohivad kasutada DNS lookup'i - Loading addresses... Aadresside laadimine... - Error loading wallet.dat: Wallet corrupted Viga wallet.dat käivitamisel. Vigane rahakkott - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Viga wallet.dat käivitamisel: Rahakott nõuab Dogecoini uusimat versiooni - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Rahakott tuli ümberkirjutada: toimingu lõpetamiseks taaskäivita Dogecoin - Error loading wallet.dat Viga wallet.dat käivitamisel - Invalid -proxy address: '%s' Vigane -proxi aadress: '%s' - Unknown network specified in -onlynet: '%s' Kirjeldatud tundmatu võrgustik -onlynet'is: '%s' - Unknown -socks proxy version requested: %i Küsitud tundmatu -socks proxi versioon: %i - Cannot resolve -bind address: '%s' Tundmatu -bind aadress: '%s' - Cannot resolve -externalip address: '%s' Tundmatu -externalip aadress: '%s' - Invalid amount for -paytxfee=<amount>: '%s' -paytxfee=<amount> jaoks vigane kogus: '%s' - Invalid amount Kehtetu summa - Insufficient funds Liiga suur summa - Loading block index... Klotside indeksi laadimine... - Add a node to connect to and attempt to keep the connection open Lisa node ning hoia ühendus avatud - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - %s'ga ei ole võimalik sellest arvutist siduda. Dogecoin juba töötab. - - - Loading wallet... Rahakoti laadimine... - Cannot downgrade wallet Rahakoti vanandamine ebaõnnestus - Cannot write default address Tõrge vaikimisi aadressi kirjutamisel - Rescanning... Üleskaneerimine... - Done loading Laetud - To use the %s option %s valiku kasutamine - Error Tõrge - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4037,4 +3377,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Kui seda faili ei ole, loo see ainult-omanikule-lugemiseks faili õigustes. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_eu_ES.ts b/src/qt/locale/bitcoin_eu_ES.ts index 969a414bb..6799dbd53 100644 --- a/src/qt/locale/bitcoin_eu_ES.ts +++ b/src/qt/locale/bitcoin_eu_ES.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Klik bikoitza helbidea edo etiketa editatzeko - Create a new address Sortu helbide berria - &New - Copy the currently selected address to the system clipboard Kopiatu hautatutako helbidea sistemaren arbelera - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete &Ezabatu - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) Komaz bereizitako artxiboa (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Etiketa - Address Helbidea - (no label) (etiketarik ez) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase Sartu pasahitza - New passphrase Pasahitz berria - Repeat new passphrase Errepikatu pasahitz berria - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Sartu zorrorako pasahitz berria.<br/> Mesedez erabili <b>gutxienez ausazko 10 karaktere</b>, edo <b>gutxienez zortzi hitz</b> pasahitza osatzeko. - Encrypt wallet Enkriptatu zorroa - This operation needs your wallet passphrase to unlock the wallet. Eragiketa honek zorroaren pasahitza behar du zorroa desblokeatzeko. - Unlock wallet Desblokeatu zorroa - This operation needs your wallet passphrase to decrypt the wallet. Eragiketa honek zure zorroaren pasahitza behar du, zorroa desenkriptatzeko. - Decrypt wallet Desenkriptatu zorroa - Change passphrase Aldatu pasahitza - Enter the old and new passphrase to the wallet. Sartu zorroaren pasahitz zaharra eta berria. - Confirm wallet encryption Berretsi zorroaren enkriptazioa - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted Zorroa enkriptatuta - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed Zorroaren enkriptazioak huts egin du - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Zorroaren enkriptazioak huts egin du barne-errore baten ondorioz. Zure zorroa ez da enkriptatu. - - The supplied passphrases do not match. Eman dituzun pasahitzak ez datoz bat. - Wallet unlock failed Zorroaren desblokeoak huts egin du - - - The passphrase entered for the wallet decryption was incorrect. Zorroa desenkriptatzeko sartutako pasahitza okerra da. - Wallet decryption failed Zorroaren desenkriptazioak huts egin du - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... Sarearekin sinkronizatzen... - &Overview &Gainbegiratu - Node - Show general overview of wallet Ikusi zorroaren begirada orokorra - &Transactions &Transakzioak - Browse transaction history Ikusi transakzioen historia - E&xit Irten - Quit application Irten aplikaziotik - - Show information about Dogecoin Core + Show information about Dogecoin Erakutsi Dogecoin-i buruzko informazioa - - About &Qt &Qt-ari buruz - Show information about Qt Erakutsi Dogecoin-i buruzko informazioa - &Options... &Aukerak... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption Aldatu zorroa enkriptatzeko erabilitako pasahitza - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &Artxiboa - &Settings &Ezarpenak - &Help &Laguntza - Tabs toolbar Fitxen tresna-barra - - [testnet] [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network Konexio aktibo %n Dogecoin-en sarera%n konexio aktibo Dogecoin-en sarera - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date Egunean - Catching up... Eguneratzen... - Sent transaction Bidalitako transakzioa - Incoming transaction Sarrerako transakzioa - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Zorroa <b>enkriptatuta</b> eta <b>desblokeatuta</b> dago une honetan - Wallet is <b>encrypted</b> and currently <b>locked</b> Zorroa <b>enkriptatuta</b> eta <b>blokeatuta</b> dago une honetan - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: Kopurua - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Kopurua - Address Helbidea - Date Data - Confirmations - Confirmed - Priority - Copy address Kopiatu helbidea - Copy label Kopiatu etiketa - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (etiketarik ez) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address Editatu helbidea - &Label &Etiketa - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Helbidea - New receiving address Jasotzeko helbide berria - New sending address Bidaltzeko helbide berria - Edit receiving address Editatu jasotzeko helbidea - Edit sending address Editatu bidaltzeko helbidea - The entered address "%1" is already in the address book. Sartu berri den helbidea, "%1", helbide-liburuan dago jadanik. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. Ezin desblokeatu zorroa. - New key generation failed. Gako berriaren sorrerak huts egin du. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options Aukerak - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form Inprimakia - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - Konfirmatu gabe: - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> <b>Azken transakzioak</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,41 +1324,45 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Sartu Bitocin helbide bat (adb.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1674,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1867,155 +1517,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: &Etiketa: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + Kopiatu etiketa + + + Copy message + + + + Copy amount + + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address Helbidea - Amount Kopurua - Label Etiketa - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2023,285 +1655,225 @@ Address: %4 RecentRequestsTableModel - Date Data - Label Etiketa - Message - Amount Kopurua - (no label) (etiketarik ez) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins Bidali txanponak - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: Kopurua - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Bidali hainbat jasotzaileri batera - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: Saldoa: - Confirm the send action Berretsi bidaltzeko ekintza - S&end - Confirm send coins Berretsi txanponak bidaltzea - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Sartu Bitocin helbide bat (adb.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. Ordaintzeko kopurua 0 baino handiagoa izan behar du. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (etiketarik ez) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2309,116 +1881,85 @@ Address: %4 SendCoinsEntry - - - A&mount: K&opurua: - Pay &To: Ordaindu &honi: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Sartu etiketa bat helbide honetarako, eta gehitu zure helbide-liburuan - &Label: &Etiketa: - Choose previously used address - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard Itsatsi helbidea arbeletik - Alt+P Alt+P - - - Remove this entry - Message: Mezua - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Sartu Bitocin helbide bat (adb.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2426,192 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard Itsatsi helbidea arbeletik - Alt+P Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Sartu Bitocin helbide bat (adb.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2619,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2637,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2645,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 Zabalik %1 arte - + conflicted + + + %1/offline - %1/unconfirmed %1/konfirmatu gabe - %1 confirmations %1 konfirmazioak - Status - , broadcast through %n node(s) - Date Data - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount Kopurua - true - false - , has not been successfully broadcast yet , ez da arrakastaz emititu oraindik - Open for %n more block(s) - unknown ezezaguna @@ -2825,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details Transakzioaren xehetasunak - This pane shows a detailed description of the transaction Panel honek transakzioaren deskribapen xehea erakusten du @@ -2838,118 +2282,102 @@ Address: %4 TransactionTableModel - Date Data - Type Mota - Address Helbidea - Amount Kopurua - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 Zabalik %1 arte - - Offline (%1 confirmations) - Offline (%1 konfirmazio) - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) Konfirmatuta (%1 konfirmazio) - This block was not received by any other nodes and will probably not be accepted! Bloke hau ez du beste inongo nodorik jaso, eta seguruenik ez da onartuko! - Generated but not accepted Sortua, baina ez onartua - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Jasoa honekin: - Received from - Sent to Honi bidalia: - Payment to yourself Ordainketa zeure buruari - Mined Bildua - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. Transakzioaren egoera. Pasatu sagua gainetik konfirmazio kopurua ikusteko. - Date and time that the transaction was received. Transakzioa jasotako data eta ordua. - Type of transaction. Transakzio mota. - Destination address of transaction. Transakzioaren xede-helbidea. - Amount removed from or added to balance. Saldoan kendu edo gehitutako kopurua. @@ -2957,178 +2385,142 @@ Address: %4 TransactionView - - All Denak - Today Gaur - This week Aste honetan - This month Hil honetan - Last month Azken hilean - This year Aurten - Range... Muga... - Received with Jasota honekin: - Sent to Hona bidalia: - To yourself Zeure buruari - Mined Bildua - Other Beste - Enter address or label to search Sartu bilatzeko helbide edo etiketa - Min amount Kopuru minimoa - Copy address Kopiatu helbidea - Copy label Kopiatu etiketa - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Komaz bereizitako artxiboa (*.csv) - Confirmed - Date Data - Type Mota - Label Etiketa - Address Helbidea - Amount Kopurua - ID - Range: - to @@ -3136,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3144,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3152,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands Komandoen lista - Get help for a command Laguntza komando batean - Options: Aukerak - - Specify configuration file (default: dogecoin.conf) - Ezarpen fitxategia aukeratu (berezkoa: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Ezarpen fitxategia aukeratu (berezkoa: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - pid fitxategia aukeratu (berezkoa: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + pid fitxategia aukeratu (berezkoa: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3310,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - Laguntza mezu hau - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + Laguntza mezu hau + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... Birbilatzen... - Done loading Zamaketa amaitua - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_fa.ts b/src/qt/locale/bitcoin_fa.ts index d982eb314..5751f9bb5 100644 --- a/src/qt/locale/bitcoin_fa.ts +++ b/src/qt/locale/bitcoin_fa.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O ⏎ ⏎ این یک نرم‌افزار آزمایشی است⏎ ⏎ نرم افزار تحت مجوز MIT/X11 منتشر شده است. پروندهٔ COPYING یا نشانی http://www.opensource.org/licenses/mit-license.php. را ببینید⏎ ⏎ این محصول شامل نرم‌افزار توسعه داده‌شده در پروژهٔ OpenSSL است. در این نرم‌افزار از OpenSSL Toolkit (http://www.openssl.org/) و نرم‌افزار رمزنگاری نوشته شده توسط اریک یانگ (eay@cryptsoft.com) و UPnP توسط توماس برنارد استفاده شده است. - Copyright حق تألیف - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label برای ویرایش نشانی یا برچسب دوبار کلیک کنید - Create a new address ایجاد نشانی جدید - &New - Copy the currently selected address to the system clipboard - نشانی انتخاب شده را در حافظهٔ سیستم کپی کن! + کپی نشانی انتخاب شده به حافظهٔ سیستم - &Copy - C&lose - &Copy Address &کپی نشانی - Delete the currently selected address from the list حذف نشانی انتخاب‌شده از لیست - Export the data in the current tab to a file خروجی گرفتن داده‌های برگهٔ فعلی به یک پرونده - &Export &صدور - &Delete &حذف - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. این‌ها نشانی‌های بیت‌کوین شما برای ارسال وجود هستند. همیشه قبل از ارسال سکه‌ها، نشانی دریافت‌کننده و مقدار ارسالی را بررسی کنید. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label کپی و برچسب‌&گذاری - &Edit &ویرایش - Export Address List - Comma separated file (*.csv) پروندهٔ نوع CSV جداشونده با کاما (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label برچسب - Address - نشانی + آدرس - (no label) (بدون برچسب) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog پنجرهٔ گذرواژه - Enter passphrase گذرواژه را وارد کنید - New passphrase گذرواژهٔ جدید - Repeat new passphrase تکرار گذرواژهٔ جدید - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. گذرواژهٔ جدید کیف پول خود را وارد کنید.<br/>لطفاً از گذرواژه‌ای با <b>حداقل ۱۰ حرف تصادفی</b>، یا <b>حداقل هشت کلمه</b> انتخاب کنید. - Encrypt wallet رمزنگاری کیف پول - This operation needs your wallet passphrase to unlock the wallet. انجام این عملیات نیازمند گذرواژهٔ کیف پول شما برای باز کردن قفل آن است. - Unlock wallet باز کردن قفل کیف پول - This operation needs your wallet passphrase to decrypt the wallet. انجام این عملیات نیازمند گذرواژهٔ کیف پول شما برای رمزگشایی کردن آن است. - Decrypt wallet رمزگشایی کیف پول - Change passphrase تغییر گذرواژه - Enter the old and new passphrase to the wallet. گذرواژهٔ قدیمی و جدید کیف پول را وارد کنید. - Confirm wallet encryption تأیید رمزنگاری کیف پول - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! هشدار: اگر کیف پول خود را رمزنگاری کنید و گذرواژه را فراموش کنید، <b>تمام دارایی بیت‌کوین خود را از دست خواهید داد</b>! - Are you sure you wish to encrypt your wallet? آیا مطمئن هستید که می‌خواهید کیف پول خود را رمزنگاری کنید؟ - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. مهم: هر نسخهٔ پشتیبانی که تا کنون از کیف پول خود تهیه کرده‌اید، باید با کیف پول رمزنگاری شدهٔ جدید جایگزین شود. به دلایل امنیتی، پروندهٔ قدیمی کیف پول بدون رمزنگاری، تا زمانی که از کیف پول رمزنگاری‌شدهٔ جدید استفاده نکنید، غیرقابل استفاده خواهد بود. - - Warning: The Caps Lock key is on! هشدار: کلید Caps Lock روشن است! - - Wallet encrypted کیف پول رمزنگاری شد - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. بیت‌کوین هم اکنون بسته می‌شود تا فرایند رمزگذاری را تمام کند. به خاطر داشته باشید که رمزگذاری کردن کیف پول‌تان نمی‌تواند به طور کامل بیت‌کوین‌های شما را در برابر دزدیده شدن توسط بدافزارهایی که احتمالاً رایانهٔ شما را آلوده می‌کنند، محافظت نماید. - - - - Wallet encryption failed - رمزنگاری کیف پول با خطا مواجه شد + رمزنگاری کیف پول با شکست مواجه شد - Wallet encryption failed due to an internal error. Your wallet was not encrypted. رمزنگاری کیف پول بنا به یک خطای داخلی با شکست مواجه شد. کیف پول شما رمزنگاری نشد. - - The supplied passphrases do not match. گذرواژه‌های داده شده با هم تطابق ندارند. - Wallet unlock failed بازگشایی قفل کیف‌پول با شکست مواجه شد - - - The passphrase entered for the wallet decryption was incorrect. گذرواژهٔ وارد شده برای رمزگشایی کیف پول نادرست بود. - Wallet decryption failed رمزگشایی ناموفق کیف پول - Wallet passphrase was successfully changed. گذرواژهٔ کیف پول با موفقیت عوض شد. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... &امضای پیام... - Synchronizing with network... همگام‌سازی با شبکه... - &Overview &بررسی اجمالی - Node - Show general overview of wallet نمایش بررسی اجمالی کیف پول - &Transactions &تراکنش‌ها - Browse transaction history مرور تاریخچهٔ تراکنش‌ها - E&xit &خروج - Quit application خروج از برنامه - - Show information about Dogecoin Core + Show information about Dogecoin نمایش اطلاعات در مورد بیت‌کوین - - About &Qt دربارهٔ &کیوت - Show information about Qt نمایش اطلاعات دربارهٔ کیوت - &Options... &تنظیمات... - &Encrypt Wallet... &رمزنگاری کیف پول... - &Backup Wallet... &پیشتیبان‌گیری از کیف پول... - &Change Passphrase... &تغییر گذرواژه... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... دریافت بلوک‌ها از دیسک... - Reindexing blocks on disk... بازنشانی بلوک‌ها روی دیسک... - Send coins to a Dogecoin address ارسال وجه به نشانی بیت‌کوین - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin تغییر و اصلاح تنظیمات پیکربندی بیت‌کوین - Backup wallet to another location تهیهٔ پشتیبان از کیف پول در یک مکان دیگر - Change the passphrase used for wallet encryption تغییر گذرواژهٔ مورد استفاده در رمزنگاری کیف پول - &Debug window پنجرهٔ ا&شکال‌زدایی - Open debugging and diagnostic console باز کردن کنسول خطایابی و اشکال‌زدایی - &Verify message... با&زبینی پیام... - Dogecoin بیت‌کوین - Wallet کیف پول - &Send &ارسال - &Receive &دریافت - - &Show / Hide &نمایش/ عدم نمایش - Show or hide the main Window نمایش یا مخفی‌کردن پنجرهٔ اصلی - Encrypt the private keys that belong to your wallet رمزنگاری کلیدهای خصوصی متعلق به کیف پول شما - Sign messages with your Dogecoin addresses to prove you own them برای اثبات اینکه پیام‌ها به شما تعلق دارند، آن‌ها را با نشانی بیت‌کوین خود امضا کنید - Verify messages to ensure they were signed with specified Dogecoin addresses برای حصول اطمینان از اینکه پیام با نشانی بیت‌کوین مشخص شده امضا است یا خیر، پیام را شناسایی کنید - &File - &پرونده + &فایل - &Settings &تنظیمات - &Help &کمک‌رسانی - Tabs toolbar نوارابزار برگه‌ها - - [testnet] [شبکهٔ آزمایش] - Dogecoin Core هسته Dogecoin - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client کلاینت بیت‌کوین - %n active connection(s) to Dogecoin network %n ارتباط فعال با شبکهٔ بیت‌کوین - No block source available... منبعی برای دریافت بلاک در دسترس نیست... - Processed %1 of %2 (estimated) blocks of transaction history. %1 بلاک از مجموع %2 بلاک (تخمینی) تاریخچهٔ تراکنش‌ها پردازش شده است. - Processed %1 blocks of transaction history. %1 بلاک از تاریخچهٔ تراکنش‌ها پردازش شده است. - %n hour(s) %n ساعت - %n day(s) %n روز - %n week(s) %n هفته - + %1 and %2 + + + + %n year(s) + + + %1 behind %1 عقب‌تر - Last received block was generated %1 ago. آخرین بلاک دریافتی %1 پیش ایجاد شده است. - Transactions after this will not yet be visible. تراکنش‌های بعد از این هنوز قابل مشاهده نیستند. - Error خطا - Warning هشدار - Information اطلاعات - Up to date وضعیت به‌روز - Catching up... به‌روز رسانی... - Sent transaction تراکنش ارسال شد - Incoming transaction تراکنش دریافت شد - Date: %1 Amount: %2 Type: %3 @@ -675,25 +547,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> کیف پول <b>رمزنگاری شده</b> است و هم‌اکنون <b>باز</b> است - Wallet is <b>encrypted</b> and currently <b>locked</b> کیف پول <b>رمزنگاری شده</b> است و هم‌اکنون <b>قفل</b> است - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. یک خطای مهلک اتفاق افتاده است. بیت‌کوین نمی‌تواند بدون مشکل به کار خود ادامه دهد و بسته خواهد شد. ClientModel - Network Alert پیام شبکه @@ -701,291 +569,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: مبلغ: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount مبلغ - Address نشانی - Date تاریخ - Confirmations - Confirmed تأیید شده - Priority - Copy address کپی نشانی - Copy label کپی برچسب - - Copy amount کپی مقدار - Copy transaction ID کپی شناسهٔ تراکنش - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (بدون برچسب) - change from %1 (%2) - (change) @@ -993,67 +800,54 @@ Address: %4 EditAddressDialog - Edit Address ویرایش نشانی - &Label &برچسب - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &نشانی - New receiving address نشانی دریافتی جدید - New sending address نشانی ارسالی جدید - Edit receiving address ویرایش نشانی دریافتی - Edit sending address ویرایش نشانی ارسالی - The entered address "%1" is already in the address book. نشانی وارد شده «%1» در حال حاضر در دفترچه وجود دارد. - The entered address "%1" is not a valid Dogecoin address. نشانی وارد شده «%1» یک نشانی معتبر بیت‌کوین نیست. - Could not unlock wallet. نمی‌توان کیف پول را رمزگشایی کرد. - New key generation failed. ایجاد کلید جدید با شکست مواجه شد. @@ -1061,27 +855,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. یک مسیر دادهٔ جدید ایجاد خواهد شد. - name نام - Directory already exists. Add %1 if you intend to create a new directory here. این پوشه در حال حاضر وجود دارد. اگر می‌خواهید یک دایرکتوری جدید در این‌جا ایجاد کنید، %1 را اضافه کنید. - Path already exists, and is not a directory. مسیر داده شده موجود است و به یک پوشه اشاره نمی‌کند. - Cannot create data directory here. نمی‌توان پوشهٔ داده در این‌جا ایجاد کرد. @@ -1089,52 +878,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core هسته Dogecoin - version نسخه - Usage: استفاده: - command-line options گزینه‌های خط فرمان - UI options گزینه‌های رابط کاربری - Set language, for example "de_DE" (default: system locale) زبان را تنظیم کنید؛ برای مثال «de_DE» (زبان پیش‌فرض محلی) - Start minimized اجرای برنامه به صورت کوچک‌شده - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) نمایش پنجرهٔ خوشامدگویی در ابتدای اجرای برنامه (پیش‌فرض: 1) - Choose data directory on startup (default: 0) انتخاب مسیر داده‌ها در ابتدای اجرای برنامه (پیش‌فرض: 0) @@ -1142,57 +925,46 @@ Address: %4 Intro - Welcome خوش‌آمدید - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory استفاده از مسیر پیش‌فرض - Use a custom data directory: استفاده از یک مسیر سفارشی: - Dogecoin بیت‌کوین - Error: Specified data directory "%1" can not be created. خطا: نمی‌توان پوشه‌ای برای داده‌ها در «%1» ایجاد کرد. - Error خطا - GB of free space available گیگابات فضا موجود است - (of %1GB needed) (از %1 گیگابایت فضای مورد نیاز) @@ -1200,27 +972,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1228,243 +995,206 @@ Address: %4 OptionsDialog - Options گزینه‌ها - &Main &عمومی - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. کارمزد اختیاریِ هر کیلوبایت برای انتقال سریع‌تر تراکنش. اکثر تراکنش‌ها ۱ کیلوبایتی هستند. - Pay transaction &fee پرداخت &کارمزد تراکنش - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. اجرای خودکار بیت‌کوین در زمان ورود به سیستم. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &اجرای بیت‌کوین با ورود به سیستم - Size of &database cache - - Set database cache size in megabytes (default: 25) - تنظیم اندازهٔ کَش پایگاه‌داده برحسب مگابایت (پیش‌فرض: ۲۵) - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. بازنشانی تمام تنظیمات به پیش‌فرض. - &Reset Options &بازنشانی تنظیمات - &Network &شبکه - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. باز کردن خودکار درگاه شبکهٔ بیت‌کوین روی روترها. تنها زمانی کار می‌کند که روتر از پروتکل UPnP پشتیبانی کند و این پروتکل فعال باشد. - Map port using &UPnP نگاشت درگاه شبکه با استفاده از پروتکل &UPnP - Proxy &IP: آ&ی‌پی پراکسی: - &Port: &درگاه: - Port of the proxy (e.g. 9050) درگاه پراکسی (مثال 9050) - SOCKS &Version: &نسخهٔ SOCKS: - SOCKS version of the proxy (e.g. 5) نسخهٔ پراکسی SOCKS (مثلاً 5) - &Window &پنجره - Show only a tray icon after minimizing the window. تنها بعد از کوچک کردن پنجره، tray icon را نشان بده. - &Minimize to the tray instead of the taskbar &کوچک کردن به سینی به‌جای نوار وظیفه - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. مخفی کردن در نوار کناری به‌جای خروج هنگام بستن پنجره. زمانی که این گزینه فعال است، برنامه فقط با استفاده از گزینهٔ خروج در منو قابل بسته شدن است. - M&inimize on close کوچک کردن &در زمان بسته شدن - &Display &نمایش - User Interface &language: زبان &رابط کاربری: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. زبان رابط کاربر می‌تواند در این‌جا تنظیم شود. تنظیمات بعد از ظروع مجدد بیت‌کوین اعمال خواهد شد. - &Unit to show amounts in: &واحد نمایش مبالغ: - Choose the default subdivision unit to show in the interface and when sending coins. انتخاب واحد پول مورد استفاده برای نمایش در پنجره‌ها و برای ارسال سکه. - Whether to show Dogecoin addresses in the transaction list or not. نمایش یا عدم نمایش نشانی‌های بیت‌کوین در لیست تراکنش‌ها. - &Display addresses in transaction list نمایش ن&شانی‌ها در فهرست تراکنش‌ها - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &تأیید - &Cancel &لغو - default پیش‌فرض - none - Confirm options reset تأییدِ بازنشانی گزینه‌ها - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. آدرس پراکسی داده شده صحیح نیست. @@ -1472,69 +1202,54 @@ Address: %4 OverviewPage - Form فرم - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. اطلاعات نمایش‌داده شده ممکن است قدیمی باشند. بعد از این که یک اتصال با شبکه برقرار شد، کیف پول شما به‌صورت خودکار با شبکهٔ بیت‌کوین همگام‌سازی می‌شود. اما این روند هنوز کامل نشده است. - - Unconfirmed: - تأیید نشده: - - - Wallet کیف پول - - Confirmed: - تأیید شده: + Available: + - Your current spendable balance تراز علی‌الحساب شما - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance مجموع تراکنش‌هایی که هنوز تأیید نشده‌اند؛ و هنوز روی تراز علی‌الحساب اعمال نشده‌اند - Immature: نارسیده: - Mined balance that has not yet matured تراز استخراج شده از معدن که هنوز بالغ نشده است - Total: جمع کل: - Your current total balance تراز کل فعلی شما - <b>Recent transactions</b> <b>تراکنش‌های اخیر</b> - - out of sync ناهمگام @@ -1542,93 +1257,70 @@ Address: %4 PaymentServer - - URI handling مدیریت URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. نشانی اینترنتی قابل تجزیه و تحلیل نیست! دلیل این وضعیت ممکن است یک نشانی نامعتبر بیت‌کوین و یا پارامترهای ناهنجار در URI بوده باشد. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler نمی‌توان بیت‌کوین را اجرا کرد: کنترل‌کنندهٔ کلیک-و-پرداخت - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1636,41 +1328,45 @@ Address: %4 QObject - - Dogecoin بیت‌کوین - Error: Specified data directory "%1" does not exist. خطا: پوشهٔ مشخص شده برای داده‌ها در «%1» وجود ندارد. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + یک آدرس بیت‌کوین وارد کنید (مثلاً DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code ذخیرهٔ کد QR - PNG Image (*.png) @@ -1678,192 +1374,146 @@ Address: %4 RPCConsole - Client name نام کلاینت - - - - - - - - - - - N/A ناموجود - Client version نسخهٔ کلاینت - &Information &اطلاعات - Debug window - General - Using OpenSSL version نسخهٔ OpenSSL استفاده شده - Startup time زمان آغاز به کار - Network شبکه - Name اسم - Number of connections تعداد ارتباطات - Block chain زنجیرهٔ بلوک‌ها - Current number of blocks تعداد فعلی بلوک‌ها - Estimated total blocks تعداد تخمینی بلوک‌ها - Last block time زمان آخرین بلوک - &Open با&ز کردن - &Console &کنسول - &Network Traffic - &Clear - Totals - In: - Out: - Build date ساخت تاریخ - Debug log file فایلِ لاگِ اشکال زدایی - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. فایلِ لاگِ اشکال زدایی Dogecoin را از دایرکتوری جاری داده ها باز کنید. این عملیات ممکن است برای فایلهای لاگِ حجیم طولانی شود. - Clear console پاکسازی کنسول - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. به کنسور RPC بیت‌کوین خوش آمدید. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. دکمه‌های بالا و پایین برای پیمایش تاریخچه و <b>Ctrl-L</b> برای پاک کردن صفحه. - Type <b>help</b> for an overview of available commands. برای نمایش یک مرور کلی از دستورات ممکن، عبارت <b>help</b> را بنویسید. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1871,155 +1521,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: &برچسب: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + کپی برچسب + + + Copy message + + + + Copy amount + کپی مقدار + ReceiveRequestDialog - QR Code کد QR - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address نشانی - Amount مبلغ - Label برچسب - Message پیام - Resulting URI too long, try to reduce the text for label / message. URL ایجاد شده خیلی طولانی است. سعی کنید طول برچسب و یا پیام را کمتر کنید. - Error encoding URI into QR Code. خطا در تبدیل نشانی اینترنتی به صورت کد QR. @@ -2027,285 +1659,225 @@ Address: %4 RecentRequestsTableModel - Date تاریخ - Label برچسب - Message پیام - Amount مبلغ - (no label) (بدون برچسب) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins ارسال سکه - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: مبلغ: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once ارسال به چند دریافت‌کنندهٔ به‌طور همزمان - Add &Recipient &دریافت‌کنندهٔ جدید - Clear all fields of the form. - Clear &All پاکسازی &همه - Balance: تزار: - Confirm the send action عملیات ارسال را تأیید کنید - S&end &ارسال - Confirm send coins ارسال سکه را تأیید کنید - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - یک آدرس بیت‌کوین وارد کنید (مثلاً DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount کپی مقدار - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. نشانی گیرنده معتبر نیست؛ لطفا دوباره بررسی کنید. - The amount to pay must be larger than 0. مبلغ پرداخت باید بیشتر از ۰ باشد. - The amount exceeds your balance. میزان پرداخت از تراز شما بیشتر است. - The total exceeds your balance when the %1 transaction fee is included. با احتساب هزینهٔ %1 برای هر تراکنش، مجموع میزان پرداختی از مبلغ تراز شما بیشتر می‌شود. - Duplicate address found, can only send to each address once per send operation. یک نشانی تکراری پیدا شد. در هر عملیات ارسال، به هر نشانی فقط مبلغ می‌توان ارسال کرد. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (بدون برچسب) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2313,116 +1885,85 @@ Address: %4 SendCoinsEntry - - - A&mount: A&مبلغ : - Pay &To: پرداخ&ت به: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) نشانی مقصد برای پرداخت (مثلاً DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book برای این نشانی یک برچسب وارد کنید تا در دفترچهٔ آدرس ذخیره شود - &Label: &برچسب: - Choose previously used address - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard چسباندن نشانی از حافظهٔ سیستم - Alt+P Alt+P - - - Remove this entry - Message: پیام: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - یک آدرس بیت‌کوین وارد کنید (مثلاً DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2430,192 +1971,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message امضاها - امضا / تأیید یک پیام - &Sign Message ا&مضای پیام - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. برای احراز اینکه پیام‌ها از جانب شما هستند، می‌توانید آن‌ها را با نشانی خودتان امضا کنید. مراقب باشید چیزی که بدان اطمینان ندارید را امضا نکنید زیرا حملات فیشینگ ممکن است بخواهند از.پیامی با امضای شما سوءاستفاده کنند. تنها مواردی را که حاوی اطلاعات دقیق و قابل قبول برای شما هستند امضا کنید. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) نشانی مورد استفاده برای امضا کردن پیام (برای مثال DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard چسباندن نشانی از حافظهٔ سیستم - Alt+P Alt+P - Enter the message you want to sign here پیامی را که می‌خواهید امضا کنید در اینجا وارد کنید - Signature امضا - Copy the current signature to the system clipboard امضای فعلی را به حافظهٔ سیستم کپی کن - Sign the message to prove you own this Dogecoin address برای اثبات تعلق این نشانی به شما، پیام را امضا کنید - Sign &Message ا&مضای پیام - Reset all sign message fields بازنشانی تمام فیلدهای پیام - - Clear &All پاک &کردن همه - &Verify Message &شناسایی پیام - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. برای شناسایی پیام، نشانیِ امضا کننده و متن پیام را وارد کنید. (مطمئن شوید که فاصله‌ها، تب‌ها و خطوط را عیناً کپی می‌کنید.) مراقب باشید در امضا چیزی بیشتر از آنچه در پیام می‌بینید وجود نداشته باشد تا فریب دزدان اینترنتی و حملات از نوع MITM را نخورید. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) نشانی مورد استفاده برای امضا کردن پیام (برای مثال DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address برای حصول اطمینان از اینکه پیام با نشانی بیت‌کوین مشخص شده امضا است یا خیر، پیام را شناسایی کنید - Verify &Message &شناسایی پیام - Reset all verify message fields بازنشانی تمام فیلدهای پیام - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) یک نشانی بیت‌کوین وارد کنید (مثلاً DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature برای ایجاد یک امضای جدید روی «امضای پیام» کلیک کنید - - Enter Dogecoin signature - امضای بیت‌کوین را وارد کنید - - - - The entered address is invalid. نشانی وارد شده نامعتبر است. - - - - Please check the address and try again. لطفاً نشانی را بررسی کنید و دوباره تلاش کنید. - - The entered address does not refer to a key. نشانی وارد شده به هیچ کلیدی اشاره نمی‌کند. - Wallet unlock was cancelled. عملیات باز کرن قفل کیف پول لغو شد. - Private key for the entered address is not available. کلید خصوصی برای نشانی وارد شده در دسترس نیست. - Message signing failed. امضای پیام با شکست مواجه شد. - Message signed. پیام امضا شد. - The signature could not be decoded. امضا نمی‌تواند کدگشایی شود. - - Please check the signature and try again. لطفاً امضا را بررسی نموده و دوباره تلاش کنید. - The signature did not match the message digest. امضا با خلاصهٔ پیام مطابقت ندارد. - Message verification failed. شناسایی پیام با شکست مواجه شد. - Message verified. پیام شناسایی شد. @@ -2623,17 +2114,14 @@ Address: %4 SplashScreen - Dogecoin Core هسته Dogecoin - The Dogecoin Core developers - [testnet] آزمایش شبکه @@ -2641,7 +2129,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2649,179 +2136,138 @@ Address: %4 TransactionDesc - Open until %1 باز تا %1 - + conflicted + + + %1/offline %1/آفلاین - %1/unconfirmed %1/تأیید نشده - %1 confirmations %1 تأییدیه - Status وضعیت - , broadcast through %n node(s) ، پخش از طریق %n گره - Date تاریخ - Source منبع - Generated تولید شده - - From فرستنده - - - To گیرنده - - own address آدرس شما - label برچسب - - - - - Credit بدهی - matures in %n more block(s) بلوغ در %n بلوک دیگر - not accepted پذیرفته نشد - - - - Debit اعتبار - Transaction fee هزینهٔ تراکنش - Net amount مبلغ خالص - - Message پیام - Comment نظر - Transaction ID شناسهٔ تراکنش - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information اطلاعات اشکال‌زدایی - Transaction تراکنش - Inputs ورودی‌ها - Amount مبلغ - true درست - false نادرست - , has not been successfully broadcast yet ، هنوز با موفقیت ارسال نشده - Open for %n more block(s) باز برای %n بلوک دیگر - unknown ناشناس @@ -2829,12 +2275,10 @@ Address: %4 TransactionDescDialog - Transaction details جزئیات تراکنش - This pane shows a detailed description of the transaction این پانل شامل توصیف کاملی از جزئیات تراکنش است @@ -2842,118 +2286,102 @@ Address: %4 TransactionTableModel - Date تاریخ - Type نوع - Address نشانی - Amount مبلغ - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) باز برای %n بلوک دیگر - Open until %1 باز شده تا %1 - - Offline (%1 confirmations) - آفلاین (%1 تأییدیه) - - - - Unconfirmed (%1 of %2 confirmations) - تأیید نشده (%1 از %2 تأییدیه) - - - - Confirmed (%1 confirmations) تأیید شده (%1 تأییدیه) - This block was not received by any other nodes and will probably not be accepted! این بلوک از هیچ همتای دیگری دریافت نشده است و احتمال می‌رود پذیرفته نشود! - Generated but not accepted تولید شده ولی قبول نشده - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with دریافت‌شده با - Received from دریافت‌شده از - Sent to ارسال‌شده به - Payment to yourself پر داخت به خودتان - Mined استخراج‌شده - (n/a) (ناموجود) - Transaction status. Hover over this field to show number of confirmations. وضعیت تراکنش. نشانگر را روی این فیلد نگه دارید تا تعداد تأییدیه‌ها نشان داده شود. - Date and time that the transaction was received. تاریخ و ساعت دریافت تراکنش. - Type of transaction. نوع تراکنش. - Destination address of transaction. نشانی مقصد تراکنش. - Amount removed from or added to balance. مبلغ کسر شده و یا اضافه شده به تراز. @@ -2961,178 +2389,142 @@ Address: %4 TransactionView - - All همه - Today امروز - This week این هفته - This month این ماه - Last month ماه گذشته - This year امسال - Range... محدوده... - Received with دریافت‌شده با - Sent to ارسال به - To yourself به خودتان - Mined استخراج‌شده - Other دیگر - Enter address or label to search برای جست‌‌وجو نشانی یا برچسب را وارد کنید - Min amount مبلغ حداقل - Copy address کپی نشانی - Copy label کپی برچسب - Copy amount کپی مقدار - Copy transaction ID کپی شناسهٔ تراکنش - Edit label ویرایش برچسب - Show transaction details نمایش جزئیات تراکنش - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) پروندهٔ نوع CSV جداشونده با کاما (*.csv) - Confirmed تأیید شده - Date تاریخ - Type نوع - Label برچسب - Address نشانی - Amount مبلغ - ID شناسه - Range: محدوده: - to به @@ -3140,7 +2532,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3148,7 +2539,6 @@ Address: %4 WalletModel - Send Coins ارسال وجه @@ -3156,154 +2546,125 @@ Address: %4 WalletView - &Export &صدور - Export the data in the current tab to a file داده ها نوارِ جاری را به فایل انتقال دهید - Backup Wallet نسخهٔ پشتیبان کیف پول - Wallet Data (*.dat) دادهٔ کیف پول (*.dat) - Backup Failed خطا در پشتیبان‌گیری - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful پشتیبان‌گیری موفق - dogecoin-core + bitcoin-core - Usage: استفاده: - List commands نمایش لیست فرمان‌ها - Get help for a command راهنمایی در مورد یک دستور - Options: گزینه‌ها: - - Specify configuration file (default: dogecoin.conf) - مشخص کردن فایل پیکربندی (پیش‌فرض: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + مشخص کردن فایل پیکربندی (پیش‌فرض: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - مشخص کردن فایل شناسهٔ پردازش - pid - (پیش‌فرض: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + مشخص کردن فایل شناسهٔ پردازش - pid - (پیش‌فرض: bitcoin.pid) - Specify data directory مشخص کردن دایرکتوری داده‌ها - - Set database cache size in megabytes (default: 25) - تنظیم اندازهٔ کَش پایگاه‌داده برحسب مگابایت (پیش‌فرض: ۲۵) + Listen for connections on <port> (default: 8333 or testnet: 18333) + پذیرش اتصالات روی پورت <port> (پیش‌فرض: 8833 یا شبکهٔ آزمایشی: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - پذیرش اتصالات روی پورت <port> (پیش‌فرض: 8833 یا شبکهٔ آزمایشی: 44556) - - - Maintain at most <n> connections to peers (default: 125) حداکثر <n> اتصال با همتایان برقرار شود (پیش‌فرض: ۱۲۵) - Connect to a node to retrieve peer addresses, and disconnect اتصال به یک گره برای دریافت آدرس‌های همتا و قطع اتصال پس از اتمام عملیات - Specify your own public address آدرس عمومی خود را مشخص کنید - Threshold for disconnecting misbehaving peers (default: 100) حد آستانه برای قطع ارتباط با همتایان بدرفتار (پیش‌فرض: ۱۰۰) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) مدت زمان جلوگیری از اتصال مجدد همتایان بدرفتار، به ثانیه (پیش‌فرض: ۸۴۶۰۰) - An error occurred while setting up the RPC port %u for listening on IPv4: %s هنگام تنظیم پورت RPC %u برای گوش دادن روی IPv4 خطایی رخ داده است: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - پورت مورد شنود برای اتصالات JSON-RPC (پیش‌فرض: 22555 برای شبکهٔ تست 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + پورت مورد شنود برای اتصالات JSON-RPC (پیش‌فرض: 8332 برای شبکهٔ تست 18332) - Accept command line and JSON-RPC commands پذیرش دستورات خط فرمان و دستورات JSON-RPC - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands اجرا در پشت زمینه به‌صورت یک سرویس و پذیرش دستورات - Use the test network استفاده از شبکهٔ آزمایش - Accept connections from outside (default: 1 if no -proxy or -connect) پذیرش اتصالات از بیرون (پیش فرض:1 بدون پراکسی یا اتصال) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3314,707 +2675,686 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 IPv6, falling back to IPv4: %s - Bind to given address and always listen on it. Use [host]:port notation for IPv6 مقید به نشانی داده شده باشید و همیشه از آن پیروی کنید. از نشانه گذاری استاندار IPv6 به صورت Host]:Port] استفاده کنید. - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - نمی توان یک قفل برای مسیر اطلاعات ایجاد کرد %s. احتمال دارد بیتکوین در حال اجرا باشد. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + - 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 %d) + + + 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 است. - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) هنگامی که یک تراکنش در کیف پولی رخ می دهد، دستور را اجرا کن(%s در دستورات بوسیله ی TxID جایگزین می شود) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + + + 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 Dogecoin Core will not work properly. - هشدار: لطفا زمان و تاریخ رایانه خود را تصحیح نمایید! اگر ساعت رایانه شما اشتباه باشد dogecoin ممکن است صحیح کار نکند + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. + هشدار: لطفا زمان و تاریخ رایانه خود را تصحیح نمایید! اگر ساعت رایانه شما اشتباه باشد bitcoin ممکن است صحیح کار نکند - 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. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: - Attempt to recover private keys from a corrupt wallet.dat - Dogecoin Core Daemon - - Dogecoin Core RPC client version - - - - Block creation options: بستن گزینه ایجاد - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + Connect only to the specified node(s) تنها در گره (های) مشخص شده متصل شوید - Connect through SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: - Corrupted block database detected یک پایگاه داده ی بلوک خراب یافت شد - + Debugging/Testing options: + + + + Disable safemode, override a real safe mode event (default: 0) + + + Discover own IP address (default: 1 when listening and no -externalip) آدرس آی.پی. خود را شناسایی کنید (پیش فرض:1 در زمان when listening وno -externalip) - Do not load the wallet and disable wallet RPC calls - Do you want to rebuild the block database now? آیا مایلید که اکنون پایگاه داده ی بلوک را بازسازی کنید؟ - Error initializing block database خطا در آماده سازی پایگاه داده ی بلوک - Error initializing wallet database environment %s! - Error loading block database خطا در بارگذاری پایگاه داده ها - Error opening block database خطا در بازگشایی پایگاه داده ی بلوک - Error: Disk space is low! - Error: Wallet locked, unable to create transaction! - 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: + + + Find peers using DNS lookup (default: 1 unless -connect) قرینه ها را برای جستجوی DNS بیاب (پیش فرض: 1 مگر در زمان اتصال) - + Force safe mode (default: 0) + + + Generate coins (default: 0) - How many blocks to check at startup (default: 288, 0 = all) چند بلوک نیاز است که در ابتدای راه اندازی بررسی شوند(پیش فرض:288 ،0=همه) - - How thorough the block verification is (0-4, default: 3) - "بلوک تصدیق" تا چه حد کامل و دقیق است (0-4، پیش فرض: 3) - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? - Invalid -onion address: '%s' - Not enough file descriptors available. - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server + Set database cache size in megabytes (%d to %d, default: %d) - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) - Specify wallet file (within data directory) - - Start Dogecoin Core server + Spend unconfirmed change when sending transactions (default: 1) - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): + Usage (deprecated, use bitcoin-cli): - Verifying blocks... در حال بازبینی بلوک ها... - Verifying wallet... در حال بازبینی کیف پول... - Wait for RPC server to start - Wallet %s resides outside data directory %s - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex - Imports blocks from external blk000??.dat file - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Information اطلاعات - Invalid amount for -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) - 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) - Only accept block chain matching built-in checkpoints (default: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) تنها =به گره ها در شبکه متصا شوید <net> (IPv4, IPv6 or Tor) - + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) گزینه ssl (به ویکیbitcoin برای راهنمای راه اندازی ssl مراجعه شود) - + Send command to Dogecoin Core + + + Send trace/debug info to console instead of debug.log file اطلاعات ردگیری/اشکال‌زدایی را به جای فایل لاگ اشکال‌زدایی به کنسول بفرستید - Set minimum block size in bytes (default: 0) حداقل سایز بلاک بر اساس بایت تنظیم شود (پیش فرض: 0) - + 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 را در startup مشتری کوچک کن (پیش فرض:1 اگر اشکال زدایی روی نداد) - Signing transaction failed - Specify connection timeout in milliseconds (default: 5000) (میلی ثانیه )فاصله ارتباط خاص - + Start Dogecoin Core Daemon + + + System error: خطای سامانه - Transaction amount too small - Transaction amounts must be positive - Transaction too large - Use UPnP to map the listening port (default: 0) از UPnP برای شناسایی درگاه شنیداری استفاده کنید (پیش فرض:0) - Use UPnP to map the listening port (default: 1 when listening) از UPnP برای شناسایی درگاه شنیداری استفاده کنید (پیش فرض:1 در زمان شنیدن) - Username for JSON-RPC connections JSON-RPC شناسه برای ارتباطات - Warning هشدار - Warning: This version is obsolete, upgrade required! هشدار: این نسخه قدیمی است، روزآمدسازی مورد نیاز است - + Zapping all transactions from wallet... + + + + on startup + + + version نسخه - wallet.dat corrupt, salvage failed - Password for JSON-RPC connections JSON-RPC عبارت عبور برای ارتباطات - Allow JSON-RPC connections from specified IP address از آدرس آی پی خاص JSON-RPC قبول ارتباطات - Send commands to node running on <ip> (default: 127.0.0.1) (127.0.0.1پیش فرض: ) &lt;ip&gt; دادن فرمانها برای استفاده گره ها روی - Execute command when the best block changes (%s in cmd is replaced by block hash) زمانی که بهترین بلاک تغییر کرد، دستور را اجرا کن (%s در cmd با block hash جایگزین شده است) - Upgrade wallet to latest format wallet را به جدیدترین فرمت روزآمد کنید - Set key pool size to <n> (default: 100) (100پیش فرض:)&lt;n&gt; گذاشتن اندازه کلید روی - Rescan the block chain for missing wallet transactions اسکان مجدد زنجیر بلوکها برای گم والت معامله - Use OpenSSL (https) for JSON-RPC connections JSON-RPCبرای ارتباطات استفاده کنید OpenSSL (https) - Server certificate file (default: server.cert) (server.certپیش فرض: )گواهی نامه سرور - Server private key (default: server.pem) (server.pemپیش فرض: ) کلید خصوصی سرور - This help message پیام کمکی - Unable to bind to %s on this computer (bind returned error %d, %s) امکان اتصال به %s از این رایانه وجود ندارد ( bind returned error %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect به DNS اجازه بده تا برای addnode ، seednode و اتصال جستجو کند - Loading addresses... بار گیری آدرس ها - Error loading wallet.dat: Wallet corrupted خطا در بارگیری wallet.dat: کیف پول خراب شده است - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin خطا در بارگیری wallet.dat: کیف پول به ویرایش جدیدتری از Biticon نیاز دارد - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete سلام - Error loading wallet.dat خطا در بارگیری wallet.dat - Invalid -proxy address: '%s' آدرس پراکسی اشتباه %s - Unknown network specified in -onlynet: '%s' شبکه مشخص شده غیرقابل شناسایی در onlynet: '%s' - Unknown -socks proxy version requested: %i نسخه پراکسی ساکس غیرقابل شناسایی درخواست شده است: %i - Cannot resolve -bind address: '%s' آدرس قابل اتصال- شناسایی نیست %s - Cannot resolve -externalip address: '%s' آدرس خارجی قابل اتصال- شناسایی نیست %s - Invalid amount for -paytxfee=<amount>: '%s' میزان وجه اشتباه برای paytxfee=<میزان وجه>: %s - Invalid amount میزان وجه اشتباه - Insufficient funds بود جه نا کافی - Loading block index... بار گیری شاخص بلوک - Add a node to connect to and attempt to keep the connection open به اتصال یک گره اضافه کنید و اتصال را باز نگاه دارید - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - اتصال به %s از این رایانه امکان پذیر نیست. Dogecoin احتمالا در حال اجراست. - - - Loading wallet... بار گیری والت - Cannot downgrade wallet امکان تنزل نسخه در wallet وجود ندارد - Cannot write default address آدرس پیش فرض قابل ذخیره نیست - Rescanning... اسکان مجدد - Done loading بار گیری انجام شده است - To use the %s option برای استفاده از %s از انتخابات - Error خطا - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4022,4 +3362,4 @@ If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_fa_IR.ts b/src/qt/locale/bitcoin_fa_IR.ts index 864623d57..f1d6cb3d8 100644 --- a/src/qt/locale/bitcoin_fa_IR.ts +++ b/src/qt/locale/bitcoin_fa_IR.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label برای ویرایش حساب و یا برچسب دوبار کلیک نمایید - Create a new address گشایش حسابی جدید - &New - Copy the currently selected address to the system clipboard کپی کردن حساب انتخاب شده به حافظه سیستم - کلیپ بورد - &Copy - C&lose - &Copy Address و کپی آدرس - Delete the currently selected address from the list - Export the data in the current tab to a file صدور داده نوار جاری به یک فایل - &Export - &Delete و حذف - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label کپی و برچسب - &Edit و ویرایش - Export Address List - Comma separated file (*.csv) سی.اس.وی. (فایل جداگانه دستوری) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label برچسب - Address حساب - (no label) (برچسب ندارد) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase رمز/پَس فرِیز را وارد کنید - New passphrase رمز/پَس فرِیز جدید را وارد کنید - Repeat new passphrase رمز/پَس فرِیز را دوباره وارد کنید - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. رمز/پَس فرِیز جدید را در wallet وارد کنید. برای انتخاب رمز/پَس فرِیز از 10 کاراکتر تصادفی یا بیشتر و یا هشت کلمه یا بیشتر استفاده کنید. - Encrypt wallet wallet را رمزگذاری کنید - This operation needs your wallet passphrase to unlock the wallet. برای انجام این عملکرد به رمز/پَس فرِیزِwallet نیاز است تا آن را از حالت قفل درآورد. - Unlock wallet باز کردن قفل wallet - This operation needs your wallet passphrase to decrypt the wallet. برای کشف رمز wallet، به رمز/پَس فرِیزِwallet نیاز است. - Decrypt wallet کشف رمز wallet - Change passphrase تغییر رمز/پَس فرِیز - Enter the old and new passphrase to the wallet. رمز/پَس فرِیزِ قدیم و جدید را در wallet وارد کنید - Confirm wallet encryption رمزگذاری wallet را تایید کنید - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted تایید رمزگذاری - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Dogecoin برای اتمام فرایند رمزگذاری بسته خواهد شد. به خاطر داشته باشید که رمزگذاری WALLET شما، کامپیوتر شما را از آلودگی به بدافزارها مصون نمی دارد. - - - - Wallet encryption failed رمزگذاری تایید نشد - Wallet encryption failed due to an internal error. Your wallet was not encrypted. رمزگذاری به علت خطای داخلی تایید نشد. wallet شما رمزگذاری نشد - - The supplied passphrases do not match. رمزهای/پَس فرِیزهایِ وارد شده با هم تطابق ندارند - Wallet unlock failed قفل wallet باز نشد - - - The passphrase entered for the wallet decryption was incorrect. رمزهای/پَس فرِیزهایِ وارد شده wallet برای کشف رمز اشتباه است. - Wallet decryption failed کشف رمز wallet انجام نشد - Wallet passphrase was successfully changed. @@ -317,353 +255,287 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... امضا و پیام - Synchronizing with network... به روز رسانی با شبکه... - &Overview و بازبینی - Node - Show general overview of wallet نمای کلی از wallet را نشان بده - &Transactions و تراکنش - Browse transaction history تاریخچه تراکنش را باز کن - E&xit خروج - Quit application از "درخواست نامه"/ application خارج شو - - Show information about Dogecoin Core + Show information about Dogecoin اطلاعات در مورد Dogecoin را نشان بده - - About &Qt درباره و QT - Show information about Qt نمایش اطلاعات درباره QT - &Options... و انتخابها - &Encrypt Wallet... و رمزگذاری wallet - &Backup Wallet... و گرفتن نسخه پیشتیبان از wallet - &Change Passphrase... تغییر رمز/پَس فرِیز - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin اصلاح انتخابها برای پیکربندی Dogecoin - Backup wallet to another location گرفتن نسخه پیشتیبان در آدرسی دیگر - Change the passphrase used for wallet encryption رمز مربوط به رمزگذاریِ wallet را تغییر دهید - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - dogecoin + bitcoin - Wallet کیف پول - &Send - &Receive - - &Show / Hide &نمایش/ عدم نمایش و - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File و فایل - &Settings و تنظیمات - &Help و راهنما - Tabs toolbar نوار ابزار - - [testnet] [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - مشتری dogecoin + مشتری bitcoin - %n active connection(s) to Dogecoin network %n ارتباط فعال به شبکه Dogecoin %n ارتباط فعال به شبکه Dogecoin - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error خطا - Warning - Information - Up to date روزآمد - Catching up... در حال روزآمد سازی.. - Sent transaction ارسال تراکنش - Incoming transaction تراکنش دریافتی - Date: %1 Amount: %2 Type: %3 @@ -673,25 +545,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> wallet رمزگذاری شد و در حال حاضر از حالت قفل در آمده است - Wallet is <b>encrypted</b> and currently <b>locked</b> wallet رمزگذاری شد و در حال حاضر قفل است - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert هشدار شبکه @@ -699,291 +567,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: میزان وجه: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount میزان - Address حساب - Date تاریخ - Confirmations - Confirmed تایید شده - Priority - Copy address آدرس را کپی کنید - Copy label برچسب را کپی کنید - - Copy amount میزان وجه کپی شود - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (برچسب ندارد) - change from %1 (%2) - (change) @@ -991,68 +798,55 @@ Address: %4 EditAddressDialog - Edit Address ویرایش حساب - &Label و برچسب - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address حساب& - New receiving address حساب دریافت کننده جدید - New sending address حساب ارسال کننده جدید - Edit receiving address ویرایش حساب دریافت کننده - Edit sending address ویرایش حساب ارسال کننده - The entered address "%1" is already in the address book. حساب وارد شده «1%» از پیش در دفترچه حساب ها موجود است. - The entered address "%1" is not a valid Dogecoin address. - آدرس وارد شده "%1" یک آدرس صحیح برای dogecoin نسشت + آدرس وارد شده "%1" یک آدرس صحیح برای bitcoin نسشت - Could not unlock wallet. عدم توانیی برای قفل گشایی wallet - New key generation failed. عدم توانیی در ایجاد کلید جدید @@ -1060,27 +854,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1088,52 +877,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version نسخه - Usage: میزان استفاده: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1141,57 +924,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - dogecoin + bitcoin - Error: Specified data directory "%1" can not be created. - Error خطا - GB of free space available - (of %1GB needed) @@ -1199,27 +971,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1227,243 +994,206 @@ Address: %4 OptionsDialog - Options انتخاب/آپشن - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - حافظه بانک داده را به مگابایت تنظیم کنید (پیش فرض: 25) - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list و نمایش آدرسها در فهرست تراکنش - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK و تایید - &Cancel و رد - default پیش فرض - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1471,69 +1201,54 @@ Address: %4 OverviewPage - Form فرم - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - اطلاعات نمایش داده شده ممکن است روزآمد نباشد. wallet شما به صورت خودکار بعد از برقراری اتصال با شبکه dogecoin به روز می شود اما این فرایند هنوز تکمیل نشده است. + اطلاعات نمایش داده شده ممکن است روزآمد نباشد. wallet شما به صورت خودکار بعد از برقراری اتصال با شبکه bitcoin به روز می شود اما این فرایند هنوز تکمیل نشده است. - - Unconfirmed: - تایید نشده - - - Wallet کیف پول - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> تراکنشهای اخیر - - out of sync خارج از روزآمد سازی @@ -1541,93 +1256,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1635,41 +1327,45 @@ Address: %4 QObject - - Dogecoin - dogecoin + bitcoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + یک آدرس bitcoin وارد کنید (مثال DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1677,192 +1373,146 @@ Address: %4 RPCConsole - Client name نام کنسول RPC - - - - - - - - - - - N/A - Client version ویرایش کنسول RPC - &Information - Debug window - General - Using OpenSSL version - Startup time - Network شبکه - Name - Number of connections تعداد اتصال - Block chain زنجیره مجموعه تراکنش ها - Current number of blocks تعداد زنجیره های حاضر - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. - به کنسول آر.پی.سی. DOGECOIN خوش آمدید + Welcome to the Dogecoin RPC console. + به کنسول آر.پی.سی. Dogecoin خوش آمدید - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1870,155 +1520,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: و برچسب - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + برچسب را کپی کنید + + + Copy message + + + + Copy amount + میزان وجه کپی شود + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address حساب - Amount میزان - Label برچسب - Message پیام - Resulting URI too long, try to reduce the text for label / message. متن وارد شده طولانی است، متنِ برچسب/پیام را کوتاه کنید - Error encoding URI into QR Code. خطای تبدیل URI به کد QR @@ -2026,285 +1658,225 @@ Address: %4 RecentRequestsTableModel - Date تاریخ - Label برچسب - Message پیام - Amount میزان - (no label) (برچسب ندارد) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins سکه های ارسالی - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: میزان وجه: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once ارسال همزمان به گیرنده های متعدد - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: مانده حساب: - Confirm the send action تایید عملیات ارسال - S&end و ارسال - Confirm send coins تایید ارسال بیت کوین ها - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - یک آدرس dogecoin وارد کنید (مثال DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount میزان وجه کپی شود - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. میزان پرداخت باید بیشتر از 0 باشد - The amount exceeds your balance. مقدار مورد نظر از مانده حساب بیشتر است. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (برچسب ندارد) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2312,116 +1884,85 @@ Address: %4 SendCoinsEntry - - - A&mount: و میزان وجه - Pay &To: پرداخت و به چه کسی - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book یک برچسب برای این آدرس بنویسید تا به دفترچه آدرسهای شما اضافه شود - &Label: و برچسب - Choose previously used address - This is a normal payment. - Alt+A Alt و A - Paste address from clipboard آدرس را بر کلیپ بورد کپی کنید - Alt+P Alt و P - - - Remove this entry - Message: پیام: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - یک آدرس dogecoin وارد کنید (مثال DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2429,192 +1970,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message و امضای پیام - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - یک آدرس dogecoin وارد کنید (مثال DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + یک آدرس bitcoin وارد کنید (مثال DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt و A - Paste address from clipboard آدرس را بر کلیپ بورد کپی کنید - Alt+P Alt و P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - یک آدرس dogecoin وارد کنید (مثال DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + یک آدرس bitcoin وارد کنید (مثال DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - یک آدرس dogecoin وارد کنید (مثال DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + یک آدرس bitcoin وارد کنید (مثال DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2622,17 +2113,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] [testnet] @@ -2640,7 +2128,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2648,179 +2135,138 @@ Address: %4 TransactionDesc - Open until %1 باز کن تا %1 - + conflicted + + + %1/offline - %1/unconfirmed %1 / تایید نشده - %1 confirmations %1 تایید - Status - , broadcast through %n node(s) - Date تاریخ - Source - Generated - - From - - - To - - own address - label برچسب - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message پیام - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount میزان - true - false - , has not been successfully broadcast yet ، هنوز با موفقیت ارسال نگردیده است - Open for %n more block(s) - unknown ناشناس @@ -2828,12 +2274,10 @@ Address: %4 TransactionDescDialog - Transaction details جزئیات تراکنش - This pane shows a detailed description of the transaction این بخش جزئیات تراکنش را نشان می دهد @@ -2841,118 +2285,102 @@ Address: %4 TransactionTableModel - Date تاریخ - Type گونه - Address آدرس - Amount میزان وجه - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 باز کن تا %1 - - Offline (%1 confirmations) - برون خطی (%1 تاییدها) - - - - Unconfirmed (%1 of %2 confirmations) - تایید نشده (%1 از %2 تاییدها) - - - - Confirmed (%1 confirmations) تایید شده (%1 تاییدها) - This block was not received by any other nodes and will probably not be accepted! این block توسط گره های دیگری دریافت نشده است و ممکن است قبول نشود - Generated but not accepted تولید شده اما قبول نشده است - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with قبول با - Received from دریافت شده از - Sent to ارسال به - Payment to yourself وجه برای شما - Mined استخراج شده - (n/a) خالی - Transaction status. Hover over this field to show number of confirmations. وضعیت تراکنش. با اشاره به این بخش تعداد تاییدها نمایش داده می شود - Date and time that the transaction was received. زمان و تاریخی که تراکنش دریافت شده است - Type of transaction. نوع تراکنش - Destination address of transaction. آدرس مقصد در تراکنش - Amount removed from or added to balance. میزان وجه کم شده یا اضافه شده به حساب @@ -2960,178 +2388,142 @@ Address: %4 TransactionView - - All همه - Today امروز - This week این هفته - This month این ماه - Last month ماه گذشته - This year این سال - Range... حدود.. - Received with دریافت با - Sent to ارسال به - To yourself به شما - Mined استخراج شده - Other دیگر - Enter address or label to search آدرس یا برچسب را برای جستجو وارد کنید - Min amount حداقل میزان وجه - Copy address آدرس را کپی کنید - Copy label برچسب را کپی کنید - Copy amount میزان وجه کپی شود - Copy transaction ID - Edit label برچسب را ویرایش کنید - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Comma separated file (*.csv) فایل جداگانه دستوری - Confirmed تایید شده - Date تاریخ - Type نوع - Label برچسب - Address آدرس - Amount میزان - ID شناسه کاربری - Range: دامنه: - to به @@ -3139,7 +2531,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3147,7 +2538,6 @@ Address: %4 WalletModel - Send Coins سکه های ارسالی @@ -3155,154 +2545,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file صدور داده نوار جاری به یک فایل - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: میزان استفاده: - List commands فهرست دستورها - Get help for a command درخواست کمک برای یک دستور - Options: انتخابها: - - Specify configuration file (default: dogecoin.conf) - فایل پیکربندیِ را مشخص کنید (پیش فرض: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + فایل پیکربندیِ را مشخص کنید (پیش فرض: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - فایل pid را مشخص کنید (پیش فرض: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + فایل pid را مشخص کنید (پیش فرض: bitcoind.pid) - Specify data directory دایرکتوری داده را مشخص کن - - Set database cache size in megabytes (default: 25) - حافظه بانک داده را به مگابایت تنظیم کنید (پیش فرض: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + ارتباطات را در <PORT> بشنوید (پیش فرض: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - ارتباطات را در <PORT> بشنوید (پیش فرض: 22556 or testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) نگهداری <N> ارتباطات برای قرینه سازی (پیش فرض:125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) آستانه قطع برای قرینه سازی اشتباه (پیش فرض:100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) تعداد ثانیه ها برای اتصال دوباره قرینه های اشتباه (پیش فرض:86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - ارتباطاتِ JSON-RPC را در <port> گوش کنید (پیش فرض:22555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + ارتباطاتِ JSON-RPC را در <port> گوش کنید (پیش فرض:8332) - Accept command line and JSON-RPC commands command line و JSON-RPC commands را قبول کنید - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands به عنوان daemon بک گراند را اجرا کنید و دستورات را قبول نمایید - Use the test network از تستِ شبکه استفاده نمایید - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3313,707 +2674,686 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - ارسال اطلاعات پیگیری/خطایابی به کنسول به جای ارسال به فایل debug.log - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - تعیین مدت زمان وقفه (time out) به هزارم ثانیه - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - شناسه کاربری برای ارتباطاتِ JSON-RPC - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - نسخه - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - رمز برای ارتباطاتِ JSON-RPC - - - - Allow JSON-RPC connections from specified IP address - ارتباطاتِ JSON-RPC را از آدرس آی.پی. مشخصی برقرار کنید. - - - - Send commands to node running on <ip> (default: 127.0.0.1) - دستورات را به گره اجرا شده در<ip> ارسال کنید (پیش فرض:127.0.0.1) - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - دستور را وقتی بهترین بلاک تغییر کرد اجرا کن (%s در دستور توسط block hash جایگزین شده است) - - - - Upgrade wallet to latest format - wallet را به جدیدترین نسخه روزآمد کنید - - - - Set key pool size to <n> (default: 100) - حجم key pool را به اندازه <n> تنظیم کنید (پیش فرض:100) - - - - Rescan the block chain for missing wallet transactions - زنجیره بلاک را برای تراکنش جا افتاده در WALLET دوباره اسکن کنید - - - - Use OpenSSL (https) for JSON-RPC connections - برای ارتباطاتِ JSON-RPC از OpenSSL (https) استفاده کنید - - - - Server certificate file (default: server.cert) - فایل certificate سرور (پیش فرض server.cert) - - - - Server private key (default: server.pem) - رمز اختصاصی سرور (پیش فرض: server.pem) - - - - This help message - این پیام راهنما - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - لود شدن آدرسها.. - - - - Error loading wallet.dat: Wallet corrupted - خطا در هنگام لود شدن wallet.dat: Wallet corrupted - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - خطا در هنگام لود شدن wallet.dat. به نسخه جدید Bitocin برای wallet نیاز است. - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - wallet نیاز به بازنویسی دارد. Dogecoin را برای تکمیل عملیات دوباره اجرا کنید. - - - - Error loading wallet.dat - خطا در هنگام لود شدن wallet.dat - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - میزان اشتباه است for -paytxfee=<amount>: '%s' - - - - Invalid amount - میزان اشتباه است - - - - Insufficient funds - وجوه ناکافی - - - - Loading block index... - لود شدن نمایه بلاکها.. - - - - Add a node to connect to and attempt to keep the connection open - یک گره برای اتصال اضافه کنید و تلاش کنید تا اتصال را باز نگاه دارید - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + ارسال اطلاعات پیگیری/خطایابی به کنسول به جای ارسال به فایل debug.log + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + تعیین مدت زمان وقفه (time out) به هزارم ثانیه + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + شناسه کاربری برای ارتباطاتِ JSON-RPC + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + نسخه + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + رمز برای ارتباطاتِ JSON-RPC + + + Allow JSON-RPC connections from specified IP address + ارتباطاتِ JSON-RPC را از آدرس آی.پی. مشخصی برقرار کنید. + + + Send commands to node running on <ip> (default: 127.0.0.1) + دستورات را به گره اجرا شده در<ip> ارسال کنید (پیش فرض:127.0.0.1) + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + دستور را وقتی بهترین بلاک تغییر کرد اجرا کن (%s در دستور توسط block hash جایگزین شده است) + + + Upgrade wallet to latest format + wallet را به جدیدترین نسخه روزآمد کنید + + + Set key pool size to <n> (default: 100) + حجم key pool را به اندازه <n> تنظیم کنید (پیش فرض:100) + + + Rescan the block chain for missing wallet transactions + زنجیره بلاک را برای تراکنش جا افتاده در WALLET دوباره اسکن کنید + + + Use OpenSSL (https) for JSON-RPC connections + برای ارتباطاتِ JSON-RPC از OpenSSL (https) استفاده کنید + + + Server certificate file (default: server.cert) + فایل certificate سرور (پیش فرض server.cert) + + + Server private key (default: server.pem) + رمز اختصاصی سرور (پیش فرض: server.pem) + + + This help message + این پیام راهنما + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + لود شدن آدرسها.. + + + Error loading wallet.dat: Wallet corrupted + خطا در هنگام لود شدن wallet.dat: Wallet corrupted + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + خطا در هنگام لود شدن wallet.dat. به نسخه جدید Bitocin برای wallet نیاز است. + + + Wallet needed to be rewritten: restart Dogecoin to complete + wallet نیاز به بازنویسی دارد. Dogecoin را برای تکمیل عملیات دوباره اجرا کنید. + + + Error loading wallet.dat + خطا در هنگام لود شدن wallet.dat + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + میزان اشتباه است for -paytxfee=<amount>: '%s' + + + Invalid amount + میزان اشتباه است + + + Insufficient funds + وجوه ناکافی + + + Loading block index... + لود شدن نمایه بلاکها.. + + + Add a node to connect to and attempt to keep the connection open + یک گره برای اتصال اضافه کنید و تلاش کنید تا اتصال را باز نگاه دارید + + Loading wallet... wallet در حال لود شدن است... - Cannot downgrade wallet قابلیت برگشت به نسخه قبلی برای wallet امکان پذیر نیست - Cannot write default address آدرس پیش فرض قابل ذخیره نیست - Rescanning... اسکنِ دوباره... - Done loading اتمام لود شدن - To use the %s option برای استفاده از %s از اختیارات - Error خطا - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4021,4 +3361,4 @@ If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_fi.ts b/src/qt/locale/bitcoin_fi.ts index cec2804c3..d9dd4a3e7 100644 --- a/src/qt/locale/bitcoin_fi.ts +++ b/src/qt/locale/bitcoin_fi.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - + Tietoja Dogecoin Core - <b>Dogecoin Core</b> version - + <b>Dogecoin Core</b> versio - This is experimental software. @@ -28,153 +25,128 @@ Tämä ohjelma sisältää OpenSSL projektin OpenSSL työkalupakin (http://www.o - Copyright Tekijänoikeus - The Dogecoin Core developers - + Dogecoin Core kehittäjät + + + (%1-bit) + (%1-bit) AddressBookPage - Double-click to edit address or label Kaksoisnapauta muokataksesi osoitetta tai nimeä - Create a new address Luo uusi osoite - &New - + &Uusi - Copy the currently selected address to the system clipboard Kopioi valittu osoite leikepöydälle - &Copy - + &Kopioi - C&lose - + &Sulje - &Copy Address &Kopioi Osoite - Delete the currently selected address from the list Poista valittu osoite listalta - Export the data in the current tab to a file Vie auki olevan välilehden tiedot tiedostoon - &Export - + &Vie... - &Delete &Poista - Choose the address to send coins to - + Valitse osoite johon lähetetään kolikoita - Choose the address to receive coins with - + Valitse osoite jolla vastaanotetaan kolikoita - C&hoose - + &Valitse - Very sending addresses - + Lähettävä osoite - Much receiving addresses - + Vastaanottava osoite - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - + Nämä ovat sinun Dogecoin osoitteita maksujen lähetykseen. Tarkista aina rahan määrä ja vastaanottajan osoite ennenkuin lähetät kolikkoja. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - + Nämä ovat sinun Dogecoin-osoitteesi suoritusten vastaanottamiseen. Suositellaan että annat uuden osoitteen kullekin rahansiirrolle - Copy &Label Kopioi &Nimi - &Edit &Muokkaa - Export Address List - + Vie osoitekirja - Comma separated file (*.csv) Comma separated file (*.csv) - Exporting Failed - + Vienti epäonnistui - There was an error trying to save the address list to %1. - + Osoitelistan tallennuksessa tapahtui virhe tiedostoon %1. AddressTableModel - Label Nimi - Address Osoite - (no label) (ei nimeä) @@ -182,140 +154,106 @@ Tämä ohjelma sisältää OpenSSL projektin OpenSSL työkalupakin (http://www.o AskPassphraseDialog - Passphrase Dialog Tunnuslauseen Dialogi - Enter passphrase Kirjoita tunnuslause - New passphrase Uusi tunnuslause - Repeat new passphrase - Kiroita uusi tunnuslause uudelleen + Kirjoita uusi tunnuslause uudelleen - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Anna lompakolle uusi tunnuslause.<br/>Käytä tunnuslausetta, jossa on ainakin <b>10 satunnaista mekkiä</b> tai <b>kahdeksan sanaa</b>. - Encrypt wallet Salaa lompakko - This operation needs your wallet passphrase to unlock the wallet. Tätä toimintoa varten sinun täytyy antaa lompakon tunnuslause sen avaamiseksi. - Unlock wallet Avaa lompakko - This operation needs your wallet passphrase to decrypt the wallet. Tätä toimintoa varten sinun täytyy antaa lompakon tunnuslause salauksen purkuun. - Decrypt wallet Pura lompakon salaus - Change passphrase Vaihda tunnuslause - Enter the old and new passphrase to the wallet. Anna vanha ja uusi tunnuslause. - Confirm wallet encryption Vahvista lompakon salaus - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Varoitus: Jos salaat lompakkosi ja menetät tunnuslauseesi, <b>MENETÄT KAIKKI DOGECOINISI</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Varoitus: Jos salaat lompakkosi ja menetät tunnuslauseesi, <b>MENETÄT KAIKKI DogecoinISI</b>! - Are you sure you wish to encrypt your wallet? Haluatko varmasti salata lompakkosi? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. TÄRKEÄÄ: Kaikki vanhat lompakon varmuuskopiot pitäisi korvata uusilla suojatuilla varmuuskopioilla. Turvallisuussyistä edelliset varmuuskopiot muuttuvat turhiksi, kun aloitat suojatun lompakon käytön. - - Warning: The Caps Lock key is on! Varoitus: Caps Lock on käytössä! - - Wallet encrypted Lompakko salattu - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Dogecoin sulkeutuu lopettaakseen salausprosessin. Muista, että salattukaan lompakko ei täysin suojaa sitä haittaohjelmien aiheuttamilta varkauksilta. - - - - Wallet encryption failed Lompakon salaus epäonnistui - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Lompakon salaaminen epäonnistui sisäisen virheen vuoksi. Lompakkoasi ei salattu. - - The supplied passphrases do not match. Annetut tunnuslauseet eivät täsmää. - Wallet unlock failed Lompakon avaaminen epäonnistui. - - - The passphrase entered for the wallet decryption was incorrect. Annettu tunnuslause oli väärä. - Wallet decryption failed Lompakon salauksen purku epäonnistui. - Wallet passphrase was successfully changed. Lompakon tunnuslause vaihdettiin onnistuneesti. @@ -323,352 +261,286 @@ Tämä ohjelma sisältää OpenSSL projektin OpenSSL työkalupakin (http://www.o BitcoinGUI - Sign &message... &Allekirjoita viesti... - Synchronizing with network... Synkronoidaan verkon kanssa... - &Overview &Yleisnäkymä - Node - + Solmu - Show general overview of wallet Lompakon tilanteen yleiskatsaus - &Transactions &Rahansiirrot - Browse transaction history Selaa rahansiirtohistoriaa - E&xit L&opeta - Quit application Sulje ohjelma - - Show information about Dogecoin Core + Show information about Dogecoin Näytä tietoa Dogecoin-projektista - - About &Qt Tietoja &Qt - Show information about Qt Näytä tietoja QT:ta - &Options... &Asetukset... - &Encrypt Wallet... &Salaa lompakko... - &Backup Wallet... &Varmuuskopioi Lompakko... - &Change Passphrase... &Vaihda Tunnuslause... - Very &sending addresses... - + &Lähetysosoitteet... - Much &receiving addresses... - + &Vastaanotto-osoitteet... - Open &URI... - + Avaa &URI... - Importing blocks from disk... Tuodaan lohkoja levyltä - Reindexing blocks on disk... Ladataan lohkoindeksiä... - Send coins to a Dogecoin address Lähetä kolikoita Dogecoin-osoitteeseen - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Muuta Dogecoinin konfiguraatioasetuksia - Backup wallet to another location Varmuuskopioi lompakko toiseen sijaintiin - Change the passphrase used for wallet encryption Vaihda lompakon salaukseen käytettävä tunnuslause - &Debug window &Testausikkuna - Open debugging and diagnostic console Avaa debuggaus- ja diagnostiikkakonsoli - &Verify message... Varmista &viesti... - Dogecoin Dogecoin - Wallet Lompakko - &Send &Lähetä - &Receive &Vastaanota - - &Show / Hide &Näytä / Piilota - Show or hide the main Window Näytä tai piilota Dogecoin-ikkuna - Encrypt the private keys that belong to your wallet Suojaa yksityiset avaimet, jotka kuuluvat lompakkoosi - Sign messages with your Dogecoin addresses to prove you own them Allekirjoita viestisi omalla Dogecoin -osoitteellasi todistaaksesi, että omistat ne - Verify messages to ensure they were signed with specified Dogecoin addresses Varmista, että viestisi on allekirjoitettu määritetyllä Dogecoin -osoitteella - &File &Tiedosto - &Settings &Asetukset - &Help &Apua - Tabs toolbar Välilehtipalkki - - [testnet] [testnet] - Dogecoin Core Dogecoin-ydin - - Request payments (generates QR codes and dogecoin: URIs) - + Request payments (generates QR codes and bitcoin: URIs) + Pyydä maksuja (Luo QR koodit ja bitcoin: URIt) - - &About Dogecoin Core - + &Tietoja Dogecoin Core - Show the list of used sending addresses and labels - + Näytä lähettämiseen käytettyjen osoitteiden ja nimien lista - Show the list of used receiving addresses and labels - + Näytä vastaanottamiseen käytettyjen osoitteiden ja nimien lista - - Open a dogecoin: URI or payment request - + Open a bitcoin: URI or payment request + Avaa bitcoin: URI tai maksupyyntö - &Command-line options - + &Komentorivin valinnat - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options - + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options + Näytä Dogecoin Core ohjeet saadaksesi listan mahdollisista Dogecoinin komentorivivalinnoista - - Dogecoin client Dogecoin-asiakas - %n active connection(s) to Dogecoin network %n aktiivinen yhteys Dogecoin-verkkoon%n aktiivista yhteyttä Dogecoin-verkkoon - No block source available... - + Lohkojen lähdettä ei saatavilla... - Processed %1 of %2 (estimated) blocks of transaction history. - + Käsitelty %1 of %2 (arviolta) rahansiirtohistorian lohkoa. - Processed %1 blocks of transaction history. Käsitelty %1 lohkoa rahansiirtohistoriasta - %n hour(s) %n tunti%n tuntia - %n day(s) - + %n päivä%n päivää - %n week(s) %n viikko%n viikkoa - - %1 behind - + %1 and %2 + %1 ja %2 + + + %n year(s) + %n vuosi%n vuotta + + + %1 behind + %1 jäljessä - Last received block was generated %1 ago. Viimeisin vastaanotettu lohko tuotettu %1. - Transactions after this will not yet be visible. - + Tämän jälkeiset rahansiirrot eivät ole vielä näkyvissä. - Error Virhe - Warning Varoitus - Information Tietoa - Up to date Rahansiirtohistoria on ajan tasalla - Catching up... Saavutetaan verkkoa... - Sent transaction Lähetetyt rahansiirrot - Incoming transaction Saapuva rahansiirto - Date: %1 Amount: %2 Type: %3 @@ -680,25 +552,21 @@ Tyyppi: %3 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>locked</b> Lompakko on <b>salattu</b> ja tällä hetkellä <b>lukittuna</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Peruuttamaton virhe on tapahtunut. Dogecoin ei voi enää jatkaa turvallisesti ja sammutetaan. ClientModel - Network Alert Verkkohälytys @@ -706,359 +574,285 @@ Osoite: %4 CoinControlDialog - Coin Control Address Selection - + Kolikkokontrollin osoitteen valinta - Quantity: - + Määrä: - Bytes: - + Tavuja: - Amount: Määrä: - Priority: - + Prioriteetti: - Fee: - + Palkkio: - Low Output: - + Pieni Tuotos - After Fee: - + Palkkion jälkeen: - Change: - + Vaihtoraha: - (un)select all - + (epä)valitse kaikki - Tree mode - + Puurakenne - List mode - + Listarakenne - Amount Määrä - Address Osoite - Date Aika - Confirmations - + Vahvistuksia - Confirmed Vahvistettu - Priority - + Prioriteetti - Copy address Kopioi osoite - Copy label Kopioi nimi - - Copy amount Kopioi määrä - Copy transaction ID - + Kopioi siirtotunnus - Lock unspent - + Lukitse käyttämättömät - Unlock unspent - + Avaa käyttämättömät - Copy quantity - + Kopioi määrä - Copy fee - + Kopioi palkkio - Copy after fee - + Kopioi palkkion jälkeen - Copy bytes - + Kopioi tavut - Copy priority - + Kopioi prioriteetti - Copy low output - + Kopioi pieni tuotos - Copy change - + Kopioi vaihtoraha - highest - + korkein - higher - + korkeampi - high - + korkea - medium-high - + keski-korkea - medium - + keskisuuri - low-medium - + pieni-keskisuuri - low - + pieni - lower - + pienempi - lowest - + pienin - (%1 locked) - + (%1 lukittu) - none - + ei mitään - Dust - + Tomu - yes - + kyllä - no - + ei - This label turns red, if the transaction size is greater than 1000 bytes. - + Tämä nimi muuttuu punaiseksi jos rahansiirron koko on suurempi kuin 1000 tavua - - This means a fee of at least %1 per kB is required. - + Tämä tarkoittaa että vähintään %1 per kB palkkio on pakollinen. - Can vary +/- 1 byte per input. - + Voi vaihdella +/- 1 tavu per syöte - Transactions with higher priority are more likely to get included into a block. - + Rahansiirrot korkeammalla prioriteetilla sisällytetään varmemmin lohkoon. - This label turns red, if the priority is smaller than "medium". - + Tämä nimi muuttuu punaiseksi jos prioriteetti on pienempi kuin "keskisuuri". - This label turns red, if any recipient receives an amount smaller than %1. - + Tämä nimi muuttuu punaiseksi jos vastaanottaja saa pienemmän määrän kuin %1 - - This means a fee of at least %1 is required. - + Tämä tarkoittaa että vähintään %1 palkkio on pakollinen. - Amounts below 0.546 times the minimum relay fee are shown as dust. - + Maksumäärät alle 0.546 kertaa vähimmäispalkkion näytetään tomuna. - This label turns red, if the change is smaller than %1. - + Tämä nimi muuttuu punaiseksi jos vaihtoraha on alle %1. - - (no label) (ei nimeä) - change from %1 (%2) - + Vaihda %1 (%2) - (change) - + (vaihtoraha) EditAddressDialog - Edit Address Muokkaa osoitetta - &Label &Nimi - The label associated with this address list entry - + Tähän osoitteeseen liitetty nimi - The address associated with this address list entry. This can only be modified for sending addresses. - + Osoite liitettynä tähän osoitekirjan alkioon. Tämä voidaan muokata vain lähetysosoitteissa. - &Address &Osoite - New receiving address Uusi vastaanottava osoite - New sending address Uusi lähettävä osoite - Edit receiving address Muokkaa vastaanottajan osoitetta - Edit sending address Muokkaa lähtevää osoitetta - The entered address "%1" is already in the address book. Osoite "%1" on jo osoitekirjassa. - The entered address "%1" is not a valid Dogecoin address. Antamasi osoite "%1" ei ole validi Dogecoin-osoite. - Could not unlock wallet. Lompakkoa ei voitu avata. - New key generation failed. Uuden avaimen luonti epäonnistui. @@ -1066,410 +860,346 @@ Osoite: %4 FreespaceChecker - A new data directory will be created. Luodaan uusi kansio. - name Nimi - Directory already exists. Add %1 if you intend to create a new directory here. - + Hakemisto on jo olemassa. Lisää %1 jos tarkoitus on luoda hakemisto tänne. - Path already exists, and is not a directory. Polku on jo olemassa, eikä se ole kansio. - Cannot create data directory here. - + Ei voida luoda data-hakemistoa tänne. HelpMessageDialog - Dogecoin Core - Command-line options - + Dogecoin Core - Kometorivivalinnat - Dogecoin Core Dogecoin-ydin - version versio - Usage: Käyttö: - command-line options komentorivi parametrit - UI options Käyttöliittymäasetukset - Set language, for example "de_DE" (default: system locale) Set language, for example "de_DE" (default: system locale) - Start minimized Käynnistä pienennettynä - + Set SSL root certificates for payment request (default: -system-) + Aseta SSL root varmenne maksupyynnöille (oletus: -system-) + + Show splash screen on startup (default: 1) Näytä aloitusruutu käynnistettäessä (oletus: 1) - Choose data directory on startup (default: 0) - + Valitse data-hakemisto käynnistyksessä (oletus: 0) Intro - Welcome Tervetuloa - Welcome to Dogecoin Core. - + Tervetuloa Dogecoin Core - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - + Tämän on ensimmäinen kerta kun Dogecoin Core on käynnistetty joten voit valita data-hakemiston paikan. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - + Dogecoin Core lataa ja tallentaa kopion Dogecoinin lohkoketjusta. Vähintään %1GB dataa tullaan tallentamaan tähän hakemistoon ja tarve kasvaa ajan myötä. Lomakko tullaan myös tallentamaan tähän hakemistoon. - Use the default data directory Käytä oletuskansiota - Use a custom data directory: Määritä oma kansio: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - + Virhe: Annettua data-hakemistoa "%1" ei voida luoda. - Error Virhe - GB of free space available - + GB vapaata tilaa - (of %1GB needed) - + (tarvitaan %1GB) OpenURIDialog - Open URI - + Avaa URI - Open payment request from URI or file - + Avaa maksupyyntö URI:sta tai tiedostosta - URI: - + URI: - Select payment request file - + Valitse maksupyynnön tiedosto - Select payment request file to open - + Valitse maksypyynnön tiedosto avattavaksi OptionsDialog - Options Asetukset - &Main &Yleiset - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - + Valinnainen rahansiirtopalkkio per kB auttaa varmistamaan että rahansiirtosi prosessoidaan nopeasti. Useimmat rahansiirrot ovat alle 1 kB. - Pay transaction &fee Maksa rahansiirtopalkkio - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Käynnistä Dogecoin kirjautumisen yhteydessä. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Käynnistä Dogecoin kirjautumisen yhteydessä - Size of &database cache - + &Tietokannan välimuistin koko - - Set database cache size in megabytes (default: 25) - Aseta tietokannan välimuistin koko megatavuina (oletus: 25) - - - MB - + MB - Number of script &verification threads - + Script &varmistuksen threadien määrä - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - + Yhdistä Dogecoin-verkkoon SOCKS proxyn kautta. - &Connect through SOCKS proxy (default proxy): - + &Yhdistä SOCKS proxyn kautta (oletus proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - + IP osoite proxille (esim. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - + Aktiiviset komentorivivalinnat jotka ohittavat ylläolevat valinnat: - Reset all client options to default. - + Palauta kaikki asetukset takaisin alkuperäisiksi. - &Reset Options - + &Palauta asetukset - &Network &Verkko - + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = jätä näin monta ydintä vapaaksi) + + + W&allet + &Lompakko + + + Expert + Expertti + + + Enable coin &control features + Ota käytöön &Kolikkokontrolli-ominaisuudet + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Jos poistat varmistamattomien vaihtorahojen käytön, rahansiirron vaihtorahaa ei voida käyttää ennen vähintään yhtä varmistusta. Tämä vaikuttaa myös kuinka taseesi lasketaan. + + + &Spend unconfirmed change + &Käytä varmistamattomia vaihtorahoja + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Avaa Dogecoin-asiakasohjelman portti reitittimellä automaattisesti. Tämä toimii vain, jos reitittimesi tukee UPnP:tä ja se on käytössä. - Map port using &UPnP Portin uudelleenohjaus &UPnP:llä - Proxy &IP: Proxyn &IP: - &Port: &Portti - Port of the proxy (e.g. 9050) Proxyn Portti (esim. 9050) - SOCKS &Version: SOCKS &Versio: - SOCKS version of the proxy (e.g. 5) Proxyn SOCKS-versio (esim. 5) - &Window &Ikkuna - Show only a tray icon after minimizing the window. Näytä ainoastaan ilmaisinalueella ikkunan pienentämisen jälkeen. - &Minimize to the tray instead of the taskbar &Pienennä ilmaisinalueelle työkalurivin sijasta - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Ikkunaa suljettaessa vain pienentää Dogecoin-ohjelman ikkunan lopettamatta itse ohjelmaa. Kun tämä asetus on valittuna, ohjelman voi sulkea vain valitsemalla Lopeta ohjelman valikosta. - M&inimize on close P&ienennä suljettaessa - &Display &Käyttöliittymä - User Interface &language: &Käyttöliittymän kieli - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Tässä voit määritellä käyttöliittymän kielen. Muutokset astuvat voimaan seuraavan kerran, kun Dogecoin käynnistetään. - &Unit to show amounts in: - Yksikkö jona dogecoin-määrät näytetään + Yksikkö jona bitcoin-määrät näytetään - Choose the default subdivision unit to show in the interface and when sending coins. - Valitse mitä yksikköä käytetään ensisijaisesti dogecoin-määrien näyttämiseen. + Valitse mitä yksikköä käytetään ensisijaisesti bitcoin-määrien näyttämiseen. - Whether to show Dogecoin addresses in the transaction list or not. Näytetäänkö Dogecoin-osoitteet rahansiirrot listassa vai ei. - &Display addresses in transaction list &Näytä osoitteet rahansiirrot listassa - Whether to show coin control features or not. - + Näytetäänkö kolikkokontrollin ominaisuuksia vai ei - - Display coin &control features (experts only) - - - - &OK &OK - &Cancel &Peruuta - default oletus - none - + ei mitään - Confirm options reset - + Varmista asetusten palautus - - Client restart required to activate changes. - + Ohjelman uudelleenkäynnistys aktivoi muutokset. - Client will be shutdown, do you want to proceed? - + Ohjelma lopetetaan. Haluatko jatkaa? - This change would require a client restart. - + Tämä muutos vaatii ohjelman uudelleenkäynnistyksen. - The supplied proxy address is invalid. Antamasi proxy-osoite on virheellinen. @@ -1477,69 +1207,54 @@ Osoite: %4 OverviewPage - Form Lomake - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Näytetyt tiedot eivät välttämättä ole ajantasalla. Lompakkosi synkronoituu Dogecoin-verkon kanssa automaattisesti yhteyden muodostamisen jälkeen, mutta synkronointi on vielä meneillään. - - Unconfirmed: - Vahvistamatta: - - - Wallet Lompakko - - Confirmed: - Vahvistettu + Available: + Käytettävissä: - Your current spendable balance - + Nykyinen käytettävissä oleva tase + + + Pending: + Odotetaan: - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - + Varmistamattomien rahansiirtojen summa, jota ei lasketa käytettävissä olevaan taseeseen. - Immature: Epäkypsää: - Mined balance that has not yet matured Louhittu saldo, joka ei ole vielä kypsynyt - Total: - + Yhteensä: - Your current total balance Tililläsi tällä hetkellä olevien Dogecoinien määrä - <b>Recent transactions</b> <b>Viimeisimmät rahansiirrot</b> - - out of sync Ei ajan tasalla @@ -1547,484 +1262,401 @@ Osoite: %4 PaymentServer - - URI handling URI käsittely - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. URIa ei voitu jäsentää! Tämä voi johtua kelvottomasta Dogecoin-osoitteesta tai virheellisistä URI parametreista. - Requested payment amount of %1 is too small (considered dust). - + Maksupyyntö %1 on liian pieni (huomioidaan tomuna). - - - - - - Payment request error - + Maksupyyntövirhe - - Cannot start dogecoin: click-to-pay handler - + Cannot start bitcoin: click-to-pay handler + Ei voida käynnistää bitcoin: klikkaa-maksu käsittelijää - Net manager warning - + Verkkohallinnan varoitus - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - + Aktiivinen proxy ei tue SOCKS5, joka on pakollinen maksupyynnöissä proxyn kautta. - Payment request fetch URL is invalid: %1 - + Maksupyynnön haku URL on virheellinen: %1 - Payment request file handling - + Maksupyynnön tiedoston käsittely - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - + Maksupyynnön tiedostoa ei voida lukea tai prosessoida! Tämä voi johtua virheellisestä maksupyyntötiedostosta. - Unverified payment requests to custom payment scripts are unsupported. - + Varmistamattomia maksupyyntöjä kustomoituun maksupalveluun ei tueta. - Refund from %1 - + Maksupalautus %1:sta - Error communicating with %1: %2 - + Virhe kommunikoidessa %1n kanssa: %2 - Payment request can not be parsed or processed! - + Maksupyyntöä ei voida jäsentää tai prosessoida! - Bad response from server %1 - + Huono vastaus palvelimelta %1 - Payment acknowledged - + Rahansiirto tunnistettu - Network request error - + Tietoverkon pyyntövirhe QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. - + Virhe: Annettu data-hakemisto "%1" ei ole olemassa. + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Virhe: Ei voida jäsentää asetustiedostoa: %1. Käytä vain avain=arvo syntaksia. - Error: Invalid combination of -regtest and -testnet. - + Virhe: Virheellinen yhdistelmä -regtest ja -testnet. + + + Dogecoin Core did't yet exit safely... + Dogecoin Core ei vielä sulkeutunut turvallisesti... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Anna Dogecoin-osoite (esim. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) QRImageWidget - &Save Image... - + &Tallenna kuva - &Copy Image - + &Kopioi kuva - Save QR Code Tallenna QR-koodi - PNG Image (*.png) - + PNG kuva (*.png) RPCConsole - Client name Pääteohjelman nimi - - - - - - - - - - - N/A Ei saatavilla - Client version Pääteohjelman versio - &Information T&ietoa - Debug window - + &Debug-ikkuna - General - + Yleinen - Using OpenSSL version Käytössä oleva OpenSSL-versio - Startup time Käynnistysaika - Network Verkko - Name Nimi - Number of connections Yhteyksien lukumäärä - Block chain Lohkoketju - Current number of blocks Nykyinen Lohkojen määrä - Estimated total blocks Arvioitu lohkojen kokonaismäärä - Last block time Viimeisimmän lohkon aika - &Open &Avaa - &Console &Konsoli - &Network Traffic - + &Verkkoliikenne - &Clear - + &Tyhjennä - Totals - + Yhteensä - In: - + Sisään: - Out: - + Ulos: - Build date Kääntöpäiväys - Debug log file Debug lokitiedosto - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Avaa lokitiedosto nykyisestä data-kansiosta. Tämä voi viedä useamman sekunnin, jos lokitiedosto on iso. - Clear console Tyhjennä konsoli - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Tervetuloa Dogecoin RPC konsoliin. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Ylös- ja alas-nuolet selaavat historiaa ja <b>Ctrl-L</b> tyhjentää ruudun. - Type <b>help</b> for an overview of available commands. Kirjoita <b>help</b> nähdäksesi yleiskatsauksen käytettävissä olevista komennoista. - %1 B - + %1 B - %1 KB - + %1 KB - %1 MB - + %1 MB - %1 GB - + %1 GB - %1 m - + %1 m - %1 h - + %1 h - %1 h %2 m - + %1 h %2 m ReceiveCoinsDialog - &Amount: - + &Määrä - &Label: &Nimi: - &Message: - + &Viesti: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - + Uudelleenkäytä yksi vanhoista vastaanotto-osoitteista. Uudelleenkäyttössä on turvallisuus- ja yksityisyysongelmia. Älä käytä tätä ellet ole uudelleenluomassa aikaisempaa maksupyyntöä. - R&euse an existing receiving address (not recommended) - + &Uudelleenkäytä vastaanotto-osoitetta (ei suositella) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + Valinnainen viesti liitetään maksupyyntöön ja näytetään avattaessa. Viestiä ei lähetetä Dogecoin-verkkoon. + + + An optional label to associate with the new receiving address. + Valinnainen nimi liitetään vastaanottavaan osoitteeseen. - Use this form to request payments. All fields are <b>optional</b>. - + Käytä lomaketta maksupyyntöihin. Kaikki kentät ovat <b>valinnaisia</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - + Valinnainen pyyntömäärä. Jätä tyhjäksi tai nollaksi jos et pyydä tiettyä määrää. - Clear all fields of the form. - + Tyhjennä lomakkeen kaikki kentät. - Clear - + Tyhjennä + + + Requested payments history + Pyydettyjen maksujen historia - &Request payment - + &Vastaanota maksu - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - + Näytä valittu pyyntö (sama toiminta kuin alkion tuplaklikkaus) - Show - + Näytä - Remove the selected entries from the list - + Poista valitut alkiot listasta - Remove - + Poista + + + Copy label + Kopioi nimi + + + Copy message + Kopioi viesti + + + Copy amount + Kopioi määrä ReceiveRequestDialog - QR Code QR-koodi - Copy &URI - + Kopioi &URI - Copy &Address - + Kopioi &Osoite - &Save Image... - + &Tallenna kuva - Request payment to %1 - + Vastaanota maksu %1 - Payment information - + Maksutiedot - URI - + URI - Address Osoite - Amount Määrä - Label Nimi - Message Viesti - Resulting URI too long, try to reduce the text for label / message. Tuloksen URI liian pitkä, yritä lyhentää otsikon tekstiä / viestiä. - Error encoding URI into QR Code. Virhe käännettäessä URI:a QR-koodiksi. @@ -2032,595 +1664,454 @@ Osoite: %4 RecentRequestsTableModel - Date Aika - Label Nimi - Message Viesti - Amount Määrä - (no label) (ei nimeä) - (no message) - + (ei viestiä) + + + (no amount) + (ei määrää) SendCoinsDialog - - - Send Coins Lähetä Dogecoineja - Coin Control Features - + Kolikkokontrolli ominaisuudet - Inputs... - + Sisääntulot... - automatically selected - + automaattisesti valitut - Insufficient funds! - + Lompakon saldo ei riitä! - Quantity: - + Määrä: - Bytes: - + Tavuja: - Amount: Määrä: - Priority: - + Prioriteetti: - Fee: - + Palkkio: - Low Output: - + Pieni Tuotos - After Fee: - + Palkkion jälkeen: - Change: - + Vaihtoraha: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - + Jos tämä aktivoidaan mutta vaihtorahan osoite on tyhjä tai virheellinen, vaihtoraha tullaan lähettämään uuteen luotuun osoitteeseen. - Custom change address - + Kustomoitu vaihtorahan osoite - Send to multiple recipients at once - Lähetä monelle vastaanottajalle + Lähetä usealla vastaanottajalle samanaikaisesti - Add &Recipient Lisää &Vastaanottaja - Clear all fields of the form. - + Tyhjennä lomakkeen kaikki kentät - Clear &All &Tyhjennnä Kaikki - Balance: - Saldo: + Balanssi: - Confirm the send action Vahvista lähetys - S&end &Lähetä - Confirm send coins Hyväksy Dogecoinien lähettäminen - - - - %1 to %2 - + %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Anna Dogecoin-osoite (esim. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - + Kopioi määrä - Copy amount Kopioi määrä - Copy fee - + Kopioi palkkio - Copy after fee - + Kopioi palkkion jälkeen - Copy bytes - + Kopioi tavut - Copy priority - + Kopioi prioriteetti - Copy low output - + Kopioi pieni tuotos - Copy change - + Kopioi vaihtoraha - Total Amount %1 (= %2) - + Yhteensä %1 (= %2) - or - + tai - The recipient address is not valid, please recheck. Vastaanottajan osoite on virheellinen. Tarkista osoite. - The amount to pay must be larger than 0. Maksettavan summan tulee olla suurempi kuin 0 Dogecoinia. - The amount exceeds your balance. Määrä ylittää käytettävissä olevan saldon. - The total exceeds your balance when the %1 transaction fee is included. Kokonaismäärä ylittää saldosi kun %1 maksukulu lisätään summaan. - Duplicate address found, can only send to each address once per send operation. Sama osoite toistuu useamman kerran. Samaan osoitteeseen voi lähettää vain kerran per maksu. - Transaction creation failed! - + Rahansiirron luonti epäonnistui! - 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. - + Rahansiirto hylättiin! Tämä saattaa tapahtua jos lompakossa olevat kolikot on jo kulutettu, kuten jos käytät kopioita wallet.dat tiedostosta ja kolikot oli jos käytetty mutta ei merkattu täällä. - Warning: Invalid Dogecoin address - + Varoitus: Virheellinen Dogecoin osoite - (no label) (ei nimeä) - Warning: Unknown change address - + Varoitus: Tuntematon vaihtorahan osoite - Are you sure you want to send? - + Haluatko varmasti lähettää? - added as transaction fee - + lisätty rahansiirtomaksuna - Payment request expired - + Maksupyyntö vanhentui - Invalid payment address %1 - + Virheellinen maksuosoite %1 SendCoinsEntry - - - A&mount: M&äärä: - Pay &To: Maksun saaja: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Osoite, johon Dogecoinit lähetetään (esim. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Anna nimi tälle osoitteelle, jos haluat lisätä sen osoitekirjaan - &Label: &Nimi: - Choose previously used address - + Valitse aikaisemmin käytetty osoite - This is a normal payment. - + Tämä on normaali maksu. - Alt+A Alt+A - Paste address from clipboard Liitä osoite leikepöydältä - Alt+P Alt+P - - - Remove this entry - + Poista tämä alkio - Message: Viesti: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - + Tämä on varmistettu maksupyyntö. - Enter a label for this address to add it to the list of used addresses - + Aseta nimi tälle osoitteelle lisätäksesi sen käytettyjen osoitteiden listalle. + + + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + Viesti joka liitettiin bitcoin: URI:iin tallennetaan rahansiirtoon viitteeksi. Tätä viestiä ei lähetetä Dogecoin-verkkoon. - This is an unverified payment request. - + Tämä on varmistamaton maksupyyntö - - Pay To: - + Saaja: - - Memo: - - - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Anna Dogecoin-osoite (esim. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Muistio: ShutdownWindow - Dogecoin Core is shutting down... - + Dogecoin core sulkeutuu... - Do not shut down the computer until this window disappears. - + Älä sammuta tietokonetta ennenkuin tämä ikkuna katoaa. SignVerifyMessageDialog - Signatures - Sign / Verify a Message Allekirjoitukset - Allekirjoita / Varmista viesti - &Sign Message &Allekirjoita viesti - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Voit allekirjoittaa viestit omalla osoitteellasi todistaaksesi että omistat ne. Ole huolellinen, että et allekirjoita mitään epämääräistä, phishing-hyökkääjät voivat huijata sinua allekirjoittamaan luovuttamalla henkilöllisyytesi. Allekirjoita selvitys täysin yksityiskohtaisesti mihin olet sitoutunut. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Osoite, jolla viesti allekirjoitetaan (esimerkiksi DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - + Valitse aikaisemmin käytetty osoite - - Alt+A Alt+A - Paste address from clipboard Liitä osoite leikepöydältä - Alt+P Alt+P - Enter the message you want to sign here Kirjoita tähän viesti minkä haluat allekirjoittaa - Signature Allekirjoitus - Copy the current signature to the system clipboard Kopioi tämänhetkinen allekirjoitus leikepöydälle - Sign the message to prove you own this Dogecoin address Allekirjoita viesti todistaaksesi, että omistat tämän Dogecoin-osoitteen - Sign &Message Allekirjoita &viesti - Reset all sign message fields Tyhjennä kaikki allekirjoita-viesti-kentät - - Clear &All &Tyhjennä Kaikki - &Verify Message &Varmista viesti - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Syötä allekirjoittava osoite, viesti ja allekirjoitus alla oleviin kenttiin varmistaaksesi allekirjoituksen aitouden. Varmista että kopioit kaikki kentät täsmälleen oikein, myös rivinvaihdot, välilyönnit, tabulaattorit, jne. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Osoite, jolla viesti allekirjoitettiin (esimerkiksi DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Tarkista viestin allekirjoitus varmistaaksesi, että se allekirjoitettiin tietyllä Dogecoin-osoitteella - Verify &Message Varmista &viesti... - Reset all verify message fields Tyhjennä kaikki varmista-viesti-kentät - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Anna Dogecoin-osoite (esim. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Klikkaa "Allekirjoita Viesti luodaksesi allekirjoituksen - - Enter Dogecoin signature - Syötä Dogecoin-allekirjoitus - - - - The entered address is invalid. Syötetty osoite on virheellinen. - - - - Please check the address and try again. Tarkista osoite ja yritä uudelleen. - - The entered address does not refer to a key. Syötetyn osoitteen avainta ei löydy. - Wallet unlock was cancelled. Lompakon avaaminen peruttiin. - Private key for the entered address is not available. Yksityistä avainta syötetylle osoitteelle ei ole saatavilla. - Message signing failed. Viestin allekirjoitus epäonnistui. - Message signed. Viesti allekirjoitettu. - The signature could not be decoded. Allekirjoitusta ei pystytty tulkitsemaan. - - Please check the signature and try again. Tarkista allekirjoitus ja yritä uudelleen. - The signature did not match the message digest. Allekirjoitus ei täsmää viestin tiivisteeseen. - Message verification failed. Viestin varmistus epäonnistui. - Message verified. Viesti varmistettu. @@ -2628,17 +2119,14 @@ Osoite: %4 SplashScreen - Dogecoin Core Dogecoin-ydin - The Dogecoin Core developers - + Dogecoin Core kehittäjät - [testnet] [testnet] @@ -2646,187 +2134,145 @@ Osoite: %4 TrafficGraphWidget - KB/s - + KB/s TransactionDesc - Open until %1 Avoinna %1 asti - + conflicted + ristiriitainen + + %1/offline %1/offline - %1/unconfirmed %1/vahvistamaton - %1 confirmations %1 vahvistusta - Status Tila - , broadcast through %n node(s) lähetetty %n noodin läpilähetetty %n noodin läpi - Date Päivämäärä - Source Lähde - Generated Generoitu - - From Lähettäjä - - - To Saaja - - own address oma osoite - label nimi - - - - - Credit Credit - matures in %n more block(s) kypsyy %n lohkon kuluttuakypsyy %n lohkon kuluttua - not accepted ei hyväksytty - - - - Debit Debit - Transaction fee Maksukulu - Net amount Netto määrä - - Message Viesti - Comment Viesti - Transaction ID Siirtotunnus - Merchant - + Kauppias - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + Luodut kolikot täytyy kypsyttää %1 lohkoa kunnes ne voidaan käyttää. Kun loit tämän lohkon, se lähetettiin verkkoon lisänä lohkoketjuun. Jos se epäonnistuu pääsemään ketjuun sen tila tulee muuttumaan "ei hyväksytty" ja sitä ei voida käyttää. Tämä voi ajoittain tapahtua kun toisen solmun lohko luodaan samanaikaisesti omasi kanssa. - Debug information Debug tiedot - Transaction Rahansiirto - Inputs Sisääntulot - Amount Määrä - true tosi - false epätosi - , has not been successfully broadcast yet , ei ole vielä onnistuneesti lähetetty - Open for %n more block(s) - + Avoinna %n lisälohkolleAvoinna %n lisälohkolle - unknown tuntematon @@ -2834,12 +2280,10 @@ Osoite: %4 TransactionDescDialog - Transaction details Rahansiirron yksityiskohdat - This pane shows a detailed description of the transaction Tämä ruutu näyttää yksityiskohtaisen tiedon rahansiirrosta @@ -2847,118 +2291,102 @@ Osoite: %4 TransactionTableModel - Date Päivämäärä - Type Laatu - Address Osoite - Amount Määrä - Immature (%1 confirmations, will be available after %2) - + Epäkypsä (%1 varmistusta, saatavilla %2 jälkeen) - Open for %n more block(s) - + Avoinna %n lisälohkolleAvoinna %n lisälohkolle - Open until %1 Avoinna %1 asti - - Offline (%1 confirmations) - Ei yhteyttä verkkoon (%1 vahvistusta) - - - - Unconfirmed (%1 of %2 confirmations) - Vahvistamatta (%1/%2 vahvistusta) - - - - Confirmed (%1 confirmations) Vahvistettu (%1 vahvistusta) - This block was not received by any other nodes and will probably not be accepted! Tätä lohkoa ei vastaanotettu mistään muusta solmusta ja sitä ei mahdollisesti hyväksytä! - Generated but not accepted Generoitu mutta ei hyväksytty - + Offline + Offline + + + Unconfirmed + Varmistamaton + + + Confirming (%1 of %2 recommended confirmations) + Varmistetaan (%1 kehoitetusta %2 varmistuksesta) + + + Conflicted + Ristiriitainen + + Received with Vastaanotettu osoitteella - Received from Vastaanotettu - Sent to Saaja - Payment to yourself Maksu itsellesi - Mined Louhittu - (n/a) (ei saatavilla) - Transaction status. Hover over this field to show number of confirmations. Rahansiirron tila. Siirrä osoitin kentän päälle nähdäksesi vahvistusten lukumäärä. - Date and time that the transaction was received. Rahansiirron vastaanottamisen päivämäärä ja aika. - Type of transaction. Rahansiirron laatu. - Destination address of transaction. Rahansiirron kohteen Dogecoin-osoite - Amount removed from or added to balance. Saldoon lisätty tai siitä vähennetty määrä. @@ -2966,178 +2394,142 @@ Osoite: %4 TransactionView - - All Kaikki - Today Tänään - This week Tällä viikolla - This month Tässä kuussa - Last month Viime kuussa - This year Tänä vuonna - Range... Alue... - Received with Vastaanotettu osoitteella - Sent to Saaja - To yourself Itsellesi - Mined Louhittu - Other Muu - Enter address or label to search Anna etsittävä osoite tai tunniste - Min amount Minimimäärä - Copy address Kopioi osoite - Copy label Kopioi nimi - Copy amount Kopioi määrä - Copy transaction ID - + Kopioi siirtotunnus - Edit label Muokkaa nimeä - Show transaction details Näytä rahansiirron yksityiskohdat - Export Transaction History - + Vie rahansiirtohistoria - Exporting Failed - + Vienti epäonnistui - There was an error trying to save the transaction history to %1. - + Rahansiirron historian tallentamisessa tapahtui virhe paikkaan %1. - Exporting Successful - + Vienti onnistui - The transaction history was successfully saved to %1. - + Rahansiirron historia tallennettiin onnistuneesti paikkaan %1. - Comma separated file (*.csv) Comma separated file (*.csv) - Confirmed Vahvistettu - Date Aika - Type Laatu - Label Nimi - Address Osoite - Amount Määrä - ID ID - Range: Alue: - to kenelle @@ -3145,15 +2537,13 @@ Osoite: %4 WalletFrame - No wallet has been loaded. - + Lomakkoa ei ole ladattu. WalletModel - Send Coins Lähetä Dogecoineja @@ -3161,154 +2551,125 @@ Osoite: %4 WalletView - &Export - + &Vie... - Export the data in the current tab to a file Vie auki olevan välilehden tiedot tiedostoon - Backup Wallet - + Varmuuskopioi lompakko - Wallet Data (*.dat) - + Lompakkodata (*.dat) - Backup Failed Varmuuskopio epäonnistui - There was an error trying to save the wallet data to %1. - + Lompakon tallennuksessa tapahtui virhe %1. - The wallet data was successfully saved to %1. - + Lompakko tallennettiin onnistuneesti tiedostoon %1. - Backup Successful Varmuuskopio Onnistui - dogecoin-core + bitcoin-core - Usage: Käyttö: - List commands Lista komennoista - Get help for a command Hanki apua käskyyn - Options: Asetukset: - - Specify configuration file (default: dogecoin.conf) - Määritä asetustiedosto (oletus: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Määritä asetustiedosto (oletus: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Määritä pid-tiedosto (oletus: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Määritä pid-tiedosto (oletus: bitcoin.pid) - Specify data directory Määritä data-hakemisto - - Set database cache size in megabytes (default: 25) - Aseta tietokannan välimuistin koko megatavuina (oletus: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Kuuntele yhteyksiä portista <port> (oletus: 8333 tai testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Kuuntele yhteyksiä portista <port> (oletus: 22556 tai testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Pidä enintään <n> yhteyttä verkkoihin (oletus: 125) - Connect to a node to retrieve peer addresses, and disconnect Yhdistä noodiin hakeaksesi naapurien osoitteet ja katkaise yhteys - Specify your own public address Määritä julkinen osoitteesi - Threshold for disconnecting misbehaving peers (default: 100) Kynnysarvo aikakatkaisulle heikosti toimiville verkoille (oletus: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Sekuntien määrä, kuinka kauan uudelleenkytkeydytään verkkoihin (oletus: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s Virhe valmisteltaessa RPC-portin %u avaamista kuunneltavaksi: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Kuuntele JSON-RPC -yhteyksiä portista <port> (oletus: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Kuuntele JSON-RPC -yhteyksiä portista <port> (oletus: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands Hyväksy merkkipohjaiset- ja JSON-RPC-käskyt - + Dogecoin Core RPC client version + Dogecoin Core RPC asiakasversio + + Run in the background as a daemon and accept commands Aja taustalla daemonina ja hyväksy komennot - Use the test network Käytä test -verkkoa - Accept connections from outside (default: 1 if no -proxy or -connect) Hyväksy yhteyksiä ulkopuolelta (vakioasetus: 1 jos -proxy tai -connect ei määritelty) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3316,710 +2677,699 @@ If the file does not exist, create it with owner-readable-only file permissions. It is also recommended to set alertnotify so you are notified of problems; for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo.com - + %s, sinun tulee asettaa rpcpassword asetustietostossa: +%s +Suositellaan että käytät allaolevaa satunnaista salasanaa: +rpcuser=bitcoinrpc +rpcpassword=%s +(sinun ei tarvitse muistaa tätä salasanaa) +Tämän tunnuksen ja salasanan TULEE OLLA sama. +Jos tiedostoa ei ole, luo se vain omistajan-luku-oikeudella. +Suositellaan asettaa alertnotify jotta saat tietoa ongelmista; +esimerkiksi: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo.com + - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + Hyväksytyt koodit (oletus: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Virhe ilmennyt asetettaessa RPC-porttia %u IPv6:n kuuntelemiseksi, 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. Dogecoin Core is probably already running. - + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + Yhtäaikaisesti rajaa vapaat rahansiirrot <n>*1000 tavua per minuutti (oletus: 15) - 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 regression testimoodi joka käyttää erikoisketjua jossa lohkoja voidaan ratkaista välittömästi. + + + Error: Listening for incoming connections failed (listen returned error %d) + Virhe: Odottaessa sisääntulevia yhteyksiä epäonnistui (listen palautti virheen %d) - 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: Rahansiirto hylättiin! Tämä saattaa tapahtua jos jotkut kolikot lompakossa on jo käytetty. Esimerkiksi jos kopioit wallet.dat tiedoston ja kolikot on käytetty mutta ei merkattu 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ä rahansiirto vaatii rahansiirtopalkkion vähintään %s johtuen sen määrästä, monimutkaisuudesta tai hiljattain vastaanotettujen summien käytöstä - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Suorita käsky kun lompakossa rahansiirto muuttuu (%s cmd on vaihdettu TxID kanssa) + + + Fees smaller than this are considered zero fee (for transaction creation) (default: + Tätä pienemmät palkkiot huomioidaan tyhjäksi (rahansiirron luonnissa) (oletus: + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + Aja tietokannan toimet muistivarannosta kovalevylogiin joka <n> megatavu (oletus: 100) + + + 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. + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Aseta script varmistuksen threadien lukumäärä (%u - %d, 0= auto, <0 = jätä näin monta ydintä vapaaksi, oletus: %d) + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + Aseta prosessorin raja kun luonti on päällä (-1 = rajoittamaton, 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 riskillä - Ei saa käytää louhimiseen tai kauppasovelluksiin. + + + Unable to bind to %s on this computer. Dogecoin Core is probably already running. + Ei voida yhdistää %s tässä tietokoneessa. Dogecoin Core on luultavasti jo käynnissä. - Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Käytä erillistä SOCKS5 proxya tavoittaaksesi vertaiset 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: -paytxfee 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 Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Varoitus: Tarkista että tietokoneesi kellonaika ja päivämäärä ovat paikkansapitäviä! Dogecoin 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: Tietoverkko ei ole sovussa! Luohijat 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 tulee päivittää tai toisten solmujen tulee päivitää. - 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 korruptoitunut, tiedot pelastettu. Alkuperäinen wallet.dat -lompakkotiedosto on tallennettu wallet.{timestamp}.bak kansioon %s; jos balanssisi tai siirtohistoria on virheellinen, sinun tulisi palauttaa lompakkotiedosto varmuuskopiosta. + + + (default: 1) + (oletus: 1) + + + (default: wallet.dat) + (oletus: wallet.dat) - <category> can be: - + <category> voi olla: - Attempt to recover private keys from a corrupt wallet.dat - + Yritetään palauttaa privaattiavaimia korruptoituneesta wallet.dat -lompakkotiedostosta - Dogecoin Core Daemon - + Dogecoin Core taustapalvelin - - Dogecoin Core RPC client version - - - - Block creation options: Lohkon luonnin asetukset: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Tyhjennä lompakon rahansiirtojen lista (diagnostiikka työkalu; olettaa -rescan) + + Connect only to the specified node(s) Yhidstä ainoastaan määrättyihin noodeihin - Connect through SOCKS proxy - + Yhdistä SOCKS proxin kautta - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + Yhdistä JSON-RPC portissa <port> (oletus: 8332 tai testnet: 18332) + + + Connection options: + Yhteyden valinnat: - Corrupted block database detected - + Vioittunut lohkotietokanta havaittu + + + Debugging/Testing options: + Debuggaus/Testauksen valinnat: + + + Disable safemode, override a real safe mode event (default: 0) + Poista safemode, ohita oikea turvallinen mooditapahtuma (oletus: 0) - Discover own IP address (default: 1 when listening and no -externalip) Hae oma IP osoite (vakioasetus: 1 kun kuuntelemassa ja ei -externalip) - Do not load the wallet and disable wallet RPC calls - + Älä lataa lompakkoa ja poista lompakon RPC kutsut - Do you want to rebuild the block database now? - + Haluatko uudelleenrakentaa lohkotietokannan nyt? - Error initializing block database - + Virhe alustaessa lohkotietokantaa - Error initializing wallet database environment %s! - + Virhe alustaessa lompakon tietokantaympäristöä %s! - Error loading block database - + Virhe avattaessa lohkoketjua - Error opening block database Virhe avattaessa lohkoindeksiä - Error: Disk space is low! Varoitus: Levytila on vähissä! - Error: Wallet locked, unable to create transaction! Virhe: Lompakko on lukittu, rahansiirtoa ei voida luoda - Error: system error: Virhe: Järjestelmävirhe - Failed to listen on any port. Use -listen=0 if you want this. Ei onnistuttu kuuntelemaan missään portissa. 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 - + Rahasiirtojen 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 lisätty lähettämiisi rahansiirtoihin - + Fees smaller than this are considered zero fee (for relaying) (default: + Tätä pienemmät palkkiot huomioidaan tyhjäksi (välittämisessä) (oletus: + + Find peers using DNS lookup (default: 1 unless -connect) Hae naapureita DNS hauilla (vakioasetus: 1 paitsi jos -connect) - + Force safe mode (default: 0) + Pakota safe moodi (oletus: 0) + + Generate coins (default: 0) Generoi kolikoita (vakio: 0) - How many blocks to check at startup (default: 288, 0 = all) - + Kuinka monta lohkoa tarkistetaan käynnistettäessä (oletus: 288, 0 = kaikki) - - How thorough the block verification is (0-4, default: 3) - - - - If <category> is not supplied, output all debugging information. - + Jos <kategoria> ei annettu, tulosta kaikki debuggaustieto. + + + Importing... + Tuodaan... - Incorrect or no genesis block found. Wrong datadir for network? - + Virheellinen tai olematon alkulohko löydetty. Väärä data-hakemisto verkolle? - Invalid -onion address: '%s' - + Virheellinen -onion osoite: '%s' - Not enough file descriptors available. - + Ei tarpeeksi tiedostomerkintöjä vapaana. - Prepend debug output with timestamp (default: 1) - + Lisää aikamerkki debug tulosteen eteen (oletus: 1) - RPC client options: - + RPC asiakas valinnat: - Rebuild block chain index from current blk000??.dat files - + Uudelleenrakenna lohkoketjuindeksi nykyisistä blk000??.dat tiedostoista - Select SOCKS version for -proxy (4 or 5, default: 5) - + Valitse SOCKS versio -proxy:lle (4 tai 5, oletus: 5) - - Send command to Dogecoin Core server - + Set database cache size in megabytes (%d to %d, default: %d) + Aseta tietokannan välimuistin koko megatavuissa (%d - %d, oletus: %d - Set maximum block size in bytes (default: %d) - + Aseta lohkon maksimikoko tavuissa (oletus: %d) - Set the number of threads to service RPC calls (default: 4) - + Aseta threadien lukumäärä RPC kutsuille (oletus: 4) - Specify wallet file (within data directory) - + Aseta lompakkotiedosto (data-hakemiston sisällä) - - Start Dogecoin Core server - + Spend unconfirmed change when sending transactions (default: 1) + Käytä varmistamattomia vaihtorahoja lähetettäessä rahansiirtoja (oletus: 1) - This is intended for regression testing tools and app development. - + Tämä on tarkoitettu regression testityökaluille ja ohjelman kehittämiseen. - - Usage (deprecated, use dogecoin-cli): - + Usage (deprecated, use bitcoin-cli): + Käyttö (vanhentunut, käytä bitcoin-cli): - Verifying blocks... - + Varmistetaan lohkoja... - Verifying wallet... - + Varmistetaan lompakko... - Wait for RPC server to start - + Odota RPC palvelimen käynnistystä - Wallet %s resides outside data directory %s - + Lompakko %s sijaitsee data-hakemiston ulkopuolella %s - Wallet options: - + Lompakon valinnat: - Warning: Deprecated argument -debugnet ignored, use -debug=net - + Varoitus: Vanhentunut argumentti -debugnet sivutettu, käytä debug=net - You need to rebuild the database using -reindex to change -txindex - + Sinun tulee uudelleenrakentaa tietokanta käyttäen -reindex vaihtaen -txindex - Imports blocks from external blk000??.dat file Tuodaan lohkoja ulkoisesta blk000??.dat tiedostosta - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + Ei voida lukita data-hakemistoa %s. Dogecoin Core on luultavasti jo käynnissä. + + 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 komennossa korvataan viestillä) - Output debugging information (default: 0, supplying <category> is optional) - + Tulosta debuggaustieto (oletus: 0, annettu <kategoria> valinnainen) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + Aseta maksimikoko korkea prioriteetti/pieni palkkio rahansiirtoihin tavuissa (oletus: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Information Tietoa - Invalid amount for -minrelaytxfee=<amount>: '%s' - + Virheellinen määrä -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' - + Virheellinen määrä -mintxfee=<amount>: '%s' + + + Limit size of signature cache to <n> entries (default: 50000) + Rajaa allekirjoituksen välimuistin koko <n> alkioon (oletus: 50000) + + + Log transaction priority and fee per kB when mining blocks (default: 0) + Kirjaa rahansiirron prioriteetti ja palkkio per kB kun louhitaan lohkoja (oletus: 0) - Maintain a full transaction index (default: 0) - + Ylläpidä täydellistä rahasiirtojen indeksiä (oletus: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Suurin vastaanottopuskuri yksittäiselle yhteydelle, <n>*1000 tavua (vakioasetus: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Suurin lähetyspuskuri yksittäiselle yhteydelle, <n>*1000 tavua (vakioasetus: 1000) - 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 noodeihin verkossa <net> (IPv4, IPv6 tai Tor) - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL asetukset (katso Bitcoin Wikistä tarkemmat SSL ohjeet) + 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 Dogecoin Wikistä SSL-asennuksen ohjeet) + + + 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ä + + + Run a thread to flush wallet periodically (default: 1) + Aja threadi jossa tallennetaan lompakko ajoittain (oletus: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL asetukset (katso Dogecoin Wikistä tarkemmat SSL ohjeet) + + + Send command to Dogecoin Core + Lähetä komento Dogecoin Coreen - Send trace/debug info to console instead of debug.log file Lähetä jäljitys/debug-tieto konsoliin, debug.log-tiedoston sijaan - Set minimum block size in bytes (default: 0) Asetan pienin lohkon koko tavuissa (vakioasetus: 0) - + 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 transaction failed Siirron vahvistus epäonnistui - Specify connection timeout in milliseconds (default: 5000) Määritä yhteyden aikakataisu millisekunneissa (vakioasetus: 5000) - + Start Dogecoin Core Daemon + Käynnistä Dogecoin Core taustapalvelin + + System error: Järjestelmävirhe: - Transaction amount too small Siirtosumma liian pieni - Transaction amounts must be positive - + Siirtosumman tulee olla positiivinen - Transaction too large Siirtosumma liian iso - Use UPnP to map the listening port (default: 0) Käytä UPnP:tä kuunneltavan portin avaamiseen (vakioasetus: 0) - Use UPnP to map the listening port (default: 1 when listening) Käytä UPnP:tä kuunneltavan portin avaamiseen (vakioasetus: 1 kun kuuntelemassa) - Username for JSON-RPC connections Käyttäjätunnus JSON-RPC-yhteyksille - Warning Varoitus - Warning: This version is obsolete, upgrade required! Varoitus: Tämä versio on vanhentunut, päivitys tarpeen! - + Zapping all transactions from wallet... + Tyhjennetään kaikki rahansiirrot lompakosta.... + + + on startup + käynnistyksessä + + version versio - wallet.dat corrupt, salvage failed - + wallet.dat -lompakkotiedosto korruptoitunut, korjaaminen epäonnistui - Password for JSON-RPC connections Salasana JSON-RPC-yhteyksille - Allow JSON-RPC connections from specified IP address Salli JSON-RPC yhteydet tietystä ip-osoitteesta - Send commands to node running on <ip> (default: 127.0.0.1) Lähetä käskyjä solmuun osoitteessa <ip> (oletus: 127.0.0.1) - 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 vaihdettu block hashin kanssa) - Upgrade wallet to latest format Päivitä lompakko uusimpaan formaattiin - Set key pool size to <n> (default: 100) Aseta avainpoolin koko arvoon <n> (oletus: 100) - Rescan the block chain for missing wallet transactions Skannaa uudelleen lohkoketju lompakon puuttuvien rahasiirtojen vuoksi - Use OpenSSL (https) for JSON-RPC connections Käytä OpenSSL:ää (https) JSON-RPC-yhteyksille - Server certificate file (default: server.cert) Palvelimen sertifikaatti-tiedosto (oletus: server.cert) - Server private key (default: server.pem) Palvelimen yksityisavain (oletus: server.pem) - This help message Tämä ohjeviesti - Unable to bind to %s on this computer (bind returned error %d, %s) Kytkeytyminen %s tällä tietokonella ei onnistu (kytkeytyminen palautti virheen %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Salli DNS kyselyt -addnode, -seednode ja -connect yhteydessä - Loading addresses... Ladataan osoitteita... - Error loading wallet.dat: Wallet corrupted Virhe ladattaessa wallet.dat-tiedostoa: Lompakko vioittunut - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Virhe ladattaessa wallet.dat-tiedostoa: Tarvitset uudemman version Dogecoinista - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Lompakko tarvitsee uudelleenkirjoittaa: käynnistä Dogecoin uudelleen - Error loading wallet.dat Virhe ladattaessa wallet.dat-tiedostoa - Invalid -proxy address: '%s' Virheellinen proxy-osoite '%s' - Unknown network specified in -onlynet: '%s' Tuntematon verkko -onlynet parametrina: '%s' - Unknown -socks proxy version requested: %i Tuntematon -socks proxy versio pyydetty: %i - Cannot resolve -bind address: '%s' -bind osoitteen '%s' selvittäminen epäonnistui - Cannot resolve -externalip address: '%s' -externalip osoitteen '%s' selvittäminen epäonnistui - Invalid amount for -paytxfee=<amount>: '%s' -paytxfee=<amount>: '%s' on virheellinen - Invalid amount Virheellinen määrä - Insufficient funds Lompakon saldo ei riitä - Loading block index... Ladataan lohkoindeksiä... - Add a node to connect to and attempt to keep the connection open Linää solmu mihin liittyä pitääksesi yhteyden auki - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Kytkeytyminen %s ei onnistu tällä tietokoneella. Dogecoin on todennäköisesti jo ajamassa. - - - Loading wallet... Ladataan lompakkoa... - Cannot downgrade wallet Et voi päivittää lompakkoasi vanhempaan versioon - Cannot write default address Oletusosoitetta ei voi kirjoittaa - Rescanning... Skannataan uudelleen... - Done loading Lataus on valmis - To use the %s option Käytä %s optiota - Error Virhe - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4028,4 +3378,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Jos tiedostoa ei ole, niin luo se ainoastaan omistajan kirjoitusoikeuksin. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_fr.ts b/src/qt/locale/bitcoin_fr.ts index 6a4596cc0..cfcf39d29 100644 --- a/src/qt/locale/bitcoin_fr.ts +++ b/src/qt/locale/bitcoin_fr.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core À propos de Dogecoin Core - <b>Dogecoin Core</b> version Version de <b>Dogecoin Core</b> - This is experimental software. @@ -27,135 +24,113 @@ This product includes software developed by the OpenSSL Project for use in the O Ce produit comprend des logiciels développés par le projet OpenSSL afin d'être utilisés dans la boîte à outils OpenSSL (http://www.openssl.org/), un logiciel de chiffrement écrit par Eric Young (eay@cryptsoft.com), et un logiciel UPnP développé par Thomas Bernard. - Copyright Tous droits réservés - The Dogecoin Core developers Les développeurs Dogecoin Core + + (%1-bit) + (%1-bit) + AddressBookPage - Double-click to edit address or label Double cliquer afin de modifier l'adresse ou l'étiquette - Create a new address Créer une nouvelle adresse - &New &Nouveau - Copy the currently selected address to the system clipboard Copier l'adresse courante sélectionnée dans le presse-papier - &Copy &Copier - C&lose &Fermer - &Copy Address &Copier l'adresse - Delete the currently selected address from the list Effacer l'adresse actuellement sélectionnée de la liste - Export the data in the current tab to a file Exporter les données de l'onglet courant vers un fichier - &Export &Exporter - &Delete &Supprimer - Choose the address to send coins to Choisir l'adresse à laquelle envoyer des pièces - Choose the address to receive coins with Choisir l'adresse avec laquelle recevoir des pîèces - C&hoose C&hoisir - Very sending addresses Adresses d'envoi - Much receiving addresses Adresses de réception - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Voici vos adresses Dogecoin pour envoyer des paiements. Vérifiez toujours le montant et l'adresse du destinataire avant d'envoyer des pièces. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Voici vos adresses Dogecoin pour recevoir des paiements. Il est recommandé d'utiliser une nouvelle adresse de réception pour chaque transaction. - Copy &Label Copier l'é&tiquette - &Edit &Modifier - Export Address List Exporter la liste d'adresses - Comma separated file (*.csv) Valeurs séparées par des virgules (*.csv) - Exporting Failed L'exportation a échoué - There was an error trying to save the address list to %1. Une erreur est survenue lors de l'enregistrement de la liste d'adresses vers %1. @@ -163,17 +138,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Étiquette - Address Adresse - (no label) (aucune étiquette) @@ -181,140 +153,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog Dialogue de phrase de passe - Enter passphrase Saisir la phrase de passe - New passphrase Nouvelle phrase de passe - Repeat new passphrase Répéter la phrase de passe - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Saisir la nouvelle phrase de passe pour le portefeuille. <br/>Veuillez utiliser une phrase de passe de <b>10 caractères aléatoires ou plus</b>, ou de <b>huit mots ou plus</b>. - Encrypt wallet Chiffrer le portefeuille - This operation needs your wallet passphrase to unlock the wallet. Cette opération nécessite votre phrase de passe pour déverrouiller le portefeuille. - Unlock wallet Déverrouiller le portefeuille - This operation needs your wallet passphrase to decrypt the wallet. Cette opération nécessite votre phrase de passe pour déchiffrer le portefeuille. - Decrypt wallet Déchiffrer le portefeuille - Change passphrase Changer la phrase de passe - Enter the old and new passphrase to the wallet. Saisir l’ancienne phrase de passe pour le portefeuille ainsi que la nouvelle. - Confirm wallet encryption Confirmer le chiffrement du portefeuille - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Attention : Si vous chiffrez votre portefeuille et perdez votre phrase de passe, vous <b>PERDREZ TOUS VOS DOGECOINS</b> ! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Attention : Si vous chiffrez votre portefeuille et perdez votre phrase de passe, vous <b>PERDREZ TOUS VOS DogecoinS</b> ! - Are you sure you wish to encrypt your wallet? Êtes-vous sûr de vouloir chiffrer votre portefeuille ? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANT : Toute sauvegarde précédente de votre fichier de portefeuille devrait être remplacée par le nouveau fichier de portefeuille chiffré. Pour des raisons de sécurité, les sauvegardes précédentes de votre fichier de portefeuille non chiffré deviendront inutilisables dès que vous commencerez à utiliser le nouveau portefeuille chiffré. - - Warning: The Caps Lock key is on! Attention : la touche Verr. Maj. est activée ! - - Wallet encrypted Portefeuille chiffré - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin Core va à présent se fermer pour terminer le chiffrement. N'oubliez pas que le chiffrement de votre portefeuille n'est pas une protection totale contre le vol par des logiciels malveillants qui infecteraient votre ordinateur. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin va à présent se fermer pour terminer le chiffrement. N'oubliez pas que le chiffrement de votre portefeuille n'est pas une protection totale contre le vol par des logiciels malveillants qui infecteraient votre ordinateur. - - - - Wallet encryption failed Le chiffrement du portefeuille a échoué - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Le chiffrement du portefeuille a échoué en raison d'une erreur interne. Votre portefeuille n'a pas été chiffré. - - The supplied passphrases do not match. Les phrases de passe saisies ne correspondent pas. - Wallet unlock failed Le déverrouillage du portefeuille a échoué - - - The passphrase entered for the wallet decryption was incorrect. La phrase de passe saisie pour déchiffrer le portefeuille était incorrecte. - Wallet decryption failed Le déchiffrage du portefeuille a échoué - Wallet passphrase was successfully changed. La phrase de passe du portefeuille a été modifiée avec succès. @@ -322,352 +260,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... &Signer le message... - Synchronizing with network... Synchronisation avec le réseau en cours… - &Overview &Vue d'ensemble - Node Nœud - Show general overview of wallet Afficher une vue d’ensemble du portefeuille - &Transactions &Transactions - Browse transaction history Parcourir l'historique des transactions - E&xit Q&uitter - Quit application Quitter l’application - Show information about Dogecoin Afficher des informations à propos de Dogecoin - - About &Qt À propos de &Qt - Show information about Qt Afficher des informations sur Qt - &Options... &Options… - &Encrypt Wallet... &Chiffrer le portefeuille... - &Backup Wallet... Sauvegarder le &portefeuille... - &Change Passphrase... &Changer la phrase de passe... - Very &sending addresses... Adresses d'&envoi... - Much &receiving addresses... Adresses de &réception... - Open &URI... Ouvrir un &URI... - Importing blocks from disk... Importation des blocs depuis le disque... - Reindexing blocks on disk... Réindexation des blocs sur le disque... - Send coins to a Dogecoin address Envoyer des pièces à une adresse Dogecoin - Modify configuration options for Dogecoin Modifier les options de configuration de Dogecoin - Backup wallet to another location Sauvegarder le portefeuille vers un autre emplacement - Change the passphrase used for wallet encryption Modifier la phrase de passe utilisée pour le chiffrement du portefeuille - &Debug window Fenêtre de &débogage - Open debugging and diagnostic console Ouvrir une console de débogage et de diagnostic - &Verify message... &Vérifier un message... - Dogecoin Dogecoin - Wallet Portefeuille - &Send &Envoyer - &Receive &Recevoir - - &Show / Hide &Afficher / Cacher - Show or hide the main Window Afficher ou masquer la fenêtre principale - Encrypt the private keys that belong to your wallet Chiffrer les clefs privées de votre portefeuille - Sign messages with your Dogecoin addresses to prove you own them Signer les messages avec vos adresses Dogecoin pour prouver que vous les détenez - Verify messages to ensure they were signed with specified Dogecoin addresses Vérifier les messages pour vous assurer qu'ils ont été signés avec les adresses Dogecoin spécifiées - &File &Fichier - &Settings &Réglages - &Help &Aide - Tabs toolbar Barre d'outils des onglets - - [testnet] [testnet] - Dogecoin Core Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) - Demander des paiements (génère des codes QR et des URIs dogecoin:) + Request payments (generates QR codes and bitcoin: URIs) + Demander des paiements (génère des codes QR et des URIs bitcoin:) - - &About Dogecoin Core À &propos de Dogecoin Core - Show the list of used sending addresses and labels Afficher la liste d'adresses d'envoi et d'étiquettes utilisées - Show the list of used receiving addresses and labels Afficher la liste d'adresses de réception et d'étiquettes utilisées - - Open a dogecoin: URI or payment request - Ouvrir un URI dogecoin: ou une demande de paiement + Open a bitcoin: URI or payment request + Ouvrir un URI bitcoin: ou une demande de paiement - &Command-line options Options de ligne de &commande - Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options Afficher le message d'aide de Dogecoin Core pour obtenir une liste des options de ligne de commande Dogecoin possibles. - - Dogecoin client Client Dogecoin - %n active connection(s) to Dogecoin network %n connexion active avec le réseau Dogecoin%n connexions actives avec le réseau Dogecoin - No block source available... Aucune source de blocs disponible... - Processed %1 of %2 (estimated) blocks of transaction history. À traité %1 blocs sur %2 (estimés) de l'historique des transactions. - Processed %1 blocks of transaction history. À traité %1 blocs de l'historique des transactions. - %n hour(s) %n heure%n heures - %n day(s) %n jour%n jours - %n week(s) %n semaine%n semaines - + %1 and %2 + %1 et %2 + + + %n year(s) + %n an%n ans + + %1 behind %1 en retard - 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. - Error Erreur - Warning Avertissement - Information Information - Up to date À jour - Catching up... Rattrapage en cours… - Sent transaction Transaction envoyée - Incoming transaction Transaction entrante - Date: %1 Amount: %2 Type: %3 @@ -680,25 +552,21 @@ 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>locked</b> Le portefeuille est <b>chiffré</b> et actuellement <b>verrouillé</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. - Une erreur fatale est survenue. Dogecoin Core ne peut plus continuer de façon sûre et va s'arrêter. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. + Une erreur fatale est survenue. Dogecoin ne peut plus continuer de façon sûre et va s'arrêter. ClientModel - Network Alert Alerte réseau @@ -706,291 +574,230 @@ Adresse : %4 CoinControlDialog - Coin Control Address Selection Sélection de l'adresse de contrôle des pièces - Quantity: Quantité : - Bytes: Octets : - Amount: Montant : - Priority: Priorité : - Fee: Frais : - Low Output: Sortie faible : - After Fee: Après les frais : - Change: Monnaie : - (un)select all Tout (dé)sélectionner - Tree mode Mode arborescence - List mode Mode liste - Amount Montant - Address Adresse - Date Date - Confirmations Confirmations - Confirmed Confirmée - Priority Priorité - Copy address Copier l’adresse - Copy label Copier l’étiquette - - Copy amount Copier le montant - Copy transaction ID Copier l'ID de la transaction - Lock unspent Verrouiller ce qui n'est pas dépensé - Unlock unspent Déverrouiller ce qui n'est pas dépensé - Copy quantity Copier la quantité - Copy fee Copier les frais - Copy after fee Copier le montant après les frais - Copy bytes Copier les octets - Copy priority Copier la priorité - Copy low output Copier la sortie faible - Copy change Copier la monnaie - highest la plus élevée - higher plus élevée - high élevée - medium-high moyennement-élevée - medium moyenne - low-medium moyennement-basse - low basse - lower plus basse - lowest la plus basse - (%1 locked) (%1 verrouillé) - none aucun - Dust Poussière - yes oui - no non - This label turns red, if the transaction size is greater than 1000 bytes. Cette étiquette devient rouge si la taille de la transaction est plus grande que 1 000 octets. - - This means a fee of at least %1 per kB is required. Signifie que des frais d'au moins 1% par ko sont requis. - Can vary +/- 1 byte per input. Peut varier +/- 1 octet par entrée. - Transactions with higher priority are more likely to get included into a block. Les transactions à priorité plus haute sont plus à même d'être incluses dans un bloc. - This label turns red, if the priority is smaller than "medium". Cette étiquette devient rouge si la priorité est plus basse que « moyenne » - This label turns red, if any recipient receives an amount smaller than %1. Cette étiquette devient rouge si un destinataire reçoit un montant inférieur à 1%. - - This means a fee of at least %1 is required. Signifie que des frais d'au moins %1 sont requis. - Amounts below 0.546 times the minimum relay fee are shown as dust. Les montants inférieurs à 0,546 fois les frais minimums de relais sont affichés en tant que poussière. - This label turns red, if the change is smaller than %1. Cette étiquette devient rouge si la monnaie rendue est inférieure à %1. - - (no label) (aucune étiquette) - change from %1 (%2) monnaie de %1 (%2) - (change) (monnaie) @@ -998,67 +805,54 @@ Adresse : %4 EditAddressDialog - Edit Address Modifier l'adresse - &Label &Étiquette - The label associated with this address list entry L'étiquette associée à cette entrée de la liste d'adresses - The address associated with this address list entry. This can only be modified for sending addresses. L'adresse associée à cette entrée de la liste d'adresses. Ceci ne peut être modifié que pour les adresses d'envoi. - &Address &Adresse - New receiving address Nouvelle adresse de réception - New sending address Nouvelle adresse d’envoi - Edit receiving address Modifier l’adresse de réception - Edit sending address Modifier l’adresse d'envoi - The entered address "%1" is already in the address book. L’adresse fournie « %1 » est déjà présente dans le carnet d'adresses. - The entered address "%1" is not a valid Dogecoin address. L'adresse fournie « %1 » n'est pas une adresse Dogecoin valide. - Could not unlock wallet. Impossible de déverrouiller le portefeuille. - New key generation failed. Échec de génération de la nouvelle clef. @@ -1066,27 +860,22 @@ Adresse : %4 FreespaceChecker - A new data directory will be created. Un nouveau répertoire de données sera créé. - name nom - Directory already exists. Add %1 if you intend to create a new directory here. Le répertoire existe déjà. Ajoutez %1 si vous voulez créer un nouveau répertoire ici. - Path already exists, and is not a directory. Le chemin existe déjà et n'est pas un répertoire. - Cannot create data directory here. Impossible de créer un répertoire de données ici. @@ -1094,52 +883,46 @@ Adresse : %4 HelpMessageDialog - Dogecoin Core - Command-line options Dogecoin Core - Options de ligne de commande - Dogecoin Core Dogecoin Core - version version - Usage: Utilisation : - command-line options options de ligne de commande - UI options Options de l'interface utilisateur - Set language, for example "de_DE" (default: system locale) Définir la langue, par exemple « fr_CA » (par défaut : la langue du système) - Start minimized Démarrer minimisé - + Set SSL root certificates for payment request (default: -system-) + Définir les certificats SSL racine pour les requêtes de paiement (par défaut : -système-) + + Show splash screen on startup (default: 1) Afficher l'écran d'accueil au démarrage (par défaut : 1) - Choose data directory on startup (default: 0) Choisir un répertoire de données au démarrage (par défaut : 0) @@ -1147,57 +930,46 @@ Adresse : %4 Intro - Welcome Bienvenue - Welcome to Dogecoin Core. Bienvenue à Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. Comme c'est la première fois que le logiciel est lancé, vous pouvez choisir où Dogecoin Core stockera ses données. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. Dogecoin Core va télécharger et stocker une copie de la chaîne de blocs Dogecoin. Au moins %1Go de données seront stockées dans ce répertoire et cela augmentera avec le temps. Le portefeuille sera également stocké dans ce répertoire. - Use the default data directory Utiliser le répertoire de données par défaut - Use a custom data directory: Utiliser un répertoire de données personnalisé : - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. Erreur : le répertoire de données spécifié « %1 » ne peut pas être créé. - Error Erreur - GB of free space available Go d'espace libre disponible - (of %1GB needed) (sur %1Go nécessaires) @@ -1205,27 +977,22 @@ Adresse : %4 OpenURIDialog - Open URI Ouvrir un URI - Open payment request from URI or file Ouvrir une demande de paiement à partir d'un URI ou d'un fichier - URI: URI : - Select payment request file Choisir le fichier de demande de paiement - Select payment request file to open Choisir le fichier de demande de paiement à ouvrir @@ -1233,243 +1000,206 @@ Adresse : %4 OptionsDialog - Options Options - &Main Réglages &principaux - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Frais de transaction optionnel par ko qui aident à garantir un traitement rapide des transactions. La plupart des transactions utilisent 1 ko. - Pay transaction &fee Payer des &frais de transaction - - Automatically start Dogecoin Core after logging in to the system. - Démarrer Dogecoin Core automatiquement après avoir ouvert une session sur l'ordinateur. + Automatically start Dogecoin after logging in to the system. + Démarrer Dogecoin automatiquement après avoir ouvert une session sur l'ordinateur. - - &Start Dogecoin Core on system login - &Démarrer Dogecoin Core lors de l'ouverture d'une session + &Start Dogecoin on system login + &Démarrer Dogecoin lors de l'ouverture d'une session - Size of &database cache Taille du cache de la base de &données - - Set database cache size in megabytes (default: 25) - Définir la taille du cache de la base de données en mégaoctets (par défaut : 25) - - - MB Mo - Number of script &verification threads Nombre d'exétrons de &vérification de script - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Défini le nombre d'exétrons de vérification de script (jusqu'à 16, 0 = auto, <0 = laisse autant de cœurs libre, par défaut : 0) - - - Connect to the Dogecoin network through a SOCKS proxy. Se connecter au réseau Dogecoin par un mandataire SOCKS. - &Connect through SOCKS proxy (default proxy): Se &connecter par un mandataire SOCKS (mandataire par défaut) : - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) Adresse IP du mandataire (par ex. IPv4 : 127.0.0.1 / IPv6 : ::1) - Active command-line options that override above options: Options actives de ligne de commande qui annulent les options ci-dessus : - Reset all client options to default. Réinitialiser toutes les options du client aux valeurs par défaut. - &Reset Options &Réinitialisation des options - &Network &Réseau - + (0 = auto, <0 = leave that many cores free) + (0 = auto, < 0 = laisser ce nombre de cœurs inutilisés) + + + W&allet + &Portefeuille + + + Expert + Expert + + + Enable coin &control features + Activer les fonctions de &contrôle des pièces + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Si vous désactivé la dépense de la monnaie non confirmée, la monnaie d'une transaction ne peut pas être utilisée tant que cette transaction n'a pas reçu au moins une confirmation. Ceci affecte aussi comment votre solde est calculé. + + + &Spend unconfirmed change + &Dépenser la monnaie non confirmée + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Ouvrir le port du client Dogecoin automatiquement sur le routeur. Ceci ne fonctionne que si votre routeur supporte l'UPnP et si la fonctionnalité est activée. - Map port using &UPnP Mapper le port avec l'&UPnP - Proxy &IP: &IP du serveur mandataire : - &Port: &Port : - Port of the proxy (e.g. 9050) Port du serveur mandataire (par ex. 9050) - SOCKS &Version: &Version SOCKS : - SOCKS version of the proxy (e.g. 5) Version SOCKS du serveur mandataire (par ex. 5) - &Window &Fenêtre - Show only a tray icon after minimizing the window. Afficher uniquement une icône système après minimisation. - &Minimize to the tray instead of the taskbar &Minimiser dans la barre système au lieu de la barre des tâches - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimiser au lieu de quitter l'application lorsque la fenêtre est fermée. Si cette option est activée, l'application ne pourra être fermée qu'en sélectionnant Quitter dans le menu. - M&inimize on close M&inimiser lors de la fermeture - &Display &Affichage - User Interface &language: &Langue de l'interface utilisateur : - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. - La langue de l'interface utilisateur peut être définie ici. Ce réglage sera pris en compte après redémarrage de Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. + La langue de l'interface utilisateur peut être définie ici. Ce réglage sera pris en compte après redémarrage de Dogecoin. - &Unit to show amounts in: &Unité d'affichage des montants : - Choose the default subdivision unit to show in the interface and when sending coins. Choisissez la sous-unité par défaut pour l'affichage dans l'interface et lors de l'envoi de pièces. - Whether to show Dogecoin addresses in the transaction list or not. Détermine si les adresses Dogecoin seront affichées sur la liste des transactions. - &Display addresses in transaction list &Afficher les adresses sur la liste des transactions - Whether to show coin control features or not. Afficher ou non les fonctions de contrôle des pièces. - - Display coin &control features (experts only) - Afficher les fonctions de &contrôle des pièces (experts seulement) - - - &OK &OK - &Cancel A&nnuler - default par défaut - none aucune - Confirm options reset Confirmer la réinitialisation des options - - Client restart required to activate changes. Le redémarrage du client est nécessaire pour activer les changements. - Client will be shutdown, do you want to proceed? Le client sera arrêté, voulez-vous continuer? - This change would require a client restart. Ce changement nécessite un redémarrage du client. - The supplied proxy address is invalid. L'adresse de serveur mandataire fournie est invalide. @@ -1477,69 +1207,54 @@ Adresse : %4 OverviewPage - Form Formulaire - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Les informations affichées peuvent être obsolètes. Votre portefeuille est automatiquement synchronisé avec le réseau Dogecoin lorsque la connexion s'établit, or ce processus n'est pas encore terminé. - - Unconfirmed: - Non confirmé : - - - Wallet Portefeuille - - Confirmed: - Confirmé : + Available: + Disponible : - Your current spendable balance Votre solde actuel pouvant être dépensé - + Pending: + En attente : + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Total des transactions qui doivent encore être confirmées et qu'il n'est pas encore possible de dépenser - Immature: Immature : - Mined balance that has not yet matured Le solde généré n'est pas encore mûr - Total: Total : - Your current total balance Votre solde total actuel - <b>Recent transactions</b> <b>Transactions récentes</b> - - out of sync désynchronisé @@ -1547,93 +1262,70 @@ Adresse : %4 PaymentServer - - URI handling Gestion des URIs - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. L'URI ne peut être analysé ! Ceci peut être causé par une adresse Dogecoin invalide ou par des paramètres d'URI mal composé. - Requested payment amount of %1 is too small (considered dust). Le paiement demandé d'un montant de %1 est trop faible (considéré comme de la poussière). - - - - - - Payment request error Erreur de demande de paiement - - Cannot start dogecoin: click-to-pay handler - Impossible de démarrer le gestionnaire de cliquer-pour-payer dogecoin : + Cannot start bitcoin: click-to-pay handler + Impossible de démarrer le gestionnaire de cliquer-pour-payer bitcoin : - Net manager warning Avertissement du gestionnaire de réseau - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. Votre serveur mandataire actif ne prend pas en charge SOCKS5 ce qui est exigé pour les demandes de paiements par serveur mandataire. - Payment request fetch URL is invalid: %1 L'URL de récupération de la demande de paiement est invalide : %1 - Payment request file handling Gestion des fichiers de demande de paiement - Payment request file can not be read or processed! This can be caused by an invalid payment request file. Le fichier de demande de paiement ne peut pas être lu ou traité ! Ceci peut être causé par un fichier de demande de paiement invalide. - Unverified payment requests to custom payment scripts are unsupported. Les demandes de paiements non vérifiées à des scripts de paiement personnalisés ne sont pas prises en charge. - Refund from %1 Remboursement de %1 - Error communicating with %1: %2 Erreur de communication avec %1 : %2 - Payment request can not be parsed or processed! La demande de paiement ne peut pas être analysée ou traitée ! - Bad response from server %1 Mauvaise réponse du serveur %1 - Payment acknowledged Le paiement a été confirmé - Network request error Erreur de demande réseau @@ -1641,41 +1333,45 @@ Adresse : %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Erreur : le répertoire de données spécifié « %1 » n'existe pas. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Erreur : impossible d'analyser le fichier de configuration : %1. N’utilisez que la syntaxe clef=valeur. + + Error: Invalid combination of -regtest and -testnet. Erreur : combinaison invalide de -regtest et de -testnet. + + Dogecoin Core did't yet exit safely... + Dogecoin Core ne s’est pas arrêté correctement... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Saisir une adresse Dogecoin (par ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... &Sauvegarder l'image... - &Copy Image &Copier l'image - Save QR Code Sauvegarder le code QR - PNG Image (*.png) Image PNG (*.png) @@ -1683,192 +1379,146 @@ Adresse : %4 RPCConsole - Client name Nom du client - - - - - - - - - - - N/A N.D. - Client version Version du client - &Information &Informations - Debug window Fenêtre de débogage - General Général - Using OpenSSL version Version d'OpenSSL utilisée - Startup time Heure de démarrage - Network Réseau - Name Nom - Number of connections Nombre de connexions - Block chain Chaîne de blocs - Current number of blocks Nombre actuel de blocs - Estimated total blocks Nombre total estimé de blocs - Last block time Horodatage du dernier bloc - &Open &Ouvrir - &Console &Console - &Network Traffic Trafic &réseau - &Clear &Nettoyer - Totals Totaux - In: Entrant : - Out: Sortant : - Build date Date de compilation - Debug log file Journal de débogage - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. - Ouvrir le journal de débogage de Dogecoin Core depuis le répertoire de données actuel. Ceci peut prendre quelques secondes pour les journaux de grande taille. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. + Ouvrir le journal de débogage de Dogecoin depuis le répertoire de données actuel. Ceci peut prendre quelques secondes pour les journaux de grande taille. - Clear console Nettoyer la console - - Welcome to the Dogecoin Core RPC console. - Bienvenue sur la console RPC de Dogecoin Core . + Welcome to the Dogecoin RPC console. + Bienvenue sur la console RPC de Dogecoin. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Utiliser les touches de curseur pour naviguer dans l'historique et <b>Ctrl-L</b> pour effacer l'écran. - Type <b>help</b> for an overview of available commands. Taper <b>help</b> pour afficher une vue générale des commandes disponibles. - %1 B %1 o - %1 KB %1 Ko - %1 MB %1 Mo - %1 GB %1 Go - %1 m %1 min - %1 h %1 h - %1 h %2 m %1 h %2 min @@ -1876,155 +1526,137 @@ Adresse : %4 ReceiveCoinsDialog - &Amount: &Montant : - &Label: &Étiquette : - &Message: M&essage : - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. Réutilise une adresse de réception précédemment utilisée. Réutiliser une adresse pose des problèmes de sécurité et de vie privée. N'utilisez pas cette option sauf si vous générez à nouveau une demande de paiement déjà faite. - R&euse an existing receiving address (not recommended) Ré&utiliser une adresse de réception existante (non recommandé) - - An optional label to associate with the new receiving address - Un étiquette optionnelle à associer à la nouvelle adresse de réception - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. Un message optionnel à joindre à la demande de paiement qui sera affiché à l'ouverture de celle-ci. Note : le message ne sera pas envoyé avec le paiement par le réseau Dogecoin. - + An optional label to associate with the new receiving address. + Un étiquette optionnelle à associer à la nouvelle adresse de réception + + Use this form to request payments. All fields are <b>optional</b>. Utiliser ce formulaire pour demander des paiements. Tous les champs sont <b>optionnels</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. Un montant optionnel à demander. Laisser ceci vide ou à zéro pour ne pas demander de montant spécifique. - Clear all fields of the form. Effacer tous les champs du formulaire. - Clear Effacer - + Requested payments history + Historique des paiements demandés + + &Request payment &Demande de paiement - - Requested payments - Paiements demandés - - - Show the selected request (does the same as double clicking an entry) Afficher la demande choisie (identique à un double-clic sur une entrée) - Show Afficher - Remove the selected entries from the list Enlever les entrées sélectionnées de la liste - Remove Enlever + + Copy label + Copier l’étiquette + + + Copy message + Copier le message + + + Copy amount + Copier le montant + ReceiveRequestDialog - QR Code Code QR - Copy &URI Copier l'&URI - Copy &Address Copier l'&adresse - &Save Image... &Sauvegarder l'image... - Request payment to %1 Demande de paiement à %1 - Payment information Informations de paiement - URI URI - Address Adresse - Amount Montant - Label Étiquette - Message Message - Resulting URI too long, try to reduce the text for label / message. L'URI résultant est trop long, essayez de réduire le texte d'étiquette / de message. - Error encoding URI into QR Code. Erreur d'encodage de l'URI en code QR. @@ -2032,285 +1664,225 @@ Adresse : %4 RecentRequestsTableModel - Date Date - Label Étiquette - Message Message - Amount Montant - (no label) (pas d'étiquette) - (no message) (pas de message) + + (no amount) + (aucun montant) + SendCoinsDialog - - - Send Coins Envoyer des pièces - Coin Control Features Fonctions de contrôle des pièces - Inputs... Entrants... - automatically selected choisi automatiquement - Insufficient funds! Fonds insuffisants ! - Quantity: Quantité : - Bytes: Octets : - Amount: Montant : - Priority: Priorité : - Fee: Frais : - Low Output: Sortie faible - After Fee: Après les frais : - Change: Monnaie : - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Si ceci est actif mais l'adresse de monnaie rendue est vide ou invalide, la monnaie sera envoyée vers une adresse nouvellement générée. - Custom change address Adresse personnalisée de monnaie rendue - Send to multiple recipients at once Envoyer à plusieurs destinataires à la fois - Add &Recipient Ajouter un &destinataire - Clear all fields of the form. Effacer tous les champs du formulaire. - Clear &All &Tout nettoyer - Balance: Solde : - Confirm the send action Confirmer l’action d'envoi - S&end E&nvoyer - Confirm send coins Confirmer l’envoi des pièces - - - - %1 to %2 %1 à %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Saisir une adresse Dogecoin (par ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity Copier la quantité - Copy amount Copier le montant - Copy fee Copier les frais - Copy after fee Copier le montant après les frais - Copy bytes Copier les octets - Copy priority Copier la priorité - Copy low output Copier la sortie faible - Copy change Copier la monnaie - Total Amount %1 (= %2) Montant total %1 (= %2) - or ou - The recipient address is not valid, please recheck. L'adresse du destinataire n’est pas valide, veuillez la vérifier. - The amount to pay must be larger than 0. Le montant à payer doit être supérieur à 0. - The amount exceeds your balance. Le montant dépasse votre solde. - The total exceeds your balance when the %1 transaction fee is included. Le montant dépasse votre solde lorsque les frais de transaction de %1 sont inclus. - Duplicate address found, can only send to each address once per send operation. Adresse indentique trouvée, il n'est possible d'envoyer qu'une fois à chaque adresse par opération d'envoi. - Transaction creation failed! La création de la transaction a échoué ! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. La 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 que des pièces ont été dépensées dans la copie sans être marquées comme telles ici. - Warning: Invalid Dogecoin address Attention : adresse Dogecoin invalide - (no label) (pas d'étiquette) - Warning: Unknown change address Attention : adresse de monnaie rendue inconnue - Are you sure you want to send? Êtes-vous sûr de vouloir envoyer ? - added as transaction fee ajouté en tant que frais de transaction - Payment request expired La demande de paiement a expiré - Invalid payment address %1 Adresse de paiement invalide %1 @@ -2318,116 +1890,85 @@ Adresse : %4 SendCoinsEntry - - - A&mount: &Montant : - Pay &To: &Payer à : - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) L'adresse à laquelle le paiement sera envoyé (par ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Saisir une étiquette pour cette adresse afin de l’ajouter à votre carnet d’adresses - &Label: É&tiquette : - Choose previously used address Choisir une adresse déjà utilisée - This is a normal payment. Ceci est un paiement normal. - Alt+A Alt+A - Paste address from clipboard Coller l'adresse depuis le presse-papier - Alt+P Alt+P - - - Remove this entry Enlever cette entrée - Message: Message : - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - Un message qui était joint à l'URI Dogecoin et qui sera stocké avec la transaction pour référence. Note : ce message ne sera pas envoyé par le réseau Dogecoin. - - - This is a verified payment request. Ceci est une demande de paiement vérifiée. - Enter a label for this address to add it to the list of used addresses Saisir une étiquette pour cette adresse afin de l'ajouter à la liste d'adresses utilisées - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + Un message qui était joint à l'URI Dogecoin et qui sera stocké avec la transaction pour référence. Note : ce message ne sera pas envoyé par le réseau Dogecoin. + + This is an unverified payment request. Ceci est une demande de paiement non vérifiée. - - Pay To: Payer à : - - Memo: Mémo : - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Saisir une adresse Dogecoin (par ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... Arrêt de Dogecoin Core... - Do not shut down the computer until this window disappears. Ne pas fermer l'ordinateur jusqu'à la disparition de cette fenêtre. @@ -2435,192 +1976,142 @@ Adresse : %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Signatures - Signer / Vérifier un message - &Sign Message &Signer un message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Vous pouvez signer des messages avec vos adresses pour prouver que vous les détenez. Faites attention de ne pas signer de vague car des attaques d'hameçonnage peuvent essayer d'usurper votre identité par votre signature. Ne signez que des déclarations entièrement détaillées et avec lesquelles vous serez d'accord. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) L'adresse avec laquelle le message sera signé (par ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Choisir une adresse précédemment utilisée - - Alt+A Alt+A - Paste address from clipboard Coller une adresse depuis le presse-papier - Alt+P Alt+P - Enter the message you want to sign here Saisir ici le message que vous désirez signer - Signature Signature - Copy the current signature to the system clipboard Copier la signature actuelle dans le presse-papier - Sign the message to prove you own this Dogecoin address Signer le message pour prouver que vous détenez cette adresse Dogecoin - Sign &Message Signer le &message - Reset all sign message fields Réinitialiser tous les champs de signature de message - - Clear &All &Tout nettoyer - &Verify Message &Vérifier un message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Saisir ci-dessous l'adresse de signature, le message (assurez-vous d'avoir copié exactement les retours à la ligne, les espaces, tabulations etc...) et la signature pour vérifier le message. Faire attention à ne pas déduire davantage de la signature que ce qui est contenu dans le message signé lui-même pour éviter d'être trompé par une attaque d'homme du milieu. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) L'adresse avec laquelle le message a été signé (par ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Vérifier le message pour vous assurer qu'il a bien été signé par l'adresse Dogecoin spécifiée - Verify &Message Vérifier le &message - Reset all verify message fields Réinitialiser tous les champs de vérification de message - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Saisir une adresse Dogecoin (par ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Cliquez sur « Signer le message » pour générer la signature - - Enter Dogecoin signature - Saisir une signature Dogecoin - - - - The entered address is invalid. L'adresse saisie est invalide. - - - - Please check the address and try again. Veuillez vérifier l'adresse et réessayer. - - The entered address does not refer to a key. L'adresse saisie ne fait pas référence à une clef. - Wallet unlock was cancelled. Le déverrouillage du portefeuille a été annulé. - Private key for the entered address is not available. La clef privée pour l'adresse indiquée n'est pas disponible. - Message signing failed. La signature du message a échoué. - Message signed. Le message a été signé. - The signature could not be decoded. La signature n'a pu être décodée. - - Please check the signature and try again. Veuillez vérifier la signature et réessayer. - The signature did not match the message digest. La signature ne correspond pas à l'empreinte du message. - Message verification failed. Échec de la vérification du message. - Message verified. Message vérifié. @@ -2628,17 +2119,14 @@ Adresse : %4 SplashScreen - Dogecoin Core Dogecoin Core - The Dogecoin Core developers Les développeurs Dogecoin Core - [testnet] [testnet] @@ -2646,7 +2134,6 @@ Adresse : %4 TrafficGraphWidget - KB/s Ko/s @@ -2654,179 +2141,138 @@ Adresse : %4 TransactionDesc - Open until %1 Ouvert jusqu'à %1 - + conflicted + en conflit + + %1/offline %1/hors ligne - %1/unconfirmed %1/non confirmée - %1 confirmations %1 confirmations - Status État - , broadcast through %n node(s) , diffusée à travers %n nœud, diffusée à travers %n nœuds - Date Date - Source Source - Generated Généré - - From De - - - To À - - own address votre propre adresse - label étiquette - - - - - Credit Crédit - matures in %n more block(s) arrive à maturité dans %n bloc de plusarrive à maturité dans %n blocs de plus - not accepted refusé - - - - Debit Débit - Transaction fee Frais de transaction - Net amount Montant net - - Message Message - Comment Commentaire - Transaction ID ID de la transaction - Merchant Marchand - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Les pièces générées doivent mûrir pendant %1 blocs avant de pouvoir être dépensées. Lorsque vous avez généré ce bloc, il a été diffusé sur le réseau pour être ajouté à la chaîne de blocs. S’il échoue a intégrer la chaîne, son état sera modifié en « non accepté » et il ne sera pas possible de le dépenser. Ceci peut arriver occasionnellement si un autre nœud génère un bloc à quelques secondes du votre. - Debug information Informations de débogage - Transaction Transaction - Inputs Entrants - Amount Montant - true vrai - false faux - , has not been successfully broadcast yet , n’a pas encore été diffusée avec succès - Open for %n more block(s) Ouvert pour %n bloc de plusOuvert pour %n blocs de plus - unknown inconnu @@ -2834,12 +2280,10 @@ Adresse : %4 TransactionDescDialog - Transaction details Détails de la transaction - This pane shows a detailed description of the transaction Ce panneau affiche une description détaillée de la transaction @@ -2847,118 +2291,102 @@ Adresse : %4 TransactionTableModel - Date Date - Type Type - Address Adresse - Amount Montant - Immature (%1 confirmations, will be available after %2) Immature (%1 confirmations, sera disponible après %2) - Open for %n more block(s) Ouvert pour %n bloc de plusOuvert pour %n blocs de plus - Open until %1 Ouvert jusqu'à %1 - - Offline (%1 confirmations) - Hors ligne (%1 confirmations) - - - - Unconfirmed (%1 of %2 confirmations) - Non confirmée (%1 confirmations sur %2) - - - - Confirmed (%1 confirmations) Confirmée (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! Ce bloc n’a été reçu par aucun autre nœud et ne sera probablement pas accepté ! - Generated but not accepted Généré mais pas accepté - + Offline + Hors ligne + + + Unconfirmed + Non confirmé + + + Confirming (%1 of %2 recommended confirmations) + Confirmation (%1 sur %2 confirmations recommandées) + + + Conflicted + En conflit + + Received with Reçue avec - Received from Reçue de - Sent to Envoyée à - Payment to yourself Paiement à vous-même - Mined Extrait - (n/a) (n.d) - Transaction status. Hover over this field to show number of confirmations. État de la transaction. Laissez le pointeur de la souris sur ce champ pour voir le nombre de confirmations. - Date and time that the transaction was received. Date et heure de réception de la transaction. - Type of transaction. Type de transaction. - Destination address of transaction. L’adresse de destination de la transaction. - Amount removed from or added to balance. Montant ajouté ou enlevé au solde. @@ -2966,178 +2394,142 @@ Adresse : %4 TransactionView - - All Toutes - Today Aujourd’hui - This week Cette semaine - This month Ce mois-ci - Last month Le mois dernier - This year Cette année - Range... Intervalle… - Received with Reçue avec - Sent to Envoyée à - To yourself À vous-même - Mined Extrait - Other Autres - Enter address or label to search Saisir une adresse ou une étiquette à rechercher - Min amount Montant min. - Copy address Copier l’adresse - Copy label Copier l’étiquette - Copy amount Copier le montant - Copy transaction ID Copier l'ID de la transaction - Edit label Modifier l’étiquette - Show transaction details Afficher les détails de la transaction - Export Transaction History Exporter l'historique des transactions - Exporting Failed L'exportation a échoué - There was an error trying to save the transaction history to %1. Une erreur est survenue lors de l'enregistrement de l'historique des transactions vers %1. - Exporting Successful Exportation réussie - The transaction history was successfully saved to %1. L'historique des transactions a été sauvegardée avec succès vers %1. - Comma separated file (*.csv) Valeurs séparées par des virgules (*.csv) - Confirmed Confirmée - Date Date - Type Type - Label Étiquette - Address Adresse - Amount Montant - ID ID - Range: Intervalle : - to à @@ -3145,7 +2537,6 @@ Adresse : %4 WalletFrame - No wallet has been loaded. Aucun portefeuille de chargé. @@ -3153,7 +2544,6 @@ Adresse : %4 WalletModel - Send Coins Envoyer des pièces @@ -3161,154 +2551,125 @@ Adresse : %4 WalletView - &Export &Exporter - Export the data in the current tab to a file Exporter les données de l'onglet courant vers un fichier - Backup Wallet Sauvegarder le portefeuille - Wallet Data (*.dat) Données de portefeuille (*.dat) - Backup Failed Échec de la sauvegarde - There was an error trying to save the wallet data to %1. Une erreur est survenue lors de l'enregistrement des données de portefeuille vers %1. - The wallet data was successfully saved to %1. Les données de portefeuille ont été enregistrées avec succès vers %1 - Backup Successful Sauvegarde réussie - dogecoin-core + bitcoin-core - Usage: Utilisation : - List commands Lister les commandes - Get help for a command Obtenir de l’aide pour une commande - Options: Options : - - Specify configuration file (default: dogecoin.conf) - Spécifier le fichier de configuration (par défaut : dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Spécifier le fichier de configuration (par défaut : bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Spécifier le fichier PID (par défaut : dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Spécifier le fichier PID (par défaut : bitcoind.pid) - Specify data directory Spécifier le répertoire de données - - Set database cache size in megabytes (default: 25) - Définir la taille du tampon en mégaoctets (par défaut : 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Écouter les connexions sur le <port> (par défaut : 8333 ou testnet : 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Écouter les connexions sur le <port> (par défaut : 22556 ou testnet : 44556) - - - Maintain at most <n> connections to peers (default: 125) Garder au plus <n> connexions avec les pairs (par défaut : 125) - 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 - Specify your own public address Spécifier votre propre adresse publique - Threshold for disconnecting misbehaving peers (default: 100) Seuil de déconnexion des pairs de mauvaise qualité (par défaut : 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Délai en secondes de refus de reconnexion aux pairs de mauvaise qualité (par défaut : 86400) - 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 - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Écouter les connexions JSON-RPC sur le <port> (par défaut : 22555 ou tesnet : 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Écouter les connexions JSON-RPC sur le <port> (par défaut : 8332 ou tesnet : 18332) - Accept command line and JSON-RPC commands Accepter les commandes de JSON-RPC et de la ligne de commande - + Dogecoin Core RPC client version + Version du client RPC de Dogecoin Core + + Run in the background as a daemon and accept commands Fonctionner en arrière-plan en tant que démon et accepter les commandes - Use the test network Utiliser le réseau de test - Accept connections from outside (default: 1 if no -proxy or -connect) Accepter les connexions entrantes (par défaut : 1 si aucun -proxy ou -connect ) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3319,7 +2680,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, vous devez définir un mot de passe rpc dans le fichier de configuration : %s Il vous est conseillé d'utiliser le mot de passe aléatoire suivant : -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (vous n'avez pas besoin de retenir ce mot de passe) Le nom d'utilisateur et le mot de passe NE DOIVENT PAS être identiques. @@ -3329,707 +2690,686 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Dogecoin" 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 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. Dogecoin Core is probably already running. - Impossible d’obtenir un verrou sur le répertoire de données %s. Dogecoin 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) - 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 %d) + Erreur : l'écoute des connexions entrantes a échoué (l'écoute a retourné l'erreur %d) + + 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 ! - 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) - + 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 mémoire vers le journal sur disque tous les <n> mégaoctets (par défaut : 100) + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + À quel point la vérification des blocs -checkblocks est approfondie (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. + + + 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) + + 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 - - 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 Dogecoin Core 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, Dogecoin Core 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. - - - - <category> can be: - <category> peut être : - - - - Attempt to recover private keys from a corrupt wallet.dat - Tenter de récupérer les clefs privées d'un wallet.dat corrompu - - - - Dogecoin Core Daemon - Démon Dogecoin Core - - - - Dogecoin Core RPC client version - Version du client RPC Dogecoin Core - - - - Block creation options: - Options de création de bloc : - - - - 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: 22555 or testnet: 44555) - Se connecter à JSON-RPC sur le <port> (par défaut : 22555 ou testnet : 44555) - - - - Corrupted block database detected - Base corrompue de données des blocs détectée - - - - 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 ? - - - - 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 opening block database - Erreur lors de l'ouverture de la base de données des blocs - - - - 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: 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 - - - - Find peers using DNS lookup (default: 1 unless -connect) - Trouver des pairs en utilisant la recherche DNS (par défaut : 1 sauf si -connect est utilisé) - - - - Generate coins (default: 0) - Générer des pièces (défaut : 0) - - - - How many blocks to check at startup (default: 288, 0 = all) - Nombre de blocs à vérifier au démarrage (par défaut : 288, 0 = tout) - - - - How thorough the block verification is (0-4, default: 3) - Niveau d'approfondissement de la vérification des blocs (0-4, par défaut : 3) - - - - If <category> is not supplied, output all debugging information. - Si <category> n'est pas indiqué, extraire toutes les données de débogage. - - - - 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 ? - - - - Invalid -onion address: '%s' - Adresse -onion invalide : « %s » - - - - Not enough file descriptors available. - Pas assez de descripteurs de fichiers de disponibles. - - - - Prepend debug output with timestamp (default: 1) - Ajouter l'horodatage au début des résultats de débogage (par défaut : 1) - - - - RPC client options: - Options du client RPC : - - - - Rebuild block chain index from current blk000??.dat files - Reconstruire l'index de la chaîne de blocs à partir des fichiers blk000??.dat courants - - - - 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 Dogecoin server - Envoyer une commande au serveur Dogecoin - - - - Set maximum block size in bytes (default: %d) - Définir la taille minimale de bloc en octets (par défaut : %d) - - - - 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) - - - - Specify wallet file (within data directory) - Spécifiez le fichier de portefeuille (dans le répertoire de données) - - - - Start Dogecoin server - Démarrer le serveur Dogecoin - - - - 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. - - - - Usage (deprecated, use dogecoin-cli): - Utilisation (obsolète, utiliser dogecoin-cli) : - - - - 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 options: - Options du portefeuille : - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - Attention : l'argument obsolète -debugnet a été ignoré, utiliser -debug=net - - - - 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 - - - - Imports blocks from external blk000??.dat file - Importe des blocs depuis un fichier blk000??.dat externe - - - - 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) - - - - Output debugging information (default: 0, supplying <category> is optional) - Informations du résultat de débogage (par défaut : 0, fournir <category> est optionnel) - - - - 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 (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Définir le nombre d'exétrons de vérification des scripts (maximum 16, 0 = auto, < 0 = laisser ce nombre de cœurs libres, par défaut : 0) - - - - Information - Informations - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - Montant invalide pour -minrelayfee=<montant> : « %s » - - - - Invalid amount for -mintxfee=<amount>: '%s' - Montant invalide pour -mintxfee=<montant> : « %s » - - - - Maintain a full transaction index (default: 0) - Maintenir un index complet des transactions (par défaut : 0) - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Tampon maximal de réception par « -connection » <n>*1 000 octets (par défaut : 5 000) - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - Tampon maximal d'envoi par « -connection », <n>*1 000 octets (par défaut : 1 000) - - - - Only accept block chain matching built-in checkpoints (default: 1) - N'accepter que la chaîne de blocs correspondant aux points de vérification internes (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) - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Options SSL : (voir le Wiki de Bitcoin pour les instructions de configuration du SSL) - - - - 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 - - - - Set minimum block size in bytes (default: 0) - Définir la taille minimale de bloc en octets (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 transaction failed - La signature de la transaction a échoué - - - - Specify connection timeout in milliseconds (default: 5000) - Spécifier le délai d'expiration de la connexion en millisecondes (par défaut : 5 000) - - - - System error: - Erreur système : - - - - Transaction amount too small - Montant de la transaction trop bas - - - - Transaction amounts must be positive - Les montants de transaction doivent être positifs - - - - Transaction too large - Transaction trop volumineuse - - - - Use UPnP to map the listening port (default: 0) - Utiliser l'UPnP pour rediriger le port d'écoute (par défaut : 0) - - - - Use UPnP to map the listening port (default: 1 when listening) - Utiliser l'UPnP pour rediriger le port d'écoute (par défaut : 1 lors de l'écoute) - - - - Username for JSON-RPC connections - Nom d'utilisateur pour les connexions JSON-RPC - - - - Warning - Avertissement - - - - Warning: This version is obsolete, upgrade required! - Avertissement : cette version est obsolète, une mise à niveau est nécessaire ! - - - - version - version - - - - wallet.dat corrupt, salvage failed - wallet.dat corrompu, la récupération a échoué - - - - Password for JSON-RPC connections - Mot de passe pour les connexions JSON-RPC - - - - Allow JSON-RPC connections from specified IP address - Autoriser les connexions JSON-RPC depuis l'adresse IP spécifiée - - - - 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) - - - - 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) - - - - Upgrade wallet to latest format - Mettre à niveau le portefeuille vers le format le plus récent - - - - Set key pool size to <n> (default: 100) - Régler la taille de la réserve de clefs sur <n> (par défaut : 100) - - - - Rescan the block chain for missing wallet transactions - Réanalyser la chaîne de blocs pour les transactions de portefeuille manquantes - - - - Use OpenSSL (https) for JSON-RPC connections - Utiliser OpenSSL (https) pour les connexions JSON-RPC - - - - Server certificate file (default: server.cert) - Fichier de certificat serveur (par défaut : server.cert) - - - - Server private key (default: server.pem) - Clef privée du serveur (par défaut : server.pem) - - - - This help message - Ce message d'aide - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - Impossible de se lier à %s sur cet ordinateur (bind a retourné l'erreur %d, %s) - - - - Allow DNS lookups for -addnode, -seednode and -connect - Autoriser les recherches DNS pour -addnode, -seednode et -connect - - - - Loading addresses... - Chargement des adresses… - - - - Error loading wallet.dat: Wallet corrupted - Erreur lors du chargement de wallet.dat : portefeuille corrompu - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - Erreur lors du chargement de wallet.dat : le portefeuille exige une version plus récente de Dogecoin Core - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - Le portefeuille devait être réécrit : redémarrer Dogecoin Core pour terminer l'opération. - - - - Error loading wallet.dat - Erreur lors du chargement de wallet.dat - - - - Invalid -proxy address: '%s' - Adresse -proxy invalide : « %s » - - - - Unknown network specified in -onlynet: '%s' - Réseau inconnu spécifié sur -onlynet : « %s » - - - - Unknown -socks proxy version requested: %i - Version inconnue de serveur mandataire -socks demandée : %i - - - - 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 » - - - - Invalid amount for -paytxfee=<amount>: '%s' - Montant invalide pour -paytxfee=<montant> : « %s » - - - - Invalid amount - Montant invalide - - - - Insufficient funds - Fonds insuffisants - - - - Loading block index... - Chargement de l’index des blocs… - - - - 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 - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. Impossible de se lier à %s sur cet ordinateur. Dogecoin Core fonctionne probablement déjà. - + 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 Dogecoin 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, Dogecoin 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. + + + (default: 1) + (par défaut : 1) + + + (default: wallet.dat) + (par défaut : wallet.dat) + + + <category> can be: + <category> peut être : + + + Attempt to recover private keys from a corrupt wallet.dat + Tenter de récupérer les clefs privées d'un wallet.dat corrompu + + + Dogecoin Core Daemon + Démon Dogecoin Core + + + Block creation options: + Options de création de bloc : + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Effacer la liste des transactions du portefeuille (outil de diagnostic, implique un nouveau balayage -rescan) + + + 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: 8332 or testnet: 18332) + Se connecter à JSON-RPC sur le <port> (par défaut : 8332 ou testnet : 18332) + + + Connection options: + Options de connexion : + + + Corrupted block database detected + Base corrompue de données des blocs détectée + + + 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 ? + + + 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 opening block database + Erreur lors de l'ouverture de la base de données des blocs + + + 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: 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 : + + + Find peers using DNS lookup (default: 1 unless -connect) + Trouver des pairs en utilisant la recherche DNS (par défaut : 1 sauf si -connect est utilisé) + + + 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) + + + How many blocks to check at startup (default: 288, 0 = all) + Nombre de blocs à vérifier au démarrage (par défaut : 288, 0 = tout) + + + If <category> is not supplied, output all debugging information. + Si <category> n'est pas indiqué, extraire toutes les données de débogage. + + + Importing... + Importation... + + + 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 ? + + + Invalid -onion address: '%s' + Adresse -onion invalide : « %s » + + + Not enough file descriptors available. + Pas assez de descripteurs de fichiers de disponibles. + + + Prepend debug output with timestamp (default: 1) + Ajouter l'horodatage au début des résultats de débogage (par défaut : 1) + + + RPC client options: + Options du client RPC : + + + Rebuild block chain index from current blk000??.dat files + Reconstruire l'index de la chaîne de blocs à partir des fichiers blk000??.dat courants + + + Select SOCKS version for -proxy (4 or 5, default: 5) + Choisir la version SOCKS pour -proxy (4 ou 5, par défaut : 5) + + + 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 maximum block size in bytes (default: %d) + Définir la taille minimale de bloc en octets (par défaut : %d) + + + 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) + + + Specify wallet file (within data directory) + Spécifiez le fichier de portefeuille (dans le répertoire de données) + + + 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) + + + 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. + + + Usage (deprecated, use bitcoin-cli): + Utilisation (obsolète, utiliser bitcoin-cli) : + + + 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 options: + Options du portefeuille : + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + Attention : l'argument obsolète -debugnet a été ignoré, utiliser -debug=net + + + 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 + + + Imports blocks from external blk000??.dat file + Importe des blocs depuis un fichier blk000??.dat externe + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + Impossible d’obtenir un verrou sur le répertoire de données %s. Dogecoin Core fonctionne probablement déjà. + + + 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) + + + Output debugging information (default: 0, supplying <category> is optional) + Informations du résultat de débogage (par défaut : 0, fournir <category> est optionnel) + + + 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) + + + Information + Informations + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + Montant invalide pour -minrelayfee=<montant> : « %s » + + + Invalid amount for -mintxfee=<amount>: '%s' + Montant invalide pour -mintxfee=<montant> : « %s » + + + Limit size of signature cache to <n> entries (default: 50000) + Limiter la taille du cache des signatures à <n> entrées (par défaut : 50000) + + + Log transaction priority and fee per kB when mining blocks (default: 0) + Journaliser la priorité des transactions et les frais par ko lors du minage (par défaut : 0) + + + Maintain a full transaction index (default: 0) + Maintenir un index complet des transactions (par défaut : 0) + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Tampon maximal de réception par « -connection » <n>*1 000 octets (par défaut : 5 000) + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Tampon maximal d'envoi par « -connection », <n>*1 000 octets (par défaut : 1 000) + + + Only accept block chain matching built-in checkpoints (default: 1) + N'accepter que la chaîne de blocs correspondant aux points de vérification internes (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) + + + 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 Dogecoin pour les instructions de configuration de SSL) + + + 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> + + + Run a thread to flush wallet periodically (default: 1) + Exécuter un exétron pour purger le portefeuille périodiquement (par défaut : 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Options SSL : (voir le Wiki de Dogecoin pour les instructions de configuration du SSL) + + + Send command to Dogecoin Core + Envoyer une commande à Dogecoin Core + + + 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 + + + Set minimum block size in bytes (default: 0) + Définir la taille minimale de bloc en octets (par défaut : 0) + + + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + Définit le drapeau DB_PRIVATE dans l'environnement de la base de données 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 transaction failed + La signature de la transaction a échoué + + + Specify connection timeout in milliseconds (default: 5000) + Spécifier le délai d'expiration de la connexion en millisecondes (par défaut : 5 000) + + + Start Dogecoin Core Daemon + Démarrer le démon Dogecoin Core + + + System error: + Erreur système : + + + Transaction amount too small + Montant de la transaction trop bas + + + Transaction amounts must be positive + Les montants de transaction doivent être positifs + + + Transaction too large + Transaction trop volumineuse + + + Use UPnP to map the listening port (default: 0) + Utiliser l'UPnP pour rediriger le port d'écoute (par défaut : 0) + + + Use UPnP to map the listening port (default: 1 when listening) + Utiliser l'UPnP pour rediriger le port d'écoute (par défaut : 1 lors de l'écoute) + + + Username for JSON-RPC connections + Nom d'utilisateur pour les connexions JSON-RPC + + + Warning + Avertissement + + + Warning: This version is obsolete, upgrade required! + Avertissement : cette version est obsolète, une mise à niveau est nécessaire ! + + + 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é + + + Password for JSON-RPC connections + Mot de passe pour les connexions JSON-RPC + + + Allow JSON-RPC connections from specified IP address + Autoriser les connexions JSON-RPC depuis l'adresse IP spécifiée + + + 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) + + + 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) + + + Upgrade wallet to latest format + Mettre à niveau le portefeuille vers le format le plus récent + + + Set key pool size to <n> (default: 100) + Régler la taille de la réserve de clefs sur <n> (par défaut : 100) + + + Rescan the block chain for missing wallet transactions + Réanalyser la chaîne de blocs pour les transactions de portefeuille manquantes + + + Use OpenSSL (https) for JSON-RPC connections + Utiliser OpenSSL (https) pour les connexions JSON-RPC + + + Server certificate file (default: server.cert) + Fichier de certificat serveur (par défaut : server.cert) + + + Server private key (default: server.pem) + Clef privée du serveur (par défaut : server.pem) + + + This help message + Ce message d'aide + + + Unable to bind to %s on this computer (bind returned error %d, %s) + Impossible de se lier à %s sur cet ordinateur (bind a retourné l'erreur %d, %s) + + + Allow DNS lookups for -addnode, -seednode and -connect + Autoriser les recherches DNS pour -addnode, -seednode et -connect + + + Loading addresses... + Chargement des adresses… + + + Error loading wallet.dat: Wallet corrupted + Erreur lors du chargement de wallet.dat : portefeuille corrompu + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + Erreur lors du chargement de wallet.dat : le portefeuille exige une version plus récente de Dogecoin + + + Wallet needed to be rewritten: restart Dogecoin to complete + Le portefeuille devait être réécrit : redémarrer Dogecoin pour terminer l'opération. + + + Error loading wallet.dat + Erreur lors du chargement de wallet.dat + + + Invalid -proxy address: '%s' + Adresse -proxy invalide : « %s » + + + Unknown network specified in -onlynet: '%s' + Réseau inconnu spécifié sur -onlynet : « %s » + + + Unknown -socks proxy version requested: %i + Version inconnue de serveur mandataire -socks demandée : %i + + + 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 » + + + Invalid amount for -paytxfee=<amount>: '%s' + Montant invalide pour -paytxfee=<montant> : « %s » + + + Invalid amount + Montant invalide + + + Insufficient funds + Fonds insuffisants + + + Loading block index... + Chargement de l’index des blocs… + + + 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 + + Loading wallet... Chargement du portefeuille… - Cannot downgrade wallet Impossible de revenir à une version inférieure du portefeuille - Cannot write default address Impossible d'écrire l'adresse par défaut - Rescanning... Nouvelle analyse… - Done loading Chargement terminé - To use the %s option Pour utiliser l'option %s - Error Erreur - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4038,4 +3378,4 @@ 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. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_fr_CA.ts b/src/qt/locale/bitcoin_fr_CA.ts index a29365741..b7838a6e1 100644 --- a/src/qt/locale/bitcoin_fr_CA.ts +++ b/src/qt/locale/bitcoin_fr_CA.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -27,135 +24,113 @@ Distribué sous licence MIT/X11, voir le fichier COPYING ou http://www.opensourc Ce produit comprend des logiciels développés par le projet OpenSSL pour être utilisés dans la boîte à outils OpenSSL (http://www.openssl.org/), un logiciel cryptographique écrit par Eric Young (eay@cryptsoft.com) et un logiciel UPnP écrit par Thomas Bernard. - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Double-cliquez afin de modifier l'adress ou l'étiquette - Create a new address Créer une nouvelle adresse - &New - Copy the currently selected address to the system clipboard Copier l'adresse surligné a votre presse-papier - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete &Supprimer - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) - + Fichier séparé par une virgule (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -163,158 +138,121 @@ Ce produit comprend des logiciels développés par le projet OpenSSL pour être AddressTableModel - Label - + Record - Address - + Addresse - (no label) - + (pas de record) AskPassphraseDialog - Passphrase Dialog - Enter passphrase - + Entrer Mot de Passe - New passphrase - + Nouveau Mot de passe - Repeat new passphrase - + Répéter Mot de Passe - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + Entrer le nouveau mot de passe pour le porte-feuille. Veuillez utiliser un mot de passe de 10 caractères au hasard ou plus, ou, 8 mots ou plus. - Encrypt wallet - + Encrypter Porte-Feuille - This operation needs your wallet passphrase to unlock the wallet. - + Cette opération nécessite le mot de passe de votre porte-feuille pour débarrer le porte-feuille. - Unlock wallet - + Débarrer Porte-Feuille - This operation needs your wallet passphrase to decrypt the wallet. - + Cette opération nécessite le mot de passe de votre porte-feuille pour le décrypter. - Decrypt wallet - Change passphrase - Enter the old and new passphrase to the wallet. - Confirm wallet encryption - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - The supplied passphrases do not match. - Wallet unlock failed - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed - Wallet passphrase was successfully changed. @@ -322,352 +260,286 @@ Ce produit comprend des logiciels développés par le projet OpenSSL pour être BitcoinGUI - Sign &message... - Synchronizing with network... - &Overview - Node - Show general overview of wallet - &Transactions - Browse transaction history - E&xit - Quit application - - Show information about Dogecoin Core + Show information about Dogecoin - - About &Qt - Show information about Qt - &Options... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File - &Settings - &Help - Tabs toolbar - - [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -676,25 +548,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -702,291 +570,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address - + Addresse - Date - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) - + (pas de record) - change from %1 (%2) - (change) @@ -994,67 +801,54 @@ Address: %4 EditAddressDialog - Edit Address - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1062,27 +856,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1090,52 +879,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1143,57 +926,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1201,27 +973,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1229,243 +996,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1473,69 +1203,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync @@ -1543,93 +1258,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1637,41 +1329,45 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1679,192 +1375,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1872,155 +1522,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + + + + Copy message + + + + Copy amount + + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address - + Addresse - Amount - Label - + Record - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2028,285 +1660,225 @@ Address: %4 RecentRequestsTableModel - Date - Label - + Record - Message - Amount - (no label) + (pas de record) + + + (no message) - - (no message) + (no amount) SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: - Confirm the send action - S&end - Confirm send coins - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) - + (pas de record) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2314,116 +1886,85 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard - Alt+P - - - Remove this entry - Message: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2431,192 +1972,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard - Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2624,17 +2115,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2642,7 +2130,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2650,179 +2137,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2830,12 +2276,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2843,118 +2287,102 @@ Address: %4 TransactionTableModel - Date - Type - Address - + Addresse - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2962,178 +2390,142 @@ Address: %4 TransactionView - - All - Today - This week - This month - Last month - This year - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - + Fichier séparé par une virgule (*.csv) - Confirmed - Date - Type - Label - + Record - Address - + Addresse - Amount - ID - Range: - to @@ -3141,7 +2533,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3149,7 +2540,6 @@ Address: %4 WalletModel - Send Coins @@ -3157,154 +2547,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3315,711 +2676,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_gl.ts b/src/qt/locale/bitcoin_gl.ts index ea88b12c4..36558ce6f 100644 --- a/src/qt/locale/bitcoin_gl.ts +++ b/src/qt/locale/bitcoin_gl.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core Sobre Dogecoin core - <b>Dogecoin Core</b> version <b>Dogecoin core</b> versión - This is experimental software. @@ -27,135 +24,113 @@ Distribuído baixo a licencia de software MIT/X11, véxase o arquivo que acompa Este produto inclúe software desenvolvido polo OpenSSL Project para o uso no OpenSSL Toolkit (http://www.openssl.org/) e software criptográfico escrito por Eric Young (eay@cryptsoft.com) e software UPnP escrito por Thomas Bernard. - Copyright Copyright - The Dogecoin Core developers Os desarrolladores de Dogecoin Core + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Doble click para editar a dirección ou a etiqueta - Create a new address Crear unha nova dirección - &New &Novo - Copy the currently selected address to the system clipboard Copiar a dirección seleccionada ao cartafol - &Copy &Copiar - C&lose &Pechar - &Copy Address &Copiar Dirección - Delete the currently selected address from the list Borrar a dirección actualmente seleccionada da listaxe - Export the data in the current tab to a file Exportar os datos da pestaña actual a un arquivo. - &Export &Exportar - &Delete &Borrar - Choose the address to send coins to Escolle a dirección á que enviar moedas - Choose the address to receive coins with Escolle a dirección da que recibir moedas - C&hoose &Escoller - Very sending addresses Direccións para enviar - Much receiving addresses Direccións para recibir - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Estas son as túas direccións Dogecoin para enviar pagos. Revisa sempre a cantidade e a dirección receptora antes de enviar moedas. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Estas son as túas direccións Dogecoin para recibir pagos. Recoméndase empregar unha nova dirección de recepción por cada transacción. - Copy &Label Copiar &Etiqueta - &Edit &Modificar - Export Address List Exportar Lista de Direccións - Comma separated file (*.csv) Arquivo separado por comas (*.csv) - Exporting Failed Exportación falida - There was an error trying to save the address list to %1. @@ -163,17 +138,14 @@ Este produto inclúe software desenvolvido polo OpenSSL Project para o uso no Op AddressTableModel - Label Etiqueta - Address Dirección - (no label) (sen etiqueta) @@ -181,140 +153,106 @@ Este produto inclúe software desenvolvido polo OpenSSL Project para o uso no Op AskPassphraseDialog - Passphrase Dialog Diálogo de Contrasinal - Enter passphrase Introduce contrasinal - New passphrase Novo contrasinal - Repeat new passphrase Repite novo contrasinal - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Introduce o novo contrasinal ao moedeiro.<br/>Por favor empregue un contrasinal de <b>10 ou máis caracteres aleatorios</b>, ou <b>oito ou máis palabras</b>. - Encrypt wallet Encriptar moedeiro - This operation needs your wallet passphrase to unlock the wallet. Esta operación precisa o contrasinal do teu moedeiro para desbloquear o moedeiro. - Unlock wallet Desbloquear moedeiro - This operation needs your wallet passphrase to decrypt the wallet. Esta operación precisa o contrasinal do teu moedeiro para desencriptar o moedeiro. - Decrypt wallet Desencriptar moedeiro - Change passphrase Cambiar contrasinal - Enter the old and new passphrase to the wallet. Introduce o vello e novo contrasinais no moedeiro. - Confirm wallet encryption Confirmar encriptación de moedeiro - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Precaución: Se encriptas o teu moedeiro e perdes o teu contrasinal, ti <b>PERDERÁS TÓDOLOS TEUS DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Precaución: Se encriptas o teu moedeiro e perdes o teu contrasinal, ti <b>PERDERÁS TÓDOLOS TEUS DogecoinS</b>! - Are you sure you wish to encrypt your wallet? Estás seguro de que desexas encriptar o teu moedeiro? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANTE: Calquera copia de seguridade previa que fixeses do teu arquivo de moedeiro debería ser substituída polo recén xerado arquivo encriptado de moedeiro. Por razóns de seguridade, as copias de seguridade previas de un arquivo de moedeiro desencriptado tornaránse inútiles no momento no que comeces a emprega-lo novo, encriptado, moedeiro. - - Warning: The Caps Lock key is on! Precaución: A tecla de Bloqueo de Maiúsculas está activada! - - Wallet encrypted Moedeiro encriptado - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin se pechará agora para rematar o proceso de encriptación. Lembra que encriptar o teu moedeiro non protexe totalmente os teus dogecoins de ser robados por malware que infecte o teu ordenador. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin se pechará agora para rematar o proceso de encriptación. Lembra que encriptar o teu moedeiro non protexe totalmente os teus bitcoins de ser robados por malware que infecte o teu ordenador. - - - - Wallet encryption failed Encriptación de moedeiro fallida - Wallet encryption failed due to an internal error. Your wallet was not encrypted. A encriptación do moedeiro fallou por mor dun erro interno. O teu moedeiro non foi encriptado. - - The supplied passphrases do not match. Os contrasinais suministrados non coinciden. - Wallet unlock failed Desbloqueo de moedeiro fallido - - - The passphrase entered for the wallet decryption was incorrect. O contrasinal introducido para a desencriptación do moedeiro foi incorrecto. - Wallet decryption failed Desencriptación de moedeiro fallida - Wallet passphrase was successfully changed. Cambiouse con éxito o contrasinal do moedeiro. @@ -322,352 +260,286 @@ Este produto inclúe software desenvolvido polo OpenSSL Project para o uso no Op BitcoinGUI - Sign &message... &Asinar mensaxe... - Synchronizing with network... Sincronizando coa rede... - &Overview &Vista xeral - Node - Show general overview of wallet Amosar vista xeral do moedeiro - &Transactions &Transacciones - Browse transaction history Navegar historial de transaccións - E&xit &Saír - Quit application Saír da aplicación - - Show information about Dogecoin Core + Show information about Dogecoin Amosar información sobre Dogecoin - - About &Qt Acerca de &Qt - Show information about Qt Amosar información acerca de Qt - &Options... &Opcións... - &Encrypt Wallet... &Encriptar Moedeiro... - &Backup Wallet... Copia de &Seguridade do Moedeiro... - &Change Passphrase... &Cambiar contrasinal... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... Importando bloques de disco... - Reindexing blocks on disk... Reindexando bloques no disco... - Send coins to a Dogecoin address Enviar moedas a unha dirección Dogecoin - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Modificar opcións de configuración para Dogecoin - Backup wallet to another location Facer copia de seguridade do moedeiro noutra localización - Change the passphrase used for wallet encryption Cambiar o contrasinal empregado para a encriptación do moedeiro - &Debug window Ventana de &Depuración - Open debugging and diagnostic console Abrir consola de depuración e diagnóstico - &Verify message... &Verificar mensaxe... - Dogecoin Dogecoin - Wallet Moedeiro - &Send &Enviar - &Receive &Recibir - - &Show / Hide &Amosar/Agachar - Show or hide the main Window Amosar ou agachar a ventana principal - Encrypt the private keys that belong to your wallet Encriptar as claves privadas que pertencen ao teu moedeiro - Sign messages with your Dogecoin addresses to prove you own them Asina mensaxes coas túas direccións Dogecoin para probar que te pertencen - Verify messages to ensure they were signed with specified Dogecoin addresses Verificar mensaxes para asegurar que foron asinados con direccións Dogecoin dadas. - &File &Arquivo - &Settings Axus&tes - &Help A&xuda - Tabs toolbar Barra de ferramentas - - [testnet] [testnet] - Dogecoin Core Core de Dogecoin - - Request payments (generates QR codes and dogecoin: URIs) - Solicitar pagos (xenera códigos QR e dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) + Solicitar pagos (xenera códigos QR e bitcoin: URIs) - - &About Dogecoin Core &Sobre Dogecoin Core - Show the list of used sending addresses and labels Amosar a listaxe de direccións e etiquetas para enviar empregadas - Show the list of used receiving addresses and labels Amosar a listaxe de etiquetas e direccións para recibir empregadas - - Open a dogecoin: URI or payment request - Abrir un dogecoin: URI ou solicitude de pago + Open a bitcoin: URI or payment request + Abrir un bitcoin: URI ou solicitude de pago - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Cliente Dogecoin - %n active connection(s) to Dogecoin network %n conexión activa coa rede Dogecoin%n conexións activas coa rede Dogecoin - No block source available... Non hai orixe de bloques dispoñible... - Processed %1 of %2 (estimated) blocks of transaction history. Procesados %1 de %2 bloques (estimados) del historial de transacciones. - Processed %1 blocks of transaction history. Procesados %1 bloques do historial de transacccións. - %n hour(s) %n hora%n horas - %n day(s) %n día%n días - %n week(s) %n semana%n semanas - + %1 and %2 + + + + %n year(s) + + + %1 behind %1 detrás - Last received block was generated %1 ago. O último bloque recibido foi xerado fai %1. - Transactions after this will not yet be visible. As transaccións despois desta non serán todavía visibles. - Error Erro - Warning Precaución - Information Información - Up to date Actualizado - Catching up... Poñendo ao día... - Sent transaction Transacción enviada - Incoming transaction Transacción entrante - Date: %1 Amount: %2 Type: %3 @@ -680,25 +552,21 @@ Dirección: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> O moedeiro está <b>encriptado</b> e actualmente <b>desbloqueado</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> O moedeiro está <b>encriptado</b> e actualmente <b>bloqueado</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Ocorriu un erro fatal. Dogecoin non pode continuar en condicións de seguridade e pecharáse. ClientModel - Network Alert Alerta de Rede @@ -706,291 +574,230 @@ Dirección: %4 CoinControlDialog - Coin Control Address Selection - Quantity: Cantidade: - Bytes: Bytes: - Amount: Importe: - Priority: Prioridade: - Fee: Pago: - Low Output: - After Fee: - Change: Cambiar: - (un)select all (des)selecciona todo - Tree mode Modo árbore - List mode Modo lista - Amount Cantidade - Address Dirección - Date Data - Confirmations Confirmacións - Confirmed Confirmado - Priority Prioridade - Copy address Copiar dirección - Copy label Copiar etiqueta - - Copy amount Copiar cantidade - Copy transaction ID Copiar ID de transacción - Lock unspent Bloquear o aforrado - Unlock unspent Desbloquear o aforrado - Copy quantity Copiar cantidade - Copy fee Copiar pago - Copy after fee Copiar despóis do pago - Copy bytes Copiar bytes - Copy priority Copiar prioridade - Copy low output - Copy change Copiar cambio - highest O máis alto - higher Máis alto que - high alto - medium-high medio-alto - medium - low-medium medio-baixo - low baixo - lower máis baixo que - lowest o máis baixo - (%1 locked) (%1 bloqueado) - none - Dust Limpar - yes Si - no non - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. As transacción con maior prioridade teñen máis posibilidades de ser incluidas nun bloque - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (sen etiqueta) - change from %1 (%2) - (change) (cambio) @@ -998,67 +805,54 @@ Dirección: %4 EditAddressDialog - Edit Address Modificar Dirección - &Label &Etiqueta - The label associated with this address list entry A etiqueta asociada con esta entrada da listaxe de direccións - The address associated with this address list entry. This can only be modified for sending addresses. A dirección asociada con esta entrada na listaxe de dirección. Esta so pode ser modificada por direccións para enviar. - &Address &Dirección - New receiving address Nova dirección para recibir - New sending address Nova dirección para enviar - Edit receiving address Modificar dirección para recibir - Edit sending address Modificar dirección para enviar - The entered address "%1" is already in the address book. A dirección introducida "%1" xa está no libro de direccións. - The entered address "%1" is not a valid Dogecoin address. A dirección introducida '%1' non é unha dirección Dogecoin válida. - Could not unlock wallet. Non se puido desbloquear o moedeiro. - New key generation failed. A xeración de nova clave fallou. @@ -1066,27 +860,22 @@ Dirección: %4 FreespaceChecker - A new data directory will be created. Crearáse un novo directorio de datos. - name nome - Directory already exists. Add %1 if you intend to create a new directory here. O directorio xa existe. Engade %1 se queres crear un novo directorio aquí. - Path already exists, and is not a directory. A ruta xa existe e non é un directorio. - Cannot create data directory here. Non se pode crear directorio de datos aquí @@ -1094,52 +883,46 @@ Dirección: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Core de Dogecoin - version versión - Usage: Emprego: - command-line options opcións da liña de comandos - UI options opcións de UI - Set language, for example "de_DE" (default: system locale) Fixar idioma, por exemplo "de_DE" (por defecto: locale del sistema) - Start minimized Comezar minimizado - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Amosar pantalla splash no arranque (por defecto: 1) - Choose data directory on startup (default: 0) Escolle directorio de datos ao arrancar (por defecto: 0) @@ -1147,57 +930,46 @@ Dirección: %4 Intro - Welcome Benvido - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory Empregar o directorio de datos por defecto - Use a custom data directory: Empregar un directorio de datos personalizado - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. Erro: O directorio de datos especificado "%1" non pode ser creado. - Error Erro - GB of free space available GB de espacio libre dispoñible - (of %1GB needed) (de %1 GB precisados) @@ -1205,27 +977,22 @@ Dirección: %4 OpenURIDialog - Open URI Abrir URI - Open payment request from URI or file Abrir solicitude de pago dende URI ou ficheiro - URI: URI: - Select payment request file Seleccionar ficheiro de solicitude de pago - Select payment request file to open Seleccione ficheiro de solicitude de pago para abrir @@ -1233,243 +1000,206 @@ Dirección: %4 OptionsDialog - Options Opcións - &Main &Principal - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Tarifa por kB de transacción opcional que axuda a asegurar que as túas transaccións son procesadas rapidamente. A maioría das transaccións son 1 kB. - Pay transaction &fee Pagar &tarifa da transacción - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Comezar Dogecoin automáticamente despois de loguearse no sistema. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Comezar Dogecoin ao facer login no sistema - Size of &database cache - - Set database cache size in megabytes (default: 25) - Fixar tamaño da caché da base de datos en megabytes (por defecto: 25) - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Fixar o número de fíos para sripts de verificación (ata 16, 0 = auto, <0 = deixa tantos cores libres, por defecto: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. Restaurar todas as opcións de cliente ás por defecto - &Reset Options Opcións de &Restaurar - &Network &Rede - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Abrir automáticamente o porto do cliente Dogecoin no router. Esto so funciona se o teu router soporta UPnP e está habilitado. - Map port using &UPnP Mapear porto empregando &UPnP - Proxy &IP: &IP do Proxy: - &Port: &Porto: - Port of the proxy (e.g. 9050) Porto do proxy (exemplo: 9050) - SOCKS &Version: &Version de SOCKS: - SOCKS version of the proxy (e.g. 5) Versión SOCKS del proxy (exemplo: 5) - &Window &Xanela - Show only a tray icon after minimizing the window. Amosar so un icono na bandexa tras minimiza-la xanela. - &Minimize to the tray instead of the taskbar &Minimizar á bandexa en lugar de á barra de tarefas. - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimizar en lugar de saír da aplicación cando se pecha a xanela. Cando se habilita esta opción, a aplicación so se pechará tras seleccionar Saír no menú. - M&inimize on close M&inimizar ao pechar - &Display &Visualización - User Interface &language: &Linguaxe de interface de usuario: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. A linguaxe de interface de usuario pode fixarse aquí. Esta configuración terá efecto tras reiniciar Dogecoin. - &Unit to show amounts in: &Unidade na que amosar as cantidades: - Choose the default subdivision unit to show in the interface and when sending coins. Escolle a unidade de subdivisión por defecto para amosar na interface e ao enviar moedas. - Whether to show Dogecoin addresses in the transaction list or not. Se se amosan ou non as direccións Dogecoin na listaxe de transaccións. - &Display addresses in transaction list &Visualizar direccións na listaxe de transaccións - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &OK - &Cancel &Cancelar - default por defecto - none - Confirm options reset Confirmar opcións de restaurar - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. A dirección de proxy suministrada é inválida. @@ -1477,69 +1207,54 @@ Dirección: %4 OverviewPage - Form Formulario - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. A información amosada por estar desactualizada. O teu moedeiro sincronízase automáticamente coa rede Dogecoin despois de que se estableza unha conexión, pero este proceso non está todavía rematado. - - Unconfirmed: - Sen confirmar: - - - Wallet Moedeiro - - Confirmed: - Confirmado: + Available: + - Your current spendable balance O teu balance actualmente dispoñible - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Total de transaccións que aínda teñen que ser confirmadas, e non contan todavía dentro do balance gastable - Immature: Inmaduro: - Mined balance that has not yet matured O balance minado todavía non madurou - Total: Total: - Your current total balance O teu balance actual total - <b>Recent transactions</b> <b>Transaccións recentes</b> - - out of sync non sincronizado @@ -1547,93 +1262,70 @@ Dirección: %4 PaymentServer - - URI handling Manexo de URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. Non se pode parsear a URI! Esto pode ser causado por unha dirección Dogecoin inválida ou parámetros da URI malformados. - Requested payment amount of %1 is too small (considered dust). A cantidade de %1 na solicitude de pado é moi pequena (considerada po). - - - - - - Payment request error Erro na petición de pago - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 Devolución dende %1 - Error communicating with %1: %2 Erro comunicando con %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 Responsa errónea do servidor %1 - Payment acknowledged Pago admitido - Network request error Erro de solicitude de rede @@ -1641,23 +1333,26 @@ Dirección: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Erro: O directorio de datos especificado "%1" non existe. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. Erro: combinación inválida de -regtest e -testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Introduce unha dirección Dogecoin (exemplo: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1665,22 +1360,18 @@ Dirección: %4 QRImageWidget - &Save Image... &Gardar Imaxe... - &Copy Image &Copiar Imaxe - Save QR Code Gardar Código QR - PNG Image (*.png) @@ -1688,192 +1379,146 @@ Dirección: %4 RPCConsole - Client name Nome do cliente - - - - - - - - - - - N/A N/A - Client version Versión do cliente - &Information &Información - Debug window - General - Using OpenSSL version Usar versión OpenSSL - Startup time Tempo de arranque - Network Rede - Name - Number of connections Número de conexións - Block chain Cadea de bloques - Current number of blocks Número actual de bloques - Estimated total blocks Bloques totais estimados - Last block time Hora do último bloque - &Open &Abrir - &Console &Consola - &Network Traffic &Tráfico de Rede - &Clear &Limpar - Totals Totais - In: Dentro: - Out: Fóra: - Build date Data de construción - Debug log file Arquivo de log de depuración - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Abrir o arquivo de log de depuración de Dogecoin dende o directorio actual de datos. Esto pode levar uns cantos segundos para grandes arquivos de log. - Clear console Limpar consola - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Benvido á consola RPC de Dogecoin - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Emprega as flechas arriba e abaixo para navegar polo historial, e <b>Ctrl-L</b> para limpar a pantalla. - Type <b>help</b> for an overview of available commands. Escribe <b>axuda</b> para unha vista xeral dos comandos dispoñibles. - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 m - %1 h %1 h - %1 h %2 m %1 h %2 m @@ -1881,105 +1526,82 @@ Dirección: %4 ReceiveCoinsDialog - &Amount: &Cantidade: - &Label: &Etiqueta: - &Message: &Mensaxe: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. Reutilizar unha das direccións para recibir previas. Reutilizar direccións ten problemas de seguridade e privacidade. Non empregues esto agás que antes se fixese unha solicitude de rexeneración dun pago. - R&euse an existing receiving address (not recommended) R&eutilizar unha dirección para recibir existente (non recomendado) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - - An optional label to associate with the new receiving address. - Use this form to request payments. All fields are <b>optional</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. Limpar todos os campos do formulario - Clear Limpar - Requested payments history - &Request payment &Solicitar pago - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove - Copy label Copiar etiqueta - Copy message - Copy amount Copiar cantidade @@ -1987,67 +1609,54 @@ Dirección: %4 ReceiveRequestDialog - QR Code Código QR - Copy &URI Copiar &URI - Copy &Address Copiar &Dirección - &Save Image... &Gardar Imaxe... - Request payment to %1 Solicitar pago a %1 - Payment information Información de Pago - URI URI - Address Dirección - Amount Cantidade - Label Etiqueta - Message Mensaxe - Resulting URI too long, try to reduce the text for label / message. A URI resultante é demasiado larga, tenta reducir o texto para a etiqueta / mensaxe. - Error encoding URI into QR Code. Erro codificando URI nun Código QR. @@ -2055,37 +1664,30 @@ Dirección: %4 RecentRequestsTableModel - Date Data - Label Etiqueta - Message Mensaxe - Amount Cantidade - (no label) (sen etiqueta) - (no message) - (no amount) @@ -2093,247 +1695,194 @@ Dirección: %4 SendCoinsDialog - - - Send Coins Moedas Enviadas - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: Cantidade: - Bytes: Bytes: - Amount: Importe: - Priority: Prioridade: - Fee: Pago: - Low Output: - After Fee: - Change: Cambiar: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Enviar a múltiples receptores á vez - Add &Recipient Engadir &Receptor - Clear all fields of the form. Limpar tódolos campos do formulario - Clear &All Limpar &Todo - Balance: Balance: - Confirm the send action Confirmar a acción de envío - S&end &Enviar - Confirm send coins Confirmar envío de moedas - - - - %1 to %2 %1 a %2 - Copy quantity Copiar cantidade - Copy amount Copiar cantidade - Copy fee Copiar pago - Copy after fee Copiar despóis do pago - Copy bytes Copiar bytes - Copy priority Copiar prioridade - Copy low output - Copy change Copiar cambio - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. A dirección de recepción non é válida, por favor compróbea. - The amount to pay must be larger than 0. A cantidade a pagar debe ser maior que 0. - The amount exceeds your balance. A cantidade sobrepasa o teu balance. - The total exceeds your balance when the %1 transaction fee is included. O total sobrepasa o teu balance cando se inclúe a tarifa de transacción %1. - Duplicate address found, can only send to each address once per send operation. Atopouse dirección duplicada, so se pode enviar a cada dirección unha vez por operación. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address Atención: Enderezo Dogecoin non válido - (no label) (sen etiqueta) - Warning: Unknown change address Atención: Enderezo de cambio desconocido - Are you sure you want to send? Seguro que queres enviar? - added as transaction fee engadido como tarifa de transacción - Payment request expired A petición de pago expirou - Invalid payment address %1 Dirección de pago %1 inválida @@ -2341,98 +1890,74 @@ Dirección: %4 SendCoinsEntry - - - A&mount: &Cantidade: - Pay &To: Pagar &A: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) A dirección á que enviar o pago (exemplo: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Introduce unha etiqueta para esta dirección para engadila ao teu libro de direccións - &Label: &Etiqueta: - Choose previously used address Escoller dirección previamente empregada - This is a normal payment. Este é un pago normal - Alt+A Alt+A - Paste address from clipboard Pegar dirección dende portapapeis - Alt+P Alt+P - - - Remove this entry Eliminar esta entrada - Message: - This is a verified payment request. Esta é unha solicitude de pago verificada - Enter a label for this address to add it to the list of used addresses Introduce unha etiqueta para esta dirección para engadila á listaxe de direccións empregadas - - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. Esta é unha solicitude de pago non verificada - - Pay To: Pagar A: - - Memo: Memo: @@ -2440,12 +1965,10 @@ Dirección: %4 ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2453,186 +1976,142 @@ Dirección: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Sinaturas - Asinar / Verificar unha Mensaxe - &Sign Message &Asinar Mensaxe - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Podes asinar mensaxes coas túas direccións para probar que ti as posees. Ten conta de non asinar nada vago, xa que hai ataques de phishing que tentarán que asines coa túa identidade por riba deles. Asina únicamente declaracións totalmente detalladas coas que esteas de acordo. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) A dirección coa que asinar a mensaxe (exemplo: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Escoller dirección previamente empregada - - Alt+A Alt+A - Paste address from clipboard Pegar dirección dende portapapeis - Alt+P Alt+P - Enter the message you want to sign here Introduce a mensaxe que queres asinar aquí - Signature Sinatura - Copy the current signature to the system clipboard Copiar a sinatura actual ao portapapeis do sistema - Sign the message to prove you own this Dogecoin address Asina a mensaxe para probar que posees esta dirección Dogecoin - Sign &Message Asinar &Mensaxe - Reset all sign message fields Restaurar todos os campos de sinatura de mensaxe - - Clear &All Limpar &Todo - &Verify Message &Verificar Mensaxe - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Introduce a dirección coa que asinar, a mensaxe (asegúrate de copiar exactamente os saltos de liña, espacios, tabulacións, etc.) e a sinatura debaixo para verificar a mensaxe. Ten coidado de non ler máis na sinatura do que hai no mensaxe asinado mesmo, a fin de evitar ser cazado nun ataque de home no medio. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) A dirección coa que foi firmada a mensaxe (exemplo: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Verificar a mensaxe para asegurar que foi asinada coa dirección Dogecoin especificada - Verify &Message Verificar &Mensaxe - Reset all verify message fields Restaurar todos os campos de verificación de mensaxe - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Introduza unha dirección Dogecoin (exemplo: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Click en "Asinar Mensaxe" para xerar sinatura - - The entered address is invalid. A dirección introducida é inválida. - - - - Please check the address and try again. Por favor comproba a dirección e proba de novo. - - The entered address does not refer to a key. A dirección introducida non se refire a ninguna clave. - Wallet unlock was cancelled. Cancelouse o desbloqueo do moedeiro. - Private key for the entered address is not available. A clave privada da dirección introducida non está dispoñible. - Message signing failed. Fallou a sinatura da mensaxe. - Message signed. Mensaxe asinada. - The signature could not be decoded. A sinatura non puido ser decodificada. - - Please check the signature and try again. Por favor revise a sinatura e probe de novo. - The signature did not match the message digest. A sinatura non coincide co resumo da mensaxe. - Message verification failed. A verificación da mensaxe fallou. - Message verified. Mensaxe verificada. @@ -2640,17 +2119,14 @@ Dirección: %4 SplashScreen - Dogecoin Core Core de Dogecoin - The Dogecoin Core developers Os desarrolladores de Dogecoin Core - [testnet] [testnet] @@ -2658,7 +2134,6 @@ Dirección: %4 TrafficGraphWidget - KB/s KB/s @@ -2666,179 +2141,138 @@ Dirección: %4 TransactionDesc - Open until %1 Aberto ata %1 - + conflicted + + + %1/offline %1/fóra de liña - %1/unconfirmed %1/sen confirmar - %1 confirmations %1 confirmacións - Status Estado - , broadcast through %n node(s) , propagado a % nodo, propagado a % nodos - Date Data - Source Orixe - Generated Xerado - - From Dende - - - To A - - own address dirección propia - label etiqueta - - - - - Credit Crédito - matures in %n more block(s) madura nun bloque máismadura en %n bloques máis - not accepted non aceptado - - - - Debit Débito - Transaction fee Tarifa de transacción - Net amount Cantidade neta - - Message Mensaxe - Comment Comentario - Transaction ID ID de Transacción - Merchant Comerciante - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. As moedas xeradas deben madurar %1 bloques antes de que poidan ser gastadas. Cando xeraste este bloque, foi propagado á rede para ser engadido á cadeas de bloques. Se falla ao tentar meterse na cadea, o seu estado cambiará a "non aceptado" e non poderá ser gastado. Esto pode ocorrir ocasionalmente se outro nodo xera un bloque en poucos segundos de diferencia co teu. - Debug information Información de depuración - Transaction Transacción - Inputs Entradas - Amount Cantidade - true verdadeiro - false falso - , has not been successfully broadcast yet , non foi propagado con éxito todavía - Open for %n more block(s) Abrir para %s bloque máisAbrir para %n bloques máis - unknown descoñecido @@ -2846,12 +2280,10 @@ Dirección: %4 TransactionDescDialog - Transaction details Detalles de transacción - This pane shows a detailed description of the transaction Este panel amosa unha descripción detallada da transacción @@ -2859,118 +2291,102 @@ Dirección: %4 TransactionTableModel - Date Data - Type Tipo - Address Dirección - Amount Cantidade - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) Abrir para %n bloque máisAbrir para %n bloques máis - Open until %1 Aberto ata %1 - - Offline (%1 confirmations) - Sen liña (%1 confirmacións) - - - - Unconfirmed (%1 of %2 confirmations) - Sen confirmar (%1 de %2 confirmacións) - - - - Confirmed (%1 confirmations) Confirmado (%1 confirmacións) - This block was not received by any other nodes and will probably not be accepted! Este bloque non foi recibido por ningún outro nodo e probablemente non será aceptado! - Generated but not accepted Xerado pero non aceptado - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Recibido con - Received from Recibido de - Sent to Enviado a - Payment to yourself Pago a ti mesmo - Mined Minado - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. Estado da transacción. Pasa por riba deste campo para amosar o número de confirmacións. - Date and time that the transaction was received. Data e hora na que foi recibida a transacción. - Type of transaction. Tipo de transacción. - Destination address of transaction. Dirección de destino da transacción. - Amount removed from or added to balance. Cantidade borrada ou engadida no balance. @@ -2978,178 +2394,142 @@ Dirección: %4 TransactionView - - All Todo - Today Hoxe - This week Esta semana - This month Este mes - Last month O último mes - This year Este ano - Range... Periodo... - Received with Recibido con - Sent to Enviado a - To yourself A ti mesmo - Mined Minado - Other Outro - Enter address or label to search Introduce dirección ou etiqueta para buscar - Min amount Cantidade mínima - Copy address Copiar dirección - Copy label Copiar etiqueta - Copy amount Copiar cantidade - Copy transaction ID Copiar ID de transacción - Edit label Modificar etiqueta - Show transaction details Amosar detalles da transacción - Export Transaction History Exportar Historial de Transaccións - Exporting Failed Exportación falida - There was an error trying to save the transaction history to %1. Houbo un erro intentando salvar o historial de transaccións a %1. - Exporting Successful Exportado correctamente - The transaction history was successfully saved to %1. O historial de transaccións foi salvado correctamente en %1. - Comma separated file (*.csv) Arquivo separado por comas (*.csv) - Confirmed Confirmado - Date Data - Type Tipo - Label Etiqueta - Address Dirección - Amount Cantidade - ID ID - Range: Periodo: - to a @@ -3157,7 +2537,6 @@ Dirección: %4 WalletFrame - No wallet has been loaded. Ningún moedeiro cargado @@ -3165,7 +2544,6 @@ Dirección: %4 WalletModel - Send Coins Moedas Enviadas @@ -3173,154 +2551,125 @@ Dirección: %4 WalletView - &Export &Exportar - Export the data in the current tab to a file Exportar os datos da pestaña actual a un arquivo. - Backup Wallet Copia de Seguridade de Moedeiro - Wallet Data (*.dat) Datos de Moedeiro (*.dat) - Backup Failed Copia de Seguridade Fallida - There was an error trying to save the wallet data to %1. Houbo un erro intentando gardar os datos de moedeiro en %1. - The wallet data was successfully saved to %1. Os datos do moedeiro foron gardados correctamente en %1. - Backup Successful Copia de Seguridade Correcta - dogecoin-core + bitcoin-core - Usage: Emprego: - List commands Listar comandos - Get help for a command Obter axuda para un comando - Options: Opcións: - - Specify configuration file (default: dogecoin.conf) - Especificar arquivo de configuración (por defecto: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Especificar arquivo de configuración (por defecto: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Especificar arquivo de pid (por defecto: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Especificar arquivo de pid (por defecto: bitcoind.pid) - Specify data directory Especificar directorio de datos - - Set database cache size in megabytes (default: 25) - Fixar tamaño da caché da base de datos en megabytes (por defecto: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Escoitar conexións no <porto> (por defecto: 8333 ou testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Escoitar conexións no <porto> (por defecto: 22556 ou testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Manter como moito <n> conexións con pares (por defecto: 125) - Connect to a node to retrieve peer addresses, and disconnect Conectar a nodo para recuperar direccións de pares, e desconectar - Specify your own public address Especificar a túa propia dirección pública - Threshold for disconnecting misbehaving peers (default: 100) Umbral para desconectar pares con mal comportamento (por defecto: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Número de segundos para manter sen reconectar aos pares con mal comportamento (por defecto: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s Ocorreu un erro mentres se establecía o porto RPC %u para escoitar sobre IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Escoitar conexións JSON-RPC no <porto> (por defecto: 22555 ou testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Escoitar conexións JSON-RPC no <porto> (por defecto: 8332 ou testnet: 18332) - Accept command line and JSON-RPC commands Aceptar liña de comandos e comandos JSON-RPC - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Executar no fondo como un demo e aceptar comandos - Use the test network Empregar a rede de proba - Accept connections from outside (default: 1 if no -proxy or -connect) Aceptar conexións de fóra (por defecto: 1 se non -proxy ou -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3331,7 +2680,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, debes fixar unha rpcpassword no arquivo de configuración: %s Reoméndase usar o seguinte contrasinal aleatorio: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (non precisas lembrar este contrasinal) O nome do usuario e o contrasinal DEBEN NON ser o mesmo. @@ -3341,707 +2690,686 @@ por exemplo: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Cifradores aceptables (por defecto: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Ocorreu un erro mentres se establecía o porto RPC %u para escoitar sobre IPv6, voltando a IPv4: %s - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Enlazar a unha dirección dada e escoitar sempre nela. Emprega a notación [host]:post para IPv6 - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - Non se pode obter un bloqueo sobre o directorio de datos %s. Dogecoin está probablemente xa executándose. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + - 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 modo de test de regresión, que emprega unha cadea especial na que os bloques poden ser resoltos instantáneamente. Esto está pensado para ferramentes de testing de regresión e desenvolvemento de aplicacións. - 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 %d) + + + 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 transacción foi rexeitada! Esto podería suceder se unha das moedas do teu moedeiro xa foi gastada, como se usas unha copia de wallet.dat e hai moedas que se gastaron na copia pero non foron marcadas como gastadas aquí. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Erro: Esta transacción require unha tarifa de transacción de alomenos %s debido á súa cantidade, complexidade ou emprego de fondos recentemente recibidos! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Executar comando cando unha transacción do moedeiro cambia (%s no comando é substituído por TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Esta é unha build de test pre-lanzamento - emprégaa baixo o teu propio risco - non empregar para minado ou aplicacións de comerciantes - + Unable to bind to %s on this computer. Dogecoin Core is probably already running. + + + 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. Precaución: -paytxfee está posto moi algo! Esta é a tarifa de transacción que ti pagarás se envías unha transacción. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Precaución; Por favor revisa que a data e hora do teu ordenador son correctas! Se o teu reloxo está equivocato Dogecoin non funcionará adecuadamente. - Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Precaución: A rede non parece estar totalmente de acordo! Algúns mineitos parecen estar 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. Precaución: Non parece que esteamos totalmente de acordo cos nosos pares! Pode que precises actualizar, ou outros nodos poden precisar actualizarse. - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Precaución: erro lendo wallet.dat! Tódalas claves lidas correctamente, pero os datos de transacción ou as entradas do libro de direccións podrían estar ausentes ou incorrectos. - 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. Precaución: wallet.dat corrupto, datos salvagardados! O wallet.dat orixinal foi gardado como wallet.{timestamp}.bak en %s; se o teu balance ou transaccións son incorrectas deberías restauralas dende unha copia de seguridade. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: <categoría> pode ser: - Attempt to recover private keys from a corrupt wallet.dat Tentar recuperar claves privadas dende un wallet.dat corrupto - Dogecoin Core Daemon - - Dogecoin Core RPC client version - Versión de cliente RPC de Dogecoin - - - Block creation options: Opcións de creación de bloque: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + Connect only to the specified node(s) Conectar so ao(s) nodo(s) especificado(s) - Connect through SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - Conectar a JSON-RPC no <porto> (por defecto: 22555 ou testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + Conectar a JSON-RPC no <porto> (por defecto: 8332 ou testnet: 18332) + + + Connection options: + - Corrupted block database detected Detectada base de datos de bloques corrupta. - + Debugging/Testing options: + + + + Disable safemode, override a real safe mode event (default: 0) + + + Discover own IP address (default: 1 when listening and no -externalip) Descobrir dirección IP propia (por defecto: 1 se á escoita e non -externalip) - Do not load the wallet and disable wallet RPC calls - Do you want to rebuild the block database now? Queres reconstruír a base de datos de bloques agora? - Error initializing block database Erro inicializando a base de datos de bloques - Error initializing wallet database environment %s! Erro inicializando entorno de base de datos de moedeiro %s! - Error loading block database Erro cargando base de datos do bloque - Error opening block database Erro abrindo base de datos de bloques - Error: Disk space is low! Erro: Espacio en disco escaso! - Error: Wallet locked, unable to create transaction! Erro: Moedeiro bloqueado, imposible crear transacción! - Error: system error: Erro: erro do sistema: - Failed to listen on any port. Use -listen=0 if you want this. Fallou escoitar en calquera porto. Emprega -listen=0 se queres esto. - Failed to read block info Fallou a lectura da información do bloque - Failed to read block Fallou a lectura do bloque - Failed to sync block index Fallou a sincronización do índice do bloque - Failed to write block index Fallou a escritura do índice do bloque - Failed to write block info Fallou a escritura da información do bloque - Failed to write block Fallou a escritura do bloque - Failed to write file info Fallou a escritura da información do arquivo - Failed to write to coin database Fallou a escritura na base de datos de moedas - Failed to write transaction index Fallou a escritura do índice de transaccións - Failed to write undo data Fallou a escritura dos datos para desfacer - Fee per kB to add to transactions you send - + Fees smaller than this are considered zero fee (for relaying) (default: + + + Find peers using DNS lookup (default: 1 unless -connect) Atopar pares usando lookup DNS (por defecto: 1 agás -connect) - + Force safe mode (default: 0) + + + Generate coins (default: 0) Xerar moedas (por defecto: 0) - How many blocks to check at startup (default: 288, 0 = all) Cantos bloques para chequear ao arrancar (por defecto: 288, 0 = todos) - - How thorough the block verification is (0-4, default: 3) - Como de exhaustiva é a verificación de bloques (0-4, pro defecto: 3) - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? Bloque genesis incorrecto o no existente. Datadir erróneo para a rede? - Invalid -onion address: '%s' Dirección -onion inválida: '%s' - Not enough file descriptors available. Non hai suficientes descritores de arquivo dispoñibles. - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files Reconstruír índice de cadea de bloque dende os ficheiros actuais blk000??.dat - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server - Enviar comando a servidor Dogecoin + Set database cache size in megabytes (%d to %d, default: %d) + - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) Fixar o número de fíos para as chamadas aos servicios RPC (por defecto: 4) - Specify wallet file (within data directory) Especificar arquivo do moedeiro (dentro do directorio de datos) - - Start Dogecoin Core server - Comezar servidor Dogecoin + Spend unconfirmed change when sending transactions (default: 1) + - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): - Emprego (desaconsellado, usar dogecoin-cli) + Usage (deprecated, use bitcoin-cli): + Emprego (desaconsellado, usar bitcoin-cli) - Verifying blocks... Verificando bloques... - Verifying wallet... Verificando moedeiro... - Wait for RPC server to start - Wallet %s resides outside data directory %s O moedeiro %s reside fóra do directorio de datos %s - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex Precisas reconstruír a base de datos empregando -reindex para cambiar -txindex - Imports blocks from external blk000??.dat file Importa bloques dende arquivos blk000??.dat externos - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Executar comando cando se recibe unha alerta relevante ou vemos un fork realmente longo (%s no cmd é substituído pola mensaxe) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Fixar o número de fíos para sripts de verificación (ata 16, 0 = auto, <0 = deixa tantos cores libres, por defecto: 0) - - - Information Información - Invalid amount for -minrelaytxfee=<amount>: '%s' Cantidade inválida para -minrelaytxfee=<cantidade>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' Cantidade inválida para -mintxfee=<cantidade>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) Manter un índice completo de transaccións (por defecto: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Máximo buffer por-conexión para recibir, <n>*1000 bytes (por defecto: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Máximo buffer por-conexión para enviar, <n>*1000 bytes (por defecto: 1000) - Only accept block chain matching built-in checkpoints (default: 1) Aceptar so cadeas de bloques coincidentes con check-points incorporados (por defecto: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Conectar so a nodos na rede <net> (IPv4, IPv6 ou Tor) - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opcións SSL: (ver ńa Wiki Bitcoin as instrucción de configuración de SSL) + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opcións SSL: (ver ńa Wiki Dogecoin as instrucción de configuración de SSL) + + + Send command to Dogecoin Core + - Send trace/debug info to console instead of debug.log file Enviar traza/información de depuración á consola en lugar de ao arquivo debug.log - Set minimum block size in bytes (default: 0) Fixar tamaño mínimo de bloque en bytes (por defecto: 0) - + 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) Recortar o arquivo debug.log ao arrancar o cliente (por defecto: 1 cando no-debug) - Signing transaction failed Fallou a sinatura da transacción - Specify connection timeout in milliseconds (default: 5000) Especificar tempo límite da conexión en milisegundos (por defecto: 5000) - + Start Dogecoin Core Daemon + + + System error: Erro do sistema: - Transaction amount too small A cantidade da transacción é demasiado pequena - Transaction amounts must be positive As cantidades da transacción deben ser positivas - Transaction too large A transacción é demasiado grande - Use UPnP to map the listening port (default: 0) Usar UPnP para mapear o porto de escoita (por defecto: 0) - Use UPnP to map the listening port (default: 1 when listening) Usar UPnP para mapear o porto de escoita (por defecto: 1 se á escoita) - Username for JSON-RPC connections Nome de usuario para conexións JSON-RPC - Warning Precaución - Warning: This version is obsolete, upgrade required! Precaución: Esta versión é obsoleta, precísase unha actualización! - + Zapping all transactions from wallet... + + + + on startup + + + version versión - wallet.dat corrupt, salvage failed wallet.dat corrupto, fallou o gardado - Password for JSON-RPC connections Contrasinal para conexións JSON-RPC - Allow JSON-RPC connections from specified IP address Permitir conexións JSON-RPC dende direccións IP especificadas - Send commands to node running on <ip> (default: 127.0.0.1) Enviar comandos a nodo executando na <ip> (por defecto: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) Executar comando cando o mellor bloque cambie (%s no comando é sustituído polo hash do bloque) - Upgrade wallet to latest format Actualizar moedeiro ao formato máis recente - Set key pool size to <n> (default: 100) Fixar tamaño do pool de claves a <n> (por defecto: 100) - Rescan the block chain for missing wallet transactions Rescanear transaccións ausentes na cadea de bloques - Use OpenSSL (https) for JSON-RPC connections Empregar OpenSSL (https) para conexións JSON-RPC - Server certificate file (default: server.cert) Arquivo de certificado do servidor (por defecto: server.cert) - Server private key (default: server.pem) Clave privada do servidor (por defecto: server.perm) - This help message Esta mensaxe de axuda - Unable to bind to %s on this computer (bind returned error %d, %s) Imposible enlazar con %s neste ordenador (enlace devolveu erro %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Permitir lookup de DNS para -addnote, -seednote e -connect - Loading addresses... Cargando direccións... - Error loading wallet.dat: Wallet corrupted Erro cargando wallet.dat: Moedeiro corrupto - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Erro cargando wallet.dat: O moedeiro precisa unha versión máis nova de Dogecoin - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Precísase rescribir o moedeiro: reinicie Dogecoin para completar - Error loading wallet.dat Erro cargando wallet.dat - Invalid -proxy address: '%s' Dirección -proxy inválida: '%s' - Unknown network specified in -onlynet: '%s' Rede descoñecida especificada en -onlynet: '%s' - Unknown -socks proxy version requested: %i Versión solicitada de proxy -socks descoñecida: %i - Cannot resolve -bind address: '%s' Non se pode resolver a dirección -bind: '%s' - Cannot resolve -externalip address: '%s' Non se pode resolver dirección -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Cantidade inválida para -paytxfee=<cantidade>: '%s' - Invalid amount Cantidade inválida - Insufficient funds Fondos insuficientes - Loading block index... Cargando índice de bloques... - Add a node to connect to and attempt to keep the connection open Engadir un nodo ao que conectarse e tentar manter a conexión aberta - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Imposible enlazar a %s neste ordenador. Dogecoin probablemente xa se estea executando. - - - Loading wallet... Cargando moedeiro... - Cannot downgrade wallet Non se pode desactualizar o moedeiro - Cannot write default address Non se pode escribir a dirección por defecto - Rescanning... Rescaneando... - Done loading Carga completa - To use the %s option Empregar a opción %s - Error Erro - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4050,4 +3378,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Se o arquivo non existe, debes crealo con permisos de so lectura para o propietario. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_gu_IN.ts b/src/qt/locale/bitcoin_gu_IN.ts index 4504f94df..8581d52a2 100644 --- a/src/qt/locale/bitcoin_gu_IN.ts +++ b/src/qt/locale/bitcoin_gu_IN.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label - Create a new address - &New - Copy the currently selected address to the system clipboard - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label - Address - (no label) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase - New passphrase - Repeat new passphrase - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Encrypt wallet - This operation needs your wallet passphrase to unlock the wallet. - Unlock wallet - This operation needs your wallet passphrase to decrypt the wallet. - Decrypt wallet - Change passphrase - Enter the old and new passphrase to the wallet. - Confirm wallet encryption - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - The supplied passphrases do not match. - Wallet unlock failed - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... - &Overview - Node - Show general overview of wallet - &Transactions - Browse transaction history - E&xit - Quit application - - Show information about Dogecoin Core + Show information about Dogecoin - - About &Qt - Show information about Qt - &Options... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File - &Settings - &Help - Tabs toolbar - - [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address - Date - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,41 +1324,45 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1674,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1867,155 +1517,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + + + + Copy message + + + + Copy amount + + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address - Amount - Label - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2023,285 +1655,225 @@ Address: %4 RecentRequestsTableModel - Date - Label - Message - Amount - (no label) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: - Confirm the send action - S&end - Confirm send coins - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2309,116 +1881,85 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard - Alt+P - - - Remove this entry - Message: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2426,192 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard - Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2619,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2637,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2645,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2825,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2838,118 +2282,102 @@ Address: %4 TransactionTableModel - Date - Type - Address - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2957,178 +2385,142 @@ Address: %4 TransactionView - - All - Today - This week - This month - Last month - This year - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - Confirmed - Date - Type - Label - Address - Amount - ID - Range: - to @@ -3136,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3144,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3152,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3310,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_he.ts b/src/qt/locale/bitcoin_he.ts index 5e23c14ab..b56a4c950 100644 --- a/src/qt/locale/bitcoin_he.ts +++ b/src/qt/locale/bitcoin_he.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - + על אודות ליבת ביטקוין - <b>Dogecoin Core</b> version - + <b>קליינט ביטקוין</b> גירסאת - This is experimental software. @@ -27,135 +24,113 @@ This product includes software developed by the OpenSSL Project for use in the O המוצר הזה כולל תוכנה שפותחה ע"י פרויקט OpenSSL לשימוש בתיבת הכלים OpenSSL (http://www.openssl.org/) ותוכנה קריפטוגרפית שנכתבה ע"י אריק יאנג (eay@cryptsoft.com) ותוכנת UPnP שנכתבה ע"י תומס ברנרד. - Copyright זכויות יוצרים - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label לחץ לחיצה כפולה לערוך כתובת או תוית - Create a new address יצירת כתובת חדשה - &New &חדש - Copy the currently selected address to the system clipboard העתק את הכתובת המסומנת ללוח העריכה - &Copy - + &העתק - C&lose - + סגירה - &Copy Address העתק כתובת - Delete the currently selected address from the list מחק את הכתובת שנבחרה מהרשימה - Export the data in the current tab to a file יצוא הנתונים בטאב הנוכחי לקובץ - &Export &ייצא - &Delete &מחק - Choose the address to send coins to בחר את הכתובת אליה תרצה לשלוח את המטבעות - Choose the address to receive coins with בחר את הכתובת איתה תרצה לקבל את המטבעות - C&hoose - + בחר - Very sending addresses כתובת לשליחה - Much receiving addresses קבל כתובות - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. אלה כתובת הביטקוין שלך עבור שליחת תשלומים. תמיד בדוק את מספר ואת כתובות מקבלי התשלומים לפני שליחת מטבעות. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. אלה כתובות הביטקוין שלך עבור קבלת תשלומים. מומלץ להשתמש בכתובת חדשה לכל פעולה. - Copy &Label העתק תוית - &Edit עריכה - Export Address List ייצוא רשימת כתובות - Comma separated file (*.csv) קובץ מופרד בפסיקים (*.csv) - Exporting Failed הייצוא נכשל - There was an error trying to save the address list to %1. @@ -163,17 +138,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label תוית - Address כתובת - (no label) (ללא תוית) @@ -181,140 +153,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog שיח סיסמא - Enter passphrase הכנס סיסמה - New passphrase סיסמה חדשה - Repeat new passphrase חזור על הסיסמה החדשה - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. הכנס את הסיסמה החדשה לארנק. <br/>אנא השתמש בסיסמה המכילה <b>10 תוים אקראיים או יותר</b>, או <b>שמונה מילים או יותר</b>. - Encrypt wallet הצפן ארנק - This operation needs your wallet passphrase to unlock the wallet. הפעולה הזו דורשת את סיסמת הארנק שלך בשביל לפתוח את הארנק. - Unlock wallet פתיחת ארנק - This operation needs your wallet passphrase to decrypt the wallet. הפעולה הזו דורשת את סיסמת הארנק שלך בשביל לפענח את הארנק. - Decrypt wallet פענוח ארנק - Change passphrase שינוי סיסמה - Enter the old and new passphrase to the wallet. הכנס את הסיסמות הישנה והחדשה לארנק. - Confirm wallet encryption אשר הצפנת ארנק - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! אזהרה: אם אתה מצפין את הארנק ומאבד את הסיסמא, אתה <b>תאבד את כל הביטקוינים שלך</b>! - Are you sure you wish to encrypt your wallet? האם אתה בטוח שברצונך להצפין את הארנק? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. חשוב! כל גיבוי קודם שעשית לארנק שלך יש להחליף עם קובץ הארנק המוצפן שזה עתה נוצר. מסיבות אבטחה, גיבויים קודמים של קובץ הארנק הלא-מוצפן יהפכו לחסרי שימוש ברגע שתתחיל להשתמש בארנק החדש המוצפן. - - Warning: The Caps Lock key is on! זהירות: מקש Caps Lock מופעל! - - Wallet encrypted הארנק הוצפן - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. ביטקוין ייסגר עכשיו כדי להשלים את תהליך ההצפנה. זכור שהצפנת הארנק שלך אינו יכול להגן באופן מלא על הביטקוינים שלך מתוכנות זדוניות המושתלות על המחשב. - - - - Wallet encryption failed הצפנת הארנק נכשלה - Wallet encryption failed due to an internal error. Your wallet was not encrypted. הצפנת הארנק נכשלה עקב שגיאה פנימית. הארנק שלך לא הוצפן. - - The supplied passphrases do not match. הסיסמות שניתנו אינן תואמות. - Wallet unlock failed פתיחת הארנק נכשלה - - - The passphrase entered for the wallet decryption was incorrect. הסיסמה שהוכנסה לפענוח הארנק שגויה. - Wallet decryption failed פענוח הארנק נכשל - Wallet passphrase was successfully changed. סיסמת הארנק שונתה בהצלחה. @@ -322,352 +260,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... חתום על הודעה - Synchronizing with network... מסתנכרן עם הרשת... - &Overview &סקירה - Node - Show general overview of wallet הצג סקירה כללית של הארנק - &Transactions &פעולות - Browse transaction history דפדף בהיסטוריית הפעולות - E&xit י&ציאה - Quit application סגור תוכנה - - Show information about Dogecoin Core + Show information about Dogecoin הצג מידע על ביטקוין - - About &Qt אודות Qt - Show information about Qt הצג מידע על Qt - &Options... &אפשרויות - &Encrypt Wallet... הצפן ארנק - &Backup Wallet... גיבוי ארנק - &Change Passphrase... שנה סיסמא - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... מייבא בלוקים מהדיסק... - Reindexing blocks on disk... מחדש את אינדקס הבלוקים בדיסק... - Send coins to a Dogecoin address שלח מטבעות לכתובת ביטקוין - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin שנה אפשרויות תצורה עבור ביטקוין - Backup wallet to another location גיבוי הארנק למקום אחר - Change the passphrase used for wallet encryption שנה את הסיסמה להצפנת הארנק - &Debug window חלון ניפוי - Open debugging and diagnostic console פתח את לוח הבקרה לאבחון וניפוי - &Verify message... אמת הודעה... - Dogecoin ביטקוין - Wallet ארנק - &Send &שלח - &Receive וקבל - - &Show / Hide הצג / הסתר - Show or hide the main Window הצג או הסתר את החלון הראשי - Encrypt the private keys that belong to your wallet הצפן את המפתחות הפרטיים ששייכים לארנק שלך - Sign messages with your Dogecoin addresses to prove you own them חתום על הודעות עם כתובות הביטקוין שלך כדי להוכיח שהן בבעלותך - Verify messages to ensure they were signed with specified Dogecoin addresses אמת הודעות כדי להבטיח שהן נחתמו עם כתובת ביטקוין מסוימות - &File &קובץ - &Settings ה&גדרות - &Help &עזרה - Tabs toolbar סרגל כלים טאבים - - [testnet] [רשת-בדיקה] - Dogecoin Core ליבת ביטקוין - - Request payments (generates QR codes and dogecoin: URIs) - + Request payments (generates QR codes and bitcoin: URIs) + בקש תשלומים (מייצר קודיי QR וסכימות URI של :bitcoin) - - &About Dogecoin Core - + &אודות קליינט ביטקוין - Show the list of used sending addresses and labels הצג את רשימת הכתובות לשליחה שהיו בשימוש לרבות התוויות - Show the list of used receiving addresses and labels הצג את רשימת הכתובות והתויות המשומשות - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client תוכנת ביטקוין - %n active connection(s) to Dogecoin network חיבור פעיל אחד לרשת הביטקוין%n חיבורים פעילים לרשת הביטקוין - No block source available... אין קוד נתון - Processed %1 of %2 (estimated) blocks of transaction history. %1 מתוך %2 (משוער) בלוקים של הסטוריית פעולות עובדו. - Processed %1 blocks of transaction history. הושלם עיבוד של %1 בלוקים של היסטוריית פעולות. - %n hour(s) %n שעה%n שעות - %n day(s) %n יום%n ימים - %n week(s) %n שבוע%n שבועות - + %1 and %2 + + + + %n year(s) + + + %1 behind 1% מאחור - Last received block was generated %1 ago. הבלוק האחרון שהתקבל נוצר לפני %1 - Transactions after this will not yet be visible. לאחר זאת פעולות נספות טרם יהיו גלויות - Error שגיאה - Warning אזהרה - Information מידע - Up to date עדכני - Catching up... מתעדכן... - Sent transaction פעולה שנשלחה - Incoming transaction פעולה שהתקבלה - Date: %1 Amount: %2 Type: %3 @@ -679,25 +551,21 @@ Address: %4 כתובת: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> הארנק <b>מוצפן</b> וכרגע <b>פתוח</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> הארנק <b>מוצפן</b> וכרגע <b>נעול</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. שגיאה סופנית אירעה. ביטקוין אינו יכול להמשיך לפעול בבטחה ולכן ייסגר. ClientModel - Network Alert אזעקת רשת @@ -705,291 +573,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: כמות: - Bytes: בייטים: - Amount: כמות: - Priority: קדימות: - Fee: תשלום: - Low Output: - After Fee: לאחר עמלה: - Change: שינוי: - (un)select all (מחק)(בחר) הכל - Tree mode מצב עץ - List mode מצר רשימה - Amount כמות - Address כתובת - Date תאריך - Confirmations אישורים - Confirmed מאושר - Priority קדימות - Copy address העתק כתובת - Copy label העתק תוית - - Copy amount העתק כמות - Copy transaction ID העתק מזהה פעולה - Lock unspent - Unlock unspent - Copy quantity העתק כמות - Copy fee העתק מחיר - Copy after fee - + העתק אחרי עמלה - Copy bytes - + העתק בייטים - Copy priority העתק קדימות - Copy low output - Copy change - + העתק עודף - highest הכי גבוה - higher גבוהה יותר - high גבוה - medium-high בנוני גבוה - medium בינוני - low-medium בינוני - נמוך - low נמוך - lower נמוך יותר - lowest הכי נמוך - (%1 locked) - none - Dust אבק - yes כן - no לא - This label turns red, if the transaction size is greater than 1000 bytes. תווית זו מאדימה במידה וגודל הפעולה עולה על 1000 בייט - - This means a fee of at least %1 per kB is required. זאת אומרת שנחוצה עמלה של לא פחות מ־%1 לכל קילו בייט. - Can vary +/- 1 byte per input. - + הערך יכול להיות +/- בייט 1 פר כניסה - Transactions with higher priority are more likely to get included into a block. - + העברות עם עדיפות גבוהה, יותר סיכוי שיכנסו לתוך הבלוק - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - + התווית הזו הופכת לאדומה, אם אחד מהנמענים מקבל סכום אשר קטן מ 1% - - This means a fee of at least %1 is required. - + זה אומר שצריך לפחות 1% עמלה - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (ללא תוית) - change from %1 (%2) עודף מ־%1 (%2) - (change) (עודף) @@ -997,67 +804,54 @@ Address: %4 EditAddressDialog - Edit Address ערוך כתובת - &Label ת&וית - The label associated with this address list entry התוית המשויכת לרשומה הזו ברשימת הכתובות - The address associated with this address list entry. This can only be modified for sending addresses. הכתובת המשויכת עם רשומה זו ברשימת הכתובות. ניתן לשנות זאת רק עבור כתובות לשליחה. - &Address &כתובת - New receiving address כתובת חדשה לקבלה - New sending address כתובת חדשה לשליחה - Edit receiving address ערוך כתובת לקבלה - Edit sending address ערוך כתובת לשליחה - The entered address "%1" is already in the address book. הכתובת שהכנסת "%1" כבר נמצאת בפנקס הכתובות. - The entered address "%1" is not a valid Dogecoin address. הכתובת שהוכנסה "%1" אינה כתובת ביטקוין תקינה. - Could not unlock wallet. פתיחת הארנק נכשלה. - New key generation failed. יצירת מפתח חדש נכשלה. @@ -1065,80 +859,69 @@ Address: %4 FreespaceChecker - A new data directory will be created. - + ספריית מידע חדשה תיווצר. - name שם - Directory already exists. Add %1 if you intend to create a new directory here. - + הספריה כבר קיימת. הוסף %1 אם ברצונך ליצור ספריה חדשה כאן. - Path already exists, and is not a directory. - + הנתיב כבר קיים ואינו מצביע על ספרייה. - Cannot create data directory here. - + לא ניתן ליצור ספריית מידע כאן. HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core ליבת ביטקוין - version גרסה - Usage: שימוש: - command-line options אפשרויות שורת פקודה - UI options אפשרויות ממשק - Set language, for example "de_DE" (default: system locale) קבע שפה, למשל "he_il" (ברירת מחדל: שפת המערכת) - Start minimized התחל ממוזער - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) הצג מסך פתיחה בעת הפעלה (ברירת מחדל: 1) - Choose data directory on startup (default: 0) @@ -1146,85 +929,69 @@ Address: %4 Intro - Welcome ברוך בואך - Welcome to Dogecoin Core. - + ברוך הבא לקליינט ביטקוין - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. מכיוון שזאת הפעם הראשונה שהתוכנה הופעלה תוכל לבחור איפה ביטקויין קור תאכסן את - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - + קליינט ביטקוין יוריד וישמור העתק של שרשרת הבלוקים של ביטקוין. לפחות %1GB מהנתונים יאוכסנו בתיקיה הזו, ויגדל עם הזמן. הארנק גם יאוחסן בתיקיה הזו. - Use the default data directory - + השתמש בברירת המחדל עבור ספריית המידע. - Use a custom data directory: - + השתמש בספריית מידע מותאמת אישית: - Dogecoin ביטקוין - Error: Specified data directory "%1" can not be created. - + שגיאה: אי אפשר ליצור את התיקיה "%1" - Error שגיאה - GB of free space available - + ג"ב של שטח אחסון פנוי - (of %1GB needed) - + (מתוך %1 ג"ב נחוצים) OpenURIDialog - Open URI - + פתח URI - Open payment request from URI or file - URI: - + כתובת: - Select payment request file בחירת קובץ בקשת תשלום - Select payment request file to open בחירת קובץ בקשת תשלום לפתיחה @@ -1232,243 +999,206 @@ Address: %4 OptionsDialog - Options אפשרויות - &Main ראשי - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - עמלת פעולה אופציונלית לכל kB תבטיח שהפעולה שלך תעובד בזריזות. רוב הפעולות הן 1 kB. מומלצת עמלה בסך 0.01. + עמלת פעולה אופציונלית לכל kB תבטיח שהפעולה שלך תעובד בזריזות. רוב הפעולות הן 1 kB. - Pay transaction &fee שלם &עמלת פעולה - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. הפעל את ביטקוין באופן עצמאי לאחר התחברות למערכת. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login התחל את ביטקוין בעת התחברות למערכת - Size of &database cache - - Set database cache size in megabytes (default: 25) - קבע את גודל המטמון של מסד הנתונים במגהבייט (ברירת מחדל: 25) - - - MB מגה בייט - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - קבע את מספר תהליכוני אימות הסקריפטים (1-16, 0 = אוטומטי, ברירת מחדל: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. אפס כל אפשרויות התוכנה לברירת המחדל. - &Reset Options איפוס אפשרויות - &Network רשת - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. פתח את פורט ביטקוין בנתב באופן אוטומטי. עובד רק אם UPnP מאופשר ונתמך ע"י הנתב. - Map port using &UPnP מיפוי פורט באמצעות UPnP - Proxy &IP: כתובת IP של פרוקסי: - &Port: פורט: - Port of the proxy (e.g. 9050) הפורט של הפרוקסי (למשל 9050) - SOCKS &Version: גרסת SOCKS: - SOCKS version of the proxy (e.g. 5) גרסת SOCKS של הפרוקסי (למשל 5) - &Window חלון - Show only a tray icon after minimizing the window. הצג סמל מגש בלבד לאחר מזעור החלון. - &Minimize to the tray instead of the taskbar מ&זער למגש במקום לשורת המשימות - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. מזער את התוכנה במקום לצאת ממנה כשהחלון נסגר. כשאפשרות זו פעילה, התוכנה תיסגר רק לאחר בחירת יציאה מהתפריט. - M&inimize on close מזער בעת סגירה - &Display תצוגה - User Interface &language: שפת ממשק המשתמש: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. ניתן לקבוע כאן את שפת ממשק המשתמש. הגדרה זו תחול לאחר הפעלה מחדש של ביטקוין. - &Unit to show amounts in: יחידת מדידה להצגת כמויות: - Choose the default subdivision unit to show in the interface and when sending coins. בחר את ברירת המחדל ליחידת החלוקה אשר תוצג בממשק ובעת שליחת מטבעות. - Whether to show Dogecoin addresses in the transaction list or not. האם להציג כתובות ביטקוין ברשימת הפעולות או לא. - &Display addresses in transaction list הצג כתובות ברשימת הפעולות - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK אישור - &Cancel ביטול - default ברירת מחדל - none - Confirm options reset אשר את איפוס האפשרויות - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. כתובת הפרוקסי שסופקה אינה תקינה. @@ -1476,69 +1206,54 @@ Address: %4 OverviewPage - Form טופס - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. המידע המוצג עשוי להיות מיושן. הארנק שלך מסתנכרן באופן אוטומטי עם רשת הביטקוין לאחר כינון חיבור, אך התהליך טרם הסתיים. - - Unconfirmed: - ממתין לאישור: - - - Wallet ארנק - - Confirmed: - מאושר: + Available: + - Your current spendable balance היתרה הזמינה הנוכחית - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance הסכום הכולל של פעולות שטרם אושרו, ועוד אינן נספרות בחישוב היתרה הזמינה - Immature: לא בשל: - Mined balance that has not yet matured מאזן שנכרה וטרם הבשיל - Total: סך הכול: - Your current total balance סך כל היתרה הנוכחית שלך - <b>Recent transactions</b> <b>פעולות אחרונות</b> - - out of sync לא מסונכרן @@ -1546,93 +1261,70 @@ Address: %4 PaymentServer - - URI handling תפעול URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. לא ניתן לנתח URI! זה יכול להיגרם כתוצאה מכתובת ביטקוין לא תקינה או פרמטרי URI חסרי צורה תקינה. - Requested payment amount of %1 is too small (considered dust). - + הסכום הנדרש לתשלום %1 קטן מדי (נחשב לאבק) - - - - - - Payment request error שגיאה בבקשת תשלום - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler לא ניתן להתחיל את ביטקוין: מפעיל לחץ-לתשלום - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - + בקשות לתשלום לסקריפטיי תשלום מותאמים אישית אינן נתמכות. - Refund from %1 החזר מ־%1 - Error communicating with %1: %2 - + שגיאה בתקשורת עם %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - + מענה שגוי משרת %1 - Payment acknowledged התשלום התקבל - Network request error שגיאת בקשת שרת @@ -1640,41 +1332,45 @@ Address: %4 QObject - - Dogecoin ביטקוין - Error: Specified data directory "%1" does not exist. + שגיאה: הספריה "%1" לא קיימת. + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. - Error: Invalid combination of -regtest and -testnet. + שגיאה: שילוב בלתי חוקי של regtest- ו testnet-. + + + Dogecoin Core did't yet exit safely... + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + הכנס כתובת ביטקוין (למשל DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - + &שמור תמונה.. - &Copy Image - + &העתק תמונה - Save QR Code שמור קוד QR - PNG Image (*.png) תמונת PNG (*.png) @@ -1682,192 +1378,146 @@ Address: %4 RPCConsole - Client name שם ממשק - - - - - - - - - - - N/A N/A - Client version גרסת ממשק - &Information מידע - Debug window - + חלון דיבאג - General כללי - Using OpenSSL version משתמש ב-OpenSSL גרסה - Startup time זמן אתחול - Network רשת - Name שם - Number of connections מספר חיבורים - Block chain שרשרת הבלוקים - Current number of blocks מספר הבלוקים הנוכחי - Estimated total blocks מספר כולל משוער של בלוקים - Last block time זמן הבלוק האחרון - &Open פתח - &Console לוח בקרה - &Network Traffic - + &תעבורת רשת - &Clear - + & נקה - Totals סכומים - In: נכנס: - Out: יוצא: - Build date תאריך בניה - Debug log file קובץ יומן ניפוי - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. פתח את קובץ יומן הניפוי מתיקיית הנתונים הנוכחית. זה עשוי לקחת מספר שניות עבור קובצי יומן גדולים. - Clear console נקה לוח בקרה - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. ברוכים הבאים ללוח בקרת RPC של ביטקוין - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. השתמש בחיצים למעלה ולמטה כדי לנווט בהיסטוריה, ו- <b>Ctrl-L</b> כדי לנקות את המסך. - Type <b>help</b> for an overview of available commands. הקלד <b>help</b> בשביל סקירה של הפקודות הזמינות. - %1 B %1 בייט - %1 KB %1 קילו בייט - %1 MB %1 מגה בייט - %1 GB %1 ג'יגה בייט - %1 m 1% דקות - %1 h %1 שעות - %1 h %2 m %1 שעות %2 דקות @@ -1875,155 +1525,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - + &סכום: - &Label: ת&וית: - &Message: - + &הודעה: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - + השתמש שוב באחת מכתובות הקבלה שכבר נעשה בהן שימוש. לשימוש חוזר בכתובות ישהן השלכות אבטחה ופרטיות. השתמש בזה רק אם אתה מייצר מחדש בקשת תשלום שכבר נעשתה. - R&euse an existing receiving address (not recommended) - + ש&ימוש חוזר בכתובת קבלה קיימת(לא מומלץ) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. נקה את כל השדות - Clear נקה - + Requested payments history + + + &Request payment - + &בקש תשלום - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show הצג - Remove the selected entries from the list - Remove הסר + + Copy label + העתק תוית + + + Copy message + + + + Copy amount + העתק כמות + ReceiveRequestDialog - QR Code קוד QR - Copy &URI - + העתק &URI - Copy &Address - + התעק &כתובת - &Save Image... - + &שמור תמונה.. - Request payment to %1 - + בקש תשלום ל %1 - Payment information אנפרומצייה על התשלום - URI - + כתובת (אתר או משאב) - Address כתובת - Amount כמות - Label תוית - Message הודעה - Resulting URI too long, try to reduce the text for label / message. המזהה המתקבל ארוך מדי, נסה להפחית את הטקסט בתוית / הודעה. - Error encoding URI into QR Code. שגיאה בקידוד URI לקוד QR @@ -2031,402 +1663,311 @@ Address: %4 RecentRequestsTableModel - Date תאריך - Label תוית - Message הודעה - Amount כמות - (no label) (ללא תוית) - (no message) (אין הודעות) + + (no amount) + + SendCoinsDialog - - - Send Coins שלח מטבעות - Coin Control Features ה - Inputs... - + כניסות... - automatically selected נבחר אוטומאטית - Insufficient funds! אין מספיק כספים! - Quantity: כמות: - Bytes: בייטים: - Amount: כמות: - Priority: קדימות: - Fee: תשלום: - Low Output: - After Fee: לאחר עמלה: - Change: שינוי: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address כתובת לעודף מותאמת אישית - Send to multiple recipients at once שלח למספר מקבלים בו-זמנית - Add &Recipient הוסף מקבל - Clear all fields of the form. נקה את כל השדות - Clear &All נקה הכל - Balance: יתרה: - Confirm the send action אשר את פעולת השליחה - S&end שלח - Confirm send coins אשר שליחת מטבעות - - - - %1 to %2 - + %1 אל %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - הכנס כתובת ביטקוין (למשל DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity העתק כמות - Copy amount העתק כמות - Copy fee העתק מחיר - Copy after fee - + העתק אחרי עמלה - Copy bytes - + העתק בייטים - Copy priority העתק קדימות - Copy low output - Copy change - + העתק עודף - Total Amount %1 (= %2) - or או - The recipient address is not valid, please recheck. כתובת המקבל אינה תקינה, אנא בדוק שנית. - The amount to pay must be larger than 0. הכמות לשלם חייבת להיות גדולה מ-0. - The amount exceeds your balance. הכמות עולה על המאזן שלך. - The total exceeds your balance when the %1 transaction fee is included. הכמות הכוללת, ובכללה עמלת פעולה בסך %1, עולה על המאזן שלך. - Duplicate address found, can only send to each address once per send operation. כתובת כפולה נמצאה, ניתן לשלוח לכל כתובת רק פעם אחת בכל פעולת שליחה. - Transaction creation failed! יצירת הפעולה נכשלה! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (ללא תוית) - Warning: Unknown change address - Are you sure you want to send? האם אכן לשלוח? - added as transaction fee הוסף מחיר טיפול - Payment request expired תוקף בקשת תשלום פג - Invalid payment address %1 - + כתובת תשלום שגויה %1 SendCoinsEntry - - - A&mount: כ&מות: - Pay &To: שלם &ל: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) הכתובת שאליה ישלח התשלום (למשל DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book הכנס תוית לכתובת הזאת כדי להכניס לפנקס הכתובות - &Label: ת&וית: - Choose previously used address בחר כתובת שהייתה בשימוש - This is a normal payment. זהו תשלום רגיל. - Alt+A Alt+A - Paste address from clipboard הדבר כתובת מהלוח - Alt+P Alt+P - - - Remove this entry - Message: הודעה: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. זוהי בקשה מאומתת לתשלום. - Enter a label for this address to add it to the list of used addresses + הקלד תווית עבור כתובת זו בכדי להוסיף אותה לרשימת הכתובות בשימוש + + + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. זוהי בקשת תשלום בלתי־מאומתת. - - Pay To: תשלום ל: - - Memo: תזכורת: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - הכנס כתובת ביטקוין (למשל DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. אין לכבות את המחשב עד שחלון זה נעלם. @@ -2434,192 +1975,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message חתימות - חתום או אמת הודעה - &Sign Message חתום על הו&דעה - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. אתה יכול לחתום על הודעות עם הכתובות שלך כדי להוכיח שהן בבעלותך. היזהר לא לחתום על משהו מעורפל, שכן התקפות פישינג עשויות לגרום לך בעורמה למסור את זהותך. חתום רק על אמרות מפורטות לחלוטין שאתה מסכים עימן. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) הכתובת איתה לחתום על ההודעה (למשל DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address בחר כתובת שהייתה בשימוש - - Alt+A Alt+A - Paste address from clipboard הדבק כתובת מהלוח - Alt+P Alt+P - Enter the message you want to sign here הכנס כאן את ההודעה שעליך ברצונך לחתום - Signature חתימה - Copy the current signature to the system clipboard העתק את החתימה הנוכחית ללוח המערכת - Sign the message to prove you own this Dogecoin address חתום על ההודעה כדי להוכיח שכתובת הביטקוין הזו בבעלותך. - Sign &Message חתום על הודעה - Reset all sign message fields אפס את כל שדות החתימה על הודעה - - Clear &All נקה הכל - &Verify Message אמת הודעה - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. הכנס למטה את הכתובת החותמת, ההודעה (ודא שאתה מעתיק מעברי שורה, רווחים, טאבים וכו' באופן מדויק) והחתימה כדי לאמת את ההודעה. היזהר לא לפרש את החתימה כיותר ממה שמופיע בהודעה החתומה בעצמה, כדי להימנע מליפול קורבן למתקפת איש-באמצע. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) הכתובת איתה ההודעה נחתמה (למשל DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address אמת את ההודעה כדי להבטיח שהיא נחתמה עם כתובת הביטקוין הנתונה - Verify &Message אימות הודעה - Reset all verify message fields אפס את כל שדות אימות הודעה - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) הכנס כתובת ביטקוין (למשל DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature לחץ "חתום על ההודעה" כדי לחולל חתימה - - Enter Dogecoin signature - הכנס חתימת ביטקוין - - - - The entered address is invalid. הכתובת שהוכנסה אינה תקינה. - - - - Please check the address and try again. אנא בדוק את הכתובת ונסה שנית. - - The entered address does not refer to a key. הכתובת שהוכנסה אינה מתייחסת למפתח. - Wallet unlock was cancelled. פתיחת הארנק בוטלה. - Private key for the entered address is not available. המפתח הפרטי עבור הכתובת שהוכנסה אינו זמין. - Message signing failed. החתימה על ההודעה נכשלה. - Message signed. ההודעה נחתמה. - The signature could not be decoded. לא ניתן לפענח את החתימה. - - Please check the signature and try again. אנא בדוק את החתימה ונסה שנית. - The signature did not match the message digest. החתימה לא תואמת את תקציר ההודעה. - Message verification failed. אימות ההודעה נכשל. - Message verified. ההודעה אומתה. @@ -2627,17 +2118,14 @@ Address: %4 SplashScreen - Dogecoin Core ליבת ביטקוין - The Dogecoin Core developers - [testnet] [רשת-בדיקה] @@ -2645,7 +2133,6 @@ Address: %4 TrafficGraphWidget - KB/s קילו בייט לשניה @@ -2653,179 +2140,138 @@ Address: %4 TransactionDesc - Open until %1 פתוח עד %1 - + conflicted + + + %1/offline %1/מנותק - %1/unconfirmed %1/ממתין לאישור - %1 confirmations %1 אישורים - Status מצב - , broadcast through %n node(s) , הופץ דרך צומת אחד, הופץ דרך %n צמתים - Date תאריך - Source מקור - Generated נוצר - - From מאת - - - To אל - - own address כתובת עצמית - label תוית - - - - - Credit זיכוי - matures in %n more block(s) מבשיל בעוד בלוק אחדמבשיל בעוד %n בלוקים - not accepted לא התקבל - - - - Debit חיוב - Transaction fee עמלת פעולה - Net amount כמות נקיה - - Message הודעה - Comment הערה - Transaction ID זיהוי פעולה - Merchant - + סוחר - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + מטבעות חדשים שנוצרו חייבים להבשיל במשך %1 בלוקים לפני שניתן לנצל אותם. כשבלוק זה נוצר הוא שודר ברשת על מנת שייכנס לשרשרת הבלוקים. במקרה והוא לא ייכנס לשרשרת, מצבו ישתנה ל"לא התקבל" ולא ניתן יהיה לנצלו. זה יכול לקרות מדי פעם אם במקרה צומת אחרת ייצרה בלוק בהבדל של שניות בודדות ממך. - Debug information מידע ניפוי - Transaction פעולה - Inputs קלטים - Amount כמות - true אמת - false שקר - , has not been successfully broadcast yet , טרם שודר בהצלחה - Open for %n more block(s) פתח למשך בלוק %n יותרפתח למשך %n בלוקים נוספים - unknown לא ידוע @@ -2833,12 +2279,10 @@ Address: %4 TransactionDescDialog - Transaction details פרטי הפעולה - This pane shows a detailed description of the transaction חלונית זו מציגה תיאור מפורט של הפעולה @@ -2846,118 +2290,102 @@ Address: %4 TransactionTableModel - Date תאריך - Type סוג - Address כתובת - Amount כמות - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) פתח למשך בלוק %n יותרפתח למשך %n בלוקים נוספים - Open until %1 פתוח עד %1 - - Offline (%1 confirmations) - לא מחובר (%1 אישורים) - - - - Unconfirmed (%1 of %2 confirmations) - ממתין לאישור (%1 מתוך %2 אישורים) - - - - Confirmed (%1 confirmations) מאושר (%1 אישורים) - This block was not received by any other nodes and will probably not be accepted! הבלוק הזה לא נקלט על ידי אף צומת אחר, וכנראה לא יתקבל! - Generated but not accepted נוצר אך לא התקבל - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with התקבל עם - Received from התקבל מאת - Sent to נשלח ל - Payment to yourself תשלום לעצמך - Mined נכרה - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. מצב הפעולה. השהה את הסמן מעל שדה זה כדי לראות את מספר האישורים. - Date and time that the transaction was received. התאריך והשעה בה הפעולה הזאת התקבלה. - Type of transaction. סוג הפעולה. - Destination address of transaction. כתובת היעד של הפעולה. - Amount removed from or added to balance. הכמות שהתווספה או הוסרה מהיתרה. @@ -2965,178 +2393,142 @@ Address: %4 TransactionView - - All הכל - Today היום - This week השבוע - This month החודש - Last month החודש שעבר - This year השנה - Range... טווח... - Received with התקבל עם - Sent to נשלח ל - To yourself לעצמך - Mined נכרה - Other אחר - Enter address or label to search הכנס כתובת או תוית לחפש - Min amount כמות מזערית - Copy address העתק כתובת - Copy label העתק תוית - Copy amount העתק כמות - Copy transaction ID העתק מזהה פעולה - Edit label ערוך תוית - Show transaction details הצג פרטי פעולה - Export Transaction History יצוא היסטוריית פעולות - Exporting Failed הייצוא נכשל - There was an error trying to save the transaction history to %1. - Exporting Successful הייצוא בוצע בהצלחה - The transaction history was successfully saved to %1. היסטוריית הפעולות נשמרה ל־%1 בהצלחה. - Comma separated file (*.csv) קובץ מופרד בפסיקים (*.csv) - Confirmed מאושר - Date תאריך - Type סוג - Label תוית - Address כתובת - Amount כמות - ID מזהה - Range: טווח: - to אל @@ -3144,7 +2536,6 @@ Address: %4 WalletFrame - No wallet has been loaded. לא נטען ארנק @@ -3152,7 +2543,6 @@ Address: %4 WalletModel - Send Coins שלח מטבעות @@ -3160,154 +2550,125 @@ Address: %4 WalletView - &Export &ייצא - Export the data in the current tab to a file יצוא הנתונים בטאב הנוכחי לקובץ - Backup Wallet גבה ארנק - Wallet Data (*.dat) נתוני ארנק (*.dat) - Backup Failed גיבוי נכשל - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful גיבוי הושלם בהצלחה - dogecoin-core + bitcoin-core - Usage: שימוש: - List commands רשימת פקודות - Get help for a command קבל עזרה עבור פקודה - Options: אפשרויות: - - Specify configuration file (default: dogecoin.conf) - ציין קובץ הגדרות (ברירת מחדל: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + ציין קובץ הגדרות (ברירת מחדל: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - ציין קובץ pid (ברירת מחדל: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + ציין קובץ pid (ברירת מחדל: bitcoind.pid) - Specify data directory ציין תיקיית נתונים - - Set database cache size in megabytes (default: 25) - קבע את גודל המטמון של מסד הנתונים במגהבייט (ברירת מחדל: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + האזן לחיבורים ב<פורט> (ברירת מחדל: 8333 או ברשת הבדיקה: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - האזן לחיבורים ב<פורט> (ברירת מחדל: 22556 או ברשת הבדיקה: 44556) - - - Maintain at most <n> connections to peers (default: 125) החזק לכל היותר <n> חיבורים לעמיתים (ברירת מחדל: 125) - Connect to a node to retrieve peer addresses, and disconnect התחבר לצומת כדי לדלות כתובות עמיתים, ואז התנתק - Specify your own public address ציין את הכתובת הפומבית שלך - Threshold for disconnecting misbehaving peers (default: 100) סף להתנתקות מעמיתים הנוהגים שלא כהלכה (ברירת מחדל: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) מספר שניות למנוע מעמיתים הנוהגים שלא כהלכה מלהתחבר מחדש (ברירת מחדל: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s אירעה שגיאה בעת הגדרת פורט RPC %u להאזנה ב-IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - האזן לחיבורי JSON-RPC ב- <port> (ברירת מחדל: 22555 או רשת בדיקה: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + האזן לחיבורי JSON-RPC ב- <port> (ברירת מחדל: 8332 או רשת בדיקה: 18332) - Accept command line and JSON-RPC commands קבל פקודות משורת הפקודה ו- JSON-RPC - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands רוץ ברקע כדימון וקבל פקודות - Use the test network השתמש ברשת הבדיקה - Accept connections from outside (default: 1 if no -proxy or -connect) קבל חיבורים מבחוץ (ברירת מחדל: 1 ללא -proxy או -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3318,7 +2679,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, עליך לקבוע סיסמת RPC בקובץ הקונפיגורציה: %s מומלץ להשתמש בסיסמא האקראית הבאה: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (אין צורך לזכור את הסיסמה) אסור ששם המשתמש והסיסמא יהיו זהים. @@ -3328,707 +2689,686 @@ 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 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]:port עבוד IPv6. - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - לא מסוגל להשיג נעילה על תיקיית הנתונים %s. כנראה שביטקוין כבר רץ. - - - - 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. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - + 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 %d) + + + 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 עקב הכמות, המורכבות, או השימוש בכספים שהתקבלו לאחרונה! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) בצע פקודה כאשר פעולת ארנק משתנה (%s ב cmd יוחלף ב TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + + + 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 Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin 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 המקורח נשמר כ - wallet.{timestamp}.bak ב - %s; אם המאזן או הפעולות שגויים עליך לשחזר גיבוי. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: - Attempt to recover private keys from a corrupt wallet.dat נסה לשחזר מפתחות פרטיים מקובץ wallet.dat מושחת. - Dogecoin Core Daemon - - Dogecoin Core RPC client version - - - - Block creation options: אפשרויות יצירת בלוק: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + Connect only to the specified node(s) התחבר רק לצמתים המצוינים - Connect through SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + התחבר ל JSON-RPC ב <port> (ברירת מחדל: 8332 או ברשת בדיקה: 18332) + + + Connection options: + הגדרות חיבור: - Corrupted block database detected התגלה מסד נתוני בלוקים לא תקין - + 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? האם תרצה כעט לבנות מחדש את מסד נתוני הבלוקים? - Error initializing block database שגיאה באתחול מסד נתוני הבלוקים - Error initializing wallet database environment %s! שגיאה באתחול סביבת מסד נתוני הארנקים %s! - Error loading block database שגיאה בטעינת מסד נתוני הבלוקים - Error opening block database שגיאה בטעינת מסד נתוני הבלוקים - Error: Disk space is low! שגיאה: מעט מקום פנוי בדיסק! - Error: Wallet locked, unable to create transaction! שגיאה: הארנק נעול, אין אפשרות ליצור פעולה! - 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: + + + Find peers using DNS lookup (default: 1 unless -connect) מצא עמיתים ע"י חיפוש DNS (ברירת מחדל: 1 ללא -connect) - + Force safe mode (default: 0) + + + Generate coins (default: 0) ייצר מטבעות (ברגיל: 0) - How many blocks to check at startup (default: 288, 0 = all) מספר הבלוקים לבדוק בעת אתחול (ברירת מחדל: 288, 0 = כולם) - - How thorough the block verification is (0-4, default: 3) - מידת היסודיות של אימות הבלוקים (0-4, ברירת מחדל: 3) - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? - + בלוק בראשית הינו שגוי או לא נמצא. ספריית מידע לא נכונה עבור הרשת? - Invalid -onion address: '%s' - + כתובת onion- שגויה: '%s' - Not enough file descriptors available. אין מספיק מידע על הקובץ - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files בנה מחדש את אינדק שרשרת הבלוקים מקבצי ה-blk000??.dat הנוכחיים. - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server - שליחת פקודה לשרת הביטקוין + Set database cache size in megabytes (%d to %d, default: %d) + - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) קבע את מספר תהליכוני לשירות קריאות RPC (ברירת מחדל: 4) - Specify wallet file (within data directory) + ציין קובץ ארנק (בתוך ספריית המידע) + + + Spend unconfirmed change when sending transactions (default: 1) - - Start Dogecoin Core server - הפעל ביטקוין סרוור - - - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): - + Usage (deprecated, use bitcoin-cli): + שימוש (מיושן, השתמש ב bitcoin-cli): - Verifying blocks... מאמת את שלמות מסד הנתונים... - Verifying wallet... מאמת את יושרת הארנק... - Wait for RPC server to start - Wallet %s resides outside data directory %s - + הארנק %s יושב מחוץ לספריית המידע %s - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex עליך לבנות מחדש את מסד הנתונים תוך שימוש ב- -reindex על מנת לשנות את -txindex - Imports blocks from external blk000??.dat file מייבא בלוקים מקובצי blk000??.dat חיצוניים - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + הרץ פקודה כאשר ההתראה הרלוונטית מתקבלת או כשאנחנו עדים לפיצול ארוך מאוד (%s בשורת הפקודה יוחלף ע"י ההודעה) + + Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - קבע את מספר תהליכוני אימות הסקריפטים (1-16, 0 = אוטומטי, ברירת מחדל: 0) - - - Information מידע - Invalid amount for -minrelaytxfee=<amount>: '%s' כמות לא תקינה עבור -paytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' כמות לא תקינה עבור -paytxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) תחזק אינדקס פעולות מלא (ברירת מחדל: 0) - 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) - 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) - + 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 server options: + הגדרות שרת RPC + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) אפשרויות SSL: (ראה את הויקי של ביטקוין עבור הוראות הגדרת SSL) - + Send command to Dogecoin Core + + + Send trace/debug info to console instead of debug.log file שלח מידע דיבאג ועקבה לקונסולה במקום לקובץ debug.log - Set minimum block size in bytes (default: 0) קבע את גודל הבלוק המינימלי בבתים (ברירת מחדל: 0) - + 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 transaction failed פעולה העברה נכשלה - Specify connection timeout in milliseconds (default: 5000) ציין הגבלת זמן לחיבור במילישניות (ברירת מחדל: 5000) - + Start Dogecoin Core Daemon + + + System error: שגיאת מערכת: - Transaction amount too small סכום העברה קטן מדי - Transaction amounts must be positive סכום ההעברה חייב להיות חיובי - Transaction too large סכום העברה גדול מדי - Use UPnP to map the listening port (default: 0) השתמש ב-UPnP כדי למפות את הפורט להאזנה (ברירת מחדל: 0) - Use UPnP to map the listening port (default: 1 when listening) השתמש ב-UPnP כדי למפות את הפורט להאזנה (ברירת מחדל: 1 בעת האזנה) - Username for JSON-RPC connections שם משתמש לחיבורי JSON-RPC - Warning אזהרה - Warning: This version is obsolete, upgrade required! אזהרה: הגרסה הזאת מיושנת, יש צורך בשדרוג! - + Zapping all transactions from wallet... + + + + on startup + בפתיחה + + version גרסה - wallet.dat corrupt, salvage failed קובץ wallet.dat מושחת, החילוץ נכשל - Password for JSON-RPC connections סיסמה לחיבורי JSON-RPC - Allow JSON-RPC connections from specified IP address אפשר חיבורי JSON-RPC מכתובת האינטרנט המצוינת - Send commands to node running on <ip> (default: 127.0.0.1) שלח פקודות לצומת ב-<ip> (ברירת מחדל: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) בצע פקודה זו כשהבלוק הטוב ביותר משתנה (%s בפקודה יוחלף בגיבוב הבלוק) - Upgrade wallet to latest format שדרג את הארנק לפורמט העדכני - Set key pool size to <n> (default: 100) קבע את גודל המאגר ל -<n> (ברירת מחדל: 100) - Rescan the block chain for missing wallet transactions סרוק מחדש את שרשרת הבלוקים למציאת פעולות חסרות בארנק - Use OpenSSL (https) for JSON-RPC connections השתמש ב-OpenSSL (https( עבור חיבורי JSON-RPC - Server certificate file (default: server.cert) קובץ תעודת שרת (ברירת מחדל: server.cert) - Server private key (default: server.pem) מפתח פרטי של השרת (ברירת מחדל: server.pem) - This help message הודעת העזרה הזו - Unable to bind to %s on this computer (bind returned error %d, %s) לא מסוגל לקשור ל-%s במחשב זה (הקשירה החזירה שגיאה %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect אפשר בדיקת DNS עבור -addnode, -seednode ו- -connect - Loading addresses... טוען כתובות... - Error loading wallet.dat: Wallet corrupted שגיאה בטעינת הקובץ wallet.dat: הארנק מושחת - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin שגיאה בטעינת הקובץ wallet.dat: הארנק דורש גרסה חדשה יותר של ביטקוין - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete יש לכתוב מחדש את הארנק: אתחל את ביטקוין לסיום - Error loading wallet.dat שגיאה בטעינת הקובץ wallet.dat - Invalid -proxy address: '%s' כתובת -proxy לא תקינה: '%s' - Unknown network specified in -onlynet: '%s' רשת לא ידועה צוינה ב- -onlynet: '%s' - Unknown -socks proxy version requested: %i התבקשה גרסת פרוקסי -socks לא ידועה: %i - Cannot resolve -bind address: '%s' לא מסוגל לפתור כתובת -bind: '%s' - Cannot resolve -externalip address: '%s' לא מסוגל לפתור כתובת -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' כמות לא תקינה עבור -paytxfee=<amount>: '%s' - Invalid amount כמות לא תקינה - Insufficient funds אין מספיק כספים - Loading block index... טוען את אינדקס הבלוקים... - Add a node to connect to and attempt to keep the connection open הוסף צומת להתחברות ונסה לשמור את החיבור פתוח - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - לא ניתן לקשור ל-%s במחשב זה. ביטקוין כנראה עדיין רץ. - - - Loading wallet... טוען ארנק... - Cannot downgrade wallet לא יכול להוריד דרגת הארנק - Cannot write default address לא יכול לכתוב את כתובת ברירת המחדל - Rescanning... סורק מחדש... - Done loading טעינה הושלמה - To use the %s option להשתמש באפשרות %s - Error שגיאה - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4037,4 +3377,4 @@ If the file does not exist, create it with owner-readable-only file permissions. אם הקובץ אינו קיים, צור אותו עם הרשאות קריאה לבעלים בלבד. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_hi_IN.ts b/src/qt/locale/bitcoin_hi_IN.ts index 62ff8cce0..3b6d1e1ac 100644 --- a/src/qt/locale/bitcoin_hi_IN.ts +++ b/src/qt/locale/bitcoin_hi_IN.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright कापीराइट - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label दो बार क्लिक करे पता या लेबल संपादन करने के लिए ! - Create a new address नया पता लिखिए ! - &New - Copy the currently selected address to the system clipboard चुनिन्दा पते को सिस्टम क्लिपबोर्ड पर कापी करे ! - &Copy - C&lose - &Copy Address &पता कॉपी करे - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete &मिटाए !! - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label &लेबल कॉपी करे - &Edit &एडिट - Export Address List - Comma separated file (*.csv) Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label लेबल - Address पता - (no label) (कोई लेबल नही !) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase पहचान शब्द/अक्षर डालिए ! - New passphrase नया पहचान शब्द/अक्षर डालिए ! - Repeat new passphrase दोबारा नया पहचान शब्द/अक्षर डालिए ! - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. नया पहचान शब्द/अक्षर वॉलेट मे डालिए ! <br/> कृपा करके पहचान शब्द में <br> 10 से ज़्यादा अक्षॉरों का इस्तेमाल करे </b>,या <b>आठ या उससे से ज़्यादा शब्दो का इस्तेमाल करे</b> ! - Encrypt wallet एनक्रिप्ट वॉलेट ! - This operation needs your wallet passphrase to unlock the wallet. वॉलेट खोलने के आपका वॉलेट पहचान शब्द्‌/अक्षर चाईए ! - Unlock wallet वॉलेट खोलिए - This operation needs your wallet passphrase to decrypt the wallet. वॉलेट डीक्रिप्ट( विकोड) करने के लिए आपका वॉलेट पहचान शब्द्‌/अक्षर चाईए ! - Decrypt wallet डीक्रिप्ट वॉलेट - Change passphrase पहचान शब्द/अक्षर बदलिये ! - Enter the old and new passphrase to the wallet. कृपा करके पुराना एवं नया पहचान शब्द/अक्षर वॉलेट में डालिए ! - Confirm wallet encryption वॉलेट एनक्रिपशन को प्रमाणित कीजिए ! - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted वॉलेट एनक्रिप्ट हो गया ! - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed वॉलेट एनक्रिप्ट नही हुआ! - Wallet encryption failed due to an internal error. Your wallet was not encrypted. वॉलेट एनक्रिपशन नाकाम हो गया इंटर्नल एरर की वजह से! आपका वॉलेट एनक्रीपत नही हुआ है! - - The supplied passphrases do not match. आपके द्वारा डाले गये पहचान शब्द/अक्षर मिलते नही है ! - Wallet unlock failed वॉलेट का लॉक नही खुला ! - - - The passphrase entered for the wallet decryption was incorrect. वॉलेट डीक्रिप्ट करने के लिए जो पहचान शब्द/अक्षर डाले गये है वो सही नही है! - Wallet decryption failed वॉलेट का डीक्रिप्ट-ष्ण असफल ! - Wallet passphrase was successfully changed. @@ -317,353 +255,287 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... नेटवर्क से समकालिक (मिल) रहा है ... - &Overview &विवरण - Node - Show general overview of wallet वॉलेट का सामानया विवरण दिखाए ! - &Transactions & लेन-देन - Browse transaction history देखिए पुराने लेन-देन के विवरण ! - E&xit बाहर जायें - Quit application अप्लिकेशन से बाहर निकलना ! - - Show information about Dogecoin Core + Show information about Dogecoin बीटकोइन के बारे में जानकारी ! - - About &Qt - Show information about Qt - &Options... &विकल्प - &Encrypt Wallet... - &Backup Wallet... &बैकप वॉलेट - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption पहचान शब्द/अक्षर जो वॉलेट एनक्रिपशन के लिए इस्तेमाल किया है उसे बदलिए! - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin बीटकोइन - Wallet वॉलेट - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &फाइल - &Settings &सेट्टिंग्स - &Help &मदद - Tabs toolbar टैबस टूलबार - - [testnet] [टेस्टनेट] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network %n सक्रिया संपर्क बीटकोइन नेटवर्क से%n सक्रिया संपर्क बीटकोइन नेटवर्क से - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) %n घंटा%n घंटे - %n day(s) %n दिन%n दिनो - %n week(s) %n हफ़्ता%n हफ्ते - + %1 and %2 + + + + %n year(s) + + + %1 behind %1 पीछे - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error भूल - Warning चेतावनी - Information जानकारी - Up to date नवीनतम - Catching up... - Sent transaction भेजी ट्रांजक्शन - Incoming transaction प्राप्त हुई ट्रांजक्शन - Date: %1 Amount: %2 Type: %3 @@ -675,25 +547,21 @@ Address: %4 पता:%4\n - Wallet is <b>encrypted</b> and currently <b>unlocked</b> वॉलेट एन्क्रिप्टेड है तथा अभी लॉक्ड नहीं है - Wallet is <b>encrypted</b> and currently <b>locked</b> वॉलेट एन्क्रिप्टेड है तथा अभी लॉक्ड है - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -701,291 +569,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: राशि : - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount राशि - Address पता - Date taareek - Confirmations - Confirmed पक्का - Priority - Copy address पता कॉपी करे - Copy label लेबल कॉपी करे - - Copy amount कॉपी राशि - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (कोई लेबल नही !) - change from %1 (%2) - (change) @@ -993,67 +800,54 @@ Address: %4 EditAddressDialog - Edit Address पता एडिट करना - &Label &लेबल - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &पता - New receiving address नया स्वीकार्य पता - New sending address नया भेजने वाला पता - Edit receiving address एडिट स्वीकार्य पता - Edit sending address एडिट भेजने वाला पता - The entered address "%1" is already in the address book. डाला गया पता "%1" एड्रेस बुक में पहले से ही मोजूद है| - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. वॉलेट को unlock नहीं किया जा सकता| - New key generation failed. नयी कुंजी का निर्माण असफल रहा| @@ -1061,27 +855,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1089,52 +878,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version संस्करण - Usage: खपत : - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1142,57 +925,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin बीटकोइन - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1200,27 +972,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1228,243 +995,206 @@ Address: %4 OptionsDialog - Options विकल्प - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &ओके - &Cancel &कैन्सल - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1472,69 +1202,54 @@ Address: %4 OverviewPage - Form फार्म - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - अपुष्ट : - - - Wallet वॉलेट - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> <b>हाल का लेन-देन</b> - - out of sync @@ -1542,93 +1257,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1636,41 +1328,45 @@ Address: %4 QObject - - Dogecoin बीटकोइन - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Dogecoin एड्रेस लिखें (उदाहरण: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1678,193 +1374,147 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A लागू नही - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1872,155 +1522,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: लेबल: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + लेबल कॉपी करे + + + Copy message + + + + Copy amount + कॉपी राशि + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address पता - Amount राशि - Label लेबल - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2028,285 +1660,225 @@ Address: %4 RecentRequestsTableModel - Date taareek - Label लेबल - Message - Amount राशि - (no label) (कोई लेबल नही !) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins सिक्के भेजें| - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: राशि : - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once एक साथ कई प्राप्तकर्ताओं को भेजें - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: बाकी रकम : - Confirm the send action भेजने की पुष्टि करें - S&end - Confirm send coins सिक्के भेजने की पुष्टि करें - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Dogecoin एड्रेस लिखें (उदाहरण: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount कॉपी राशि - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. भेजा गया अमाउंट शुन्य से अधिक होना चाहिए| - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (कोई लेबल नही !) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2314,116 +1886,85 @@ Address: %4 SendCoinsEntry - - - A&mount: अमाउंट: - Pay &To: प्राप्तकर्ता: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book आपकी एड्रेस बुक में इस एड्रेस के लिए एक लेबल लिखें - &Label: लेबल: - Choose previously used address - This is a normal payment. - Alt+A Alt-A - Paste address from clipboard Clipboard से एड्रेस paste करें - Alt+P Alt-P - - - Remove this entry - Message: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Dogecoin एड्रेस लिखें (उदाहरण: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2431,192 +1972,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt-A - Paste address from clipboard Clipboard से एड्रेस paste करें - Alt+P Alt-P - Enter the message you want to sign here - Signature हस्ताक्षर - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Dogecoin एड्रेस लिखें (उदाहरण: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2624,17 +2115,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2642,7 +2130,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2650,179 +2137,138 @@ Address: %4 TransactionDesc - Open until %1 खुला है जबतक %1 - + conflicted + + + %1/offline - %1/unconfirmed %1/अपुष्ट - %1 confirmations %1 पुष्टियाँ - Status - , broadcast through %n node(s) - Date taareek - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount राशि - true सही - false ग़लत - , has not been successfully broadcast yet , अभी तक सफलतापूर्वक प्रसारित नहीं किया गया है - Open for %n more block(s) - unknown अज्ञात @@ -2830,12 +2276,10 @@ Address: %4 TransactionDescDialog - Transaction details लेन-देन का विवरण - This pane shows a detailed description of the transaction ये खिड़की आपको लेन-देन का विस्तृत विवरण देगी ! @@ -2843,118 +2287,102 @@ Address: %4 TransactionTableModel - Date taareek - Type टाइप - Address पता - Amount राशि - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 खुला है जबतक %1 - - Offline (%1 confirmations) - ऑफलाइन ( %1 पक्का करना) - - - - Unconfirmed (%1 of %2 confirmations) - अपुष्ट ( %1 मे %2 पक्के ) - - - - Confirmed (%1 confirmations) पक्के ( %1 पक्का करना) - This block was not received by any other nodes and will probably not be accepted! यह ब्लॉक किसी भी और नोड को मिला नही है ! शायद यह ब्लॉक कोई भी नोड स्वीकारे गा नही ! - Generated but not accepted जेनरेट किया गया किंतु स्वीकारा नही गया ! - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with स्वीकारा गया - Received from स्वीकार्य ओर से - Sent to भेजा गया - Payment to yourself भेजा खुद को भुगतान - Mined माइंड - (n/a) (लागू नहीं) - Transaction status. Hover over this field to show number of confirmations. ट्रांसेक्शन स्तिथि| पुष्टियों की संख्या जानने के लिए इस जगह पर माउस लायें| - Date and time that the transaction was received. तारीख तथा समय जब ये ट्रांसेक्शन प्राप्त हुई थी| - Type of transaction. ट्रांसेक्शन का प्रकार| - Destination address of transaction. ट्रांसेक्शन की मंजिल का पता| - Amount removed from or added to balance. अमाउंट बैलेंस से निकला या जमा किया गया | @@ -2962,178 +2390,142 @@ Address: %4 TransactionView - - All सभी - Today आज - This week इस हफ्ते - This month इस महीने - Last month पिछले महीने - This year इस साल - Range... विस्तार... - Received with स्वीकार करना - Sent to भेजा गया - To yourself अपनेआप को - Mined माइंड - Other अन्य - Enter address or label to search ढूँदने के लिए कृपा करके पता या लेबल टाइप करे ! - Min amount लघुत्तम राशि - Copy address पता कॉपी करे - Copy label लेबल कॉपी करे - Copy amount कॉपी राशि - Copy transaction ID - Edit label एडिट लेबल - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Comma separated file (*.csv) - Confirmed पक्का - Date taareek - Type टाइप - Label लेबल - Address पता - Amount राशि - ID ID - Range: विस्तार: - to तक @@ -3141,7 +2533,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3149,7 +2540,6 @@ Address: %4 WalletModel - Send Coins @@ -3157,154 +2547,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet बैकप वॉलेट - Wallet Data (*.dat) वॉलेट डेटा (*.dat) - Backup Failed बैकप असफल - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful बैकप सफल - dogecoin-core + bitcoin-core - Usage: खपत : - List commands commands की लिस्ट बनाएं - Get help for a command किसी command के लिए मदद लें - Options: विकल्प: - - Specify configuration file (default: dogecoin.conf) - configuraion की फाइल का विवरण दें (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + configuraion की फाइल का विवरण दें (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - pid फाइल का विवरण दें (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + pid फाइल का विवरण दें (default: bitcoin.pid) - Specify data directory डेटा डायरेक्टरी बताएं - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands बैकग्राउंड में डेमॉन बन कर रन करे तथा कमांड्स स्वीकार करें - Use the test network टेस्ट नेटवर्क का इस्तेमाल करे - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3315,711 +2676,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - ब्लॉक्स जाँचे जा रहा है... - - - - Verifying wallet... - वॉलेट जाँचा जा रहा है... - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - जानकारी - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - चेतावनी - - - - Warning: This version is obsolete, upgrade required! - - - - - version - संस्करण - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - पता पुस्तक आ रही है... - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - राशि ग़लत है - - - - Insufficient funds - - - - - Loading block index... - ब्लॉक इंडेक्स आ रहा है... - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + ब्लॉक्स जाँचे जा रहा है... + + + Verifying wallet... + वॉलेट जाँचा जा रहा है... + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + जानकारी + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + चेतावनी + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + संस्करण + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + पता पुस्तक आ रही है... + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + राशि ग़लत है + + + Insufficient funds + + + + Loading block index... + ब्लॉक इंडेक्स आ रहा है... + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... वॉलेट आ रहा है... - Cannot downgrade wallet - Cannot write default address - Rescanning... रि-स्केनी-इंग... - Done loading लोड हो गया| - To use the %s option - Error भूल - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_hr.ts b/src/qt/locale/bitcoin_hr.ts index 7b2be7175..446cbb8bb 100644 --- a/src/qt/locale/bitcoin_hr.ts +++ b/src/qt/locale/bitcoin_hr.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core O Dogecoin Jezrgu - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright Autorsko pravo - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Dvostruki klik za uređivanje adrese ili oznake - Create a new address Dodajte novu adresu - &New - Copy the currently selected address to the system clipboard Kopiraj trenutno odabranu adresu u međuspremnik - &Copy - C&lose - &Copy Address &Kopirati adresu - Delete the currently selected address from the list - Export the data in the current tab to a file Izvoz podataka iz trenutnog taba u datoteku - &Export &Izvoz - &Delete &Brisanje - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label Kopirati &oznaku - &Edit &Izmjeniti - Export Address List - Comma separated file (*.csv) Datoteka vrijednosti odvojenih zarezom (*. csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Oznaka - Address Adresa - (no label) (bez oznake) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase Unesite lozinku - New passphrase Nova lozinka - Repeat new passphrase Ponovite novu lozinku - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Unesite novi lozinku za novčanik. <br/> Molimo Vas da koristite zaporku od <b>10 ili više slučajnih znakova,</b> ili <b>osam ili više riječi.</b> - Encrypt wallet Šifriranje novčanika - This operation needs your wallet passphrase to unlock the wallet. Ova operacija treba lozinku vašeg novčanika kako bi se novčanik otključao. - Unlock wallet Otključaj novčanik - This operation needs your wallet passphrase to decrypt the wallet. Ova operacija treba lozinku vašeg novčanika kako bi se novčanik dešifrirao. - Decrypt wallet Dešifriranje novčanika. - Change passphrase Promjena lozinke - Enter the old and new passphrase to the wallet. Unesite staru i novu lozinku za novčanik. - Confirm wallet encryption Potvrdi šifriranje novčanika - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Upozorenje: Ako šifrirate vaš novčanik i izgubite lozinku, <b>IZGUBIT ĆETE SVE SVOJE DOGECOINSE!</b> + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Upozorenje: Ako šifrirate vaš novčanik i izgubite lozinku, <b>IZGUBIT ĆETE SVE SVOJE DogecoinSE!</b> - Are you sure you wish to encrypt your wallet? Jeste li sigurni da želite šifrirati svoj novčanik? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! Upozorenje: Tipka Caps Lock je uključena! - - Wallet encrypted Novčanik šifriran - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin će se sada zatvoriti kako bi dovršio postupak šifriranja. Zapamtite da šifriranje vašeg novčanika ne može u potpunosti zaštititi vaše dogecoine od krađe preko zloćudnog softvera koji bi bio na vašem računalu. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin će se sada zatvoriti kako bi dovršio postupak šifriranja. Zapamtite da šifriranje vašeg novčanika ne može u potpunosti zaštititi vaše bitcoine od krađe preko zloćudnog softvera koji bi bio na vašem računalu. - - - - Wallet encryption failed Šifriranje novčanika nije uspjelo - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Šifriranje novčanika nije uspjelo zbog interne pogreške. Vaš novčanik nije šifriran. - - The supplied passphrases do not match. Priložene lozinke se ne podudaraju. - Wallet unlock failed Otključavanje novčanika nije uspjelo - - - The passphrase entered for the wallet decryption was incorrect. Lozinka za dešifriranje novčanika nije točna. - Wallet decryption failed Dešifriranje novčanika nije uspjelo - Wallet passphrase was successfully changed. Lozinka novčanika je uspješno promijenjena. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... &Potpišite poruku... - Synchronizing with network... Usklađivanje s mrežom ... - &Overview &Pregled - Node - Show general overview of wallet Prikaži opći pregled novčanika - &Transactions &Transakcije - Browse transaction history Pretraži povijest transakcija - E&xit &Izlaz - Quit application Izlazak iz programa - - Show information about Dogecoin Core + Show information about Dogecoin Prikaži informacije o Dogecoinu - - About &Qt Više o &Qt - Show information about Qt Prikaži informacije o Qt - &Options... &Postavke - &Encrypt Wallet... &Šifriraj novčanik... - &Backup Wallet... &Backup novčanika... - &Change Passphrase... &Promijena lozinke... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... Importiranje blokova sa diska... - Reindexing blocks on disk... Re-indeksiranje blokova na disku... - Send coins to a Dogecoin address - Slanje novca na dogecoin adresu + Slanje novca na bitcoin adresu - - Modify configuration options for Dogecoin Core - Promijeni postavke konfiguracije za dogecoin + Modify configuration options for Dogecoin + Promijeni postavke konfiguracije za bitcoin - Backup wallet to another location Napravite sigurnosnu kopiju novčanika na drugoj lokaciji - Change the passphrase used for wallet encryption Promijenite lozinku za šifriranje novčanika - &Debug window - Open debugging and diagnostic console - &Verify message... &Potvrdite poruku... - Dogecoin Dogecoin - Wallet Novčanik - &Send &Pošalji - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &Datoteka - &Settings &Konfiguracija - &Help &Pomoć - Tabs toolbar Traka kartica - - [testnet] [testnet] - Dogecoin Core Dogecoin Jezgra - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Dogecoin klijent - %n active connection(s) to Dogecoin network %n aktivna veza na Dogecoin mrežu%n aktivne veze na Dogecoin mrežu%n aktivnih veza na Dogecoin mrežu - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. Obrađeno %1 blokova povijesti transakcije. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error Greška - Warning Upozorenje - Information Informacija - Up to date Ažurno - Catching up... Ažuriranje... - Sent transaction Poslana transakcija - Incoming transaction Dolazna transakcija - Date: %1 Amount: %2 Type: %3 @@ -675,25 +547,21 @@ Adresa:%4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Novčanik je <b>šifriran</b> i trenutno <b>otključan</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Novčanik je <b>šifriran</b> i trenutno <b>zaključan</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -701,291 +569,230 @@ Adresa:%4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: Iznos: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Iznos - Address Adresa - Date Datum - Confirmations - Confirmed Potvrđeno - Priority - Copy address Kopirati adresu - Copy label Kopirati oznaku - - Copy amount Kopiraj iznos - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (bez oznake) - change from %1 (%2) - (change) @@ -993,67 +800,54 @@ Adresa:%4 EditAddressDialog - Edit Address Izmjeni adresu - &Label &Oznaka - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Adresa - New receiving address Nova adresa za primanje - New sending address Nova adresa za slanje - Edit receiving address Uredi adresu za primanje - Edit sending address Uredi adresu za slanje - The entered address "%1" is already in the address book. Upisana adresa "%1" je već u adresaru. - The entered address "%1" is not a valid Dogecoin address. - Upisana adresa "%1" nije valjana dogecoin adresa. + Upisana adresa "%1" nije valjana bitcoin adresa. - Could not unlock wallet. Ne mogu otključati novčanik. - New key generation failed. Stvaranje novog ključa nije uspjelo. @@ -1061,27 +855,22 @@ Adresa:%4 FreespaceChecker - A new data directory will be created. - name ime - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1089,52 +878,46 @@ Adresa:%4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Dogecoin Jezgra - version verzija - Usage: Upotreba: - command-line options - UI options UI postavke - Set language, for example "de_DE" (default: system locale) - Start minimized Pokreni minimiziran - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1142,57 +925,46 @@ Adresa:%4 Intro - Welcome Dobrodošli - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Error Pogreška - GB of free space available - (of %1GB needed) (od potrebnog %1GB) @@ -1200,27 +972,22 @@ Adresa:%4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1228,243 +995,206 @@ Adresa:%4 OptionsDialog - Options Postavke - &Main &Glavno - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee Plati &naknadu za transakciju - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Automatski pokreni Dogecoin kad se uključi računalo - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Pokreni Dogecoin kod pokretanja sustava - Size of &database cache - - Set database cache size in megabytes (default: 25) - Postavi cache za bazu podataka u MB (zadano:25) - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network &Mreža - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Automatski otvori port Dogecoin klijenta na ruteru. To radi samo ako ruter podržava UPnP i ako je omogućen. - Map port using &UPnP Mapiraj port koristeći &UPnP - Proxy &IP: Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) Port od proxy-a (npr. 9050) - SOCKS &Version: SOCKS &Verzija: - SOCKS version of the proxy (e.g. 5) - &Window &Prozor - Show only a tray icon after minimizing the window. Prikaži samo ikonu u sistemskoj traci nakon minimiziranja prozora - &Minimize to the tray instead of the taskbar &Minimiziraj u sistemsku traku umjesto u traku programa - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimizirati umjesto izaći iz aplikacije kada je prozor zatvoren. Kada je ova opcija omogućena, aplikacija će biti zatvorena tek nakon odabira Izlaz u izborniku. - M&inimize on close M&inimiziraj kod zatvaranja - &Display &Prikaz - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: &Jedinica za prikazivanje iznosa: - Choose the default subdivision unit to show in the interface and when sending coins. - Izaberite željeni najmanji dio dogecoina koji će biti prikazan u sučelju i koji će se koristiti za plaćanje. + Izaberite željeni najmanji dio bitcoina koji će biti prikazan u sučelju i koji će se koristiti za plaćanje. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list &Prikaži adrese u popisu transakcija - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &U redu - &Cancel &Odustani - default standardne vrijednosti - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1472,69 +1202,54 @@ Adresa:%4 OverviewPage - Form Oblik - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - Nepotvrđene: - - - Wallet Novčanik - - Confirmed: - Potvrđeno: + Available: + - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: Ukupno: - Your current total balance - <b>Recent transactions</b> <b>Nedavne transakcije</b> - - out of sync @@ -1542,93 +1257,70 @@ Adresa:%4 PaymentServer - - URI handling URI upravljanje - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1636,41 +1328,45 @@ Adresa:%4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Unesite Dogecoin adresu (npr. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code Spremi QR kod - PNG Image (*.png) @@ -1678,192 +1374,146 @@ Adresa:%4 RPCConsole - Client name Ime klijenta - - - - - - - - - - - N/A N/A - Client version Verzija klijenta - &Information &Informacija - Debug window - General - Using OpenSSL version Koristim OpenSSL verziju - Startup time - Network Mreža - Name Ime - Number of connections Broj konekcija - Block chain Lanac blokova - Current number of blocks Trenutni broj blokova - Estimated total blocks Procjenjeni ukupni broj blokova - Last block time Posljednje vrijeme bloka - &Open &Otvori - &Console &Konzola - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console Očisti konzolu - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Dobrodošli u Dogecoin RPC konzolu. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1871,155 +1521,137 @@ Adresa:%4 ReceiveCoinsDialog - &Amount: - &Label: &Oznaka: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show Pokaži - Remove the selected entries from the list - Remove + + Copy label + Kopirati oznaku + + + Copy message + + + + Copy amount + Kopiraj iznos + ReceiveRequestDialog - QR Code QR kôd - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address Adresa - Amount Iznos - Label Oznaka - Message Poruka - Resulting URI too long, try to reduce the text for label / message. Rezultirajući URI je predug, probajte umanjiti tekst za naslov / poruku. - Error encoding URI into QR Code. @@ -2027,285 +1659,225 @@ Adresa:%4 RecentRequestsTableModel - Date Datum - Label Oznaka - Message Poruka - Amount Iznos - (no label) (bez oznake) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins Slanje novca - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: Iznos: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Pošalji k nekoliko primatelja odjednom - Add &Recipient &Dodaj primatelja - Clear all fields of the form. - Clear &All Obriši &sve - Balance: Stanje: - Confirm the send action Potvrdi akciju slanja - S&end &Pošalji - Confirm send coins Potvrdi slanje novca - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Unesite Dogecoin adresu (npr. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount Kopiraj iznos - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or ili - The recipient address is not valid, please recheck. Adresa primatelja je nevaljala, molimo provjerite je ponovo. - The amount to pay must be larger than 0. Iznos mora biti veći od 0. - The amount exceeds your balance. Iznos je veći od stanja računa. - The total exceeds your balance when the %1 transaction fee is included. Iznos je veći od stanja računa kad se doda naknada za transakcije od %1. - Duplicate address found, can only send to each address once per send operation. Pronašli smo adresu koja se ponavlja. U svakom plaćanju program može svaku adresu koristiti samo jedanput. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (bez oznake) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2313,116 +1885,85 @@ Adresa:%4 SendCoinsEntry - - - A&mount: &Iznos: - Pay &To: &Primatelj plaćanja: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Unesite oznaku za ovu adresu kako bi ju dodali u vaš adresar - &Label: &Oznaka: - Choose previously used address - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard Zalijepi adresu iz međuspremnika - Alt+P Alt+P - - - Remove this entry - Message: Poruka: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: Primatelj plaćanja: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Unesite Dogecoin adresu (npr. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2430,192 +1971,142 @@ Adresa:%4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message &Potpišite poruku - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Možete potpisati poruke sa svojom adresom kako bi dokazali da ih posjedujete. Budite oprezni da ne potpisujete ništa mutno, jer bi vas phishing napadi mogli na prevaru natjerati da prepišete svoj identitet njima. Potpisujte samo detaljno objašnjene izjave sa kojima se slažete. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Unesite Dogecoin adresu (npr. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard Zalijepi adresu iz međuspremnika - Alt+P Alt+P - Enter the message you want to sign here Upišite poruku koju želite potpisati ovdje - Signature Potpis - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All Obriši &sve - &Verify Message &Potvrdite poruku - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Unesite Dogecoin adresu (npr. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Unesite Dogecoin adresu (npr. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. Otključavanje novčanika je otkazano. - Private key for the entered address is not available. - Message signing failed. - Message signed. Poruka je potpisana. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2623,17 +2114,14 @@ Adresa:%4 SplashScreen - Dogecoin Core Dogecoin Jezgra - The Dogecoin Core developers - [testnet] [testnet] @@ -2641,7 +2129,6 @@ Adresa:%4 TrafficGraphWidget - KB/s @@ -2649,179 +2136,138 @@ Adresa:%4 TransactionDesc - Open until %1 Otvoren do %1 - + conflicted + + + %1/offline %1 nije dostupan - %1/unconfirmed %1/nepotvrđeno - %1 confirmations %1 potvrda - Status Status - , broadcast through %n node(s) - Date Datum - Source Izvor - Generated Generiran - - From Od - - - To Za - - own address vlastita adresa - label oznaka - - - - - Credit Uplaćeno - matures in %n more block(s) - not accepted Nije prihvaćeno - - - - Debit Zaduženje - Transaction fee Naknada za transakciju - Net amount Neto iznos - - Message Poruka - Comment Komentar - Transaction ID ID transakcije - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction Transakcija - Inputs Unosi - Amount Iznos - true - false - , has not been successfully broadcast yet , još nije bio uspješno emitiran - Open for %n more block(s) - unknown nepoznato @@ -2829,12 +2275,10 @@ Adresa:%4 TransactionDescDialog - Transaction details Detalji transakcije - This pane shows a detailed description of the transaction Ova panela prikazuje detaljni opis transakcije @@ -2842,118 +2286,102 @@ Adresa:%4 TransactionTableModel - Date Datum - Type Tip - Address Adresa - Amount Iznos - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 Otvoren do %1 - - Offline (%1 confirmations) - Nije na mreži (%1 potvrda) - - - - Unconfirmed (%1 of %2 confirmations) - Nepotvrđen (%1 od %2 potvrda) - - - - Confirmed (%1 confirmations) Potvrđen (%1 potvrda) - This block was not received by any other nodes and will probably not be accepted! Generirano - Upozorenje: ovaj blok nije bio primljen od strane bilo kojeg drugog noda i vjerojatno neće biti prihvaćen! - Generated but not accepted Generirano, ali nije prihvaćeno - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Primljeno s - Received from Primljeno od - Sent to Poslano za - Payment to yourself Plaćanje samom sebi - Mined Rudareno - (n/a) (n/d) - Transaction status. Hover over this field to show number of confirmations. Status transakcije - Date and time that the transaction was received. Datum i vrijeme kad je transakcija primljena - Type of transaction. Vrsta transakcije. - Destination address of transaction. Odredište transakcije - Amount removed from or added to balance. Iznos odbijen od ili dodan k saldu. @@ -2961,178 +2389,142 @@ Adresa:%4 TransactionView - - All Sve - Today Danas - This week Ovaj tjedan - This month Ovaj mjesec - Last month Prošli mjesec - This year Ove godine - Range... Raspon... - Received with Primljeno s - Sent to Poslano za - To yourself Tebi - Mined Rudareno - Other Ostalo - Enter address or label to search Unesite adresu ili oznaku za pretraživanje - Min amount Min iznos - Copy address Kopirati adresu - Copy label Kopirati oznaku - Copy amount Kopiraj iznos - Copy transaction ID - Edit label Izmjeniti oznaku - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Datoteka podataka odvojenih zarezima (*.csv) - Confirmed Potvrđeno - Date Datum - Type Tip - Label Oznaka - Address Adresa - Amount Iznos - ID ID - Range: Raspon: - to za @@ -3140,7 +2532,6 @@ Adresa:%4 WalletFrame - No wallet has been loaded. @@ -3148,7 +2539,6 @@ Adresa:%4 WalletModel - Send Coins Slanje novca @@ -3156,154 +2546,125 @@ Adresa:%4 WalletView - &Export &Izvoz - Export the data in the current tab to a file Izvoz podataka iz trenutnog taba u datoteku - Backup Wallet - Wallet Data (*.dat) Podaci novčanika (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: Upotreba: - List commands Prikaži komande - Get help for a command Potraži pomoć za komandu - Options: Postavke: - - Specify configuration file (default: dogecoin.conf) - Odredi konfiguracijsku datoteku (ugrađeni izbor: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Odredi konfiguracijsku datoteku (ugrađeni izbor: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Odredi proces ID datoteku (ugrađeni izbor: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Odredi proces ID datoteku (ugrađeni izbor: bitcoin.pid) - Specify data directory Odredi direktorij za datoteke - - Set database cache size in megabytes (default: 25) - Postavi cache za bazu podataka u MB (zadano:25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Slušaj na <port>u (default: 8333 ili testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Slušaj na <port>u (default: 22556 ili testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Održavaj najviše <n> veza sa članovima (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) Prag za odspajanje članova koji se čudno ponašaju (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Broj sekundi koliko se članovima koji se čudno ponašaju neće dopustiti da se opet spoje (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Prihvaćaj JSON-RPC povezivanje na portu broj <port> (ugrađeni izbor: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Prihvaćaj JSON-RPC povezivanje na portu broj <port> (ugrađeni izbor: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands Prihvati komande iz tekst moda i JSON-RPC - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Izvršavaj u pozadini kao uslužnik i prihvaćaj komande - Use the test network Koristi test mrežu - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3314,711 +2675,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + + + 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. Upozorenje: -paytxfee je podešen na preveliki iznos. To je iznos koji ćete platiti za obradu transakcije. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Upozorenje: Molimo provjerite jesu li datum i vrijeme na vašem računalu točni. Ako vaš sat ide krivo, Dogecoin neće raditi ispravno. - 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. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: - Attempt to recover private keys from a corrupt wallet.dat - Dogecoin Core Daemon - - Dogecoin Core RPC client version - - - - Block creation options: Opcije za kreiranje bloka: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + Connect only to the specified node(s) Poveži se samo sa određenim nodom - Connect through SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: - Corrupted block database detected - + 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? - Error initializing block database - Error initializing wallet database environment %s! - Error loading block database - Error opening block database - Error: Disk space is low! Pogreška: Nema prostora na disku! - Error: Wallet locked, unable to create transaction! - Error: system error: Pogreška: sistemska pogreška: - 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 Naknada po kB dodana transakciji koju šaljete - + Fees smaller than this are considered zero fee (for relaying) (default: + + + Find peers using DNS lookup (default: 1 unless -connect) - + Force safe mode (default: 0) + + + Generate coins (default: 0) - How many blocks to check at startup (default: 288, 0 = all) - - How thorough the block verification is (0-4, default: 3) - - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? - Invalid -onion address: '%s' - Not enough file descriptors available. - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server + Set database cache size in megabytes (%d to %d, default: %d) - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) - Specify wallet file (within data directory) - - Start Dogecoin Core server + Spend unconfirmed change when sending transactions (default: 1) - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): + Usage (deprecated, use bitcoin-cli): - Verifying blocks... - Verifying wallet... - Wait for RPC server to start - Wallet %s resides outside data directory %s - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex - Imports blocks from external blk000??.dat file Importiraj blokove sa vanjskog blk000??.dat fajla - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Information Informacija - Invalid amount for -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - Only accept block chain matching built-in checkpoints (default: 1) Prihvati samo lance blokova koji se podudaraju sa ugrađenim checkpoint-ovima (default: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL postavke: (za detalje o podešavanju SSL opcija vidi Bitcoin Wiki) - + Send command to Dogecoin Core + + + Send trace/debug info to console instead of debug.log file Šalji trace/debug informacije na konzolu umjesto u debug.log datoteku - Set minimum block size in bytes (default: 0) Podesite minimalnu veličinu bloka u bajtovima (default: 0) - + 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 transaction failed - Specify connection timeout in milliseconds (default: 5000) Odredi vremenski prozor za spajanje na mrežu u milisekundama (ugrađeni izbor: 5000) - + Start Dogecoin Core Daemon + + + System error: Pogreška sistema: - Transaction amount too small - Transaction amounts must be positive - Transaction too large - Use UPnP to map the listening port (default: 0) Pokušaj koristiti UPnP da otvoriš port za uslugu (default: 0) - Use UPnP to map the listening port (default: 1 when listening) Pokušaj koristiti UPnP da otvoriš port za uslugu (default: 1 when listening) - Username for JSON-RPC connections Korisničko ime za JSON-RPC veze - Warning Upozorenje - Warning: This version is obsolete, upgrade required! - + Zapping all transactions from wallet... + + + + on startup + + + version verzija - wallet.dat corrupt, salvage failed - Password for JSON-RPC connections Lozinka za JSON-RPC veze - Allow JSON-RPC connections from specified IP address Dozvoli JSON-RPC povezivanje s određene IP adrese - Send commands to node running on <ip> (default: 127.0.0.1) Pošalji komande nodu na adresi <ip> (ugrađeni izbor: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) Izvršite naredbu kada se najbolji blok promjeni (%s u cmd je zamjenjen sa block hash) - Upgrade wallet to latest format Nadogradite novčanik u posljednji format. - Set key pool size to <n> (default: 100) Podesi memorijski prostor za ključeve na <n> (ugrađeni izbor: 100) - Rescan the block chain for missing wallet transactions Ponovno pretraži lanac blokova za transakcije koje nedostaju - Use OpenSSL (https) for JSON-RPC connections Koristi OpenSSL (https) za JSON-RPC povezivanje - Server certificate file (default: server.cert) Uslužnikov SSL certifikat (ugrađeni izbor: server.cert) - Server private key (default: server.pem) Uslužnikov privatni ključ (ugrađeni izbor: server.pem) - This help message Ova poruka za pomoć - Unable to bind to %s on this computer (bind returned error %d, %s) Program ne može koristiti %s na ovom računalu (bind returned error %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Dozvoli DNS upite za dodavanje nodova i povezivanje - Loading addresses... Učitavanje adresa... - Error loading wallet.dat: Wallet corrupted Greška kod učitavanja wallet.dat: Novčanik pokvaren - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Greška kod učitavanja wallet.dat: Novčanik zahtjeva noviju verziju Dogecoina - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Novčanik je trebao prepravak: ponovo pokrenite Dogecoin - Error loading wallet.dat Greška kod učitavanja wallet.dat - Invalid -proxy address: '%s' Nevaljala -proxy adresa: '%s' - Unknown network specified in -onlynet: '%s' - Unknown -socks proxy version requested: %i - Cannot resolve -bind address: '%s' - Cannot resolve -externalip address: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Nevaljali iznos za opciju -paytxfee=<amount>: '%s' - Invalid amount Nevaljali iznos za opciju - Insufficient funds Nedovoljna sredstva - Loading block index... Učitavanje indeksa blokova... - Add a node to connect to and attempt to keep the connection open Unesite nod s kojim se želite spojiti and attempt to keep the connection open - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Program ne može koristiti %s na ovom računalu. Dogecoin program je vjerojatno već pokrenut. - - - Loading wallet... Učitavanje novčanika... - Cannot downgrade wallet Nije moguće novčanik vratiti na prijašnju verziju. - Cannot write default address Nije moguće upisati zadanu adresu. - Rescanning... Rescaniranje - Done loading Učitavanje gotovo - To use the %s option - Error Greška - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitcoin_hu.ts index 055651daf..e46906014 100644 --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitcoin_hu.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - A Dogecoinról + - <b>Dogecoin Core</b> version - <b>Dogecoin</b> verzió + - This is experimental software. @@ -26,153 +23,128 @@ MIT/X11 szoftverlicenc alatt kiadva, lásd a mellékelt fájlt COPYING vagy http Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (http://www.openssl.org/) és kriptográfiai szoftvertben való felhasználásra, írta Eric Young (eay@cryptsoft.com) és UPnP szoftver, írta Thomas Bernard. - Copyright + Copyright + + + The Dogecoin Core developers - - The Dogecoin Core developers + (%1-bit) AddressBookPage - Double-click to edit address or label Dupla-kattintás a cím vagy a címke szerkesztéséhez - Create a new address Új cím létrehozása - &New - Copy the currently selected address to the system clipboard A kiválasztott cím másolása a vágólapra - &Copy - C&lose - &Copy Address &Cím másolása - Delete the currently selected address from the list - Export the data in the current tab to a file Jelenlegi nézet exportálása fájlba - &Export &Exportálás... - &Delete &Törlés - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label Címke &másolása - &Edit Sz&erkesztés - Export Address List - Címjegyzék Adatainak Exportálása + - Comma separated file (*.csv) Vesszővel elválasztott fájl (*. csv) - Exporting Failed - Hiba exportálás közben + - There was an error trying to save the address list to %1. - %1 nevű fájl nem írható. + AddressTableModel - Label Címke - Address Cím - (no label) (nincs címke) @@ -180,140 +152,106 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt AskPassphraseDialog - Passphrase Dialog Kulcsszó párbeszédablak - Enter passphrase Add meg a jelszót - New passphrase Új jelszó - Repeat new passphrase Új jelszó újra - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Írd be az új jelszót a tárcához.<br/>Használj legalább 10<br/>véletlenszerű karaktert</b> vagy <b>legalább nyolc szót</b>. - Encrypt wallet Tárca kódolása - This operation needs your wallet passphrase to unlock the wallet. A tárcád megnyitásához a műveletnek szüksége van a tárcád jelszavára. - Unlock wallet Tárca megnyitása - This operation needs your wallet passphrase to decrypt the wallet. A tárcád dekódolásához a műveletnek szüksége van a tárcád jelszavára. - Decrypt wallet Tárca dekódolása - Change passphrase Jelszó megváltoztatása - Enter the old and new passphrase to the wallet. Írd be a tárca régi és új jelszavát. - Confirm wallet encryption Biztosan kódolni akarod a tárcát? - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Figyelem: Ha kódolod a tárcát, és elveszíted a jelszavad, akkor <b>AZ ÖSSZES DOGECOINODAT IS EL FOGOD VESZÍTENI!</b> + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Figyelem: Ha kódolod a tárcát, és elveszíted a jelszavad, akkor <b>AZ ÖSSZES DogecoinODAT IS EL FOGOD VESZÍTENI!</b> - Are you sure you wish to encrypt your wallet? Biztosan kódolni akarod a tárcát? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. FONTOS: A pénztárca-fájl korábbi mentéseit ezzel az új, titkosított pénztárca-fájllal kell helyettesíteni. Biztonsági okokból a pénztárca-fájl korábbi titkosítás nélküli mentései haszontalanná válnak amint elkezdi használni az új, titkosított pénztárcát. - - Warning: The Caps Lock key is on! - - Wallet encrypted Tárca kódolva - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin Core will close now to finish the encryption process. Ne feledd, hogy a tárca titkosítása sem nyújt teljes védelmet az adathalász programok fertőzésével szemben. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Ne feledd, hogy a tárca titkosítása sem nyújt teljes védelmet az adathalász programok fertőzésével szemben. - - - - Wallet encryption failed Tárca kódolása sikertelen. - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Tárca kódolása belső hiba miatt sikertelen. A tárcád nem lett kódolva. - - The supplied passphrases do not match. A megadott jelszavak nem egyeznek. - Wallet unlock failed Tárca megnyitása sikertelen - - - The passphrase entered for the wallet decryption was incorrect. Hibás jelszó. - Wallet decryption failed Dekódolás sikertelen. - Wallet passphrase was successfully changed. Jelszó megváltoztatva. @@ -321,352 +259,286 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt BitcoinGUI - Sign &message... Üzenet aláírása... - Synchronizing with network... Szinkronizálás a hálózattal... - &Overview &Áttekintés - Node - Show general overview of wallet Tárca általános áttekintése - &Transactions &Tranzakciók - Browse transaction history Tranzakciótörténet megtekintése - E&xit &Kilépés - Quit application Kilépés - - Show information about Dogecoin Core + Show information about Dogecoin Információk a Dogecoinról - - About &Qt A &Qt-ról - Show information about Qt Információk a Qt ról - &Options... &Opciók... - &Encrypt Wallet... Tárca &kódolása... - &Backup Wallet... &Bisztonsági másolat készítése a Tárcáról - &Change Passphrase... Jelszó &megváltoztatása... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... A blokkok importálása lemezről... - Reindexing blocks on disk... A blokkok lemezen történő ujraindexelése... - Send coins to a Dogecoin address Érmék küldése megadott címre - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Dogecoin konfigurációs opciók - Backup wallet to another location Biztonsági másolat készítése a Tárcáról egy másik helyre - Change the passphrase used for wallet encryption Tárcakódoló jelszó megváltoztatása - &Debug window &Debug ablak - Open debugging and diagnostic console Hibakereső és diagnosztikai konzol megnyitása - &Verify message... Üzenet &valódiságának ellenőrzése - Dogecoin Dogecoin - Wallet Tárca - &Send &Küldés - &Receive &Fogadás - - &Show / Hide &Mutat / Elrejt - Show or hide the main Window - Encrypt the private keys that belong to your wallet A pénztárcájához tartozó privát kulcsok titkosítása - Sign messages with your Dogecoin addresses to prove you own them Üzenet aláírása a Dogecoin címmel, amivel bizonyítja, hogy a cím az ön tulajdona. - Verify messages to ensure they were signed with specified Dogecoin addresses Annak ellenőrzése, hogy az üzenetek valóban a megjelölt Dogecoin címekkel vannak-e alaírva - &File &Fájl - &Settings &Beállítások - &Help &Súgó - Tabs toolbar Fül eszköztár - - [testnet] [teszthálózat] - Dogecoin Core Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Dogecoin kliens - %n active connection(s) to Dogecoin network %n aktív kapcsolat a Dogecoin-hálózattal%n aktív kapcsolat a Dogecoin-hálózattal - No block source available... Blokk forrása ismeretlen... - Processed %1 of %2 (estimated) blocks of transaction history. %1 blokk feldolgozva a tranzakciótörténet %2 (becsült) blokkjából - Processed %1 blocks of transaction history. A tranzakció-történet %1 blokkja feldolgozva. - %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 + + + + %n year(s) + + + %1 behind %1 lemaradá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. - Error Hiba - Warning Figyelem - Information Információ - Up to date Naprakész - Catching up... Frissítés... - Sent transaction Tranzakció elküldve. - Incoming transaction Beérkező tranzakció - Date: %1 Amount: %2 Type: %3 @@ -679,25 +551,21 @@ 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>locked</b> Tárca <b>kódolva</b> és jelenleg <b>zárva</b>. - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert Hálózati figyelmeztetés @@ -705,291 +573,230 @@ Cím: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: Összeg: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Összeg - Address Cím - Date Dátum - Confirmations - Confirmed Megerősítve - Priority - Copy address Cím másolása - Copy label Címke másolása - - Copy amount Összeg másolása - Copy transaction ID Tranzakcióazonosító másolása - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (nincs címke) - change from %1 (%2) - (change) @@ -997,67 +804,54 @@ Cím: %4 EditAddressDialog - Edit Address Cím szerkesztése - &Label Cím&ke - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Cím - New receiving address Új fogadó cím - New sending address Új küldő cím - Edit receiving address Fogadó cím szerkesztése - Edit sending address Küldő cím szerkesztése - The entered address "%1" is already in the address book. A megadott "%1" cím már szerepel a címjegyzékben. - The entered address "%1" is not a valid Dogecoin address. A megadott "%1" cím nem egy érvényes Dogecoin-cím. - Could not unlock wallet. Tárca feloldása sikertelen - New key generation failed. Új kulcs generálása sikertelen @@ -1065,27 +859,22 @@ Cím: %4 FreespaceChecker - A new data directory will be created. - name Név - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1093,53 +882,47 @@ Cím: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Dogecoin Core - version verzió - Usage: Használat: - command-line options parancssoros opciók - UI options UI opciók - Set language, for example "de_DE" (default: system locale) Nyelvbeállítás, például "de_DE" (alapértelmezett: rendszer nyelve) - Start minimized Indítás lekicsinyítve - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Indítóképernyő mutatása induláskor (alapértelmezett: 1) - Choose data directory on startup (default: 0) @@ -1147,57 +930,46 @@ Cím: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Error Hiba - GB of free space available - (of %1GB needed) @@ -1205,27 +977,22 @@ Cím: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1233,243 +1000,206 @@ Cím: %4 OptionsDialog - Options Opciók - &Main &Fő - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Opcionális, kB-onkénti tranzakciós díj a tranzakcióid minél gyorsabb feldolgozásának elősegítésére. A legtöbb tranzakció 1 kB-os. - Pay transaction &fee Tranzakciós &díj fizetése - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Induljon el a Dogecoin a számítógép bekapcsolásakor - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Induljon el a számítógép bekapcsolásakor - Size of &database cache - - Set database cache size in megabytes (default: 25) - Az adatbázis gyorsítótár mérete megabájtban (alapértelmezés: 25) - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Szkriptellenőrzési szálak számának beállítása (maximum 16, 0 = automatikus, <0 = szabadon hagyott magok száma, alapértelmezett: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. Minden kliensbeállítás alapértelmezettre állítása. - &Reset Options Beállítások tö&rlése - &Network &Hálózat - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. A Dogecoin-kliens portjának automatikus megnyitása a routeren. Ez csak akkor működik, ha a routered támogatja az UPnP-t és az engedélyezve is van rajta. - Map port using &UPnP &UPnP port-feltérképezés - Proxy &IP: Proxy &IP: - &Port: &Port: - Port of the proxy (e.g. 9050) Proxy portja (pl.: 9050) - SOCKS &Version: SOCKS &Verzió: - SOCKS version of the proxy (e.g. 5) A proxy SOCKS verziója (pl. 5) - &Window &Ablak - Show only a tray icon after minimizing the window. Kicsinyítés után csak eszköztár-ikont mutass - &Minimize to the tray instead of the taskbar &Kicsinyítés a tálcára az eszköztár helyett - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Az alkalmazásból való kilépés helyett az eszköztárba kicsinyíti az alkalmazást az ablak bezárásakor. Ez esetben az alkalmazás csak a Kilépés menüponttal zárható be. - M&inimize on close K&icsinyítés záráskor - &Display &Megjelenítés - User Interface &language: Felhasználófelület nye&lve: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Itt beállíthatod a felhasználófelület nyelvét. Ez a beállítás a Dogecoin ujraindítása után lép érvénybe. - &Unit to show amounts in: &Mértékegység: - Choose the default subdivision unit to show in the interface and when sending coins. Válaszd ki az interfészen és érmék küldésekor megjelenítendő alapértelmezett alegységet. - Whether to show Dogecoin addresses in the transaction list or not. Mutassa-e a Dogecoin címeket a tranzakciólistában. - &Display addresses in transaction list &Címek megjelenítése a tranzakciólistában - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &OK - &Cancel Megszakítás - default alapértelmezett - none - Confirm options reset Beállítások törlésének jóváhagyása. - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. A megadott proxy cím nem érvényes. @@ -1477,69 +1207,54 @@ Cím: %4 OverviewPage - Form Űrlap - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. A kijelzett információ lehet, hogy elavult. A pénztárcája automatikusan szinkronizálja magát a Dogecoin hálózattal miután a kapcsolat létrejön, de ez e folyamat még nem fejeződött be. - - Unconfirmed: - Megerősítetlen: - - - Wallet Tárca - - Confirmed: - Megerősítve: + Available: + - Your current spendable balance Jelenlegi egyenleg - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Még megerősítésre váró, a jelenlegi egyenlegbe be nem számított tranzakciók - Immature: Éretlen: - Mined balance that has not yet matured Bányászott egyenleg amely még nem érett be. - Total: Összesen: - Your current total balance Aktuális egyenleged - <b>Recent transactions</b> <b>Legutóbbi tranzakciók</b> - - out of sync Nincs szinkronban. @@ -1547,93 +1262,70 @@ Cím: %4 PaymentServer - - URI handling URI kezelés - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler - A dogecoint nem lehet elindítani: click-to-pay handler + Cannot start bitcoin: click-to-pay handler + A bitcoint nem lehet elindítani: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1641,41 +1333,45 @@ Cím: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Adj meg egy Dogecoin-címet (pl.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM ) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code QR kód mentése - PNG Image (*.png) @@ -1683,192 +1379,146 @@ Cím: %4 RPCConsole - Client name Kliens néve - - - - - - - - - - - N/A Nem elérhető - Client version Kliens verzió - &Information &Információ - Debug window - General - Using OpenSSL version Használt OpenSSL verzió - Startup time Bekapcsolás ideje - Network Hálózat - Name Név - Number of connections Kapcsolatok száma - Block chain Blokklánc - Current number of blocks Aktuális blokkok száma - Estimated total blocks Becsült összes blokk - Last block time Utolsó blokk ideje - &Open &Megnyitás - &Console &Konzol - &Network Traffic - &Clear - Totals - In: - Out: - Build date Fordítás dátuma - Debug log file Debug naplófájl - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console Konzol törlése - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Üdv a Dogecoin RPC konzoljában! - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Navigálhat a fel és le nyilakkal, és <b>Ctrl-L</b> -vel törölheti a képernyőt. - Type <b>help</b> for an overview of available commands. Írd be azt, hogy <b>help</b> az elérhető parancsok áttekintéséhez. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1876,155 +1526,137 @@ Cím: %4 ReceiveCoinsDialog - &Amount: - &Label: Címke: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + Címke másolása + + + Copy message + + + + Copy amount + Összeg másolása + ReceiveRequestDialog - QR Code QR kód - Copy &URI &URI másolása - Copy &Address &Cím másolása - &Save Image... - Request payment to %1 - Payment information - URI - Address Cím - Amount Összeg - Label Címke - Message Üzenet - Resulting URI too long, try to reduce the text for label / message. A keletkezett URI túl hosszú, próbálja meg csökkenteni a cimkeszöveg / üzenet méretét. - Error encoding URI into QR Code. Hiba lépett fel az URI QR kóddá alakításakor @@ -2032,285 +1664,225 @@ Cím: %4 RecentRequestsTableModel - Date Dátum - Label Címke - Message Üzenet - Amount Összeg - (no label) (nincs címke) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins Érmék küldése - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: Összeg: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Küldés több címzettnek egyszerre - Add &Recipient &Címzett hozzáadása - Clear all fields of the form. - Clear &All Mindent &töröl - Balance: Egyenleg: - Confirm the send action Küldés megerősítése - S&end &Küldés - Confirm send coins Küldés megerősítése - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Adj meg egy Dogecoin-címet (pl.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM ) - - - Copy quantity - Copy amount Összeg másolása - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. A címzett címe érvénytelen, kérlek, ellenőrizd. - The amount to pay must be larger than 0. A fizetendő összegnek nagyobbnak kell lennie 0-nál. - The amount exceeds your balance. - Nincs ennyi dogecoin az egyenlegeden. + Nincs ennyi bitcoin az egyenlegeden. - The total exceeds your balance when the %1 transaction fee is included. A küldeni kívánt összeg és a %1 tranzakciós díj együtt meghaladja az egyenlegeden rendelkezésedre álló összeget. - Duplicate address found, can only send to each address once per send operation. Többször szerepel ugyanaz a cím. Egy küldési műveletben egy címre csak egyszer lehet küldeni. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (nincs címke) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2318,117 +1890,86 @@ Cím: %4 SendCoinsEntry - - - A&mount: Összeg: - Pay &To: Címzett: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Milyen címkével kerüljön be ez a cím a címtáradba? - &Label: Címke: - Choose previously used address - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard Cím beillesztése a vágólapról - Alt+P Alt+P - - - Remove this entry - Message: Üzenet: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Adj meg egy Dogecoin-címet (pl.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM ) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2436,192 +1977,142 @@ Cím: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message Üzenet aláírása... - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Aláírhat a címeivel üzeneteket, amivel bizonyíthatja, hogy a címek az önéi. Vigyázzon, hogy ne írjon alá semmi félreérthetőt, mivel a phising támadásokkal megpróbálhatják becsapni, hogy az azonosságát átírja másokra. Csak olyan részletes állításokat írjon alá, amivel egyetért. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Adj meg egy Dogecoin-címet (pl.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM ) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard Cím beillesztése a vágólapról - Alt+P Alt+P - Enter the message you want to sign here Ide írja az aláírandó üzenetet - Signature Aláírás - Copy the current signature to the system clipboard A jelenleg kiválasztott aláírás másolása a rendszer-vágólapra - Sign the message to prove you own this Dogecoin address - + Üzenet - Sign &Message Üzenet &aláírása - Reset all sign message fields - - Clear &All Mindent &töröl - &Verify Message Üzenet ellenőrzése - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Írja be az aláírás címét, az üzenetet (ügyelve arra, hogy az új-sor, szóköz, tab, stb. karaktereket is pontosan) és az aláírást az üzenet ellenőrzéséhez. Ügyeljen arra, ne gondoljon többet az aláírásról, mint amennyi az aláírt szövegben ténylegesen áll, hogy elkerülje a köztes-ember (man-in-the-middle) támadást. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Adj meg egy Dogecoin-címet (pl.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM ) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Adj meg egy Dogecoin-címet (pl.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM ) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - Adja meg a Dogecoin aláírást - - - - The entered address is invalid. A megadott cím nem érvényes. - - - - Please check the address and try again. Ellenőrizze a címet és próbálja meg újra. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. Üzenet aláírása nem sikerült. - Message signed. Üzenet aláírva. - The signature could not be decoded. Az aláírást nem sikerült dekódolni. - - Please check the signature and try again. Ellenőrizd az aláírást és próbáld újra. - The signature did not match the message digest. - Message verification failed. Az üzenet ellenőrzése nem sikerült. - Message verified. Üzenet ellenőrizve. @@ -2629,17 +2120,14 @@ Cím: %4 SplashScreen - Dogecoin Core Dogecoin Core - The Dogecoin Core developers - [testnet] [teszthálózat] @@ -2647,7 +2135,6 @@ Cím: %4 TrafficGraphWidget - KB/s @@ -2655,179 +2142,138 @@ Cím: %4 TransactionDesc - Open until %1 Megnyitva %1-ig - + conflicted + + + %1/offline - %1/unconfirmed %1/megerősítetlen - %1 confirmations %1 megerősítés - Status Állapot - , broadcast through %n node(s) - Date Dátum - Source - Generated Legenerálva - - From Űrlap - - - To Címzett - - own address saját cím - label címke - - - - - Credit Jóváírás - matures in %n more block(s) beérik %n blokk múlvabeérik %n blokk múlva - not accepted elutasítva - - - - Debit Terhelés - Transaction fee Tranzakciós díj - Net amount Nettó összeg - - Message Üzenet - Comment Megjegyzés - Transaction ID Tranzakcióazonosító - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information Debug információ - Transaction Tranzakció - Inputs Bemenetek - Amount Összeg - true igaz - false hamis - , has not been successfully broadcast yet , még nem sikerült elküldeni. - Open for %n more block(s) %n további blokkra megnyitva%n további blokkra megnyitva - unknown ismeretlen @@ -2835,12 +2281,10 @@ Cím: %4 TransactionDescDialog - Transaction details Tranzakció részletei - This pane shows a detailed description of the transaction Ez a mező a tranzakció részleteit mutatja @@ -2848,118 +2292,102 @@ Cím: %4 TransactionTableModel - Date Dátum - Type Típus - Address Cím - Amount Összeg - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) %n további blokkra megnyitva%n további blokkra megnyitva - Open until %1 %1-ig megnyitva - - Offline (%1 confirmations) - Offline (%1 megerősítés) - - - - Unconfirmed (%1 of %2 confirmations) - Megerősítetlen (%1 %2 megerősítésből) - - - - Confirmed (%1 confirmations) Megerősítve (%1 megerősítés) - This block was not received by any other nodes and will probably not be accepted! Ezt a blokkot egyetlen másik csomópont sem kapta meg, így valószínűleg nem lesz elfogadva! - Generated but not accepted Legenerálva, de még el nem fogadva. - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Erre a címre - Received from Erről az - Sent to Erre a címre - Payment to yourself Magadnak kifizetve - Mined Kibányászva - (n/a) (nincs) - Transaction status. Hover over this field to show number of confirmations. Tranzakció állapota. Húzd ide a kurzort, hogy lásd a megerősítések számát. - Date and time that the transaction was received. Tranzakció fogadásának dátuma és időpontja. - Type of transaction. Tranzakció típusa. - Destination address of transaction. A tranzakció címzettjének címe. - Amount removed from or added to balance. Az egyenleghez jóváírt vagy ráterhelt összeg. @@ -2967,178 +2395,142 @@ Cím: %4 TransactionView - - All Mind - Today Mai - This week Ezen a héten - This month Ebben a hónapban - Last month Múlt hónapban - This year Ebben az évben - Range... Tartomány ... - Received with Erre a címre - Sent to Erre a címre - To yourself Magadnak - Mined Kibányászva - Other Más - Enter address or label to search Írd be a keresendő címet vagy címkét - Min amount Minimális összeg - Copy address Cím másolása - Copy label Címke másolása - Copy amount Összeg másolása - Copy transaction ID Tranzakcióazonosító másolása - Edit label Címke szerkesztése - Show transaction details Tranzakciós részletek megjelenítése - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Vesszővel elválasztott fájl (*.csv) - Confirmed Megerősítve - Date Dátum - Type Típus - Label Címke - Address Cím - Amount Összeg - ID Azonosító - Range: Tartomány: - to meddig @@ -3146,7 +2538,6 @@ Cím: %4 WalletFrame - No wallet has been loaded. @@ -3154,7 +2545,6 @@ Cím: %4 WalletModel - Send Coins Érmék küldése @@ -3162,163 +2552,134 @@ Cím: %4 WalletView - &Export &Exportálás... - Export the data in the current tab to a file Jelenlegi nézet exportálása fájlba - Backup Wallet Biztonsági másolat készítése a Tárcáról - Wallet Data (*.dat) Tárca fájl (*.dat) - Backup Failed Biztonsági másolat készítése sikertelen - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful Sikeres biztonsági mentés - dogecoin-core + bitcoin-core - Usage: Használat: - List commands Parancsok kilistázása - Get help for a command Segítség egy parancsról - Options: Opciók - - Specify configuration file (default: dogecoin.conf) - Konfigurációs fájl (alapértelmezett: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Konfigurációs fájl (alapértelmezett: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - pid-fájl (alapértelmezett: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + pid-fájl (alapértelmezett: bitcoind.pid) - Specify data directory Adatkönyvtár - - Set database cache size in megabytes (default: 25) - Az adatbázis gyorsítótár mérete megabájtban (alapértelmezés: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Csatlakozásokhoz figyelendő <port> (alapértelmezett: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Csatlakozásokhoz figyelendő <port> (alapértelmezett: 22556 or testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Maximálisan <n> számú kapcsolat fenntartása a peerekkel (alapértelmezés: 125) - Connect to a node to retrieve peer addresses, and disconnect Kapcsolódás egy csomóponthoz a peerek címeinek megszerzése miatt, majd szétkapcsolás - Specify your own public address Adja meg az Ön saját nyilvános címét - Threshold for disconnecting misbehaving peers (default: 100) Helytelenül viselkedő peerek leválasztási határértéke (alapértelmezés: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Helytelenül viselkedő peerek kizárási ideje másodpercben (alapértelmezés: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - JSON-RPC csatlakozásokhoz figyelendő <port> (alapértelmezett: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + JSON-RPC csatlakozásokhoz figyelendő <port> (alapértelmezett: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands Parancssoros és JSON-RPC parancsok elfogadása - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Háttérben futtatás daemonként és parancsok elfogadása - Use the test network Teszthálózat használata - Accept connections from outside (default: 1 if no -proxy or -connect) - + Kívülről érkező kapcsolatok elfogadása (alapértelmezett: 1, ha nem használt a -proxy vagy a -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3329,717 +2690,696 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. - Az %s adatkönyvtár nem zárható. A Dogecoin valószínűleg fut már. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + - 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. Regressziós teszt mód indítása, amely egy speciális láncot használ, amelyben a blokkok azonnal feloldhatók. Ez regressziós tesztalkalmazások által és alkalmazásfejlesztéshez használható. - 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 %d) + + + 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. Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Parancs, amit akkor hajt végre, amikor egy tárca-tranzakció megváltozik (%s a parancsban lecserélődik a blokk TxID-re) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + + + 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. Figyelem: a -paytxfee nagyon magas. Ennyi tranzakciós díjat fogsz fizetni, ha elküldöd a tranzakciót. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Figyelem: Ellenőrizd, hogy helyesen van-e beállítva a gépeden a dátum és az idő. A Dogecoin nem fog megfelelően működni, ha rosszul van beállítvaaz órád. - 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. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: - Attempt to recover private keys from a corrupt wallet.dat - Dogecoin Core Daemon - - Dogecoin Core RPC client version - - - - Block creation options: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + Connect only to the specified node(s) Csatlakozás csak a megadott csomóponthoz - Connect through SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: - Corrupted block database detected Sérült blokk-adatbázis észlelve - - Discover own IP address (default: 1 when listening and no -externalip) + Debugging/Testing options: - + Disable safemode, override a real safe mode event (default: 0) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Saját IP-cím felfedezése (alapértelmezett: 1, amikor figyel és nem használt a -externalip) + + Do not load the wallet and disable wallet RPC calls - Do you want to rebuild the block database now? Újra akarod építeni a blokk adatbázist most? - Error initializing block database A blokkadatbázis inicializálása nem sikerült - Error initializing wallet database environment %s! A tárca-adatbázis inicializálása nem sikerült: %s! - Error loading block database Hiba a blokk adatbázis betöltése közben. - Error opening block database Hiba a blokk adatbázis megnyitása közben. - Error: Disk space is low! - Error: Wallet locked, unable to create transaction! - Error: system error: Hiba: rendszerhiba: - Failed to listen on any port. Use -listen=0 if you want this. Egyik hálózati porton sem sikerül hallgatni. Használja a -listen=0 kapcsolót, ha ezt szeretné. - Failed to read block info A blokkinformáció olvasása nem sikerült - Failed to read block A blokk olvasása nem sikerült - Failed to sync block index A blokkindex szinkronizálása nem sikerült - Failed to write block index A blokkindex írása nem sikerült - Failed to write block info A blokkinformáció írása nem sikerült - Failed to write block A blokk írása nem sikerült - Failed to write file info A fájlinformáció írása nem sikerült - Failed to write to coin database Az érme-adatbázis írása nem sikerült - Failed to write transaction index A tranzakcióindex írása nem sikerült - Failed to write undo data A stornóadatok írása nem sikerült - Fee per kB to add to transactions you send - + Fees smaller than this are considered zero fee (for relaying) (default: + + + Find peers using DNS lookup (default: 1 unless -connect) - + Force safe mode (default: 0) + + + Generate coins (default: 0) Érmék generálása (alapértelmezett: 0) - How many blocks to check at startup (default: 288, 0 = all) Hány blokkot ellenőrizzen induláskor (alapértelmezett: 288, 0 = mindet) - - How thorough the block verification is (0-4, default: 3) - Blokkellenőrzése részletessége (0-4, alapértelmezett: 3) - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? Helytelen vagy nemlétező genézis blokk. Helytelen hálózati adatkönyvtár? - Invalid -onion address: '%s' - Not enough file descriptors available. Nincs elég fájlleíró. - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files Blokklánc index újraalkotása az alábbi blk000??.dat fájlokból - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server - Parancs küldése a Bicoin szervernek + Set database cache size in megabytes (%d to %d, default: %d) + - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) - Specify wallet file (within data directory) - - Start Dogecoin Core server - Dogecoin szerver indítása + Spend unconfirmed change when sending transactions (default: 1) + - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): + Usage (deprecated, use bitcoin-cli): - Verifying blocks... Blokkok ellenőrzése... - Verifying wallet... Tárca ellenőrzése... - Wait for RPC server to start - Wallet %s resides outside data directory %s - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex Az adatbázist újra kell építeni -reindex használatával (módosítás -tindex). - Imports blocks from external blk000??.dat file - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Szkriptellenőrzési szálak számának beállítása (maximum 16, 0 = automatikus, <0 = szabadon hagyott magok száma, alapértelmezett: 0) - - - Information Információ - Invalid amount for -minrelaytxfee=<amount>: '%s' Érvénytelen -minrelaytxfee=<amount>: '%s' összeg - Invalid amount for -mintxfee=<amount>: '%s' Érvénytelen -mintxfee=<amount>: '%s' összeg - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) Teljes tranzakcióindex megőrzése (alapértelmezett: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - Only accept block chain matching built-in checkpoints (default: 1) Csak blokklánccal egyező beépített ellenőrző pontok elfogadása (alapértelmezés: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL-opciók: (lásd a Bitcoin Wiki SSL-beállítási instrukcióit) - + Send command to Dogecoin Core + + + Send trace/debug info to console instead of debug.log file trace/debug információ küldése a konzolra a debog.log fájl helyett - Set minimum block size in bytes (default: 0) - + 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 transaction failed Tranzakció aláírása sikertelen - Specify connection timeout in milliseconds (default: 5000) Csatlakozás időkerete milliszekundumban (alapértelmezett: 5000) - + Start Dogecoin Core Daemon + + + System error: Rendszerhiba: - Transaction amount too small Tranzakció összege túl alacsony - Transaction amounts must be positive Tranzakció összege pozitív kell legyen - Transaction too large Túl nagy tranzakció - Use UPnP to map the listening port (default: 0) UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 0) - Use UPnP to map the listening port (default: 1 when listening) UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 1 when listening) - Username for JSON-RPC connections Felhasználói név JSON-RPC csatlakozásokhoz - Warning Figyelem - Warning: This version is obsolete, upgrade required! - + Zapping all transactions from wallet... + + + + on startup + + + version verzió - wallet.dat corrupt, salvage failed - Password for JSON-RPC connections Jelszó JSON-RPC csatlakozásokhoz - Allow JSON-RPC connections from specified IP address JSON-RPC csatlakozások engedélyezése meghatározott IP-címről - Send commands to node running on <ip> (default: 127.0.0.1) Parancsok küldése <ip> címen működő csomóponthoz (alapértelmezett: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) Parancs, amit akkor hajt végre, amikor a legjobb blokk megváltozik (%s a cmd-ban lecserélődik a blokk hash-re) - Upgrade wallet to latest format A Tárca frissítése a legfrissebb formátumra - Set key pool size to <n> (default: 100) Kulcskarika mérete <n> (alapértelmezett: 100) - Rescan the block chain for missing wallet transactions Blokklánc újraszkennelése hiányzó tárca-tranzakciók után - Use OpenSSL (https) for JSON-RPC connections OpenSSL (https) használata JSON-RPC csatalkozásokhoz - Server certificate file (default: server.cert) Szervertanúsítvány-fájl (alapértelmezett: server.cert) - Server private key (default: server.pem) Szerver titkos kulcsa (alapértelmezett: server.pem) - This help message Ez a súgó-üzenet - Unable to bind to %s on this computer (bind returned error %d, %s) A %s nem elérhető ezen a gépen (bind returned error %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect DNS-kikeresés engedélyezése az addnode-nál és a connect-nél - Loading addresses... Címek betöltése... - Error loading wallet.dat: Wallet corrupted Hiba a wallet.dat betöltése közben: meghibásodott tárca - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Hiba a wallet.dat betöltése közben: ehhez a tárcához újabb verziójú Dogecoin-kliens szükséges - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete A Tárca újraírása szükséges: Indítsa újra a teljesen a Dogecoin-t - Error loading wallet.dat Hiba az wallet.dat betöltése közben - Invalid -proxy address: '%s' Érvénytelen -proxy cím: '%s' - Unknown network specified in -onlynet: '%s' Ismeretlen hálózat lett megadva -onlynet: '%s' - Unknown -socks proxy version requested: %i Ismeretlen -socks proxy kérése: %i - Cannot resolve -bind address: '%s' Csatlakozási cím (-bind address) feloldása nem sikerült: '%s' - Cannot resolve -externalip address: '%s' Külső cím (-externalip address) feloldása nem sikerült: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Étvénytelen -paytxfee=<összeg> összeg: '%s' - Invalid amount Étvénytelen összeg - Insufficient funds - Nincs elég dogecoinod. + Nincs elég bitcoinod. - Loading block index... Blokkindex betöltése... - Add a node to connect to and attempt to keep the connection open Elérendő csomópont megadása and attempt to keep the connection open - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - A %s nem elérhető ezen a gépen. A Dogecoin valószínűleg fut már. - - - Loading wallet... Tárca betöltése... - Cannot downgrade wallet Nem sikerült a Tárca visszaállítása a korábbi verzióra - Cannot write default address Nem sikerült az alapértelmezett címet írni. - Rescanning... Újraszkennelés... - Done loading Betöltés befejezve. - To use the %s option Használd a %s opciót - Error Hiba - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4048,4 +3388,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Ha a fájl nem létezik, hozd létre 'csak a felhasználó által olvasható' fájl engedéllyel - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_id_ID.ts b/src/qt/locale/bitcoin_id_ID.ts index 02eaec5fb..853a48eca 100644 --- a/src/qt/locale/bitcoin_id_ID.ts +++ b/src/qt/locale/bitcoin_id_ID.ts @@ -2,155 +2,135 @@ AboutDialog - About Dogecoin Core - + Mengenai Dogecoin Core - <b>Dogecoin Core</b> version - + versi <b>Dogecoin Core</b> - This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + +Software ini adalah yang bersifat percobaan. + +Dibagikan dengan izin software MIT/X11, bacalah arsip COPYING atau http://www.opensource.org/licenses/mit-license.php. + +Produk ini termasuk software yang dibangun oleh Proyek OpenSSL untuk Toolkit OpenSSL (http://www.openssl.org/) dan software kriptografi dibangun oleh Eric Young (eay@cryptsoft.com) dan software UPnP dibangun oleh Thomas Bernard. - Copyright Copyright - The Dogecoin Core developers + Pembangun Dogecoin Core + + + (%1-bit) AddressBookPage - Double-click to edit address or label Klik-ganda untuk mengubah alamat atau label - Create a new address Buat alamat baru - &New - + &Baru - Copy the currently selected address to the system clipboard Salin alamat yang dipilih ke clipboard - &Copy - + &Menyalin - C&lose - + T&utup - &Copy Address &Salin Alamat - Delete the currently selected address from the list - + Hapus alamat yang sementara dipilih dari daftar - Export the data in the current tab to a file - + Ekspor data dalam tab sekarang ke sebuah berkas - &Export - + &Ekspor - &Delete &Hapus - Choose the address to send coins to - + Pilihlah alamat kemana koin Anda akan dikirim - Choose the address to receive coins with - + Pilihlah alamat dimana Anda akan menerima koin - C&hoose - + P&ilihlah - Very sending addresses - + Alamat-alamat mengirim - Much receiving addresses - + Alamat-alamat menerima - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - + Alamat-alamat Anda supaya mengirim pembayaran. Periksalah jumlah dan alamat penerima setiap kali Anda mengirim Dogecoin. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - + Alamat-alamat Anda supaya menerima pembayaran. Dianjurkan agar Anda menggunakan alamat menerima yang baru untuk setiap transaksi. - Copy &Label Salin &Label - &Edit &Ubah - Export Address List - + Ekspor Daftar Alamat - Comma separated file (*.csv) - File CSV (*.csv) + Berkas CSV (*.csv) - Exporting Failed - + Proses Ekspor Gagal - There was an error trying to save the address list to %1. @@ -158,17 +138,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Label - Address Alamat - (no label) (tidak ada label) @@ -176,524 +153,420 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog Dialog Kata kunci - Enter passphrase Masukkan kata kunci - New passphrase Kata kunci baru - Repeat new passphrase Ulangi kata kunci baru - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Masukkan kata kunci baru ke dompet.<br/>Mohon gunakan kata kunci dengan <b>10 karakter atau lebih dengan acak</b>, atau <b>delapan kata atau lebih</b>. - Encrypt wallet Enkripsi dompet - This operation needs your wallet passphrase to unlock the wallet. Operasi ini memerlukan kata kunci dompet Anda untuk membuka dompet ini. - Unlock wallet Buka dompet - This operation needs your wallet passphrase to decrypt the wallet. Operasi ini memerlukan kata kunci dompet Anda untuk mendekripsi dompet ini. - Decrypt wallet Dekripsi dompet - Change passphrase Ubah kata kunci - Enter the old and new passphrase to the wallet. Masukkan kata kunci lama dan baru ke dompet ini. - Confirm wallet encryption Konfirmasi enkripsi dompet - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Perhatian: Jika anda mengenkripsi dompet anda dan lupa kata kuncinya, anda pasti <b>KEHILANGAN SELURUH Dogecoin ANDA</B>! - Are you sure you wish to encrypt your wallet? - + Apakah kamu yakin ingin mengenkripsi dompet anda? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - + Perhatian: tombol Caps Lock sementara aktif! - - Wallet encrypted Dompet terenkripsi - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin akan menutup untuk menyelesaikan proses enkripsi. Ingat bahwa dengan mengenkripsi dompet Anda tidak sepenuhnya melindungi dogecoin Anda dari perangkat lunak berbahaya yang menginfeksi komputer Anda. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin akan menutup untuk menyelesaikan proses enkripsi. Ingat bahwa dengan mengenkripsi dompet Anda tidak sepenuhnya melindungi bitcoin Anda dari perangkat lunak berbahaya yang menginfeksi komputer Anda. - - - - Wallet encryption failed Enkripsi dompet gagal - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Enkripsi dompet gagal karena kesalahan internal. Dompet Anda tidak dienkripsi. - - The supplied passphrases do not match. Kata kunci yang dimasukkan tidak cocok. - Wallet unlock failed Gagal buka dompet - - - The passphrase entered for the wallet decryption was incorrect. Kata kunci yang dimasukkan untuk dekripsi dompet tidak cocok. - Wallet decryption failed Dekripsi dompet gagal - Wallet passphrase was successfully changed. - + Kata kunci untuk dompet berubah berhasil. BitcoinGUI - Sign &message... Pesan &penanda... - Synchronizing with network... Sinkronisasi dengan jaringan... - &Overview &Kilasan - Node - + Node - Show general overview of wallet Tampilkan kilasan umum dari dompet - &Transactions &Transaksi - Browse transaction history Jelajah sejarah transaksi - E&xit K&eluar - Quit application Keluar dari aplikasi - - Show information about Dogecoin Core + Show information about Dogecoin Tampilkan informasi mengenai Dogecoin - - About &Qt Mengenai &Qt - Show information about Qt Tampilkan informasi mengenai Qt - &Options... &Pilihan... - &Encrypt Wallet... %Enkripsi Dompet... - &Backup Wallet... &Cadangkan Dompet... - &Change Passphrase... &Ubah Kata Kunci... - Very &sending addresses... - + Alamat-alamat &Mengirim - Much &receiving addresses... - + Alamat-alamat &Menerima - Open &URI... - + Buka &URI - Importing blocks from disk... - + Blok-blok sedang di-impor dari disk - Reindexing blocks on disk... Mengindex ulang block di harddisk... - Send coins to a Dogecoin address Kirim koin ke alamat Dogecoin - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Ubah pilihan konfigurasi untuk Dogecoin - Backup wallet to another location Cadangkan dompet ke lokasi lain - Change the passphrase used for wallet encryption Ubah kata kunci yang digunakan untuk enkripsi dompet - &Debug window &Jendela Debug - Open debugging and diagnostic console Buka konsol debug dan diagnosa - &Verify message... &Verifikasi pesan... - Dogecoin - + Dogecoin - Wallet Dompet - &Send - + &Kirim - &Receive - + &Menerima - - &Show / Hide - + &Sunjukkan / Menyembungi - Show or hide the main Window - + Tampilkan atau sembunyikan jendela utama - Encrypt the private keys that belong to your wallet - + Mengenkripsi kunci-kunci pribadi yang dipunyai dompetmu - Sign messages with your Dogecoin addresses to prove you own them - + Tandalah pesanan dengan alamat-alamat Dogecoin Anda supaya membuktikan pesanan itu dikirim oleh Anda - Verify messages to ensure they were signed with specified Dogecoin addresses - + Periksakan pesan-pesan supaya menjaminkan ditandatangani oleh alamat Dogecoin yang terperinci - &File &Berkas - &Settings &Pengaturan - &Help &Bantuan - Tabs toolbar Baris tab - - [testnet] [testnet] - Dogecoin Core + Dogecoin Core + + + Request payments (generates QR codes and bitcoin: URIs) - - Request payments (generates QR codes and dogecoin: URIs) - - - - - &About Dogecoin Core - + &Mengenai Dogecoin Core - Show the list of used sending addresses and labels - + Tampilkan daftar alamat dan label yang terkirim - Show the list of used receiving addresses and labels - + Tampilkan daftar alamat dan label yang diterima - - Open a dogecoin: URI or payment request - + Open a bitcoin: URI or payment request + Buka URI bitcoin: atau permintaan pembayaran - &Command-line options - + &pilihan Perintah-baris - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options - + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options + Tampilkan pesan bantuan Dogecoin Core untuk memberikan daftar pilihan perintah-baris yang memungkinkan dalam aplikasi Dogecoin - - Dogecoin client Klien Dogecoin - %n active connection(s) to Dogecoin network %n hubungan aktif ke jaringan Dogecoin - No block source available... - + Sumber blok tidak tersedia... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - + %1 blok-blok riwayat transaksi telah diproses - %n hour(s) - + %n jam - %n day(s) - + %n hari - %n week(s) - + %n minggu + + + %1 and %2 + %1 dan %2 + + + %n year(s) + %n tahun - %1 behind - + kurang %1 - Last received block was generated %1 ago. - + Blok terakhir dibuat %1 lalu. - Transactions after this will not yet be visible. - Error Gagal - Warning Peringatan - Information Informasi - Up to date Terbaru - Catching up... Menyusul... - Sent transaction Transaksi terkirim - Incoming transaction Transaksi diterima - Date: %1 Amount: %2 Type: %3 Address: %4 Tanggal: %1 -Jumlah: %2 +Nilai: %2 Jenis: %3 Alamat: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Dompet saat ini <b>terenkripsi</b> dan <b>terbuka</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Dompet saat ini <b>terenkripsi</b> dan <b>terkunci</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert Notifikasi Jaringan @@ -701,359 +574,285 @@ Alamat: %4 CoinControlDialog - Coin Control Address Selection - + Pilihan alamat pengaturan koin - Quantity: - + Kuantitas: - Bytes: - + Bytes: - Amount: - Jumlah: + Nilai: - Priority: - + Prioritas: - Fee: - + Biaya: - Low Output: - + Jumlah Yang Sedikit: - After Fee: - + Dengan Biaya: - Change: - + Uang Kembali: - (un)select all - Tree mode - List mode - Amount - Jumlah + Nilai - Address Alamat - Date Tanggal - Confirmations - + Konfirmasi-konfirmasi - Confirmed Terkonfirmasi - Priority - + Prioritas - Copy address Salin alamat - Copy label Salin label - - Copy amount - Salin jumlah + Salin nilai - Copy transaction ID - + Menyalinkan ID transaksi - Lock unspent - Unlock unspent - Copy quantity - + Salin kuantitas - Copy fee - + Salin biaya - Copy after fee - + Salin dengan biaya - Copy bytes - + Salin bytes - Copy priority - + Salin prioritas - Copy low output - + Salin jumlah yang sedikit - Copy change - + Salin uang kembali - highest - + terbesar - higher - + lebih besar - high - + besar - medium-high - + sedang-sampai-besar - medium - + sedang - low-medium - + sedikit-sampai-sedang - low - + sedikit - lower - + lebih sedikit - lowest - + tersedikit - (%1 locked) - + (%1 terkunci) - none - + tidak satupun - Dust - + Debu - yes - + ya - no - + tidak - This label turns red, if the transaction size is greater than 1000 bytes. - + Label ini akan berubah merah, jika ukuran transaksi lebih besar dari 1000 byte. - - This means a fee of at least %1 per kB is required. - + Berarti perlu biaya lebih dari %1 untuk setiap kB. - Can vary +/- 1 byte per input. - + Boleh berbeda +/- 1 byte setiap masukan. - Transactions with higher priority are more likely to get included into a block. - + Makin penting transaksinya, makin kemungkinan akan termasuk dalam blok. - This label turns red, if the priority is smaller than "medium". - + Label ini akan berubah merah, jika prioritas lebih kecil dari "medium". - This label turns red, if any recipient receives an amount smaller than %1. - + Label ini akan berubah merah, jika setiap penerima menerima nilai lebih kecil dari %1. - - This means a fee of at least %1 is required. - + Berarti perlu biaya lebih dari %1. - Amounts below 0.546 times the minimum relay fee are shown as dust. - + Nilai yang kurang dari 0.546 kali biaya pengiriman minimal akan ditampilkan sebagai debu. - This label turns red, if the change is smaller than %1. - + Label ini akan berubah merah, jika perubahan itu lebih kecil dari %1. - - (no label) (tidak ada label) - change from %1 (%2) - + uang kembali dari %1 (%2) - (change) - + (uang kembali) EditAddressDialog - Edit Address Ubah Alamat - &Label &Label - The label associated with this address list entry - + Label yang terkait dengan daftar alamat yang dimasukkan ini - The address associated with this address list entry. This can only be modified for sending addresses. - + Alamat yang terkait dengan entri buku alamat ini. Hanya dapat diubah untuk alamat pengirim. - &Address &Alamat - New receiving address Alamat menerima baru - New sending address Alamat mengirim baru - Edit receiving address Ubah alamat menerima - Edit sending address Ubah alamat mengirim - The entered address "%1" is already in the address book. Alamat yang dimasukkan "%1" sudah ada di dalam buku alamat. - The entered address "%1" is not a valid Dogecoin address. Alamat yang dimasukkan "%1" bukan alamat Dogecoin yang benar. - Could not unlock wallet. Tidak dapat membuka dompet. - New key generation failed. Pembuatan kunci baru gagal. @@ -1061,80 +860,69 @@ Alamat: %4 FreespaceChecker - A new data directory will be created. - + Sebuah data direktori baru telah dibuat. - name - + nama - Directory already exists. Add %1 if you intend to create a new directory here. - + Direktori masih ada. Tambahlah %1 kalau ingin membuat direktori baru disini. - Path already exists, and is not a directory. - + Masih ada Path, dan path itu bukan direktori. - Cannot create data directory here. - + Tidak busa membuat direktori untuk data disini. HelpMessageDialog - Dogecoin Core - Command-line options - + Dogecoin Core - pilihan Perintah-baris - Dogecoin Core - + Dogecoin Core - version versi - Usage: Penggunaan: - command-line options pilihan perintah-baris - UI options pilihan UI - Set language, for example "de_DE" (default: system locale) Atur bahasa, sebagai contoh "id_ID" (standar: system locale) - Start minimized Memulai terminimalisi - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Tampilkan layar pembuka saat nyala (standar: 1) - Choose data directory on startup (default: 0) @@ -1142,329 +930,276 @@ Alamat: %4 Intro - Welcome - + Selamat Datang - Welcome to Dogecoin Core. - + Selamat Datang ke Dogecoin Core - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - + Menggunakan direktori untuk data yang biasa. - Use a custom data directory: - + Menggunakan direktori data yang dipilih Anda: - Dogecoin - + Dogecoin - Error: Specified data directory "%1" can not be created. - + Gagal: Direktori untuk data "%1" tidak bisa dibuat. - Error Gagal - GB of free space available - + GB di hard disk yang masih tersedia - (of %1GB needed) - + (dari %1GB yang diperlu) OpenURIDialog - Open URI - + Buka URI - Open payment request from URI or file - + Buka permintaan pembayaran dari URI atau arsip - URI: - + URI: - Select payment request file - + Pilihlah arsip permintaan pembayaran - Select payment request file to open - + Pilihlah arsip permintaan pembayaran yang Anda ingin membuka OptionsDialog - Options Pilihan - &Main &Utama - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - + Biaya transaksi untuk setiap kB yang membantu transaksi Andi diproses cepat (biayanya opsional). Ukuran transaksi biasanya 1kB. - Pay transaction &fee Bayar &biaya transaksi - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Menyalakan Dogecoin secara otomatis setelah masuk ke dalam sistem. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Menyalakan Dogecoin pada login sistem - Size of &database cache - - Set database cache size in megabytes (default: 25) - Atur ukuran tembolok dalam megabyte (standar: 25) - - - MB - + MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - + Menghubungkan jaringan Dogecoin lewat proxy SOCKS. - &Connect through SOCKS proxy (default proxy): - + &Hubungkan melalui proxy SOCKS (proxy biasa): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - + Alamat IP proxy (cth. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - + pilihan perintah-baris aktif menimpa atas pilihan-pilihan: - Reset all client options to default. - + Reset setiap pilihan untuk pilihan biasa - &Reset Options - + &Reset Pilihan - &Network &Jaringan - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + D&ompet + + + Expert + Ahli + + + Enable coin &control features + Nyalain cara &pengaturan koin + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Jika Anda menonaktifkan perubahan saldo untuk transaksi yang belum dikonfirmasi, perubahan dari transaksi tidak dapat dilakukan sampai transaksi memiliki setidaknya satu konfirmasi. Hal ini juga mempengaruhi bagaimana saldo Anda dihitung. + + + &Spend unconfirmed change + &Perubahan saldo untuk transaksi yang belum dikonfirmasi + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Otomatis membuka port client Dogecoin di router. Hanya berjalan apabila router anda mendukung UPnP dan di-enable. - Map port using &UPnP Petakan port dengan &UPnP - Proxy &IP: IP Proxy: - &Port: &Port: - Port of the proxy (e.g. 9050) Port proxy (cth. 9050) - SOCKS &Version: Versi &SOCKS: - SOCKS version of the proxy (e.g. 5) - Versi SOCKS proxy (cth. 5) + Versi proxy SOCKS (cth. 5) - &Window &Jendela - Show only a tray icon after minimizing the window. Hanya tampilkan ikon tray setelah meminilisasi jendela - &Minimize to the tray instead of the taskbar &Meminilisasi ke tray daripada taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - + Meminimalkan tanpa keluar dari aplikasi saat jendela ditutup. Apabila pilihan ini diaktifkan, aplikasi hanya bisa ditutup dengan memilih Keluar di menu Berkas. - M&inimize on close M&eminilisasi saat tutup - &Display &Tampilan - User Interface &language: &Bahasa Antarmuka Pengguna: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. - + The user interface language can be set here. This setting will take effect after restarting Dogecoin. + Tampilan bahasa pengguna dapat diatur disini. Pengaturan ini akan berpengaruh setelah memulai kembali aplikasi Dogecoin. - &Unit to show amounts in: - &Unit untuk menunjukkan jumlah: + &Unit untuk menunjukkan nilai: - Choose the default subdivision unit to show in the interface and when sending coins. - + Pilihan standar unit yang ingin ditampilkan pada layar aplikasi dan saat mengirim koin. - Whether to show Dogecoin addresses in the transaction list or not. - + Apakah menampilkan alamat-alamat Dogecoin dalam daftar transaksi atau tidak. - &Display addresses in transaction list &Tampilkan alamat dalam daftar transaksi - Whether to show coin control features or not. - + Ingin menunjukkan cara pengaturan koin atau tidak. - - Display coin &control features (experts only) - - - - &OK &YA - &Cancel &Batal - default standar - none - + tidak satupun - Confirm options reset - + Memastikan reset pilihan - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. Alamat proxy yang diisi tidak valid. @@ -1472,69 +1207,54 @@ Alamat: %4 OverviewPage - Form Formulir - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Informasi terlampir mungkin sudah kedaluwarsa. Dompet Anda secara otomatis mensinkronisasi dengan jaringan Dogecoin ketika sebuah hubungan terbentuk, namun proses ini belum selesai. - - Unconfirmed: - Tidak terkonfirmasi: - - - Wallet Dompet - - Confirmed: - + Available: + Tersedia: - Your current spendable balance - + Jumlah yang Anda bisa keluarkan sekarang + + + Pending: + Ditunda - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - + Jumlah keseluruhan transaksi yang belum dikonfirmasi, dan belum saatnya dihitung sebagai pengeluaran saldo yang telah dibelanjakan. - Immature: - + Terlalu Muda: - Mined balance that has not yet matured - + Saldo ditambang yang masih terlalu muda - Total: - + Jumlah: - Your current total balance - + Jumlah saldo Anda sekarang - <b>Recent transactions</b> <b>Transaksi sebelumnya</b> - - out of sync tidak tersinkron @@ -1542,328 +1262,263 @@ Alamat: %4 PaymentServer - - URI handling Penanganan URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - + URI tidak bisa dimengerti! Biasanya oleh karena alamat Dogecoin yang tidak sah atau persoalan tentang parameter-parameter URI. - Requested payment amount of %1 is too small (considered dust). - + Nilai pembayaran %1 yang diminta oleh Anda terlalu sedikit (dianggap debu). - - - - - - Payment request error + Gagalan permintaan pembayaran + + + Cannot start bitcoin: click-to-pay handler - - Cannot start dogecoin: click-to-pay handler - - - - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - + Proxy Anda tidak mendukung SOCKS5, yang diperlu untuk permintaan pembayaran melalui proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - + Pembayaran kembali dari %1 - Error communicating with %1: %2 - + Masalah berkomunikasi dengan %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - + Jawaban salah dari server %1 - Payment acknowledged - + Pembayaran diakui - Network request error - + Gagalan permintaan dari jaringan QObject - - Dogecoin - + Dogecoin - Error: Specified data directory "%1" does not exist. + Gagal: Tidak ada direktori untuk data "%1". + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. - Error: Invalid combination of -regtest and -testnet. + Gagal: Gabungan -regtest dan -testnet salah + + + Dogecoin Core did't yet exit safely... + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Masukkan alamat Dogecoin (cth. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - + &Simpan Gambaran... - &Copy Image - + &Salin Gambaran - Save QR Code Simpan Kode QR - PNG Image (*.png) - + Gambar PNG (*.png) RPCConsole - Client name Nama Klien - - - - - - - - - - - N/A T/S - Client version Versi Klien - &Information &Informasi - Debug window - + Jendela debug - General - Using OpenSSL version - + Menggunakan versi OpenSSL - Startup time Waktu nyala - Network Jaringan - Name - + Nama - Number of connections Jumlah hubungan - Block chain Rantai blok - Current number of blocks Jumlah blok terkini - Estimated total blocks - Perkiraan blok total + Perkiraan jumlah blok - Last block time Waktu blok terakhir - &Open &Buka - &Console &Konsol - &Network Traffic - + Kemacetan &Jaringan - &Clear - Totals - + Total - In: - + Masuk: - Out: - + Keluar: - Build date Tanggal pembuatan - Debug log file - + Berkas catatan debug - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. - + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. + Buka berkas catatan debug Dogecoin dari direktori data sekarang. Hal ini dapat memakan waktu beberapa detik untuk berkas catatan yang besar. - Clear console Bersihkan konsol - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Selamat datang ke konsol RPC Dogecoin. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Gunakan panah keatas dan kebawah untuk menampilkan sejarah, dan <b>Ctrl-L</b> untuk bersihkan layar. - Type <b>help</b> for an overview of available commands. Ketik <b>help</b> untuk menampilkan perintah tersedia. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1871,155 +1526,137 @@ Alamat: %4 ReceiveCoinsDialog - &Amount: - + &Nilai: - &Label: &Label: - &Message: - + &Pesan: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + Label opsional untuk mengasosiasikan dengan alamat penerima baru. + + Use this form to request payments. All fields are <b>optional</b>. - + Gunakan form ini untuk meminta pembayaran. Semua bidang adalah <b>opsional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - + Nilai permintaan opsional. Biarkan ini kosong atau nol bila tidak meminta nilai tertentu. - Clear all fields of the form. - + Hapus informasi dari form. - Clear - + Hapus + + + Requested payments history + Riwayat pembayaran yang diminta Anda - &Request payment - + &Minta pembayaran - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - + Menunjukkan permintaan yang dipilih (sama dengan tekan pilihan dua kali) - Show - + Menunjukkan - Remove the selected entries from the list - + Menghapus informasi terpilih dari daftar - Remove - + Menghapus + + + Copy label + Salin label + + + Copy message + Salin Pesan + + + Copy amount + Salin nilai ReceiveRequestDialog - QR Code - + Kode QR - Copy &URI - + Salin &URI - Copy &Address - + Salin &Alamat - &Save Image... - + &Simpan Gambaran... - Request payment to %1 - + Minta pembayaran ke %1 - Payment information - + Informasi pembayaran - URI - + URI - Address Alamat - Amount - Jumlah + Nilai - Label Label - Message Pesan - Resulting URI too long, try to reduce the text for label / message. Hasil URI terlalu panjang, coba kurangi label / pesan. - Error encoding URI into QR Code. Gagal mengubah URI ke kode QR. @@ -2027,613 +1664,469 @@ Alamat: %4 RecentRequestsTableModel - Date Tanggal - Label Label - Message Pesan: - Amount - Jumlah + Nilai - (no label) (tidak ada label) - (no message) - + (tidak ada pesan) + + + (no amount) + (tidak ada nilai) SendCoinsDialog - - - Send Coins Kirim Koin - Coin Control Features - + Cara Pengaturan Koin - Inputs... - + Masukan... - automatically selected - Insufficient funds! - + Saldo tidak mencukupi! - Quantity: - + Kuantitas: - Bytes: - + Bytes: - Amount: - Jumlah: + Nilai: - Priority: - + Prioritas: - Fee: - + Biaya: - Low Output: - + Jumlah Yang Sedikit: - After Fee: - + Dengan Biaya: - Change: - + Uang Kembali: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - + Jiki ini dipilih, tetapi alamat pengembalian uang kosong atau salah, uang kembali akan dikirim ke alamat yang baru dibuat. - Custom change address - + Alamat uang kembali yang kustom - Send to multiple recipients at once Kirim ke beberapa penerima sekaligus - Add &Recipient - + Tambahlah &Penerima - Clear all fields of the form. - + Hapus informasi dari form. - Clear &All Hapus %Semua - Balance: Saldo: - Confirm the send action Konfirmasi aksi pengiriman - S&end - + K&irim - Confirm send coins Konfirmasi pengiriman koin - - - - %1 to %2 %1 ke %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Masukkan alamat Dogecoin (cth. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - + Salin kuantitas - Copy amount - Salin jumlah + Salin nilai - Copy fee - + Salin biaya - Copy after fee - + Salin dengan biaya - Copy bytes - + Salin bytes - Copy priority - + Salin prioritas - Copy low output - + Salin jumlah yang sedikit - Copy change - + Salin uang kembali - Total Amount %1 (= %2) - + Jumlah Nilai %1 (= %2) - or - + atau - The recipient address is not valid, please recheck. - + Alamat penerima tidak sah, silakan periksa sekali lagi. - The amount to pay must be larger than 0. - Jumlah yang dibayar harus lebih besar dari 0. + Nilai yang dibayar harus lebih besar dari 0. - The amount exceeds your balance. - Jumlah melebihi saldo Anda. + Nilai melebihi saldo Anda. - The total exceeds your balance when the %1 transaction fee is included. - Kelebihan total saldo Anda ketika biaya transaksi %1 ditambahkan. + Jumlah melebihi saldo Anda ketika biaya transaksi %1 ditambahkan. - Duplicate address found, can only send to each address once per send operation. Ditemukan alamat ganda, hanya dapat mengirim ke tiap alamat sekali per operasi pengiriman. - Transaction creation failed! - + Gagal membuat transaksi! - 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. - + Gagal: Transaksi ditolak. Ini mungkin terjadi jika beberapa dari koin dalam dompet Anda telah digunakan, seperti ketika Anda menggunakan salinan wallet.dat dan beberapa koin telah dibelanjakan dalam salinan tersebut tetapi disini tidak tertandai sebagai terpakai. - Warning: Invalid Dogecoin address - + Awas: Alamat Dogecoin tidak sah - (no label) (tidak ada label) - Warning: Unknown change address - Are you sure you want to send? - + Apakah Anda yakin ingin kirim? - added as transaction fee - + ditambahkan sebagai biaya transaksi - Payment request expired - + Permintaan pembayaran telah kadaluarsa - Invalid payment address %1 - + Alamat pembayaran salah %1 SendCoinsEntry - - - A&mount: J&umlah: - Pay &To: Kirim &Ke: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - + Alamat pembayaran (cth. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Masukkan label bagi alamat ini untuk menambahkannya ke buku alamat Anda - &Label: &Label: - Choose previously used address Pilih alamat yang telah digunakan sebelumnya - This is a normal payment. - Alt+A Alt+J - Paste address from clipboard Tempel alamat dari salinan - Alt+P Alt+B - - - Remove this entry - Message: Pesan: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses + Masukkan label untuk alamat ini untuk dimasukan dalam daftar alamat yang pernah digunakan + + + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. - - Pay To: - + Kirim Ke: - - Memo: - - - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Masukkan alamat Dogecoin (cth. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Catatan Peringatan: ShutdownWindow - Dogecoin Core is shutting down... - + Dogecoin Core sementara dimatikan... - Do not shut down the computer until this window disappears. - + Kamu tidak dapat mematikan komputer sebelum jendela ini tertutup sendiri. SignVerifyMessageDialog - Signatures - Sign / Verify a Message - + Tanda Tangan / Verifikasi sebuah Pesan - &Sign Message - + &Tandakan Pesan - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - + Alamat yang akan ditandai pesan (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Pilih alamat yang telah digunakan sebelumnya - - Alt+A Alt+J - Paste address from clipboard Tempel alamat dari salinan - Alt+P Alt+B - Enter the message you want to sign here - + Masukan pesan yang ingin ditandai disini - Signature - + Tanda Tangan - Copy the current signature to the system clipboard - + Salin tanda tangan terpilih ke sistem klipboard - Sign the message to prove you own this Dogecoin address - + Tandai pesan untuk menyetujui kamu pemiliki alamat Dogecoin ini - Sign &Message - + Tandakan &Pesan - Reset all sign message fields - + Hapus semua bidang penanda pesan - - Clear &All Hapus %Semua - &Verify Message - + &Verifikasi Pesan - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - + Verifikasi &Pesan - Reset all verify message fields - + Hapus semua bidang verifikasi pesan - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Masukkan alamat Dogecoin (cth. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. Alamat yang dimasukkan tidak sesuai. - - - - Please check the address and try again. Silahkan periksa alamat dan coba lagi. - - The entered address does not refer to a key. - + Alamat itu tidak menghubungkan kunci. - Wallet unlock was cancelled. - + Membuka kunci dompet dibatalkan. - Private key for the entered address is not available. - + Kunci pribadi untuk alamat itu tidak tersedia. - Message signing failed. - + Menandai pesan gagal. - Message signed. - + Pesan ditandai. - The signature could not be decoded. - + Tanda tangan tidak bisa diterjemahkan. - - Please check the signature and try again. - + Mohon periksa tanda tangan dan coba kembali - The signature did not match the message digest. - + Tanda tangan tidak cocok dengan intisari pesan. - Message verification failed. - + Verifikasi pesan gagal. - Message verified. - + Pesan terverifikasi. SplashScreen - Dogecoin Core - + Dogecoin Core - The Dogecoin Core developers - + Pembangun Dogecoin Core - [testnet] [testnet] @@ -2641,7 +2134,6 @@ Alamat: %4 TrafficGraphWidget - KB/s KB/s @@ -2649,179 +2141,138 @@ Alamat: %4 TransactionDesc - Open until %1 Buka hingga %1 - + conflicted + Terkonflik + + %1/offline - + %1/tidak terhubung - %1/unconfirmed - %1/tidak terkonfirmasi + %1/belum dikonfirmasi - %1 confirmations %1 konfirmasi - Status Status - , broadcast through %n node(s) - + kirim lewat %n node - Date Tanggal - Source - + Sumber - Generated - + Dibuat - - From Dari - - - To Untuk - - own address - + Alamat saya sendiri - label - + label - - - - - Credit - + Kredit - matures in %n more block(s) - + cukup tua sesudah %n blok lagi - not accepted - + tidak diterima - - - - Debit - + Debet - Transaction fee - + Biaya Transaksi - Net amount - + Nilai bersih - - Message Pesan: - Comment - + Komentar - Transaction ID - + ID Transaksi - Merchant - + Pedagang - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - + Informasi debug - Transaction Transaksi - Inputs - + Masukan - Amount - Jumlah + Nilai - true - + benar - false - + salah - , has not been successfully broadcast yet , belum berhasil disiarkan - Open for %n more block(s) - + Buka untuk %n blok lagi - unknown tidak diketahui @@ -2829,12 +2280,10 @@ Alamat: %4 TransactionDescDialog - Transaction details Rincian transaksi - This pane shows a detailed description of the transaction Jendela ini menampilkan deskripsi rinci dari transaksi tersebut @@ -2842,297 +2291,245 @@ Alamat: %4 TransactionTableModel - Date Tanggal - Type Jenis - Address Alamat - Amount - Jumlah + Nilai - Immature (%1 confirmations, will be available after %2) - + Terlalu muda (cuma %1 konfirmasi, akan siap sesudah %2) - Open for %n more block(s) - + Buka untuk %n blok lagi - Open until %1 Buka hingga %1 - - Offline (%1 confirmations) - Offline (%1 konfirmasi) - - - - Unconfirmed (%1 of %2 confirmations) - Tidak terkonfirmasi (%1 dari %2 konfirmasi) - - - - Confirmed (%1 confirmations) Terkonfirmasi (%1 konfirmasi) - This block was not received by any other nodes and will probably not be accepted! Blok ini tidak diterima oleh node lainnya dan kemungkinan tidak akan diterima! - Generated but not accepted Terbuat tetapi tidak diterima - + Offline + Tidak terhubung + + + Unconfirmed + Belum dikonfirmasi + + + Confirming (%1 of %2 recommended confirmations) + Sedang dikonfirmasi (%1 dari %2 konfirmasi disarankan) + + + Conflicted + Terkonflik + + Received with Diterima dengan - Received from Diterima dari - Sent to Terkirim ke - Payment to yourself Pembayaran ke Anda sendiri - Mined Tertambang - (n/a) (t/s) - Transaction status. Hover over this field to show number of confirmations. Status transaksi. Arahkan ke bagian ini untuk menampilkan jumlah konfrimasi. - Date and time that the transaction was received. Tanggal dan waktu transaksi tersebut diterima. - Type of transaction. Jenis transaksi. - Destination address of transaction. Alamat tujuan dari transaksi. - Amount removed from or added to balance. - Jumlah terbuang dari atau ditambahkan ke saldo. + Nilai dihapus dari atau ditambahkan ke saldo. TransactionView - - All Semua - Today Hari ini - This week Minggu ini - This month Bulan ini - Last month Bulan kemarin - This year Tahun ini - Range... Jarak... - Received with DIterima dengan - Sent to Terkirim ke - To yourself Ke Anda sendiri - Mined Ditambang - Other Lainnya - Enter address or label to search Masukkan alamat atau label untuk mencari - Min amount - Jumlah min + Nilai min - Copy address Salin alamat - Copy label Salin label - Copy amount - Salin jumlah + Salin Nilai - Copy transaction ID - + Menyalinkan ID transaksi - Edit label Ubah label - Show transaction details Tampilkan rincian transaksi - Export Transaction History - + Expor Histori Transaksi - Exporting Failed - + Proses Ekspor Gagal - There was an error trying to save the transaction history to %1. - Exporting Successful - + Proses Ekspor Berhasil - The transaction history was successfully saved to %1. - + Riwayat transaksi berhasil disimpan di %1. - Comma separated file (*.csv) Berkas CSV (*.csv) - Confirmed Terkonfirmasi - Date Tanggal - Type Jenis - Label Label - Address Alamat - Amount - Jumlah + Nilai - ID ID - Range: Jarak: - to ke @@ -3140,15 +2537,13 @@ Alamat: %4 WalletFrame - No wallet has been loaded. - + Tidak ada dompet yang dibuka WalletModel - Send Coins Kirim Koin @@ -3156,154 +2551,125 @@ Alamat: %4 WalletView - &Export - + &Ekspor - Export the data in the current tab to a file - + Ekspor data dalam tab sekarang ke sebuah berkas - Backup Wallet - + Cadangkan Dompet - Wallet Data (*.dat) - + Data Dompet (*.dat) - Backup Failed - + Cadangkgan Gagal - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - + Informasi dalam dompet berhasil disimpan di %1. - Backup Successful - + Cadangkan Berhasil - dogecoin-core + bitcoin-core - Usage: Penggunaan: - List commands Daftar perintah - Get help for a command Dapatkan bantuan untuk perintah - Options: Pilihan: - - Specify configuration file (default: dogecoin.conf) - Tentukan berkas konfigurasi (standar: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Tentukan berkas konfigurasi (standar: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Tentukan berkas pid (standar: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Tentukan berkas pid (standar: bitcoind.pid) - Specify data directory Tentukan direktori data - - Set database cache size in megabytes (default: 25) - Atur ukuran tembolok dalam megabyte (standar: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Menerima hubungan pada <port> (standar: 8333 atau testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Menerima hubungan pada <port> (standar: 22556 atau testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) - Mengatur hubungan paling banyak <n> ke peer (standar: 125) + Mengatur hubungan paling banyak <n> ke peer (standar: 125) - Connect to a node to retrieve peer addresses, and disconnect Hubungkan ke node untuk menerima alamat peer, dan putuskan - Specify your own public address Tentukan alamat publik Anda sendiri - Threshold for disconnecting misbehaving peers (default: 100) Batas untuk memutuskan peer buruk (standar: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Jumlah kedua untuk menjaga peer buruk dari hubung-ulang (standar: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands Menerima perintah baris perintah dan JSON-RPC - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Berjalan dibelakang sebagai daemin dan menerima perintah - Use the test network Gunakan jaringan uji - Accept connections from outside (default: 1 if no -proxy or -connect) - + Terima hubungan dari luar (standar: 1 kalau -proxy atau -connect tidak dipilih) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3311,710 +2677,690 @@ If the file does not exist, create it with owner-readable-only file permissions. It is also recommended to set alertnotify so you are notified of problems; for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo.com - + + - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + Sandi yang diterima (biasanya: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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: 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: Listening for incoming connections failed (listen returned error %d) - + 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. + Gagal: Transaksi ditolak. Ini mungkin terjadi jika beberapa dari koin dalam dompet Anda telah digunakan, seperti ketika Anda menggunakan salinan wallet.dat dan beberapa koin telah dibelanjakan dalam salinan tersebut tetapi disini tidak tertandai sebagai terpakai. + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + Tidak bisa mengikat dengan %s di computer ini. Kemungkinan Dogecoin Core sudah mulai. + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Gunakanlah proxy SOCKS5 yang tersendiri supaya menghubungkan peer dengan layanan tersembunyi Tor (biasanya: -proxy) - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + Peringatan: -paytxfee sangat besar! Ini adalah biaya pengiriman yang akan dibayar oleh Anda jika transaksi terkirim. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. - + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. + Perhatian: Mohon diperiksa pengaturan tanggal dan waktu komputer anda apakah sudah benar! Jika pengaturan waktu salah aplikasi Dogecoin tidak akan berjalan dengan tepat. - Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - + Peringatan: Jaringan tidak semua bersetuju! Beberapa penambang dapat persoalan. - Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - + Peringatan: Kami tidak bersetujuh dengan peer-peer kami! Kemungkinan Anda harus upgrade, atau node-node lain yang harus diupgrade. - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + Awas: wallet.dat tidak bisa dibaca! Berhasil periksakan kunci-kunci dalam arsipnya, tetapi ada kemungkinan informasi tentang transaksi atau isi-isi buku alamat salah atau terhilang. - 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. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: - Attempt to recover private keys from a corrupt wallet.dat - + Coba memulihkan kunci-kunci pribadi dari wallet.dat yang rusak - Dogecoin Core Daemon - + Daemon Dogecoin Core - - Dogecoin Core RPC client version - - - - Block creation options: + Pilihan pembuatan blok: + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) - Connect only to the specified node(s) - + Jangan menghubungkan node(-node) selain yang di daftar - Connect through SOCKS proxy + Hubungkan melalui proxy SOCKS + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) + Connection options: - Corrupted block database detected + Menemukan database blok yang rusak + + + Debugging/Testing options: + + + + Disable safemode, override a real safe mode event (default: 0) - Discover own IP address (default: 1 when listening and no -externalip) - + Cari alamat IP Anda sendiri (biasanya: 1 saat mendengarkan dan -externalip tidak terpilih) - Do not load the wallet and disable wallet RPC calls - Do you want to rebuild the block database now? - + Apakah Anda ingin coba membangun kembali database blok sekarang? - Error initializing block database - Error initializing wallet database environment %s! - Error loading block database - + Gagal memuat database blok - Error opening block database - + Menemukan masalah membukakan database blok - Error: Disk space is low! - + Gagal: Hard disk hampir terisi! - Error: Wallet locked, unable to create transaction! - + Gagal: Dompet terkunci, transaksi tidak bisa dibuat! - Error: system error: Error: system error: - Failed to listen on any port. Use -listen=0 if you want this. - Failed to read block info - + Gagal membaca informasi dari blok - Failed to read block - + Gagal membaca blok - Failed to sync block index - + Gagal menyamakan daftar isi blok - Failed to write block index - + Gagal menulis daftar isi blok - Failed to write block info - + Gagal menulis info blok - Failed to write block - + Gagal menulis blok - Failed to write file info - + Gagal menulis info arsip - Failed to write to coin database - Failed to write transaction index - + Gagal menulis daftar isi transaksi - Failed to write undo data - Fee per kB to add to transactions you send + Biaya untuk setiap kB yang akan ditambahkan ke transaksi yang Anda kirim + + + Fees smaller than this are considered zero fee (for relaying) (default: - Find peers using DNS lookup (default: 1 unless -connect) + Cari peer dengan daftar alamat DNS (biasanya: 1 jika -connect tidak terpilih) + + + Force safe mode (default: 0) - Generate coins (default: 0) - + Buatlah koin (biasanya: 0) - How many blocks to check at startup (default: 288, 0 = all) - + Periksakan berapa blok waktu mulai (biasanya: 288, 0 = setiapnya) - - How thorough the block verification is (0-4, default: 3) - - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? - + Tidak bisa cari blok pertama, atau blok pertama salah. Salah direktori untuk jaringan? - Invalid -onion address: '%s' - + Alamat -onion salah: '%s' - Not enough file descriptors available. - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files - Select SOCKS version for -proxy (4 or 5, default: 5) + Pililah versi SOCKS untuk -proxy (4 atau 5, biasanya: 5) + + + Set database cache size in megabytes (%d to %d, default: %d) - - Send command to Dogecoin Core server - Kirim perintah ke Dogecoin server - - - Set maximum block size in bytes (default: %d) - + Atur ukuran maksimal untuk blok dalam byte (biasanya: %d) - Set the number of threads to service RPC calls (default: 4) - Specify wallet file (within data directory) - + Tentukan arsip dompet (dalam direktori data) - - Start Dogecoin Core server - Mulai Dogecoin server + Spend unconfirmed change when sending transactions (default: 1) + Perubahan saldo untuk transaksi yang belum dikonfirmasi setelah transaksi terkirim (default: 1) - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): + Usage (deprecated, use bitcoin-cli): - Verifying blocks... - + Blok-blok sedang diverifikasi... - Verifying wallet... - + Dompet sedang diverifikasi... - Wait for RPC server to start - + Tunggu sampai server RPC dimulai - Wallet %s resides outside data directory %s - + Dompet %s ada diluar direktori data %s - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex - + Harus membangun ulang database menggunakan -reindex supaya mengubah -txindex - Imports blocks from external blk000??.dat file - + Impor blok dari eksternal berkas blk000???.dat + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + Tidak bisa mengunci data directory %s. Kemungkinan Dogecoin Core sudah mulai. - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Information Informasi - Invalid amount for -minrelaytxfee=<amount>: '%s' - + Nilai yang salah untuk -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' + Nilai yang salah untuk -mintxfee=<amount>: '%s' + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) - Maintain a full transaction index (default: 0) - + Jaga daftar transaksi yang lengkap (biasanya: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - Only accept block chain matching built-in checkpoints (default: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Dilarang menghubungkan node-node selain <net> (IPv4, IPv6 atau Tor) + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) - SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Pilihan SSL: (petunjuk pengaturan SSL lihat dalam Bitcoin Wiki) + + + Send command to Dogecoin Core - Send trace/debug info to console instead of debug.log file - Kirim info lacak/debug ke konsol sebaliknya dari berkas debug.log + Kirim info jejak/debug ke konsol bukan berkas debug.log - Set minimum block size in bytes (default: 0) + Atur ukuran minimal untuk blok dalam byte (standar: 0) + + + 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) - + Mengecilkan berkas debug.log saat klien berjalan (Standar: 1 jika tidak -debug) - Signing transaction failed - + Tandatangani transaksi tergagal - Specify connection timeout in milliseconds (default: 5000) + Menetapkan waktu berakhir koneksi di milidetik (biasanya: 5000) + + + Start Dogecoin Core Daemon - System error: - Transaction amount too small - + Nilai transaksi terlalu kecil - Transaction amounts must be positive - + Nilai transaksi harus positif - Transaction too large - + Transaksi terlalu besar - Use UPnP to map the listening port (default: 0) - Use UPnP to map the listening port (default: 1 when listening) - Username for JSON-RPC connections Nama pengguna untuk hubungan JSON-RPC - Warning Peringatan - Warning: This version is obsolete, upgrade required! + Perhatian: Versi ini sudah lama, perlu ditingkatkan! + + + Zapping all transactions from wallet... + Setiap transaksi dalam dompet sedang di-'Zap'... + + + on startup - version versi - wallet.dat corrupt, salvage failed - + wallet.dat rusak, tidak bisa diperbaiki - Password for JSON-RPC connections Kata sandi untuk hubungan JSON-RPC - Allow JSON-RPC connections from specified IP address Izinkan hubungan JSON-RPC dari alamat IP yang ditentukan - Send commands to node running on <ip> (default: 127.0.0.1) Kirim perintah ke node berjalan pada <ip> (standar: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) Menjalankan perintah ketika perubahan blok terbaik (%s dalam cmd digantikan oleh hash blok) - Upgrade wallet to latest format Perbarui dompet ke format terbaru - Set key pool size to <n> (default: 100) Kirim ukuran kolam kunci ke <n> (standar: 100) - Rescan the block chain for missing wallet transactions Pindai ulang rantai-blok untuk transaksi dompet yang hilang - Use OpenSSL (https) for JSON-RPC connections Gunakan OpenSSL (https) untuk hubungan JSON-RPC - Server certificate file (default: server.cert) Berkas sertifikat server (standar: server.cert) - Server private key (default: server.pem) Kunci pribadi server (standar: server.pem) - This help message Pesan bantuan ini - Unable to bind to %s on this computer (bind returned error %d, %s) Tidak dapat mengikat ke %s dengan komputer ini (ikatan gagal %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Izinkan peninjauan DNS untuk -addnote, -seednode dan -connect - Loading addresses... Memuat alamat... - Error loading wallet.dat: Wallet corrupted Gagal memuat wallet.dat: Dompet rusak - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Gagal memuat wallet.dat: Dompet memerlukan versi Dogecoin yang terbaru - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Dompet diperlukan untuk disimpan-ulang: nyala-ulangkan Dogecoin untuk menyelesaikan - Error loading wallet.dat Gagal memuat wallet.dat - Invalid -proxy address: '%s' Alamat -proxy salah: '%s' - Unknown network specified in -onlynet: '%s' Jaringan tidak diketahui yang ditentukan dalam -onlynet: '%s' - Unknown -socks proxy version requested: %i Diminta versi proxy -socks tidak diketahui: %i - Cannot resolve -bind address: '%s' Tidak dapat menyelesaikan alamat -bind: '%s' - Cannot resolve -externalip address: '%s' Tidak dapat menyelesaikan alamat -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Jumlah salah untuk -paytxfee=<amount>: '%s' + Nilai salah untuk -paytxfee=<amount>: '%s' - Invalid amount - Jumlah salah + Nilai salah - Insufficient funds Saldo tidak mencukupi - Loading block index... Memuat indeks blok... - Add a node to connect to and attempt to keep the connection open Tambahkan node untuk dihubungkan dan upaya untuk menjaga hubungan tetap terbuka - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - - - - Loading wallet... Memuat dompet... - Cannot downgrade wallet Tidak dapat menurunkan versi dompet - Cannot write default address Tidak dapat menyimpan alamat standar - Rescanning... Memindai ulang... - Done loading Memuat selesai - To use the %s option Gunakan pilihan %s - Error Gagal - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4023,4 +3369,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Jika berkas tidak ada, buatlah dengan permisi berkas hanya-dapat-dibaca-oleh-pemilik. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_it.ts b/src/qt/locale/bitcoin_it.ts index 12ae59b05..0e5c3db81 100644 --- a/src/qt/locale/bitcoin_it.ts +++ b/src/qt/locale/bitcoin_it.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core Info su Dogecoin Core - <b>Dogecoin Core</b> version Versione <b>Dogecoin Core</b> - This is experimental software. @@ -27,153 +24,128 @@ Distribuito sotto la licenza software MIT/X11, vedi il file COPYING incluso oppu Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso del Toolkit OpenSSL (http://www.openssl.org/), software crittografico scritto da Eric Young (eay@cryptsoft.com) e software UPnP scritto da Thomas Bernard. - Copyright Copyright - The Dogecoin Core developers Gli sviluppatori del Dogecoin Core + + (%1-bit) + (%1-bit) + AddressBookPage - Double-click to edit address or label - Fai doppio click per modificare o cancellare l'etichetta + Doppio click per modificare l'indirizzo o l'etichetta - Create a new address Crea un nuovo indirizzo - &New &Nuovo - Copy the currently selected address to the system clipboard - Copia l'indirizzo attualmente selezionato nella clipboard + Copia l'indirizzo attualmente selezionato negli appunti - &Copy &Copia - C&lose C&hiudi - &Copy Address &Copia l'indirizzo - Delete the currently selected address from the list Cancella l'indirizzo attualmente selezionato dalla lista - Export the data in the current tab to a file - Esporta i dati nella tabella corrente su un file + Esporta su file i dati della tabella corrente - &Export &Esporta - &Delete &Cancella - Choose the address to send coins to - Scegli l'indirizzo a cui inviare le monete per + Scegli l'indirizzo a cui inviare bitcoin - Choose the address to receive coins with - Scegli l'indirizzo in cui ricevere le monete con + Scegli l'indirizzo con cui ricevere bitcoin - C&hoose Sc&egli - Very sending addresses - Indirizzi invianti + Indirizzi d'invio - Much receiving addresses - Indirizzi riceventi + Indirizzi di ricezione - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Questi sono i tuoi indirizzi Dogecoin per inviare pagamenti. Controlla sempre l'importo e l'indirizzo del beneficiario prima di inviare dogecoin + Questo è un elenco di indirizzi bitcoin a cui puoi inviare pagamenti. Controlla sempre l'importo e l'indirizzo del beneficiario prima di inviare bitcoin. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Questi sono i tuoi indirizzi Dogecoin per inviare pagamenti. Controlla sempre l'importo e l'indirizzo del beneficiario prima di inviare dogecoin + Questi sono i tuoi indirizzi bitcoin che puoi usare per ricevere pagamenti. Si raccomanda di generare un nuovo indirizzo per ogni transazione. - Copy &Label Copia &l'etichetta - &Edit &Modifica - Export Address List Esporta Lista Indirizzi - Comma separated file (*.csv) Testo CSV (*.csv) - Exporting Failed Esportazione Fallita. - There was an error trying to save the address list to %1. - C'è stato un errore tentanto di salvare la lista indirizzi in %1. + Si è verificato un errore tentando di salvare la lista degli indirizzi in %1. AddressTableModel - Label Etichetta - Address Indirizzo - (no label) (nessuna etichetta) @@ -181,140 +153,106 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso AskPassphraseDialog - Passphrase Dialog Finestra passphrase - Enter passphrase Inserisci la passphrase - New passphrase Nuova passphrase - Repeat new passphrase - Ripeti la passphrase + Ripeti la nuova passphrase - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Inserisci la passphrase per il portamonete.<br/>Per piacere usare unapassphrase di <b>10 o più caratteri casuali</b>, o <b>otto o più parole</b>. + Inserisci la nuova passphrase per il portamonete.<br/>Si prega di usare una passphrase di <b>10 o più caratteri casuali</b>, o di <b>otto o più parole</b>. - Encrypt wallet Cifra il portamonete - This operation needs your wallet passphrase to unlock the wallet. Quest'operazione necessita della passphrase per sbloccare il portamonete. - Unlock wallet Sblocca il portamonete - This operation needs your wallet passphrase to decrypt the wallet. Quest'operazione necessita della passphrase per decifrare il portamonete, - Decrypt wallet Decifra il portamonete - Change passphrase Cambia la passphrase - Enter the old and new passphrase to the wallet. Inserisci la vecchia e la nuova passphrase per il portamonete. - Confirm wallet encryption Conferma la cifratura del portamonete - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Attenzione: se si cifra il portamonete e si perde la frase d'ordine, <b>SI PERDERANNO TUTTI I PROPRI DOGECOIN</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Attenzione: se si cifra il portamonete e si perde la passphrase <b>TUTTI I PROPRI Dogecoin ANDRANNO PERSI</b>! - Are you sure you wish to encrypt your wallet? Si è sicuri di voler cifrare il portamonete? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - IMPORTANTE: qualsiasi backup del portafoglio effettuato precedentemente dovrebbe essere sostituito con il file del portafoglio criptato appena generato. Per ragioni di sicurezza, i backup precedenti del file del portafoglio non criptato diventeranno inservibili non appena si inizi ad usare il nuovo portafoglio criptato. + IMPORTANTE: qualsiasi backup del file portamonete effettuato in precedenza dovrà essere sostituito con il file del portamonete cifrato appena generato. Per ragioni di sicurezza, i precedenti backup del file del portamonete non cifrato diventeranno inservibili non appena si inizierà ad utilizzare il nuovo portamonete cifrato. - - Warning: The Caps Lock key is on! - Attenzione: tasto Blocco maiuscole attivo. + Attenzione: il tasto Blocco maiuscole è attivo! - - Wallet encrypted Portamonete cifrato - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin verrà ora chiuso per finire il processo di crittazione. Ricorda che criptare il tuo portamonete non può fornire una protezione totale contro furti causati da malware che dovessero infettare il tuo computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin si chiuderà per portare a termine il processo di cifratura. Ricorda che cifrare il tuo portamonete non può fornire una protezione totale contro i furti causati da infezioni malware. - - - - Wallet encryption failed Cifratura del portamonete fallita - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Cifratura del portamonete fallita a causa di un errore interno. Il portamonete non è stato cifrato. - - The supplied passphrases do not match. Le passphrase inserite non corrispondono. - Wallet unlock failed Sblocco del portamonete fallito - - - The passphrase entered for the wallet decryption was incorrect. La passphrase inserita per la decifrazione del portamonete è errata. - Wallet decryption failed Decifrazione del portamonete fallita - Wallet passphrase was successfully changed. Passphrase del portamonete modificata con successo. @@ -322,352 +260,286 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso BitcoinGUI - Sign &message... Firma il &messaggio... - Synchronizing with network... - Sto sincronizzando con la rete... + Sincronizzazione con la rete in corso... - &Overview &Sintesi - Node Nodo - Show general overview of wallet Mostra lo stato generale del portamonete - &Transactions &Transazioni - Browse transaction history - Cerca nelle transazioni + Mostra la cronologia delle transazioni - E&xit &Esci - Quit application Chiudi applicazione - - Show information about Dogecoin Core + Show information about Dogecoin Mostra informazioni su Dogecoin - - About &Qt Informazioni su &Qt - Show information about Qt Mostra informazioni su Qt - &Options... &Opzioni... - &Encrypt Wallet... &Cifra il portamonete... - &Backup Wallet... &Backup Portamonete... - &Change Passphrase... &Cambia la passphrase... - Very &sending addresses... - &Indirizzi invianti + &Indirizzi d'invio... - Much &receiving addresses... - Indirizzi &riceventi... + Indirizzi di &ricezione... - Open &URI... Apri &URI... - Importing blocks from disk... - Importa blocchi dal disco... + Importazione blocchi dal disco... - Reindexing blocks on disk... Re-indicizzazione blocchi su disco... - Send coins to a Dogecoin address - Invia monete ad un indirizzo dogecoin + Invia monete ad un indirizzo bitcoin - - Modify configuration options for Dogecoin Core - Modifica configurazione opzioni per dogecoin + Modify configuration options for Dogecoin + Modifica opzioni di configurazione per bitcoin - Backup wallet to another location - Backup portamonete in un'altra locazione + Effettua il backup del portamonete - Change the passphrase used for wallet encryption - Cambia la passphrase per la cifratura del portamonete + Cambia la passphrase utilizzata per la cifratura del portamonete - &Debug window Finestra &Debug - Open debugging and diagnostic console - Apri la console di degugging e diagnostica + Apri la console di debugging e diagnostica - &Verify message... &Verifica messaggio... - Dogecoin Dogecoin - Wallet Portamonete - &Send - &Spedisci + &Invia - &Receive &Ricevi - - &Show / Hide - &Mostra/Nascondi + &Mostra / Nascondi - Show or hide the main Window Mostra o nascondi la Finestra principale - Encrypt the private keys that belong to your wallet - Crittografa le chiavi private che appartengono al tuo portafoglio + Cifra le chiavi private che appartengono al tuo portamonete - Sign messages with your Dogecoin addresses to prove you own them - Firma i messaggi con il tuo indirizzo Dogecoin per dimostrare di possederli + Firma i messaggi con il tuo indirizzo bitcoin per dimostrarne il possesso - Verify messages to ensure they were signed with specified Dogecoin addresses - Verifica i messaggi per accertarsi che siano stati firmati con gli indirizzi Dogecoin specificati + Verifica i messaggi per accertare che siano stati firmati con gli indirizzi bitcoin specificati - &File &File - &Settings &Impostazioni - &Help &Aiuto - Tabs toolbar Barra degli strumenti "Tabs" - - [testnet] [testnet] - Dogecoin Core Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) - Richiedi pagamenti (genera codici QR e dogecoin: URI) + Request payments (generates QR codes and bitcoin: URIs) + Richiedi pagamenti (genera codici QR e bitcoin: URI) - - &About Dogecoin Core - %Info su Dogecoin Core + Info su Dogecoin Core - Show the list of used sending addresses and labels - Modifica la lista degli indirizzi salvati e delle etichette + Mostra la lista degli indirizzi di invio utilizzati - Show the list of used receiving addresses and labels - Mostra la lista di indirizzi su cui ricevere pagamenti + Mostra la lista degli indirizzi di ricezione utilizzati - - Open a dogecoin: URI or payment request - Apri un dogecoin: URI o richiesta di pagamento + Open a bitcoin: URI or payment request + Apri un URI o una richiesta di pagamento - &Command-line options Opzioni riga di &comando - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options Mostra il messaggio di aiuto di Dogecoin Core per avere la lista di tutte le opzioni della riga di comando di Dogecoin. - - Dogecoin client Dogecoin client - %n active connection(s) to Dogecoin network %n connessione attiva alla rete Dogecoin%n connessioni attive alla rete Dogecoin - No block source available... - Nessun blocco di codice sorgente disponibile + Nessuna fonte di blocchi disponibile - Processed %1 of %2 (estimated) blocks of transaction history. - Processati %1 di %2 (circa) blocchi della cronologia transazioni. + Processati %1 di %2 blocchi totali (stimati) della cronologia transazioni. - Processed %1 blocks of transaction history. Processati %1 blocchi della cronologia transazioni. - %n hour(s) %n ora%n ore - %n day(s) %n giorno%n giorni - %n week(s) %n settimana%n settimane - - %1 behind - %1 dietro + %1 and %2 + %1 e %2 + + + %n year(s) + %n anno%n anni + + + %1 behind + Indietro di %1 - 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. - Error Errore - Warning Attenzione - Information Informazioni - Up to date Aggiornato - Catching up... In aggiornamento... - Sent transaction Transazione inviata - Incoming transaction Transazione ricevuta - Date: %1 Amount: %2 Type: %3 @@ -681,25 +553,21 @@ Indirizzo: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Il portamonete è <b>cifrato</b> e attualmente <b>sbloccato</b> + Il portamonete è <b>cifrato</b> ed attualmente <b>sbloccato</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - Il portamonete è <b>cifrato</b> e attualmente <b>bloccato</b> + Il portamonete è <b>cifrato</b> ed attualmente <b>bloccato</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. - Riscontrato un errore irreversibile. Dogecoin non può più continuare in sicurezza e verrà terminato. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. + Riscontrato un errore irreversibile. Dogecoin non può più continuare in sicurezza e sarà terminato. ClientModel - Network Alert Avviso di rete @@ -707,291 +575,230 @@ Indirizzo: %4 CoinControlDialog - Coin Control Address Selection Selezione Indirizzo Coin Control - Quantity: Quantità: - Bytes: Byte: - Amount: Importo: - Priority: Priorità: - Fee: Commissione: - Low Output: Low Output: - After Fee: Dopo Commissione: - Change: Resto: - (un)select all (de)seleziona tutto - Tree mode Modalità Albero - List mode Modalità Lista - Amount Importo - Address Indirizzo - Date Data - Confirmations Conferme: - Confirmed Confermato - Priority Priorità - Copy address Copia l'indirizzo - Copy label Copia l'etichetta - - Copy amount Copia l'importo - Copy transaction ID Copia l'ID transazione - Lock unspent Bloccare non spesi - Unlock unspent Sbloccare non spesi - Copy quantity Copia quantità - Copy fee Copia commissione - Copy after fee Copia dopo commissione - Copy bytes Copia byte - Copy priority Copia priorità - Copy low output Copia low output - Copy change Copia resto - highest massima - higher superiore - high alta - medium-high medio-alta - medium media - low-medium medio-bassa - low bassa - lower minore - lowest - infima + minima - (%1 locked) (%1 bloccato) - none nessuno - Dust Trascurabile - yes - si + - no no - This label turns red, if the transaction size is greater than 1000 bytes. - Questa etichetta diventa rossa, se la dimensione della transazione supera i 1000 bytes + Questa etichetta diventa rossa se la dimensione della transazione supera i 1000 bytes - - This means a fee of at least %1 per kB is required. Questo significa che è richiesta una commissione di almeno %1 per ogni kB. - Can vary +/- 1 byte per input. Può variare di +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - Le transazioni con priorita' piu' alta e' piu' probabile che vengano incluse in un blocco. + Le transazioni con priorità più alta hanno più probabilità di essere incluse in un blocco. - This label turns red, if the priority is smaller than "medium". - Questa etichetta diventa rossa, se la priorità è più piccola di "media". + Questa etichetta diventa rossa se la priorità è inferiore a "media". - This label turns red, if any recipient receives an amount smaller than %1. - Questa etichetta diventa rossa, se qualsiasi destinatario riceve un ammontare inferiore di %1. + Questa etichetta diventa rossa se uno qualsiasi dei destinatari riceve un ammontare inferiore di %1. - - This means a fee of at least %1 is required. Questo significa che è richiesta una commissione di almeno %1 - Amounts below 0.546 times the minimum relay fee are shown as dust. - Importi inferiori a 0.546 volte la commissione minima di trasferimento sono mostrati come trascurabili. + Importi inferiori a 0,546 volte la commissione minima di trasferimento sono mostrati come trascurabili. - This label turns red, if the change is smaller than %1. - Questa etichetta diventa rossa, se il resto è più piccolo di %1. + Questa etichetta diventa rossa se il resto è minore di %1. - - (no label) (nessuna etichetta) - change from %1 (%2) resto da %1 (%2) - (change) (resto) @@ -999,67 +806,54 @@ Indirizzo: %4 EditAddressDialog - Edit Address Modifica l'indirizzo - &Label &Etichetta - The label associated with this address list entry L'etichetta associata con questa voce della lista degli indirizzi - The address associated with this address list entry. This can only be modified for sending addresses. - L'indirizzo associato a questa voce della rubrica. Si può modificare solo negli indirizzi di spedizione. + L'indirizzo associato a questa voce della rubrica. Può essere modificato solo per gli indirizzi d'invio. - &Address &Indirizzo - New receiving address Nuovo indirizzo di ricezione - New sending address Nuovo indirizzo d'invio - Edit receiving address Modifica indirizzo di ricezione - Edit sending address Modifica indirizzo d'invio - The entered address "%1" is already in the address book. L'indirizzo inserito "%1" è già in rubrica. - The entered address "%1" is not a valid Dogecoin address. - L'indirizzo inserito "%1" non è un indirizzo dogecoin valido. + L'indirizzo inserito "%1" non è un indirizzo bitcoin valido. - Could not unlock wallet. Impossibile sbloccare il portamonete. - New key generation failed. Generazione della nuova chiave non riuscita. @@ -1067,27 +861,22 @@ Indirizzo: %4 FreespaceChecker - A new data directory will be created. Sarà creata una nuova cartella dati. - name Nome - Directory already exists. Add %1 if you intend to create a new directory here. La cartella esiste già. Aggiungi %1 se intendi creare qui una nuova cartella. - Path already exists, and is not a directory. - Percorso già esistente, e non è una cartella. + Il percorso è già esistente e non è una cartella. - Cannot create data directory here. Qui non è possibile creare una cartella dati. @@ -1095,52 +884,46 @@ Indirizzo: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - Opzioni linea di comando + Dogecoin Core - Opzioni riga di comando - Dogecoin Core Dogecoin Core - version versione - Usage: Utilizzo: - command-line options opzioni riga di comando - UI options UI opzioni - Set language, for example "de_DE" (default: system locale) Imposta lingua, ad esempio "it_IT" (predefinita: lingua di sistema) - Start minimized - Parti in icona + Avvia ridotto a icona + + + Set SSL root certificates for payment request (default: -system-) + Imposta i certificati radice SSL per le richieste di pagamento (predefinito: -system-) - Show splash screen on startup (default: 1) Mostra finestra di presentazione all'avvio (predefinito: 1) - Choose data directory on startup (default: 0) Scegli una cartella dati all'avvio (predefinito: 0) @@ -1148,57 +931,46 @@ Indirizzo: %4 Intro - Welcome Benvenuto - Welcome to Dogecoin Core. Benvenuti su Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Visto che questa è la prima volta che il programma viene lanciato, puoi scegliere dove Dogecoin-Qt salverà i suoi dati. + Visto che questa è la prima volta che il programma viene lanciato, puoi scegliere dove Dogecoin Core salverà i propri dati. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Dogecoin Core scaricherà e salverà una copia del block chain di Dogecoin. Almeno %1GB di dati saranno salvati in questa cartella, e aumenteranno col tempo. Anche il portafoglio sarà salvato in questa cartella. + Dogecoin Core scaricherà e salverà una copia del block chain di Dogecoin. Almeno %1GB di dati che andranno ad aumentare col tempo saranno salvati in questa cartella. Anche il portamonete sarà salvato in questa cartella. - Use the default data directory - Usa la cartella dati predefinita. + Usa la cartella dati predefinita - Use a custom data directory: Usa una cartella dati personalizzata: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. Errore: La cartella dati "%1" specificata non può essere creata. - Error Errore - GB of free space available GB di spazio libero disponibile - (of %1GB needed) (di %1GB richiesti) @@ -1206,27 +978,22 @@ Indirizzo: %4 OpenURIDialog - Open URI Apri URI - Open payment request from URI or file Apri richiesta di pagamento da URI o file - URI: URI: - Select payment request file Seleziona il file di richiesta di pagamento - Select payment request file to open Seleziona il file di richiesta di pagamento da aprire @@ -1234,243 +1001,206 @@ Indirizzo: %4 OptionsDialog - Options Opzioni - &Main &Principale - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Commissione di transazione per kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. Le transazioni sono per la maggior parte da 1 kB. Commissione raccomandata 0,01. + Commissione di transazione per kB: è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. La maggior parte della transazioni ha dimensioni pari a 1 kB. - Pay transaction &fee Paga la &commissione - - Automatically start Dogecoin Core after logging in to the system. - Avvia automaticamente Dogecoin all'accensione del computer + Automatically start Dogecoin after logging in to the system. + Avvia automaticamente Dogecoin una volta effettuato l'accesso al sistema. - - &Start Dogecoin Core on system login - &Fai partire Dogecoin all'avvio del sistema + &Start Dogecoin on system login + &Avvia Dogecoin all'accesso al sistema - Size of &database cache Dimensione della cache del &database. - - Set database cache size in megabytes (default: 25) - Imposta la dimensione cache del database in megabyte (predefinita: 25) - - - MB MB - Number of script &verification threads - Numero di thread di &verification degli script + Numero di thread di &verifica degli script - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Imposta il numero di thread di verifica script (fino a 16, 0 = auto, <0 = lascia il maggior numero di core liberi, predefinito: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - Connetti alla rete Dogecoin attraverso un proxy SOCKS. + Connessione alla rete Dogecoin attraverso un proxy SOCKS. - &Connect through SOCKS proxy (default proxy): - &Connetti attraverso proxy SOCKS (proxy predefinito): + &Connessione attraverso proxy SOCKS (proxy predefinito): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) Indirizzo IP del proxy (es: IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Attiva le opzioni command-line che ignorano queste opzioni: + Opzioni command-line attive che sostituiscono i settaggi sopra elencati: - Reset all client options to default. - Ripristina tutte le opzioni del client alle predefinite. + Reimposta tutte le opzioni del client allo stato predefinito. - &Reset Options &Ripristina Opzioni - &Network Rete - + (0 = auto, <0 = leave that many cores free) + (0 = automatico, <0 = lascia questo numero di core liberi) + + + W&allet + Port&amonete + + + Expert + Esperti + + + Enable coin &control features + Abilita le funzionalità di coin &control + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Disabilitando l'uso di resti non confermati, il resto di una transazione non potrà essere speso fino a quando la transazione non avrà ottenuto almeno una conferma. Questa impostazione influisce inoltre sul calcolo saldo. + + + &Spend unconfirmed change + %Spendere resti non confermati + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Apri automaticamente la porta del client Dogecoin sul router. Questo funziona solo se il router supporta UPnP ed è abilitato. + Apri automaticamente la porta del client Dogecoin sul router. Il protocollo UPnP deve essere supportato da parte del router ed attivo. - Map port using &UPnP - Mappa le porte tramite l'&UPnP + Mappa le porte tramite &UPnP - Proxy &IP: &IP del proxy: - &Port: &Porta: - Port of the proxy (e.g. 9050) Porta del proxy (es. 9050) - SOCKS &Version: SOCKS &Version: - SOCKS version of the proxy (e.g. 5) Versione SOCKS del proxy (es. 5) - &Window &Finestra - Show only a tray icon after minimizing the window. - Mostra solo un'icona nel tray quando si minimizza la finestra + Mostra solo nella tray bar quando si riduce ad icona. - &Minimize to the tray instead of the taskbar - &Minimizza sul tray invece che sulla barra delle applicazioni + &Minimizza nella tray bar invece che sulla barra delle applicazioni - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Riduci ad icona, invece di uscire dall'applicazione quando la finestra viene chiusa. Quando questa opzione è attivata, l'applicazione verrà chiusa solo dopo aver selezionato Esci nel menu. + Riduci ad icona invece di uscire dall'applicazione quando la finestra viene chiusa. Se l'opzione è attiva, l'applicazione terminerà solo dopo aver selezionato Esci dal menu File. - M&inimize on close M&inimizza alla chiusura - &Display &Mostra - User Interface &language: &Lingua Interfaccia Utente: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. La lingua dell'interfaccia utente può essere impostata qui. L'impostazione avrà effetto dopo il riavvio di Dogecoin. - &Unit to show amounts in: - &Unità di misura degli importi in: + &Unità di misura con cui visualizzare gli importi: - Choose the default subdivision unit to show in the interface and when sending coins. - Scegli l'unità di suddivisione predefinita per l'interfaccia e per l'invio di monete + Scegli l'unità di suddivisione predefinita da utilizzare per l'interfaccia e per l'invio di monete. - Whether to show Dogecoin addresses in the transaction list or not. - Se mostrare l'indirizzo Dogecoin nella transazione o meno. + Specifica se gli indirizzi saranno visualizzati nella lista delle transazioni. - &Display addresses in transaction list &Mostra gli indirizzi nella lista delle transazioni - Whether to show coin control features or not. - Mostrare/non mostrare le funzionalita' di controllo della moneta. + Specifica se le funzionalita di coin control saranno visualizzate. - - Display coin &control features (experts only) - Mostrare funzionalità coin &control (solo per esperti) - - - &OK &OK - &Cancel &Cancella - default predefinito - none nessuno - Confirm options reset Conferma ripristino opzioni - - Client restart required to activate changes. - Riavvio del client richiesto per attivare cambiamenti. + È necessario un riavvio del client per rendere attivi i cambiamenti. - Client will be shutdown, do you want to proceed? - Il client si spegnerà, vuoi procedere? + Il client sarà arrestato, vuoi procedere? - This change would require a client restart. Questo cambiamento richiede un riavvio del client. - The supplied proxy address is invalid. L'indirizzo proxy che hai fornito è invalido. @@ -1478,163 +1208,125 @@ Indirizzo: %4 OverviewPage - Form Modulo - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - Le informazioni visualizzate sono datate. Il tuo partafogli verrà sincronizzato automaticamente con il network Dogecoin dopo che la connessione è stabilita, ma questo processo non può essere completato ora. + Le informazioni visualizzate potrebbero non essere aggiornate. Il portamonete si sincronizza automaticamente con la rete Dogecoin una volta stabilita una connessione, ma questo processo non è ancora stato completato. - - Unconfirmed: - Non confermato: - - - Wallet Portamonete - - Confirmed: - Confermato: + Available: + Disponibile: - Your current spendable balance Saldo spendibile attuale - - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Totale delle transazioni in corso di conferma, che non sono ancora incluse nel saldo spendibile attuale + Pending: + In attesa: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Totale delle transazioni in corso di conferma e che non sono ancora conteggiate nel saldo spendibile - Immature: Immaturo: - Mined balance that has not yet matured - Importo scavato che non è ancora maturato + Importo generato dal mining e non ancora maturato - Total: Totale: - Your current total balance Saldo totale attuale - <b>Recent transactions</b> <b>Transazioni recenti</b> - - out of sync - fuori sincrono + non sincronizzato PaymentServer - - URI handling Gestione URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Impossibile interpretare l'URI! Ciò può essere causato da un indirizzo Dogecoin invalido o da parametri URI non corretti. + Impossibile interpretare l'URI! Ciò può essere provocato da un indirizzo Dogecoin non valido o da parametri URI non corretti. - Requested payment amount of %1 is too small (considered dust). - L'importo di pagamento richiesto di %1 è troppo basso (ed e' quindi trascurabile). + L'importo di pagamento richiesto di %1 è troppo basso (considerato come trascurabile). - - - - - - Payment request error Errore di richiesta di pagamento - - Cannot start dogecoin: click-to-pay handler - Impossibile avviare dogecoin: gestore click-to-pay + Cannot start bitcoin: click-to-pay handler + Impossibile avviare bitcoin: gestore click-to-pay - Net manager warning Avviso Net manager - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Il tuo proxy attivo non supporta SOCKS5, il quale è necessario per richieste di pagamento via proxy. + Il proxy attualmente attivo non supporta SOCKS5, il quale è necessario per richieste di pagamento via proxy. - Payment request fetch URL is invalid: %1 - Richiesta di pagamento per recuperare URL non valida: %1 + URL di recupero della Richiesta di pagamento non valido: %1 - Payment request file handling Gestione del file di richiesta del pagamento - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Il file di richiesta del pagamento non puo' essere letto o elaborato! Il file in questione potrebbe essere danneggiato. + Il file di richiesta del pagamento non può essere letto o elaborato! Il file in questione potrebbe essere danneggiato. - Unverified payment requests to custom payment scripts are unsupported. Le richieste di pagamento non verificate verso script di pagamento personalizzati non sono supportate. - Refund from %1 Rimborso da %1 - Error communicating with %1: %2 Errore di comunicazione con %1: %2 - Payment request can not be parsed or processed! - La richiesta di pagamento non può essere analizzata e processata! + La richiesta di pagamento non può essere analizzata o processata! - Bad response from server %1 - Risposta sbagliata dal server %1 + Risposta errata da parte del server %1 - Payment acknowledged Pagamento riconosciuto - Network request error Errore di richiesta di rete @@ -1642,41 +1334,45 @@ Indirizzo: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Errore: La cartella dati "%1" specificata non esiste. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Errore: impossibile interpretare il file di configurazione: %1. Usare esclusivamente la sintassi chiave=valore. + + Error: Invalid combination of -regtest and -testnet. Errore: combinazione di -regtest e -testnet non valida. + + Dogecoin Core did't yet exit safely... + Dogecoin Core non è ancora stato chiuso in modo sicuro ... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Inserisci un indirizzo Dogecoin (ad esempio DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... &Salva Immagine - &Copy Image &Copia Immagine - Save QR Code Salva codice QR - PNG Image (*.png) Immagine PNG (*.png) @@ -1684,192 +1380,146 @@ Indirizzo: %4 RPCConsole - Client name Nome del client - - - - - - - - - - - N/A N/D - Client version Versione client - &Information - &Informazione + &Informazioni - Debug window Finestra di debug - General Generale - Using OpenSSL version Versione OpenSSL in uso - Startup time Tempo di avvio - Network Rete - Name Nome - Number of connections - Numero connessioni + Numero di connessioni - Block chain Block chain - Current number of blocks Numero attuale di blocchi - Estimated total blocks Numero totale stimato di blocchi - Last block time - Ora dell blocco piu recente + Ora del blocco più recente - &Open &Apri - &Console &Console - &Network Traffic &Traffico di Rete - &Clear &Cancella - Totals Totali - In: Entrata: - Out: Uscita: - Build date Data di creazione - Debug log file File log del Debug - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Apri il file di log del debug di Dogecoin dalla cartella attuale. Può richiedere alcuni secondi per file di log grandi. - Clear console - Svuota console + Cancella console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Benvenuto nella console RPC di Dogecoin - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Usa le frecce direzionali per navigare la cronologia, e <b>Ctrl-L</b> per cancellarla. - Type <b>help</b> for an overview of available commands. Scrivi <b>help</b> per un riassunto dei comandi disponibili - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 m - %1 h %1 h - %1 h %2 m %1 h %2 m @@ -1877,441 +1527,363 @@ Indirizzo: %4 ReceiveCoinsDialog - &Amount: &Importo: - &Label: &Etichetta - &Message: &Messaggio: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Riutilizza un indirizzo di ricezione già usato. Riutilizzare indirizza non è sicuro. Non usare senza rigenerare una richiesta di pagamanto. + Riutilizza uno degli indirizzi di ricezione generati in precedenza. Riutilizzare un indirizzo comporta problemi di sicurezza e privacy. Non utilizzare a meno che non si stia rigenerando una richiesta di pagamento creata in precedenza. - R&euse an existing receiving address (not recommended) - R&iusa un indirizzo di pagamento (non raccomandato) + R&iusa un indirizzo di ricezione (non raccomandato) - - An optional label to associate with the new receiving address - Un'etichetta facoltativa da associare al nuovo indirizzo ricevente - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - Un messaggio facoltativo da allegare alla richiesta di pagamento, il quale sarà mostrato quando la richiesta è aperta. Nota: Il messaggio non verrà inviato con il pagamento attraverso il network Dogecoin. + Un messaggio opzionale da allegare alla richiesta di pagamento, il quale sarà mostrato all'apertura della richiesta. Nota: Il messaggio non sarà inviato con il pagamento sulla rete Dogecoin. + + + An optional label to associate with the new receiving address. + Un'etichetta facoltativa da associare al nuovo indirizzo di ricezione - Use this form to request payments. All fields are <b>optional</b>. Usa questo modulo per richiedere pagamenti. Tutti i campi sono <b>opzionali</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Un importo facoltativo da richiedere. Lasciare vuoto o a zero per non richiedere un importo specifico. + Un importo opzionale da associare alla richiesta. Lasciare vuoto o a zero per non richiedere un importo specifico. - Clear all fields of the form. Cancellare tutti i campi del modulo. - Clear Cancella - + Requested payments history + Cronologia pagamenti richiesti + + &Request payment &Richiedi pagamento - - Requested payments - Pagamenti richiesti - - - Show the selected request (does the same as double clicking an entry) - Mostra la richiesta selezionata (fa la stessa cosa che il doppio click sul campo) + Mostra la richiesta selezionata (produce lo stesso effetto di un doppio click su una voce) - Show Mostra - Remove the selected entries from the list Rimuovi le voci selezionate dalla lista - Remove Rimuovi + + Copy label + Copia l'etichetta + + + Copy message + Copia messaggio + + + Copy amount + Copia l'importo + ReceiveRequestDialog - QR Code Codice QR - Copy &URI Copia &URI - Copy &Address Copia &Indirizzo - &Save Image... &Salva Immagine - Request payment to %1 Richiesta di pagamento a %1 - Payment information Informazioni pagamento - URI URI - Address Indirizzo - Amount Importo - Label Etichetta - Message Messaggio - Resulting URI too long, try to reduce the text for label / message. - L'URI risulta troppo lungo, prova a ridurre il testo nell'etichetta / messaggio. + L'URI risultante è troppo lungo, prova a ridurre il testo nell'etichetta / messaggio. - Error encoding URI into QR Code. - Errore nella codifica URI nel codice QR + Errore nella codifica dell'URI nel codice QR RecentRequestsTableModel - Date Data - Label Etichetta - Message Messaggio - Amount Importo - (no label) (nessuna etichetta) - (no message) (nessun messaggio) + + (no amount) + (nessun importo) + SendCoinsDialog - - - Send Coins - Spedisci Dogecoin + Invia Dogecoin - Coin Control Features Funzionalità di Coin Control - Inputs... Input... - automatically selected selezionato automaticamente - Insufficient funds! Fondi insufficienti! - Quantity: Quantità: - Bytes: Byte: - Amount: Importo: - Priority: Priorità: - Fee: Commissione: - Low Output: Low Output: - After Fee: Dopo Commissione: - Change: Resto: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Se questo e' abilitato e l'indirizzo per il resto e' vuoto o invalido, il resto verra' inviato a un nuovo indirizzo dogecoin generato per lo scopo. + Se questo è abilitato e l'indirizzo per il resto è vuoto o invalido, il resto sarà inviato ad un nuovo indirizzo bitcoin generato appositamente. - Custom change address Personalizza indirizzo di resto - Send to multiple recipients at once - Spedisci a diversi beneficiari in una volta sola + Invia a diversi beneficiari in una volta sola - Add &Recipient &Aggiungi beneficiario - Clear all fields of the form. Cancellare tutti i campi del modulo. - Clear &All Cancella &tutto - Balance: Saldo: - Confirm the send action - Conferma la spedizione + Conferma l'azione di invio - S&end - &Spedisci + &Invia - Confirm send coins - Conferma la spedizione di dogecoin + Conferma l'invio di bitcoin - - - - %1 to %2 %1 a %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Inserisci un indirizzo Dogecoin (ad esempio DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity Copia quantità - Copy amount Copia l'importo - Copy fee Copia commissione - Copy after fee Copia dopo commissione - Copy bytes Copia byte - Copy priority Copia priorità - Copy low output Copia low output - Copy change Copia resto - Total Amount %1 (= %2) Importo Totale %1 (= %2) - or o - The recipient address is not valid, please recheck. - L'indirizzo del beneficiario non è valido, per cortesia controlla. + L'indirizzo del beneficiario non è valido, si prega di ricontrollare. - The amount to pay must be larger than 0. L'importo da pagare dev'essere maggiore di 0. - The amount exceeds your balance. - L'importo è superiore al saldo attuale + L'importo è superiore al tuo saldo attuale - The total exceeds your balance when the %1 transaction fee is included. - Il totale è superiore al saldo attuale includendo la commissione %1. + Il totale è superiore al tuo saldo attuale includendo la commissione di %1. - Duplicate address found, can only send to each address once per send operation. - Trovato un indirizzo doppio, si può spedire solo una volta a ciascun indirizzo in una singola operazione. + Rilevato un indirizzo duplicato, è possibile inviare bitcoin una sola volta agli indirizzi durante un'operazione di invio. - Transaction creation failed! Creazione transazione fallita! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - La transazione e' stata rifiutata! Questo puo' accadere se alcune delle monete nel tuo portafoglio sono gia' state spese, per esempio se hai fatto una copia di un file wallet.dat le quali monete eran gia' state spese, ma non marcate come tali nel file. + 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. - Warning: Invalid Dogecoin address Attenzione: Indirizzo Dogecoin non valido - (no label) (nessuna etichetta) - Warning: Unknown change address - Attenzione: Indirizzo di ritorno sconosciuto + Attenzione: Indirizzo per il resto sconosciuto - Are you sure you want to send? Sei sicuro di voler inviare? - added as transaction fee aggiunto come tassa di transazione - Payment request expired Richiesta di pagamento scaduta - Invalid payment address %1 Indirizzo di pagamento non valido %1 @@ -2319,309 +1891,228 @@ Indirizzo: %4 SendCoinsEntry - - - A&mount: &Importo: - Pay &To: Paga &a: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) L'indirizzo del beneficiario a cui inviare il pagamento (ad esempio DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Inserisci un'etichetta per questo indirizzo, per aggiungerlo nella rubrica - &Label: &Etichetta - Choose previously used address - Scegli indirizzo usato precedentemente + Scegli un indirizzo usato precedentemente - This is a normal payment. Questo è un normale pagamento. - Alt+A Alt+A - Paste address from clipboard Incollare l'indirizzo dagli appunti - Alt+P Alt+P - - - Remove this entry Rimuovi questa voce - Message: Messaggio: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - Messaggio che era incluso nel Dogecoin URI che sarà memorizzato con la transazione per vostro riferimento. Nota: Questo messaggio non sarà inviato attraverso la rete Dogecoin. - - - This is a verified payment request. Questa è una richiesta di pagamento verificata. - Enter a label for this address to add it to the list of used addresses - Inserisci un'etichetta per questo indirizzo per aggiungerlo nella rubrica + Inserisci un'etichetta per questo indirizzo per aggiungerlo alla lista degli indirizzi utilizzati + + + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + Messaggio incluso nel bitcoin URI e che sarà memorizzato con la transazione per vostro riferimento. Nota: Questo messaggio non sarà inviato attraverso la rete Dogecoin. - This is an unverified payment request. Questa è una richiesta di pagamento non verificata. - - Pay To: Pagare a: - - Memo: Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Inserisci un indirizzo Dogecoin (ad esempio DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Dogecoin Core si sta spegnendo... + Arresto di Dogecoin Core in corso... - Do not shut down the computer until this window disappears. - Non spegnere il computer fintanto che non sparisce questa finestra. + Non spegnere il computer fino a quando questa finestra non si sarà chiusa. SignVerifyMessageDialog - Signatures - Sign / Verify a Message Firme - Firma / Verifica un messaggio - &Sign Message &Firma il messaggio - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Puoi firmare messaggi con i tuoi indirizzi per dimostrare che sono tuoi. Fai attenzione a non firmare niente di vago, visto che gli attacchi di phishing potrebbero cercare di spingerti a mettere la tua firma su di loro. Firma solo dichiarazioni completamente dettagliate con cui sei d'accordo. + Puoi firmare messaggi con i tuoi indirizzi in modo da dimostrarne il possesso. Presta attenzione a non firmare dichiarazioni vaghe, attacchi di phishing potrebbero cercare di spingerti ad apporre la tua firma su di esse. Firma solo dichiarazioni completamente dettagliate e delle quali condividi in pieno il contenuto. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Inserisci un indirizzo Dogecoin (ad esempio DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + L'indirizzo con cui firmare il messaggio (ad esempio DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - Scegli indirizzo usato precedentemente + Scegli un indirizzo usato precedentemente - - Alt+A Alt+A - Paste address from clipboard - Incollare l'indirizzo dagli appunti + Incolla l'indirizzo dagli appunti - Alt+P Alt+P - Enter the message you want to sign here Inserisci qui il messaggio che vuoi firmare - Signature Firma - Copy the current signature to the system clipboard Copia la firma corrente nella clipboard - Sign the message to prove you own this Dogecoin address Firma un messaggio per dimostrare di possedere questo indirizzo - Sign &Message Firma &Messaggio - Reset all sign message fields - Reimposta tutti i campi della firma + Reimposta tutti i campi della firma messaggio - - Clear &All Cancella &tutto - &Verify Message &Verifica Messaggio - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - Inserisci l'indirizzo per la firma, il messaggio (verifica di copiare esattamente anche i ritorni a capo, gli spazi, le tabulazioni, etc) e la firma qui sotto, per verificare il messaggio. Verifica che il contenuto della firma non sia più grande di quello del messaggio per evitare attacchi di tipo man-in-the-middle. + Inserisci l'indirizzo del firmatario, il messaggio (assicurati di copiare esattamente anche i ritorni a capo, gli spazi, le tabulazioni, etc..) e la firma qui sotto, per verificare il messaggio. Presta attenzione a non vedere nella firma più di quanto non sia riportato nel messaggio stesso, per evitare di cadere vittima di attacchi di tipo man-in-the-middle. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Inserisci un indirizzo Dogecoin (ad esempio DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + L'indirizzo con cui è stato firmato il messaggio (ad esempio DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verifica il messaggio per assicurarsi che sia stato firmato con l'indirizzo Dogecoin specificato + Verifica il messaggio per accertare che sia stato firmato con l'indirizzo specificato - Verify &Message Verifica &Messaggio - Reset all verify message fields Reimposta tutti i campi della verifica messaggio - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Inserisci un indirizzo Dogecoin (ad esempio DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Clicca "Firma il messaggio" per ottenere la firma - - Enter Dogecoin signature - Inserisci firma Dogecoin - - - - The entered address is invalid. L'indirizzo inserito non è valido. - - - - Please check the address and try again. Per favore controlla l'indirizzo e prova ancora - - The entered address does not refer to a key. - L'indirizzo dogecoin inserito non è associato a nessuna chiave. + L'indirizzo bitcoin inserito non è associato a nessuna chiave. - Wallet unlock was cancelled. - Sblocco del portafoglio annullato. + Sblocco del portamonete annullato. - Private key for the entered address is not available. La chiave privata per l'indirizzo inserito non è disponibile. - Message signing failed. Firma messaggio fallita. - Message signed. Messaggio firmato. - The signature could not be decoded. Non è stato possibile decodificare la firma. - - Please check the signature and try again. Per favore controlla la firma e prova ancora. - The signature did not match the message digest. - La firma non corrisponde al sunto del messaggio. + La firma non corrisponde al digest del messaggio. - Message verification failed. Verifica messaggio fallita. - Message verified. Messaggio verificato. @@ -2629,17 +2120,14 @@ Indirizzo: %4 SplashScreen - Dogecoin Core Dogecoin Core - The Dogecoin Core developers Gli sviluppatori del Dogecoin Core - [testnet] [testnet] @@ -2647,7 +2135,6 @@ Indirizzo: %4 TrafficGraphWidget - KB/s KB/s @@ -2655,179 +2142,138 @@ Indirizzo: %4 TransactionDesc - Open until %1 Aperto fino a %1 - + conflicted + in conflitto + + %1/offline %1/offline - %1/unconfirmed %1/non confermato - %1 confirmations %1 conferme - Status Stato - , broadcast through %n node(s) , trasmesso attraverso %n nodo, trasmesso attraverso %n nodi - Date Data - Source Sorgente - Generated Generato - - From Da - - - To A - - own address proprio indirizzo - label etichetta - - - - - Credit Credito - matures in %n more block(s) - matura in %n ulteriore bloccomatura in altri %n blocchi + matura tra %n bloccomatura tra %n blocchi - not accepted non accettate - - - - Debit Debito - Transaction fee Commissione transazione - Net amount Importo netto - - Message Messaggio - Comment Commento - Transaction ID ID della transazione - Merchant Mercante - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Bisogna attendere %1 blocchi prima di spendere I dogecoin generati. Quando è stato generato questo blocco, è stato trasmesso alla rete per aggiungerlo alla catena di blocchi. Se non riesce a entrare nella catena, verrà modificato in "non accettato" e non sarà spendibile. Questo può accadere a volte, se un altro nodo genera un blocco entro pochi secondi del tuo. + È necessario attendere %1 blocchi prima che i bitcoin generati possano essere spesi. Quando è stato generato questo blocco, è stato trasmesso alla rete in modo da poter essere aggiunto alla block chain. Se l'inserimento avrà esito negativo il suo stato sarà modificato in "non accettato" e risulterà non spendibile. Questo può occasionalmente accadere se un altro nodo genera un blocco entro pochi secondi dal tuo. - Debug information Informazione di debug - Transaction Transazione - Inputs Input - Amount Importo - true vero - false falso - , has not been successfully broadcast yet , non è stato ancora trasmesso con successo - Open for %n more block(s) Aperto per %n altro bloccoAperto per altri %n blocchi - unknown sconosciuto @@ -2835,12 +2281,10 @@ Indirizzo: %4 TransactionDescDialog - Transaction details Dettagli sulla transazione - This pane shows a detailed description of the transaction Questo pannello mostra una descrizione dettagliata della transazione @@ -2848,118 +2292,102 @@ Indirizzo: %4 TransactionTableModel - Date Data - Type Tipo - Address Indirizzo - Amount Importo - Immature (%1 confirmations, will be available after %2) Immaturo (%1 conferme, sarà disponibile fra %2) - Open for %n more block(s) Aperto per %n altro bloccoAperto per altri %n blocchi - Open until %1 Aperto fino a %1 - - Offline (%1 confirmations) - Offline (%1 conferme) - - - - Unconfirmed (%1 of %2 confirmations) - Non confermati (%1 su %2 conferme) - - - - Confirmed (%1 confirmations) Confermato (%1 conferme) - This block was not received by any other nodes and will probably not be accepted! - Questo blocco non è stato ricevuto da altri nodi e probabilmente non sarà accettato! + Questo blocco non è stato ricevuto dagli altri nodi e probabilmente non sarà accettato! - Generated but not accepted Generati, ma non accettati - + Offline + Offline + + + Unconfirmed + Non confermato: + + + Confirming (%1 of %2 recommended confirmations) + In conferma (%1 di %2 conferme raccomandate) + + + Conflicted + In conflitto + + Received with Ricevuto tramite - Received from Ricevuto da - Sent to - Spedito a + Inviato a - Payment to yourself Pagamento a te stesso - Mined Ottenuto dal mining - (n/a) (N / a) - Transaction status. Hover over this field to show number of confirmations. - Stato della transazione. Passare con il mouse su questo campo per vedere il numero di conferme. + Stato della transazione. Passare con il mouse su questo campo per visualizzare il numero di conferme. - Date and time that the transaction was received. Data e ora in cui la transazione è stata ricevuta. - Type of transaction. Tipo di transazione. - Destination address of transaction. Indirizzo di destinazione della transazione. - Amount removed from or added to balance. Importo rimosso o aggiunto al saldo. @@ -2967,178 +2395,142 @@ Indirizzo: %4 TransactionView - - All Tutti - Today Oggi - This week Questa settimana - This month Questo mese - Last month Il mese scorso - This year Quest'anno - Range... Intervallo... - Received with Ricevuto tramite - Sent to - Spedito a + Inviato a - To yourself - A te + A te stesso - Mined Ottenuto dal mining - Other Altro - Enter address or label to search Inserisci un indirizzo o un'etichetta da cercare - Min amount Importo minimo - Copy address Copia l'indirizzo - Copy label Copia l'etichetta - Copy amount Copia l'importo - Copy transaction ID Copia l'ID transazione - Edit label Modifica l'etichetta - Show transaction details Mostra i dettagli della transazione - Export Transaction History - Esporta storico delle transazioni + Esporta lo storico delle transazioni - Exporting Failed Esportazione Fallita. - There was an error trying to save the transaction history to %1. - C'è stato un errore tentanto di salvare la storia della transazione in %1. + Si è verificato un errore durante il salvataggio dello storico delle transazioni in %1. - Exporting Successful Esportazione Riuscita - The transaction history was successfully saved to %1. Lo storico delle transazioni e' stato salvato con successo in %1. - Comma separated file (*.csv) Testo CSV (*.csv) - Confirmed Confermato - Date Data - Type Tipo - Label Etichetta - Address Indirizzo - Amount Importo - ID ID - Range: Intervallo: - to a @@ -3146,177 +2538,139 @@ Indirizzo: %4 WalletFrame - No wallet has been loaded. - Non è stato caricato alcun portafoglio. + Non è stato caricato alcun portamonete. WalletModel - Send Coins - Spedisci Dogecoin + Invia Dogecoin WalletView - &Export &Esporta - Export the data in the current tab to a file - Esporta i dati nella tabella corrente su un file + Esporta su file i dati della tabella corrente - Backup Wallet Backup Portamonete - Wallet Data (*.dat) Dati Portamonete (*.dat) - Backup Failed Backup Fallito - There was an error trying to save the wallet data to %1. - C'è stato un errore tentanto di salvare i dati del portamonete in %1. + Si è verificato un errore durante il salvataggio dei dati del portamonete in %1. - The wallet data was successfully saved to %1. - Il portafoglio è stato correttamente salvato in %1. + Il portamonete è stato correttamente salvato in %1. - Backup Successful Backup eseguito con successo - dogecoin-core + bitcoin-core - Usage: Utilizzo: - List commands - Lista comandi - + Elenca comandi - Get help for a command - Aiuto su un comando - + Aiuto su un comando - Options: - Opzioni: - + Opzioni: - - Specify configuration file (default: dogecoin.conf) - Specifica il file di configurazione (predefinito: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Specifica il file di configurazione (predefinito: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Specifica il file pid (predefinito: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Specifica il file pid (predefinito: bitcoind.pid) - Specify data directory - Specifica la cartella dati - + Specifica la cartella dati - - Set database cache size in megabytes (default: 25) - Imposta la dimensione cache del database in megabyte (predefinita: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Attendi le connessioni su <porta> (predefinita: 8333 o testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Ascolta le connessioni JSON-RPC su <porta> (predefinita: 22556 o testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Mantieni al massimo <n> connessioni ai peer (predefinite: 125) - Connect to a node to retrieve peer addresses, and disconnect - Connessione ad un nodo per ricevere l'indirizzo del peer, e disconnessione + Connettiti ad un nodo per recuperare gli indirizzi dei peer e scollegati - Specify your own public address Specifica il tuo indirizzo pubblico - Threshold for disconnecting misbehaving peers (default: 100) Soglia di disconnessione dei peer di cattiva qualità (predefinita: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Numero di secondi di sospensione che i peer di cattiva qualità devono trascorrere prima di riconnettersi (predefiniti: 86400) + Numero di secondi di sospensione che i peer di cattiva qualità devono attendere prima di potersi riconnettere (predefiniti: 86400) - 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 - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Attendi le connessioni JSON-RPC su <porta> (predefinita: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Attendi le connessioni JSON-RPC su <porta> (predefinita: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - Accetta da linea di comando e da comandi JSON-RPC - + Accetta comandi da riga di comando e JSON-RPC + + + Dogecoin Core RPC client version + Versione client RPC di Dogecoin Core - Run in the background as a daemon and accept commands - Esegui in background come demone e accetta i comandi - + Esegui in background come demone ed accetta i comandi - Use the test network - Utilizza la rete di prova - + Utilizza la rete di prova - Accept connections from outside (default: 1 if no -proxy or -connect) Accetta connessioni dall'esterno (predefinito: 1 se no -proxy o -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3327,728 +2681,708 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, devi impostare una rpcpassword nel file di configurazione: %s Si raccomanda l'uso della seguente password generata casualmente: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (non serve ricordare questa password) Il nome utente e la password NON DEVONO essere uguali. -Se il file non esiste, crealo impostando i permessi di solo scrittura per il proprietario nel file. +Se il file non esiste, crealo concedendo permessi di lettura al solo proprietario del file. Si raccomanda anche di impostare alertnotify così sarai avvisato di eventuali problemi; -per esempio: alertnotify=echo %%s | mail -s "Allarme Dogecoin" admin@foo.com +ad esempio: alertnotify=echo %%s | mail -s "Allarme Dogecoin" admin@foo.com - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Cifrature accettabili (predefinito: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - An error occurred while setting up the RPC port %u for listening on 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 - Collega all'indirizzo indicato e resta sempre in ascolto su questo. Usa la notazione [host]:porta per l'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. Dogecoin Core is probably already running. - Non è possibile ottenere i dati sulla cartella %s. Probabilmente Dogecoin è già in esecuzione. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + Limita la quantità di transazioni gratuite ad <n>*1000 byte al minuto (predefinito: 15) - 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: 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. Ciò accade se alcuni dogecoin nel portamonete sono stati già spesi, ad esempio se è stata usata una copia del file wallet.dat e i dogecoin sono stati spesi dalla copia ma non segnati come spesi qui. + Error: Listening for incoming connections failed (listen returned error %d) + Errore: l'ascolto per le connessioni in ingresso non è riuscito (errore riportato %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Esegui comando quando una transazione del portafoglio cambia (%s in cmd è sostituito da TxID) + Esegui comando quando una transazione del portamonete cambia (%s in cmd è sostituito da TxID) + + + 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) + + + 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. + + + 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) - 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. Dogecoin Core is probably already running. + Impossibile associarsi a %s su questo computer. Probabilmente Dogecoin Core è già in esecuzione. + + 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 Dogecoin Core will not work properly. - Attenzione: si prega di controllare che la data del computer e l'ora siano corrette. Se il vostro orologio è sbagliato Dogecoin non funziona correttamente. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. + Attenzione: si prega di controllare che la data e l'ora del computer siano corrette. Se l'ora di sistema è errata Dogecoin non funzionerà correttamente. - 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 siamo in completo accordo con i nostri peer! Potrebbe essere necessario eseguire un aggiornamento, o gli altri nodi potrebbero aver bisogno di aggiornarsi. + 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 chiave lette correttamente, ma i dati delle transazioni o le voci in rubrica potrebbero mancare o non essere corretti. + 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 salvati! Il wallet.dat originale salvato come wallet.{timestamp}.bak in %s; se il tuo bilancio o le transazioni non sono corrette dovresti ripristinare da un 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. + + + (default: 1) + (predefinito: 1) + + + (default: wallet.dat) + (predefinito: wallet.dat) - <category> can be: <category> può essere: - Attempt to recover private keys from a corrupt wallet.dat Tenta di recuperare le chiavi private da un wallet.dat corrotto - Dogecoin Core Daemon Dogecoin Core Daemon - - Dogecoin Core RPC client version - Versione Dogecoin RPC client - - - Block creation options: Opzioni creazione blocco: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Cancella elenco delle transazioni sul portamonete (strumento di diagnostica; implica -rescan) + + 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: 22555 or testnet: 44555) - Connetti al JSON-RPC su <port> (predefinita: 22555 o testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + Connetti al JSON-RPC su <port> (predefinita: 8332 o testnet: 18332) + + + Connection options: + Opzioni di connessione: - Corrupted block database detected Rilevato database blocchi corrotto - - Discover own IP address (default: 1 when listening and no -externalip) - Scopri proprio indirizzo IP (predefinito: 1 se in ascolto e no -externalip) + 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? - 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 opening block database Errore caricamento database blocchi - Error: Disk space is low! - Errore: la spazio libero sul disco è poco! + Errore: la spazio libero sul disco è insufficiente! - Error: Wallet locked, unable to create transaction! - Errore: portafoglio bloccato, impossibile creare la transazione! + Errore: portamonete bloccato, impossibile creare la transazione! - Error: system error: Errore: errore di sistema: - Failed to listen on any port. Use -listen=0 if you want this. - Impossibile mettersi in ascolto su una porta. Usa -listen=0 se vuoi usare questa opzione. + 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 dogecoin fallita + 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 falllita + Scrittura dei dati di ripristino fallita - Fee per kB to add to transactions you send Commissione per kB da aggiungere alle transazioni in uscita - - Find peers using DNS lookup (default: 1 unless -connect) - Trova peer utilizzando la ricerca DNS (predefinito: 1 finché utilizzato -connect) + Fees smaller than this are considered zero fee (for relaying) (default: + Le commissioni inferiori a questo valore saranno considerate nulle (per la trasmissione) (prefedinito: + + + Find peers using DNS lookup (default: 1 unless -connect) + Trova peer utilizzando la ricerca DNS (predefinito: 1 a meno che non si usi -connect) + + + Force safe mode (default: 0) + Forza modalità provvisoria (predefinito: 0) - Generate coins (default: 0) Genera Dogecoin (predefinito: 0) - How many blocks to check at startup (default: 288, 0 = all) - Quanti blocchi da controllare all'avvio (predefinito: 288, 0 = tutti) + Numero di blocchi da controllare all'avvio (predefinito: 288, 0 = tutti) - - How thorough the block verification is (0-4, default: 3) - Quanto è precisa la verifica del blocco (0-4, predefinito: 3) - - - If <category> is not supplied, output all debugging information. - Se <category> non e' specificata, mostra tutte le informazioni di debug. + Se <category> non è specificata, mostra tutte le informazioni di debug. + + + Importing... + Importazione... - Incorrect or no genesis block found. Wrong datadir for network? - Blocco genesis non corretto o non trovato. Cartella dati sbagliata per network? + Blocco genesis non corretto o non trovato. Cartella dati errata? - Invalid -onion address: '%s' Indirizzo -onion non valido: '%s' - Not enough file descriptors available. Non ci sono abbastanza descrittori di file disponibili. - Prepend debug output with timestamp (default: 1) - Pretendi output di debug con timestamp (predefinito: 1) + Preponi timestamp all'output di debug (predefinito: 1) - RPC client options: Opzioni client RPC: - Rebuild block chain index from current blk000??.dat files Ricreare l'indice della catena di blocchi dai file blk000??.dat correnti - Select SOCKS version for -proxy (4 or 5, default: 5) Selezionare la versione SOCKS per -proxy (4 o 5, predefinito: 5) - - Send command to Dogecoin Core server - Invia comando al server Dogecoin + 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 maximum block size in bytes (default: %d) - Impostare la dimensione massima del blocco in byte (predefinita: %d) + Imposta la dimensione massima del blocco in byte (predefinita: %d) - Set the number of threads to service RPC calls (default: 4) Specifica il numero massimo di richieste RPC in parallelo (predefinito: 4) - Specify wallet file (within data directory) - Specifica il file portafoglio (nella cartella dati) + Specifica il file portamonete (all'interno della cartella dati) - - Start Dogecoin Core server - Avvia server Dogecoin + Spend unconfirmed change when sending transactions (default: 1) + Spendi il resto non confermato quando si inviano transazioni (predefinito: 1) - This is intended for regression testing tools and app development. - Questo + Questo è previsto per l'uso con test di regressione e per lo sviluppo di applicazioni. - - Usage (deprecated, use dogecoin-cli): - Usage (deprecato, usare dogecoin-cli): + Usage (deprecated, use bitcoin-cli): + Usage (deprecato, usare bitcoin-cli): - Verifying blocks... Verifica blocchi... - Verifying wallet... - Verifica portafoglio... + Verifica portamonete... - Wait for RPC server to start Attendere l'avvio dell'RPC server - Wallet %s resides outside data directory %s - Il portafoglio %s si trova fuori dalla cartella dati %s + Il portamonete %s si trova al di fuori dalla cartella dati %s - Wallet options: Opzioni portamonete: - Warning: Deprecated argument -debugnet ignored, use -debug=net - Attenzione: Argomento deprecato -debugnet ignorato, usa -debug=net + Attenzione: Argomento deprecato -debugnet ignorato, usare -debug=net - You need to rebuild the database using -reindex to change -txindex - Serve ricostruire il database usando -reindex per cambiare -txindex + È necessario ricostruire il database usando -reindex per cambiare -txindex - Imports blocks from external blk000??.dat file Importa blocchi da un file blk000??.dat esterno - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + Non è possibile ottenere un lock sulla cartella %s. Probabilmente Dogecoin Core è già in esecuzione. + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Eseguire comando quando un rilevante allarme viene ricevuto o vediamo una fork veramente lunga (%s in cmd è sostituito dal messaggio) + Esegue un comando quando viene ricevuto un allarme rilevante o quando vediamo un fork veramente lungo (%s in cmd è sostituito dal messaggio) - Output debugging information (default: 0, supplying <category> is optional) - Informazione di debug in output (predefinito: 0, fornire <category> è opzionale) + Emette informazioni di debug in output (predefinito: 0, fornire <category> è opzionale) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Imposta la dimensione massima delle transazioni di priorità-alta/basse-commissioni in byte (predefinita: %d) + Imposta la dimensione massima in byte delle transazioni ad alta-priorità/basse-commissioni (predefinita: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Imposta il numero di thread di verifica script (fino a 16, 0 = auto, <0 = lascia il maggior numero di core liberi, predefinito: 0) - - - Information Informazioni - 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' - + Limit size of signature cache to <n> entries (default: 50000) + Limita la dimensione della cache delle firme a <n> voci (predefinito: 50000) + + + 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) - 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) - 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) - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opzioni SSL: (vedi il wiki di Bitcoin per le istruzioni di configurazione SSL) + 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 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 + + + Run a thread to flush wallet periodically (default: 1) + Mantieni in esecuzione un thread per scaricare periodicamente il portafoglio (predefinito: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opzioni SSL: (vedi il wiki di Dogecoin per le istruzioni di configurazione SSL) + + + Send command to Dogecoin Core + Invia comando a Dogecoin Core - 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 - Set minimum block size in bytes (default: 0) Imposta dimensione minima del blocco in bytes (predefinita: 0) - + 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 transaction failed Transazione di firma fallita - Specify connection timeout in milliseconds (default: 5000) Specifica il timeout di connessione in millisecondi (predefinito: 5000) - + Start Dogecoin Core Daemon + Avvia Dogecoin Core Daemon + + System error: Errore di sistema: - Transaction amount too small Importo transazione troppo piccolo - Transaction amounts must be positive L'importo della transazione deve essere positivo - Transaction too large Transazione troppo grande - Use UPnP to map the listening port (default: 0) - Usa UPnP per mappare la porta di ascolto (predefinito: 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 di ascolto (predefinito: 1 quando in attesa) + Usa UPnP per mappare la porta in ascolto (predefinito: 1 when listening) - Username for JSON-RPC connections Nome utente per connessioni JSON-RPC - Warning Attenzione - Warning: This version is obsolete, upgrade required! Attenzione: questa versione è obsoleta, aggiornamento necessario! - + 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, salvataggio fallito + wallet.dat corrotto, recupero fallito - Password for JSON-RPC connections Password per connessioni JSON-RPC - Allow JSON-RPC connections from specified IP address Consenti connessioni JSON-RPC dall'indirizzo IP specificato - 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) - Execute command when the best block changes (%s in cmd is replaced by block hash) - Esegui il comando quando il miglior block cambia(%s nel cmd è sostituito dall'hash del blocco) + Esegui il comando quando il migliore blocco cambia(%s nel cmd è sostituito dall'hash del blocco) - Upgrade wallet to latest format Aggiorna il wallet all'ultimo formato - Set key pool size to <n> (default: 100) - Impostare la quantità di chiavi di riserva a <n> (predefinita: 100) + Impostare la quantità di chiavi nel key pool a <n> (predefinita: 100) - Rescan the block chain for missing wallet transactions - Ripeti analisi della catena dei blocchi per cercare le transazioni mancanti dal portamonete + Ripeti analisi della catena dei blocchi per cercare le transazioni mancanti dal portamonete - Use OpenSSL (https) for JSON-RPC connections - Utilizzare OpenSSL (https) per le connessioni JSON-RPC + Utilizzare OpenSSL (https) per le connessioni JSON-RPC - 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) - This help message Questo messaggio di aiuto - Unable to bind to %s on this computer (bind returned error %d, %s) - Impossibile collegarsi alla %s su questo computer (bind returned error %d, %s) + Impossibile associarsi alla %s su questo computer (bind returned error %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect - Consenti ricerche DNS per aggiungere nodi e collegare - + Consenti ricerche DNS per -addnode, -seednode e -connect - Loading addresses... Caricamento indirizzi... - Error loading wallet.dat: Wallet corrupted - Errore caricamento wallet.dat: Wallet corrotto + Errore caricamento wallet.dat: Portamonete corrotto - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - Errore caricamento wallet.dat: il wallet richiede una versione nuova di Dogecoin + Error loading wallet.dat: Wallet requires newer version of Dogecoin + Errore caricamento wallet.dat: il portamonete richiede una versione di Dogecoin più recente - - Wallet needed to be rewritten: restart Dogecoin Core to complete - Il portamonete deve essere riscritto: riavviare Dogecoin per completare + Wallet needed to be rewritten: restart Dogecoin to complete + Il portamonete necessitava di essere riscritto: riavviare Dogecoin per completare - Error loading wallet.dat Errore caricamento wallet.dat - Invalid -proxy address: '%s' Indirizzo -proxy non valido: '%s' - Unknown network specified in -onlynet: '%s' Rete sconosciuta specificata in -onlynet: '%s' - Unknown -socks proxy version requested: %i Versione -socks proxy sconosciuta richiesta: %i - Cannot resolve -bind address: '%s' Impossibile risolvere -bind address: '%s' - Cannot resolve -externalip address: '%s' Impossibile risolvere indirizzo -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Importo non valido per -paytxfee=<amount>: '%s' - Invalid amount Importo non valido - Insufficient funds Fondi insufficienti - Loading block index... Caricamento dell'indice del blocco... - Add a node to connect to and attempt to keep the connection open - Aggiungi un nodo a cui connettersi e prova a mantenere la connessione aperta + Aggiunge un nodo a cui connettersi e tenta di tenere aperta la connessione - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Impossibile collegarsi alla %s su questo computer. Probabilmente Dogecoin è già in esecuzione. - - - Loading wallet... Caricamento portamonete... - Cannot downgrade wallet - Non è possibile retrocedere il wallet + Non è possibile effettuare il downgrade del portamonete - Cannot write default address Non è possibile scrivere l'indirizzo predefinito - Rescanning... - Ripetere la scansione... + Ripetizione scansione... - Done loading Caricamento completato - To use the %s option - Per usare la opzione %s + Per usare l'opzione %s - Error Errore - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - Devi settare rpcpassword=<password> nel file di configurazione: %s Se il file non esiste, crealo con i permessi di amministratore + Devi settare rpcpassword=<password> nel file di configurazione: +%s +Se il file non esiste, crealo assegnando i permessi di lettura solamente al proprietario. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_ja.ts b/src/qt/locale/bitcoin_ja.ts index 06663eb96..35d169a48 100644 --- a/src/qt/locale/bitcoin_ja.ts +++ b/src/qt/locale/bitcoin_ja.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -27,135 +24,113 @@ MIT/X11 ソフトウェア ライセンスの下で配布されています。 この製品は OpenSSL Toolkit (http://www.openssl.org/) に用いられる Eric Young (eay@cryptsoft.com) が開発した暗号化ソフトウェアと Thomas Bernard が開発した UPnP ソフトウェアを含んでいます。 - Copyright Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label アドレスまたはラベルを編集するにはダブルクリック - Create a new address 新規アドレスの作成 - &New - + 新規(&N) - Copy the currently selected address to the system clipboard 現在選択されているアドレスをシステムのクリップボードにコピーする - &Copy - + コピー(&C) - C&lose - + 閉じる(&C) - &Copy Address アドレスをコピー (&C) - Delete the currently selected address from the list 選択されたアドレスを一覧から削除する - Export the data in the current tab to a file ファイルに現在のタブのデータをエクスポート - &Export エクスポート (&E) - &Delete 削除(&D) - Choose the address to send coins to - + 送信先のアドレスを選択 - Choose the address to receive coins with - + 支払いを受け取るアドレスを指定する - C&hoose - + 選択(&C) - Very sending addresses アドレス送信中 - Much receiving addresses アドレス受信中 - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. これらは支払いを送信するためのあなたの Dogecoin アドレスです。コインを送信する前に、常に額と受信アドレスを確認してください。 - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label ラベルをコピー (&L) - &Edit 編集 (&E) - Export Address List - + アドレス帳をエクスポート - Comma separated file (*.csv) CSVファイル (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -163,17 +138,14 @@ MIT/X11 ソフトウェア ライセンスの下で配布されています。 AddressTableModel - Label ラベル - Address アドレス - (no label) (ラベル無し) @@ -181,140 +153,106 @@ MIT/X11 ソフトウェア ライセンスの下で配布されています。 AskPassphraseDialog - Passphrase Dialog パスフレーズ ダイアログ - Enter passphrase パスフレーズを入力 - New passphrase 新しいパスフレーズ - Repeat new passphrase 新しいパスフレーズをもう一度 - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. ウォレットの新しいパスフレーズを入力してください。<br/><b>8個以上の単語か10個以上のランダムな文字</b>を使ってください。 - Encrypt wallet ウォレットを暗号化する - This operation needs your wallet passphrase to unlock the wallet. この操作はウォレットをアンロックするためにパスフレーズが必要です。 - Unlock wallet ウォレットをアンロックする - This operation needs your wallet passphrase to decrypt the wallet. この操作はウォレットの暗号化解除のためにパスフレーズが必要です。 - Decrypt wallet ウォレットの暗号化を解除する - Change passphrase パスフレーズの変更 - Enter the old and new passphrase to the wallet. 新旧両方のパスフレーズを入力してください。 - Confirm wallet encryption ウォレットの暗号化を確認する - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! 警告: もしもあなたのウォレットを暗号化してパスフレーズを失ってしまったなら、<b>あなたの Dogecoin はすべて失われます</b>! - Are you sure you wish to encrypt your wallet? 本当にウォレットを暗号化しますか? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 重要: 過去のウォレット ファイルのバックアップは、暗号化された新しいウォレット ファイルに取り替える必要があります。セキュリティ上の理由により、暗号化された新しいウォレットを使い始めると、暗号化されていないウォレット ファイルのバックアップはすぐに使えなくなります。 - - Warning: The Caps Lock key is on! 警告: Caps Lock キーがオンになっています! - - Wallet encrypted ウォレットは暗号化されました - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Dogecoin は暗号化プロセスを終了するために今すぐ終了します。あなたのコンピュータがマルウェアに感染してコインを盗まれることもあるので、暗号化してもあなたのウォレットを完全に保護できないことを覚えていてください。 - - - - Wallet encryption failed ウォレットの暗号化に失敗しました - Wallet encryption failed due to an internal error. Your wallet was not encrypted. 内部エラーによりウォレットの暗号化が失敗しました。ウォレットは暗号化されませんでした。 - - The supplied passphrases do not match. パスフレーズが同じではありません。 - Wallet unlock failed ウォレットのアンロックに失敗しました - - - The passphrase entered for the wallet decryption was incorrect. ウォレットの暗号化解除のパスフレーズが正しくありません。 - Wallet decryption failed ウォレットの暗号化解除に失敗しました - Wallet passphrase was successfully changed. ウォレットのパスフレーズの変更が成功しました。 @@ -322,352 +260,286 @@ MIT/X11 ソフトウェア ライセンスの下で配布されています。 BitcoinGUI - Sign &message... メッセージの署名... (&m) - Synchronizing with network... ネットワークに同期中…… - &Overview 概要(&O) - Node - Show general overview of wallet ウォレットの概要を見る - &Transactions 取引(&T) - Browse transaction history 取引履歴を閲覧 - E&xit 終了(&E) - Quit application アプリケーションを終了 - - Show information about Dogecoin Core + Show information about Dogecoin Dogecoinに関する情報を見る - - About &Qt Qt について(&Q) - Show information about Qt Qt の情報を表示 - &Options... オプション... (&O) - &Encrypt Wallet... ウォレットの暗号化... (&E) - &Backup Wallet... ウォレットのバックアップ... (&B) - &Change Passphrase... パスフレーズの変更... (&C) - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... ディスクからブロックをインポートしています... - Reindexing blocks on disk... ディスク上のブロックのインデックスを再作成中... - Send coins to a Dogecoin address Dogecoin アドレスにコインを送る - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Dogecoin の設定を変更する - Backup wallet to another location ウォレットを他の場所にバックアップ - Change the passphrase used for wallet encryption ウォレット暗号化用パスフレーズの変更 - &Debug window デバッグ ウインドウ (&D) - Open debugging and diagnostic console デバッグと診断コンソールを開く - &Verify message... メッセージの検証... (&V) - Dogecoin Dogecoin - Wallet ウォレット - &Send 送る (&S) - &Receive 受信 (&R) - - &Show / Hide 見る/隠す (&S) - Show or hide the main Window メイン ウインドウを表示または非表示 - Encrypt the private keys that belong to your wallet あなたのウォレットの秘密鍵を暗号化します - Sign messages with your Dogecoin addresses to prove you own them あなたが所有していることを証明するために、あなたの Dogecoin アドレスでメッセージに署名してください - Verify messages to ensure they were signed with specified Dogecoin addresses 指定された Dogecoin アドレスで署名されたことを確認するためにメッセージを検証します - &File ファイル(&F) - &Settings 設定(&S) - &Help ヘルプ(&H) - Tabs toolbar タブツールバー - - [testnet] [testnet] - Dogecoin Core Dogecoin のコア - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels + 支払いを受け取るアドレスとラベルのリストを表示する + + + Open a bitcoin: URI or payment request - - Open a dogecoin: URI or payment request - - - - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Dogecoin クライアント - %n active connection(s) to Dogecoin network %n の Dogecoin ネットワークへのアクティブな接続 - No block source available... 利用可能なブロックがありません... - Processed %1 of %2 (estimated) blocks of transaction history. 取引履歴の %2 (推定値) の内 %1 ブロックを処理しました。 - Processed %1 blocks of transaction history. 取引履歴の %1 ブロックを処理しました。 - %n hour(s) %n 時間 - %n day(s) %n 日 - %n week(s) %n 週間 - + %1 and %2 + + + + %n year(s) + + + %1 behind %1 遅延 - Last received block was generated %1 ago. 最後に受信されたブロックは %1 前に生成されました。 - Transactions after this will not yet be visible. この後の取引はまだ表示されません。 - Error エラー - Warning 警告 - Information 情報 - Up to date バージョンは最新です - Catching up... 追跡中... - Sent transaction 送金取引 - Incoming transaction 着金取引 - Date: %1 Amount: %2 Type: %3 @@ -679,18 +551,15 @@ Address: %4 アドレス: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> ウォレットは<b>暗号化されて、アンロックされています</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> ウォレットは<b>暗号化されて、ロックされています</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. 致命的なエラーが発生しました。Dogecoin は安全に継続することができず終了するでしょう。 @@ -698,7 +567,6 @@ Address: %4 ClientModel - Network Alert ネットワーク警告 @@ -706,291 +574,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: 総額: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount 総額 - Address アドレス - Date 日付 - Confirmations - Confirmed 検証済み - Priority - Copy address アドレスをコピーする - Copy label ラベルをコピーする - - Copy amount 総額のコピー - Copy transaction ID 取引 ID をコピー - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - + はい - no - + いいえ - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (ラベル無し) - change from %1 (%2) - (change) @@ -998,67 +805,54 @@ Address: %4 EditAddressDialog - Edit Address アドレスの編集 - &Label ラベル(&L) - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address アドレス帳 (&A) - New receiving address 新しい受信アドレス - New sending address 新しい送信アドレス - Edit receiving address 受信アドレスを編集 - Edit sending address 送信アドレスを編集 - The entered address "%1" is already in the address book. 入力されたアドレス "%1" は既にアドレス帳にあります。 - The entered address "%1" is not a valid Dogecoin address. 入力されたアドレス "%1" は無効な Dogecoin アドレスです。 - Could not unlock wallet. ウォレットをアンロックできませんでした。 - New key generation failed. 新しいキーの生成に失敗しました。 @@ -1066,27 +860,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. 新しいデータ ディレクトリが作成されます。 - name name - Directory already exists. Add %1 if you intend to create a new directory here. ディレクトリがもうあります。 新しいのディレクトリを作るつもりなら%1を書いてください。 - Path already exists, and is not a directory. パスが存在しますがディレクトリではありません。 - Cannot create data directory here. ここにデータ ディレクトリを作成することはできません。 @@ -1094,52 +883,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Dogecoin のコア - version バージョン - Usage: 使用法: - command-line options コマンドライン オプション - UI options UI オプション - Set language, for example "de_DE" (default: system locale) 言語設定 例: "de_DE" (初期値: システムの言語) - Start minimized 最小化された状態で起動する - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) 起動時にスプラッシュ画面を表示する (初期値: 1) - Choose data directory on startup (default: 0) 起動時にデータ ディレクトリを選ぶ (初期値: 0) @@ -1147,57 +930,46 @@ Address: %4 Intro - Welcome ようこそ - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory 初期値のデータ ディレクトリを使用 - Use a custom data directory: 任意のデータ ディレクトリを使用: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. エラー: 指定のデータ ディレクトリ "%1" を作成できません。 - Error エラー - GB of free space available GBの利用可能な空き領域 - (of %1GB needed) (%1GB が必要) @@ -1205,27 +977,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - + URI: - Select payment request file - Select payment request file to open @@ -1233,243 +1000,206 @@ Address: %4 OptionsDialog - Options 設定 - &Main メイン (&M) - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. あたなの取引が早く処理されるように任意で kB 毎の取引手数料を設定します。ほとんどの取引は 1 kB です。 - Pay transaction &fee 支払う取引手数料 (&f) - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. システムにログインした時に自動的に Dogecoin を起動します。 - - &Start Dogecoin Core on system login + &Start Dogecoin on system login システムにログインした時に Dogecoin を起動 (&S) - Size of &database cache - - Set database cache size in megabytes (default: 25) - データベースのキャッシュサイズをメガバイトで設定 (初期値: 25) - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - スクリプト検証スレッドを設定 (最大 16, 0 = 自動, <0 = たくさんのコアを自由にしておく, 初期値: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. すべてのオプションを初期値に戻します。 - &Reset Options オプションをリセット (&R) - &Network ネットワーク (&N) - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. 自動的にルーター上の Dogecoin クライアントのポートを開きます。あなたのルーターが UPnP に対応していて、それが有効になっている場合に作動します。 - Map port using &UPnP UPnP を使ってポートを割り当てる (&U) - Proxy &IP: プロキシの IP (&I) : - &Port: ポート (&P) : - Port of the proxy (e.g. 9050) プロキシのポート番号 (例 9050) - SOCKS &Version: SOCKS バージョン (&V) : - SOCKS version of the proxy (e.g. 5) SOCKS プロキシのバージョン (例 5) - &Window ウインドウ (&W) - Show only a tray icon after minimizing the window. ウインドウを最小化したあとトレイ アイコンだけを表示する。 - &Minimize to the tray instead of the taskbar タスクバーの代わりにトレイに最小化 (&M) - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. ウインドウが閉じられる時アプリケーションを終了せずに最小化します。このオプションが有効な時にアプリケーションを終了するにはメニューから終了を選択します。 - M&inimize on close 閉じる時に最小化 (&i) - &Display 表示 (&D) - User Interface &language: ユーザインターフェースの言語 (&l) : - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. ここでユーザインターフェースの言語を設定できます。設定を反映するには Dogecoin を再起動します。 - &Unit to show amounts in: 額を表示する単位 (&U) : - Choose the default subdivision unit to show in the interface and when sending coins. インターフェース上の表示とコインの送信で使用する単位を選択します。 - Whether to show Dogecoin addresses in the transaction list or not. 最近の取引履歴で Dogecoin アドレスを表示するかしないか。 - &Display addresses in transaction list 取引履歴にアドレスを表示 (&D) - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &OK - &Cancel キャンセル (&C) - default 初期値 - none - Confirm options reset オプションのリセットの確認 - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. プロキシアドレスが無効です。 @@ -1477,69 +1207,54 @@ Address: %4 OverviewPage - Form フォーム - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. 表示された情報は古いかもしれません。接続が確立されると、あなたのウォレットは Dogecoin ネットワークと自動的に同期しますが、このプロセスはまだ完了していません。 - - Unconfirmed: - 未確認: - - - Wallet ウォレット - - Confirmed: - 確認済み: + Available: + - Your current spendable balance あなたの利用可能残高 - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance 未検証の取引で利用可能残高に反映されていない数 - Immature: 未完成: - Mined balance that has not yet matured 完成していない採掘された残高 - Total: 合計: - Your current total balance あなたの現在の残高 - <b>Recent transactions</b> <b>最近の取引</b> - - out of sync 同期していない @@ -1547,94 +1262,71 @@ Address: %4 PaymentServer - - URI handling URI の操作 - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. URI を解析できません! これは無効な Dogecoin アドレスあるいや不正な形式の URI パラメーターによって引き起こされる場合があります。 - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error 支払いのリクエストのエラーです - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler Dogecoin を起動できません: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 %1: %2とコミュニケーション・エラーです - Payment request can not be parsed or processed! - Bad response from server %1 サーバーの返事は無効 %1 - Payment acknowledged 支払いは確認しました - Network request error ネットワーク・リクエストのエラーです @@ -1642,234 +1334,192 @@ Address: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. エラー: 指定のデータ ディレクトリ "%1" は存在しません。 - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. エラー: -regtestと-testnetは一緒にするのは無効です。 + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Dogecoin アドレスを入力します (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - + 画像を保存(&S) - &Copy Image - + 画像をコピー(&C) - Save QR Code QR コードの保存 - PNG Image (*.png) - + PNG画像ファイル(*.png) RPCConsole - Client name クライアント名 - - - - - - - - - - - N/A N/A - Client version クライアントのバージョン - &Information 情報 (&I) - Debug window - + デバッグ ウインドウ - General - Using OpenSSL version 使用中の OpenSSL のバージョン - Startup time 起動した日時 - Network ネットワーク - Name - Number of connections 接続数 - Block chain ブロック チェーン - Current number of blocks 現在のブロック数 - Estimated total blocks 推定総ブロック数 - Last block time 最終ブロックの日時 - &Open 開く (&O) - &Console コンソール (&C) - &Network Traffic - + ネットワーク (&N) - &Clear - + クリア(&C) - Totals - + 合計 - In: - Out: - Build date ビルドの日付 - Debug log file デバッグ用ログファイル - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. 現在のデータ ディレクトリから Dogecoin のデバッグ用ログファイルを開きます。ログファイルが大規模な場合には数秒かかることがあります。 - Clear console コンソールをクリア - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Dogecoin RPC コンソールへようこそ。 - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. 上下の矢印で履歴をたどれます。 <b>Ctrl-L</b> でスクリーンを消去できます。 - Type <b>help</b> for an overview of available commands. 使用可能なコマンドを見るには <b>help</b> と入力します。 - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1877,155 +1527,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - + 総額:(&A) - &Label: ラベル(&L): - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear クリア - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - + 表示 - Remove the selected entries from the list - Remove + + Copy label + ラベルをコピーする + + + Copy message + + + + Copy amount + 総額のコピー + ReceiveRequestDialog - QR Code QR コード - Copy &URI - Copy &Address - &Save Image... - + 画像を保存(&S) - Request payment to %1 - Payment information 支払い情報 - URI - Address アドレス - Amount 総額 - Label ラベル - Message メッセージ - Resulting URI too long, try to reduce the text for label / message. URI が長くなり過ぎます。ラベルやメッセージのテキストを短くしてください。 - Error encoding URI into QR Code. QR コード用の URI エンコードでエラー。 @@ -2033,285 +1665,225 @@ Address: %4 RecentRequestsTableModel - Date 日付 - Label ラベル - Message メッセージ - Amount 総額 - (no label) (ラベル無し) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins コインを送る - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: 総額: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once 一度に複数の人に送る - Add &Recipient 受取人を追加 (&R) - Clear all fields of the form. - Clear &All すべてクリア (&A) - Balance: 残高: - Confirm the send action 送る操作を確認する - S&end 送る (&e) - Confirm send coins コインを送る確認 - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Dogecoin アドレスを入力します (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount 総額のコピー - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. 受取人のアドレスが不正です。再確認してください。 - The amount to pay must be larger than 0. 支払額は0より大きくないといけません。 - The amount exceeds your balance. 額が残高を超えています。 - The total exceeds your balance when the %1 transaction fee is included. %1 の取引手数料を含めると額が残高を超えています。 - Duplicate address found, can only send to each address once per send operation. 重複しているアドレスが見つかりました。1回の送信で同じアドレスに送ることは出来ません。 - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (ラベル無し) - Warning: Unknown change address - Are you sure you want to send? 送ってよろしいですか? - added as transaction fee 取引手数料として追加された - Payment request expired 支払いのリクエストは期限切れです - Invalid payment address %1 支払いのアドレス「%1」は無効です @@ -2319,116 +1891,85 @@ Address: %4 SendCoinsEntry - - - A&mount: 金額(&A): - Pay &To: 送り先(&T): - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) 支払い送信するアドレス (例 DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book アドレス帳に追加するには、このアドレスのラベルを入力します - &Label: ラベル(&L): - Choose previously used address 前に使用したアドレスを選ぶ - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard クリップボードからアドレスを貼付ける - Alt+P Alt+P - - - Remove this entry - Message: メッセージ: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: メモ: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Dogecoin アドレスを入力します (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2436,192 +1977,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message 署名 - メッセージの署名/検証 - &Sign Message メッセージの署名 (&S) - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. あなた自身を立証するためにあなたのアドレスでメッセージに署名することができます。フィッシング攻撃によってあなたを騙して署名を譲渡させようとするかもしれないので、不明確なものは絶対に署名しないように注意してください。あなたが同意する完全に詳細な声明にだけ署名してください。 - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) メッセージの署名に使うアドレス (例 DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address 前に使用したアドレスを選ぶ - - Alt+A Alt+A - Paste address from clipboard クリップボードからアドレスを貼付ける - Alt+P Alt+P - Enter the message you want to sign here ここにあなたが署名するメッセージを入力します - Signature 署名 - Copy the current signature to the system clipboard 現在の署名をシステムのクリップボードにコピーする - Sign the message to prove you own this Dogecoin address この Dogecoin アドレスを所有していることを証明するためにメッセージに署名 - Sign &Message メッセージの署名 (&M) - Reset all sign message fields 入力項目の内容をすべて消去します - - Clear &All すべてクリア (&A) - &Verify Message メッセージの検証 (&V) - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. メッセージを検証するために、署名するアドレスとメッセージ(改行、スペース、タブなどを正確にコピーしてください)、そして署名を入力します。中間者攻撃によってだまされることを避けるために、署名されたメッセージそのものよりも、署名を読み取られないように注意してください。 - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) メッセージが署名されたアドレス (例 DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address 指定された Dogecoin アドレスで署名されたことを保証するメッセージを検証 - Verify &Message メッセージの検証 (&M) - Reset all verify message fields 入力項目の内容をすべて消去します - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Dogecoin アドレスを入力します (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature 署名を作成するには"メッセージの署名"をクリック - - Enter Dogecoin signature - Dogecoin 署名を入力 - - - - The entered address is invalid. 不正なアドレスが入力されました。 - - - - Please check the address and try again. アドレスを確かめてからもう一度試してください。 - - The entered address does not refer to a key. 入力されたアドレスに関連するキーがありません。 - Wallet unlock was cancelled. ウォレットのアンロックはキャンセルされました。 - Private key for the entered address is not available. 入力されたアドレスのプライベート キーが無効です。 - Message signing failed. メッセージの署名に失敗しました。 - Message signed. メッセージに署名しました。 - The signature could not be decoded. 署名がデコードできません。 - - Please check the signature and try again. 署名を確認してからもう一度試してください。 - The signature did not match the message digest. 署名はメッセージ ダイジェストと一致しませんでした。 - Message verification failed. メッセージの検証に失敗しました。 - Message verified. メッセージは検証されました。 @@ -2629,17 +2120,14 @@ Address: %4 SplashScreen - Dogecoin Core Dogecoin のコア - The Dogecoin Core developers - [testnet] [testnet] @@ -2647,7 +2135,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2655,179 +2142,138 @@ Address: %4 TransactionDesc - Open until %1 ユニット %1 を開く - + conflicted + + + %1/offline %1/オフライン - %1/unconfirmed %1/未検証 - %1 confirmations %1 確認 - Status ステータス - , broadcast through %n node(s) %n ノードにブロードキャスト - Date 日付 - Source ソース - Generated 生成された - - From 送信 - - - To 受信 - - own address 自分のアドレス - label ラベル - - - - - Credit クレジット - matures in %n more block(s) %n 以上のブロックが満期 - not accepted 承認されなかった - - - - Debit 引き落とし額 - Transaction fee 取引手数料 - Net amount 正味金額 - - Message メッセージ - Comment コメント - Transaction ID 取引 ID - Merchant 商人 - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information デバッグ情報 - Transaction 取引 - Inputs 入力 - Amount 総額 - true 正しい - false 正しくない - , has not been successfully broadcast yet まだブロードキャストが成功していません - Open for %n more block(s) %n 以上のブロックを開く - unknown 未確認 @@ -2835,12 +2281,10 @@ Address: %4 TransactionDescDialog - Transaction details 取引の詳細 - This pane shows a detailed description of the transaction ここでは取引の詳細を表示しています @@ -2848,118 +2292,102 @@ Address: %4 TransactionTableModel - Date 日付 - Type タイプ - Address Helbidea - Amount 総額 - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) %n 以上のブロックを開く - Open until %1 ユニット %1 を開く - - Offline (%1 confirmations) - オフライン (%1 検証済み) - - - - Unconfirmed (%1 of %2 confirmations) - 検証済み (%2) 未検証 (%1) - - - - Confirmed (%1 confirmations) 検証されました (%1 検証済み) - This block was not received by any other nodes and will probably not be accepted! このブロックは他のどのノードによっても受け取られないで、多分受け入れられないでしょう! - Generated but not accepted 生成されましたが承認されませんでした - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with 受信元 - Received from 送り主 - Sent to 送り先 - Payment to yourself 自分自身への支払い - Mined 発掘した - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. 取引の状況。このフィールドの上にカーソルを置くと検証の数を表示します。 - Date and time that the transaction was received. 取引を受信した日時。 - Type of transaction. 取引の種類。 - Destination address of transaction. 取引の宛先アドレス。 - Amount removed from or added to balance. 残高に追加または削除された総額。 @@ -2967,178 +2395,142 @@ Address: %4 TransactionView - - All すべて - Today 今日 - This week 今週 - This month 今月 - Last month 先月 - This year 今年 - Range... 期間... - Received with 送り主 - Sent to 送り先 - To yourself 自分自身 - Mined 発掘した - Other その他 - Enter address or label to search 検索するアドレスまたはラベルを入力 - Min amount 最小の額 - Copy address アドレスをコピーする - Copy label ラベルをコピーする - Copy amount 総額のコピー - Copy transaction ID 取引 ID をコピー - Edit label ラベルの編集 - Show transaction details 取引の詳細を表示 - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) テキスト CSV (*.csv) - Confirmed 検証済み - Date 日付 - Type タイプ - Label ラベル - Address Helbidea - Amount 総額 - ID ID - Range: 期間: - to から @@ -3146,7 +2538,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3154,7 +2545,6 @@ Address: %4 WalletModel - Send Coins コインを送る @@ -3162,154 +2552,125 @@ Address: %4 WalletView - &Export エクスポート (&E) - Export the data in the current tab to a file ファイルに現在のタブのデータをエクスポート - Backup Wallet ウォレットのバックアップ - Wallet Data (*.dat) ウォレット データ (*.dat) - Backup Failed バックアップに失敗しました - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful バックアップ成功 - dogecoin-core + bitcoin-core - Usage: 使用法: - List commands コマンド一覧 - Get help for a command コマンドのヘルプ - Options: オプション: - - Specify configuration file (default: dogecoin.conf) - 設定ファイルの指定 (初期値: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + 設定ファイルの指定 (初期値: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - pid ファイルの指定 (初期値: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + pid ファイルの指定 (初期値: bitcoind.pid) - Specify data directory データ ディレクトリの指定 - - Set database cache size in megabytes (default: 25) - データベースのキャッシュサイズをメガバイトで設定 (初期値: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + 接続のポート番号 (初期値: 8333、testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - 接続のポート番号 (初期値: 22556、testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) ピアの最大接続数 (初期値: 125) - Connect to a node to retrieve peer addresses, and disconnect ピア アドレスを取得するためにノードに接続し、そして切断します - Specify your own public address あなた自身のパブリックなアドレスを指定 - Threshold for disconnecting misbehaving peers (default: 100) 不正なピアを切断するためのしきい値 (初期値: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) 不正なピアを再接続するまでの秒数 (初期値: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s IPv4 でリスンする RPC ポート %u の設定中にエラーが発生しました: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - <port> で JSON-RPC 接続をリスン (初期値: 22555、testnet は 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + <port> で JSON-RPC 接続をリスン (初期値: 8332、testnet は 18332) - Accept command line and JSON-RPC commands コマンドラインと JSON-RPC コマンドを許可 - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands デーモンとしてバックグランドで実行しコマンドを許可 - Use the test network テストのためのネットワークを使用 - Accept connections from outside (default: 1 if no -proxy or -connect) 外部からの接続を許可 (初期値: -proxy または -connect を使用していない場合は1) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3320,7 +2681,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, rpcpassword を設定ファイルで設定してください: %s 下記のランダムなパスワードの使用を推奨します: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (このパスワードを覚える必要はありません) ユーザー名とパスワードが同じであってはいけません。 @@ -3329,708 +2690,687 @@ rpcpassword=%s 例えば: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo.com - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s IPv6 でリスンする RPC ポート %u の設定中にエラーが発生したので 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. Dogecoin Core is probably already running. - データ ディレクトリ %s のロックを取得することができません。おそらく Dogecoin は実行中です。 + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + - 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 %d) + + + 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 の手数料が必要です! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) ウォレットの取引を変更する際にコマンドを実行 (cmd の %s は TxID に置換される) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + + + 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 Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. 警告: あなたのコンピュータの日時が正しいことを確認してください! 時計が間違っていると Dogecoin は正常に動作しません。 - 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 に保存されました; もしもあなたの残高や取引が正しくないならバックアップから復元してください。 - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: - Attempt to recover private keys from a corrupt wallet.dat 壊れた wallet.dat から秘密鍵を復旧することを試す - Dogecoin Core Daemon - - Dogecoin Core RPC client version - - - - Block creation options: ブロック作成オプション: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + Connect only to the specified node(s) 指定したノードだけに接続 - Connect through SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: - Corrupted block database detected 破損したブロック データベースが見つかりました - + 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 アドレスを発見 (初期値: リスン中と -externalip を使用していない場合は1) - Do not load the wallet and disable wallet RPC calls - Do you want to rebuild the block database now? ブロック データベースを今すぐ再構築しますか? - Error initializing block database ブロック データベースの初期化中にエラー - Error initializing wallet database environment %s! ウォレットのデータベース環境 %s 初期化エラー! - Error loading block database ブロック データベースの読み込みエラー - Error opening block database ブロック データベースの開始エラー - Error: Disk space is low! エラー: ディスク容量不足! - Error: Wallet locked, unable to create transaction! エラー: ウォレットはロックされ、取引を作成できません! - 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: + + + Find peers using DNS lookup (default: 1 unless -connect) DNS ルックアップでピアを探す (初期値: -connect を使っていなければ1) - + Force safe mode (default: 0) + + + Generate coins (default: 0) コインを生成 (初期値: 0) - How many blocks to check at startup (default: 288, 0 = all) 起動時に点検するブロック数 (初期値: 288, 0=すべて) - - How thorough the block verification is (0-4, default: 3) - ブロックの検証レベル (0-4, 初期値: 3) - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? 不正なブロックあるいは、生成されていないブロックが見つかりました。ネットワークの datadir が間違っていませんか? - Invalid -onion address: '%s' - Not enough file descriptors available. 使用可能なファイルディスクリプタが不足しています。 - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files 現在の blk000??.dat ファイルからブロック チェーンのインデックスを再構築 - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server + Set database cache size in megabytes (%d to %d, default: %d) - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) RPC サービスのスレッド数を設定 (初期値: 4) - Specify wallet file (within data directory) ウォレットのファイルを指定 (データ・ディレクトリの中に) - - Start Dogecoin Core server - Dogecoinサーバーを始める + Spend unconfirmed change when sending transactions (default: 1) + - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): + Usage (deprecated, use bitcoin-cli): - Verifying blocks... ブロックの検証中... - Verifying wallet... ウォレットの検証中... - Wait for RPC server to start - Wallet %s resides outside data directory %s 財布 %s はデータ・ディレクトリ%sの外にあります - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex -txindex を変更するには -reindex を使用してデータベースを再構築する必要があります - Imports blocks from external blk000??.dat file 外部の blk000??.dat ファイルからブロックをインポート - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) 関連のアラートをもらってもすごく長いのフォークを見てもコマンドを実行 (コマンドの中にあるの%sはメッセージから置き換えさせる) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - スクリプト検証スレッドを設定 (最大 16, 0 = 自動, <0 = たくさんのコアを自由にしておく, 初期値: 0) - - - Information 情報 - Invalid amount for -minrelaytxfee=<amount>: '%s' 不正な額 -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' 不正な額 -minrelaytxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) 完全な取引インデックスを維持する (初期値: 0) - 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) - 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) ネットワーク内のノードだけに接続する - + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL オプション: (SSLのセットアップ手順は Bitcoin Wiki をご覧下さい) - + Send command to Dogecoin Core + + + Send trace/debug info to console instead of debug.log file トレース/デバッグ情報を debug.log ファイルの代わりにコンソールへ送る - Set minimum block size in bytes (default: 0) 最小ブロックサイズをバイトで設定 (初期値: 0) - + 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 ファイルを縮小 (初期値: -debug オプションを指定しない場合は1) - Signing transaction failed 取引の署名に失敗しました - Specify connection timeout in milliseconds (default: 5000) 接続のタイムアウトをミリセコンドで指定 (初期値: 5000) - + Start Dogecoin Core Daemon + + + System error: システム エラー: - Transaction amount too small 取引の額が小さ過ぎます - Transaction amounts must be positive 取引の額は0より大きくしてください - Transaction too large 取引が大き過ぎます - Use UPnP to map the listening port (default: 0) リスン ポートの割当に UPnP を使用 (初期値: 0) - Use UPnP to map the listening port (default: 1 when listening) リスン ポートの割当に UPnP を使用 (初期値: リスン中は1) - Username for JSON-RPC connections JSON-RPC 接続のユーザー名 - Warning 警告 - Warning: This version is obsolete, upgrade required! 警告: このバージョンは古いのでアップグレードが必要です! - + Zapping all transactions from wallet... + + + + on startup + + + version バージョン - wallet.dat corrupt, salvage failed wallet.dat が壊れ、復旧に失敗しました - Password for JSON-RPC connections JSON-RPC 接続のパスワード - Allow JSON-RPC connections from specified IP address 指定した IP アドレスからの JSON-RPC 接続を許可 - Send commands to node running on <ip> (default: 127.0.0.1) <ip> (初期値: 127.0.0.1) で実行中のノードにコマンドを送信 - Execute command when the best block changes (%s in cmd is replaced by block hash) 最良のブロックに変更する際にコマンドを実行 (cmd の %s はブロック ハッシュに置換される) - Upgrade wallet to latest format ウォレットを最新のフォーマットにアップグレード - Set key pool size to <n> (default: 100) key pool のサイズを <n> (初期値: 100) にセット - Rescan the block chain for missing wallet transactions 失ったウォレットの取引のブロック チェーンを再スキャン - Use OpenSSL (https) for JSON-RPC connections JSON-RPC 接続に OpenSSL (https) を使用 - Server certificate file (default: server.cert) サーバ証明書ファイル (初期値: server.cert) - Server private key (default: server.pem) サーバの秘密鍵 (初期値: server.pem) - This help message このヘルプ メッセージ - Unable to bind to %s on this computer (bind returned error %d, %s) このコンピュータの %s にバインドすることができません (バインドが返したエラーは %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect -addnode, -seednode と -connect で DNS ルックアップを許可する - Loading addresses... アドレスを読み込んでいます... - Error loading wallet.dat: Wallet corrupted wallet.dat 読み込みエラー: ウォレットが壊れました - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin wallet.dat 読み込みエラー: ウォレットは Dogecoin の最新バージョンを必要とします - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete ウォレットが書き直される必要がありました: 完了するために Dogecoin を再起動します - Error loading wallet.dat wallet.dat 読み込みエラー - Invalid -proxy address: '%s' 無効な -proxy アドレス: '%s' - Unknown network specified in -onlynet: '%s' -onlynet で指定された '%s' は未知のネットワークです - Unknown -socks proxy version requested: %i -socks で指定された %i は未知のバージョンです - Cannot resolve -bind address: '%s' -bind のアドレス '%s' を解決できません - Cannot resolve -externalip address: '%s' -externalip のアドレス '%s' を解決できません - Invalid amount for -paytxfee=<amount>: '%s' -paytxfee=<amount> の額 '%s' が無効です - Invalid amount 無効な総額 - Insufficient funds 残高不足 - Loading block index... ブロック インデックスを読み込んでいます... - Add a node to connect to and attempt to keep the connection open 接続するノードを追加し接続を持続するように試します - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - このコンピュータの %s にバインドすることができません。おそらく Dogecoin は既に実行されています。 - - - Loading wallet... ウォレットを読み込んでいます... - Cannot downgrade wallet ウォレットのダウングレードはできません - Cannot write default address 初期値のアドレスを書き込むことができません - Rescanning... 再スキャン中... - Done loading 読み込み完了 - To use the %s option %s オプションを使うには - Error エラー - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4039,4 +3379,4 @@ If the file does not exist, create it with owner-readable-only file permissions. ファイルが無い場合は、オーナーだけが読み取れる権限でファイルを作成してください。 - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_ka.ts b/src/qt/locale/bitcoin_ka.ts index d14a27d52..c02a93163 100644 --- a/src/qt/locale/bitcoin_ka.ts +++ b/src/qt/locale/bitcoin_ka.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core Dogecoin Core-ს შესახებ - <b>Dogecoin Core</b> version <b>Dogecoin Core</b>-ს ვერსია - This is experimental software. @@ -27,135 +24,113 @@ This product includes software developed by the OpenSSL Project for use in the O პროდუქტი შეიცავს OpenSSL პროექტის ფარგლებში შემუშავებულ პროგრამულ უზრუნველყოფას OpenSSL Toolkit-ში გამოყენებისათვის (http://www.openssl.org/), კრიპტოგრაფიულ პროგრამას, ავტორი ერიქ იანგი (Eric Young, eay@cryptsoft.com) და UPnP-პროგრამას, ავტორი თომას ბერნარდი (Thomas Bernard). - Copyright საავტორო უფლებები - The Dogecoin Core developers Dogecoin Core-ს ავტორები + + (%1-bit) + + AddressBookPage - Double-click to edit address or label დააკლიკეთ ორჯერ მისამართის ან ნიშნულის შესაცვლელად - Create a new address ახალი მისამართის შექმნა - &New შექმ&ნა - Copy the currently selected address to the system clipboard მონიშნული მისამართის კოპირება სისტემურ კლიპბორდში - &Copy &კოპირება - C&lose &დახურვა - &Copy Address &მისამართის კოპირება - Delete the currently selected address from the list მონიშნული მისამართის წაშლა სიიდან - Export the data in the current tab to a file ამ ბარათიდან მონაცემების ექსპორტი ფაილში - &Export &ექსპორტი - &Delete &წაშლა - Choose the address to send coins to აირჩიეთ მონეტების გაგზავნის მისამართი - Choose the address to receive coins with აირჩიეთ მონეტების მიღების მისამართი - C&hoose &არჩევა - Very sending addresses გაგზავნის მისამართი - Much receiving addresses მიღების მისამართი - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. ეს არის თქვენი Dogecoin-მისამართები გადახდების შესასრულებლად. მონეტების გაგზავნამდე ყოველთვის შეამოწმეთ თანხა და მიმღების მისამართი. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. ეს არის თქვენი Dogecoin-მისამართები გადახდების მისაღებად. რეკომენდებულია ყოველი ტრანსაქციისათვის ახალი მიღების მისამართის გამოყენება. - Copy &Label ნიშნუ&ლის კოპირება - &Edit რ&ედაქტირება - Export Address List მისამართების სიის ექსპორტი - Comma separated file (*.csv) CSV-ფაილი (*.csv) - Exporting Failed ექსპორტი ვერ განხორციელდა - There was an error trying to save the address list to %1. შეცდომა მისამართების სიის %1-ში შენახვის მცდელობისას. @@ -163,17 +138,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label ნიშნული - Address მისამართი - (no label) (არ არის ნიშნული) @@ -181,140 +153,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog ფრაზა-პაროლის დიალოგი - Enter passphrase შეიყვანეთ ფრაზა-პაროლი - New passphrase ახალი ფრაზა-პაროლი - Repeat new passphrase გაიმეორეთ ახალი ფრაზა-პაროლი - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. შეიყვანეთ საფულის ახალი ფრაზა-პაროლი.<br/>ფრაზა-პაროლი შეადგინეთ <b>არანაკლებ 10 შემთხვევითი სიმბოლოსაგან</b>, ან <b>რვა და მეტი სიტყვისაგან</b>. - Encrypt wallet საფულის დაშიფრვა - This operation needs your wallet passphrase to unlock the wallet. ეს ოპერაცია მოითხოვს თქვენი საფულის ფრაზა-პაროლს საფულის განსაბლოკად. - Unlock wallet საფულის განბლოკვა - This operation needs your wallet passphrase to decrypt the wallet. ეს ოპერაცია მოითხოვს თქვენი საფულის ფრაზა-პაროლს საფულის გასაშიფრად. - Decrypt wallet საფულის გაშიფრვა - Change passphrase ფრაზა-პაროლის შეცვლა - Enter the old and new passphrase to the wallet. შეიყვანეთ საფულის ძველი და ახალი ფრაზა-პაროლი. - Confirm wallet encryption დაადასტურეთ საფულის დაშიფრვა - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! ყურადღება: საფულის დაშიფრვის შემდეგ თუ თქვენ დაკარგავთ ფრაზა-პაროლს, <b>ყველა ბიტქოინი დაგეკარგებათ</b>! - Are you sure you wish to encrypt your wallet? დარწმუნებული ხართ, რომ გინდათ საფულის დაშიფრვა? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. მნიშვნელოვანია: თქვენი საფულის ყველა ადრინდელი არქივი შეიცვლება ახლადგენერირებული დაშიფრული საფულის ფაილით. უსაფრთხოების მოსაზრებებით დაუშიფრავი საფულის ძველი არქივები ძალას დაკარგავს, როგორც კი დაიწყებთ ახალი, დაშიფრული საფულის გამოყენებას. - - Warning: The Caps Lock key is on! ყურადღება: ჩართულია Caps Lock რეჟიმი! - - Wallet encrypted საფულე დაშიფრულია - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. ახლა Dogecoin დაიხურება დაშიფრვის პროცესის დასასრულებლად. გაითვალისწინეთ, რომ დაშიფრვა სრულად ვერ დაიცავს თქვენს ბითქოინებს თქვენს კომპიუტერში შემოპარული მავნე პროგრამების საშუალებით დატაცებისაგან. - - - - Wallet encryption failed ვერ მოხერხდა საფულის დაშიფრვა - Wallet encryption failed due to an internal error. Your wallet was not encrypted. საფულის დაშიფრვა ვერ მოხერხდა სისტემაში შეცდომის გამო. თქვენი საფულე არ არის დაშფრული. - - The supplied passphrases do not match. ფრაზა-პაროლები არ ემთხვევა ერთმანეთს. - Wallet unlock failed საფულის განბლოკვა ვერ მოხერხდა - - - The passphrase entered for the wallet decryption was incorrect. საფულის განშიფრვის ფრაზა-პაროლი არაწორია - Wallet decryption failed საფულის განშიფრვა ვერ მოხერხდა - Wallet passphrase was successfully changed. საფულის ფრაზა-პაროლი შეცვლილია. @@ -322,352 +260,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... ხელ&მოწერა - Synchronizing with network... ქსელთან სინქრონიზება... - &Overview მიმ&ოხილვა - Node კვანძი - Show general overview of wallet საფულის ზოგადი მიმოხილვა - &Transactions &ტრანსაქციები - Browse transaction history ტრანსაქციების ისტორიის დათვალიერება - E&xit &გასვლა - Quit application გასვლა - - Show information about Dogecoin Core + Show information about Dogecoin ინფორმაცია Dogecoin-ის შესახებ - - About &Qt &Qt-ს შესახებ - Show information about Qt ინფორმაცია Qt-ს შესახებ - &Options... &ოპციები - &Encrypt Wallet... საფულის &დაშიფრვა - &Backup Wallet... საფულის &არქივირება - &Change Passphrase... ფრაზა-პაროლის შე&ცვლა - Very &sending addresses... გაგზავნის მი&სამართი - Much &receiving addresses... მიღების მისამა&რთი - Open &URI... &URI-ის გახსნა... - Importing blocks from disk... ბლოკების იმპორტი დისკიდან... - Reindexing blocks on disk... დისკზე ბლოკების რეინდექსაცია... - Send coins to a Dogecoin address მონეტების გაგზავნა Dogecoin-მისამართზე - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Dogecoin-ის საკონფიგურაციო პარამეტრების ცვლილება - Backup wallet to another location საფულის არქივირება სხვა ადგილზე - Change the passphrase used for wallet encryption საფულის დაშიფრვის ფრაზა-პაროლის შეცვლა - &Debug window და&ხვეწის ფანჯარა - Open debugging and diagnostic console დახვეწისა და გიაგნოსტიკის კონსოლის გაშვება - &Verify message... &ვერიფიკაცია - Dogecoin Dogecoin - Wallet საფულე - &Send &გაგზავნა - &Receive &მიღება - - &Show / Hide &ჩვენება/დაფარვა - Show or hide the main Window მთავარი ფანჯრის ჩვენება/დაფარვა - Encrypt the private keys that belong to your wallet თქვენი საფულის პირადი გასაღებების დაშიფრვა - Sign messages with your Dogecoin addresses to prove you own them მესიჯებზე ხელმოწერა თქვენი Dogecoin-მისამართებით იმის დასტურად, რომ ის თქვენია - Verify messages to ensure they were signed with specified Dogecoin addresses შეამოწმეთ, რომ მესიჯები ხელმოწერილია მითითებული Dogecoin-მისამართით - &File &ფაილი - &Settings &პარამეტრები - &Help &დახმარება - Tabs toolbar ბარათების პანელი - - [testnet] [testnet] - Dogecoin Core Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) - გადახდის მოთხოვნა (შეიქმნება QR-კოდები და dogecoin: ბმულები) + Request payments (generates QR codes and bitcoin: URIs) + გადახდის მოთხოვნა (შეიქმნება QR-კოდები და bitcoin: ბმულები) - - &About Dogecoin Core Dogecoin Core-ს შეს&ახებ - Show the list of used sending addresses and labels გამოყენებული გაგზავნის მისამართებისა და ნიშნულების სიის ჩვენება - Show the list of used receiving addresses and labels გამოყენებული მიღების მისამართებისა და ნიშნულების სიის ჩვენება - - Open a dogecoin: URI or payment request - dogecoin: URI-ის ან გადახდის მოთხოვნის გახსნა + Open a bitcoin: URI or payment request + bitcoin: URI-ის ან გადახდის მოთხოვნის გახსნა - &Command-line options საკომანდო სტრიქონის ოპ&ციები - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options Dogecoin Core-ს დახმარების ჩვენება Dogecoin-ის საკომანდო სტრიქონის დასაშვები ოპციების სანახავად - - Dogecoin client Dogecoin-კლიენტი - %n active connection(s) to Dogecoin network აქტიური მიერთებები ბითქოინის ქსელთან: %n - No block source available... ბლოკების წყარო მიუწვდომელია... - Processed %1 of %2 (estimated) blocks of transaction history. დამუშავებულია ტრანსაქციების ისტორიის %2-დან (სავარაუდოდ) %1 ბლოკი. - Processed %1 blocks of transaction history. დამუშავებულია ტრანსაქციების ისტორიის %1 ბლოკი. - %n hour(s) %n საათი - %n day(s) %n დღე - %n week(s) %n კვირა - + %1 and %2 + %1 და %2 + + + %n year(s) + %n წელი + + %1 behind %1 გავლილია - Last received block was generated %1 ago. ბოლო მიღებული ბლოკის გენერირებიდან გასულია %1 - Transactions after this will not yet be visible. შემდგომი ტრანსაქციები ნაჩვენები ჯერ არ იქნება. - Error შეცდომა - Warning გაფრთხილება - Information ინფორმაცია - Up to date განახლებულია - Catching up... ჩართვა... - Sent transaction გაგზავნილი ტრანსაქციები - Incoming transaction მიღებული ტრანსაქციები - Date: %1 Amount: %2 Type: %3 @@ -680,25 +552,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> საფულე <b>დაშიფრულია</b> და ამჟამად <b>განბლოკილია</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> საფულე <b>დაშიფრულია</b> და ამჟამად <b>დაბლოკილია</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ფატალური შეცდომა. Dogecoin ვერ უზრუნველყოფს უსაფრთხო გაგრძელებას, ამიტომ იხურება. ClientModel - Network Alert ქსელური განგაში @@ -706,291 +574,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection მონეტების კონტროლის მისამართის არჩევა - Quantity: რაოდენობა: - Bytes: ბაიტები: - Amount: თანხა: - Priority: პრიორიტეტი: - Fee: საკომისიო: - Low Output: ქვედა ზღვარი: - After Fee: დამატებითი საკომისიო: - Change: ხურდა: - (un)select all ყველას მონიშვნა/(მოხსნა) - Tree mode განტოტვილი - List mode სია - Amount რაოდენობა - Address მისამართი - Date თარიღი - Confirmations დადასტურება - Confirmed დადასტურებულია - Priority პრიორიტეტი - Copy address მისამართის კოპირება - Copy label ნიშნულის კოპირება - - Copy amount თანხის კოპირება - Copy transaction ID ტრანსაქციის ID-ს კოპირება - Lock unspent დაუხარჯავის დაბლოკვა - Unlock unspent დაუხარჯავის განბლოკვა - Copy quantity რაოდენობის კოპირება - Copy fee საკომისიოს კოპირება - Copy after fee დამატებითი საკომისიოს კოპირება - Copy bytes ბაიტების კოპირება - Copy priority პრიორიტეტის კოპირება - Copy low output ქვედა ზღვრის კოპირება - Copy change ხურდის კოპირება - highest უმაღლესი - higher უფრო მაღალი - high მაღალი - medium-high საშუალოზე მაღალი - medium საშუალო - low-medium საშუალოზე დაბალი - low დაბალი - lower უფრო დაბალი - lowest უდაბლესი - (%1 locked) (%1 დაბლოკილია) - none ცარიელი - Dust მტვერი - yes კი - no არა - This label turns red, if the transaction size is greater than 1000 bytes. ნიშნული წითლდება, როცა ტრანსაქციის ზომა 1000 ბაიტზე მეტია. - - This means a fee of at least %1 per kB is required. ეს ნიშნავს, რომ კილობაიტზე საკომისიო იქნება მინიმუმ %1 - Can vary +/- 1 byte per input. შეიძლება იყოს +/- 1 ბაიტი ყოველ შესავალზე. - Transactions with higher priority are more likely to get included into a block. მეტი პრიორიტეტის ტრანსაქციებს მეტი შანსი აქვს მოხვდეს ბლოკში. - This label turns red, if the priority is smaller than "medium". ნიშნული წითლდება, როცა პრიორიტეტი "საშუალო"-ზე დაბალია. - This label turns red, if any recipient receives an amount smaller than %1. ნიშნული წითლდება, როცა რომელიმე რეციპიენტი მიიღებს %1-ზე ნაკლებს. - - This means a fee of at least %1 is required. ეს ნიშნავს, რომ საკომისიო იქნება მინიმუმ %1. - Amounts below 0.546 times the minimum relay fee are shown as dust. რეტრანსლაციის მინიმალური საკომისიოს 0.546-ზე ნაკლები თანხები ნაჩვენები იქნება როგორც მტვერი. - This label turns red, if the change is smaller than %1. ნიშნული წითლდება, როცა ხურდა ნაკლებია %1-ზე. - - (no label) (არ არის ნიშნული) - change from %1 (%2) ხურდა %1-დან (%2) - (change) (ხურდა) @@ -998,67 +805,54 @@ Address: %4 EditAddressDialog - Edit Address მისამართის შეცვლა - &Label ნიშნუ&ლი - The label associated with this address list entry მისამართების სიის ამ ჩანაწერთან ასოცირებული ნიშნული - The address associated with this address list entry. This can only be modified for sending addresses. მისამართების სიის ამ ჩანაწერთან მისამართი ასოცირებული. მისი შეცვლა შეიძლება მხოლოდ გაგზავნის მისამართის შემთხვევაში. - &Address მის&ამართი - New receiving address ახალი მიღების მისამართი - New sending address ახალი გაგზავნის მისამართი - Edit receiving address მიღების მისამართის შეცვლა - Edit sending address გაგზავნის მისამართის შეცვლა - The entered address "%1" is already in the address book. მისამართი "%1" უკვე არის მისამართების წიგნში. - The entered address "%1" is not a valid Dogecoin address. შეყვანილი მისამართი "%1" არ არის ვალიდური Dogecoin-მისამართი. - Could not unlock wallet. საფულის განბლოკვა ვერ მოხერხდა. - New key generation failed. ახალი გასაღების გენერირება ვერ მოხერხდა @@ -1066,27 +860,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. შეიქმნება ახალი მონაცემთა კატალოგი. - name სახელი - Directory already exists. Add %1 if you intend to create a new directory here. კატალოგი უკვე არსებობს. დაამატეთ %1 თუ გინდათ ახალი კატალოგის აქვე შექმნა. - Path already exists, and is not a directory. მისამართი უკვე არსებობს და არ წარმოადგენს კატალოგს. - Cannot create data directory here. კატალოგის აქ შექმნა შეუძლებელია. @@ -1094,52 +883,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options Dogecoin Core - საკომანდო სტრიქონის ოპციები - Dogecoin Core Dogecoin Core - version ვერსია - Usage: გამოყენება: - command-line options კომანდების ზოლის ოპციები - UI options ინტერფეისის პარამეტრები - Set language, for example "de_DE" (default: system locale) აირჩიეთ ენა, მაგალითად "de_DE" (ნაგულისხმევია სისტემური ლოკალი) - Start minimized გაშვება მინიმიზებული ეკრანით - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) მისალმების ეკრანის ჩვენება გაშვებისას (ნაგულისხმევი:1) - Choose data directory on startup (default: 0) მონაცემთა კატალოგის მითითება ყოველი გაშვებისას (ნაგულისხმევი: 0) @@ -1147,57 +930,46 @@ Address: %4 Intro - Welcome მოგესალმებით - Welcome to Dogecoin Core. მოგესალმებათ Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. ეს პროგრამის პირველი გაშვებაა; შეგიძლიათ მიუთითოთ, სად შეინახოს მონაცემები Dogecoin Core-მ. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. Dogecoin Core გადმოტვირთავს და შეინახავს Dogecoin-ის ბლოკთა ჯაჭვს. მითითებულ კატალოგში დაგროვდება სულ ცოტა 1 გბ მონაცემები, და მომავალში უფრო გაიზრდება. საფულეც ამავე კატალოგში შეინახება. - Use the default data directory ნაგულისხმევი კატალოგის გამოყენება - Use a custom data directory: მითითებული კატალოგის გამოყენება: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. შეცდომა: მითითებული მონაცემთა კატალოგი "%1" ვერ შეიქმნა. - Error შეცდომა - GB of free space available გიგაბაიტია თავისუფალი - (of %1GB needed) (საჭიროა %1GB) @@ -1205,27 +977,22 @@ Address: %4 OpenURIDialog - Open URI URI-ის გახსნა - Open payment request from URI or file გადახდის მოთხოვნის შექმნა URI-იდან ან ფაილიდან - URI: URI: - Select payment request file გადახდის მოთხოვნის ფაილის არჩევა - Select payment request file to open გადახდის მოთხოვნის ფაილის არჩევა გასახსნელად @@ -1233,243 +1000,206 @@ Address: %4 OptionsDialog - Options ოპციები - &Main &მთავარი - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. დამატებითი საკომისიო თითო კილობაიტზე; აჩქარებს ტრანსაქციის შესრულებას. ტრანსაქციების უმეტესობა არის 1 კბ. - Pay transaction &fee ტრანსაქციის სა&ფასურის გადახდა - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. სისტემაში შესვლის შემდეგ Dogecoin-ის ავტომატური გაშვება. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &სისტემაში შესვლისას გაშვება - Size of &database cache მონაცემთა ბაზის კეშის სი&დიდე - - Set database cache size in megabytes (default: 25) - მონაცემთა ბაზის ქეშის ზომა მეგაბაიტებში (ნაგულისხმევია 25) - - - MB MB - Number of script &verification threads სკრიპტის &ვერიფიცირების ნაკადების რაოდენობა - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - სკრიპტის ვერიფიკაციის ნაკადების რაოდენობა (16-მდე, 0 - ავტომატური, <0 - დასატოვებელი ბირთვების რაოდენობა, ნაგულისხმევი: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. Dogecoin-ქსელზე მიერთება SOCKS-პროქსით. - &Connect through SOCKS proxy (default proxy): SO&CKS (ნაგულისხმევი) პროქსი მიერთებისათვის: - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) პროქსის IP-მისამართი (მაგ.: IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: საკომანდო სტრიქონის აქტიური ოპციები, რომლებიც გადაფარავენ ზემოთნაჩვენებს: - Reset all client options to default. კლიენტის ყველა პარამეტრის დაბრუნება ნაგულისხმევ მნიშვნელობებზე. - &Reset Options დაბ&რუნების ოპციები - &Network &ქსელი - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + ს&აფულე + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + დაუდასტურებელი ხურდის გამოყენების აკრძალვის შემდეგ მათი გამოყენება შეუძლებელი იქნება, სანამ ტრანსაქციას არ ექნება ერთი დასტური მაინც. ეს აისახება თქვენი ნაშთის დათვლაზეც. + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. როუტერში Dogecoin-კლიენტის პორტის ავტომატური გახსნა. მუშაობს, თუ თქვენს როუტერს ჩართული აქვს UPnP. - Map port using &UPnP პორტის გადამისამართება &UPnP-ით - Proxy &IP: პროქსის &IP: - &Port: &პორტი - Port of the proxy (e.g. 9050) პროქსის პორტი (მაგ.: 9050) - SOCKS &Version: SOCKS &ვერსია: - SOCKS version of the proxy (e.g. 5) პროქსის SOCKS-ვერსია (მაგ.: 5) - &Window &ფანჯარა - Show only a tray icon after minimizing the window. ფანჯრის მინიმიზებისას მხოლოდ იკონა სისტემურ ზონაში - &Minimize to the tray instead of the taskbar &მინიმიზება სისტემურ ზონაში პროგრამების პანელის ნაცვლად - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. პროგრამის მინიმიზება ფანჯრის დახურვისას. ოპციის ჩართვის შემდეგ პროგრამის დახურვა შესაძლებელი იქნება მხოლოდ მენიუდან - პუნქტი "გასვლა". - M&inimize on close მ&ინიმიზება დახურვისას - &Display &ჩვენება - User Interface &language: სამომხმარებ&ლო ენა: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. აქ შეგიძლიათ აირჩიოთ სამომხმარებლო ენა. ძალაში შევა Dogecoin-ის რესტარტის შემდეგ. - &Unit to show amounts in: ერთეუ&ლი: - Choose the default subdivision unit to show in the interface and when sending coins. აირჩიეთ გასაგზავნი თანხის ნაგულისხმევი ერთეული. - Whether to show Dogecoin addresses in the transaction list or not. ტრანსაქციების სიაში იყოს თუ არა ნაჩვენები Dogecoin-მისამართები. - &Display addresses in transaction list მისამართების &ჩვენება სიაში - Whether to show coin control features or not. ვაჩვენოთ თუ არა მონეტების მართვის პარამეტრები. - - Display coin &control features (experts only) - მართვის პარამეტრები (მხოლოდ ექსპერტთათვის) - - - &OK &OK - &Cancel &გაუქმება - default ნაგულისხმევი - none ცარიელი - Confirm options reset დაადასტურეთ პარამეტრების დაბრუნება ნაგულისხმევზე - - Client restart required to activate changes. ცვლილებები ძალაში შევა კლიენტის ხელახალი გაშვების შემდეგ. - Client will be shutdown, do you want to proceed? კლიენტი დაიხურება, გავაგრძელოთ? - This change would require a client restart. ამ ცვლილებების ძალაში შესასვლელად საჭიროა კლიენტის დახურვა და ხელახალი გაშვება. - The supplied proxy address is invalid. პროქსის მისამართი არასწორია. @@ -1477,69 +1207,54 @@ Address: %4 OverviewPage - Form ფორმა - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. ნაჩვენები ინფორმაცია შეიძლება მოძველებული იყოს. თქვენი საფულე ავტომატურად სინქრონიზდება Dogecoin-ის ქსელთან კავშირის დამყარების შემდეგ, ეს პროცესი ჯერ არ არის დასრულებული. - - Unconfirmed: - დაუდასტურებელია: - - - Wallet საფულე - - Confirmed: - დადასტურებულია: + Available: + ხელმისაწვდომია: - Your current spendable balance თქვენი ხელმისაწვდომი ნაშთი - + Pending: + იგზავნება: + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance დასადასტურებელი ტრანსაქციების საერთო რაოდენობა, რომლებიც ჯერ არ არის ასახული ბალანსში - Immature: მოუმზადებელია: - Mined balance that has not yet matured მოპოვებული თანხა, რომელიც ჯერ არ არის მზადყოფნაში - Total: სულ: - Your current total balance თქვენი სრული მიმდინარე ბალანსი - <b>Recent transactions</b> <b>ბოლო ტრანსაქციები</b> - - out of sync არ არის სინქრონიზებული @@ -1547,93 +1262,70 @@ Address: %4 PaymentServer - - URI handling URI-ების დამუშავება - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. URI-ის დამუშავება ვერ მოხერხდა. შესაძლოა არასწორია Dogecoin-მისამართი ან URI-ის პარამეტრები. - Requested payment amount of %1 is too small (considered dust). მოთხოვნილი გადახდის %1 მოცულობა ძალიან მცირეა (ითვლება "მტვრად") - - - - - - Payment request error გადახდის მოთხოვნის შეცდომა - - Cannot start dogecoin: click-to-pay handler - ვერ გაიშვა dogecoin: click-to-pay + Cannot start bitcoin: click-to-pay handler + ვერ გაიშვა bitcoin: click-to-pay - Net manager warning გაფრთხილება ქსელის მენეჯერისაგან - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. თქვენს აქტიურ პროქსის არა აქვს SOCKS5-ის მხარდაჭერა, რაც საჭიროა გადახდების პროქსით განხორციელებისათვის. - Payment request fetch URL is invalid: %1 არასწორია გადახდის მოთხოვნის URL: %1 - Payment request file handling გადახდის მოთხოვნის ფაილის დამუშავება - Payment request file can not be read or processed! This can be caused by an invalid payment request file. ვერ ხერხდება გადახდის მოთხოვნის ფაილის წაკითხვა ან დამუშავება! შესაძლოა დაზიანებულია გადახდის მოთხოვნის ფაილი. - Unverified payment requests to custom payment scripts are unsupported. არავერიფიცირებული გადახდის მოთხოვნები გადახდის სამომხმარებლო სკრიპტებისათვის არ არის მხარდაჭერილი. - Refund from %1 დაბრუნება %1-საგან - Error communicating with %1: %2 ვერ გამოდის კავშირზე %1: %2 - Payment request can not be parsed or processed! ვერ ხერხდება გადახდის მოთხოვნის გარჩევა ან დამუშავება! - Bad response from server %1 ცუდი პასუხი სერვერისაგან %1 - Payment acknowledged გადახდა მიღებულია - Network request error ქსელური მოთხოვნის შეცდომა @@ -1641,23 +1333,26 @@ Address: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. შეცდომა: მითითებული მონაცემთა კატალოგი "%1" არ არსებობს. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. შეცდომა: -regtest-ისა და -testnet-ის დაუშვებელი კომბინაცია. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) შეიყვანეთ ბიტკოინ-მისამართი (მაგ. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1665,22 +1360,18 @@ Address: %4 QRImageWidget - &Save Image... გამო&სახულების შენახვა - &Copy Image გამოსახულების &კოპირება - Save QR Code QR-კოდის შენახვა - PNG Image (*.png) PNG სურათი (*.png) @@ -1688,192 +1379,146 @@ Address: %4 RPCConsole - Client name კლიენტი - - - - - - - - - - - N/A მიუწვდ. - Client version კლიენტის ვერსია - &Information &ინფორმაცია - Debug window დახვეწის ფანჯარა - General საერთო - Using OpenSSL version OpenSSL-ის ვერსია - Startup time სტარტის დრო - Network ქსელი - Name სახელი - Number of connections შეერთებების რაოდენობა - Block chain ბლოკთა ჯაჭვი - Current number of blocks ბლოკების მიმდინარე რაოდენობა - Estimated total blocks ბლოკების სავარაუდო რაოდენობა - Last block time ბოლო ბლოკის დრო - &Open &შექმნა - &Console &კონსოლი - &Network Traffic &ქსელის ტრაფიკი - &Clear &წაშლა - Totals ჯამი - In: შემომავალი: - Out: გამავალი: - Build date შექმნის დრო - Debug log file დახვეწის ლოგ-ფაილი - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. გახსენით Dogecoin-ის დახვეწის ლოგ-ფაილი მიმდინარე კატალოგიდან. დიდი ლოგ-ფაილის შემთხვევაში ამას შეიძლება რამდენიმე წამი მოუნდეს. - Clear console კონსოლის გასუფთავება - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. მოგესალმებათ Dogecoin-ის RPC კონსოლი. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. კლავიშები "ზევით" და "ქვევით" - ისტორიაში მოძრაობა, <b>Ctrl-L</b> - ეკრანის გასუფთავება. - Type <b>help</b> for an overview of available commands. აკრიფეთ <b>help</b> ფაშვებული ბრძანებების სანახავად. - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 წთ - %1 h %1 სთ - %1 h %2 m %1 სთ %2 წთ @@ -1881,105 +1526,82 @@ Address: %4 ReceiveCoinsDialog - &Amount: თ&ანხა: - &Label: ნიშნუ&ლი: - &Message: &მესიჯი: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. რომელიმე ადრე გამოყენებული მიღების მისამართის გამოყენება. ეს ამცირებს უსაფრთხოებასა და პრივატულობას. ნუ გამოიყენებთ ამ ოპციას, თუ არ ახდენთ ადრე მოთხოვნილი გადახდის ხელახლა გენერირებას. - R&euse an existing receiving address (not recommended) ად&რე გამოყენებული მიღების მისამართის გამოყენება (არ არის რეკომენდებული) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. არააუცილებელი მესიჯი, რომელიც ერთვის გადახდის მოთხოვნას და ნაჩვენები იქნება მოთხოვნის გახსნისას. შენიშვნა: მესიჯი არ გაყვება გადახდას ბითქოინის ქსელში. - - An optional label to associate with the new receiving address. არააუცილებელი ნიშნული ახალ მიღების მისამართთან ასოცირებისათვის. - Use this form to request payments. All fields are <b>optional</b>. გამოიყენეთ ეს ფორმა გადახდის მოთხოვნისათვის. ყველა ველი <b>არააუცილებელია</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. მოთხოვნის მოცულობა. არააუცილებელია. ჩაწერეთ 0 ან დატოვეთ ცარიელი, თუ არ მოითხოვება კონკრეტული მოცულობა. - Clear all fields of the form. ფორმის ყველა ველის წაშლა - Clear წაშლა - Requested payments history მოთხოვნილი გადახდების ისტორია - &Request payment &გადახდის მოთხოვნა - Show the selected request (does the same as double clicking an entry) არჩეული მოთხოვნის ჩვენება (იგივეა, რაც ჩანაწერზე ორჯერ ჩხვლეტა) - Show ჩვენება - Remove the selected entries from the list მონიშნული ჩანაწერების წაშლა სიიდან - Remove წაშლა - Copy label ნიშნულის კოპირება - Copy message მესიჯის კოპირება - Copy amount თანხის კოპირება @@ -1987,67 +1609,54 @@ Address: %4 ReceiveRequestDialog - QR Code QR-კოდი - Copy &URI &URI-ის კოპირება - Copy &Address მის&ამართის კოპირება - &Save Image... გამო&სახულების შენახვა... - Request payment to %1 %1-ის გადაზდის მოთხოვნა - Payment information ინფორმაცია გადახდის შესახებ - URI URI - Address მისამართი - Amount რაოდენობა - Label ნიშნული - Message მესიჯი - Resulting URI too long, try to reduce the text for label / message. URI ძალიან გრძელი გამოდის, შეამოკლეთ ნიშნულის/მესიჯის ტექსტი. - Error encoding URI into QR Code. შედომა URI-ის QR-კოდში გადაყვანისას. @@ -2055,37 +1664,30 @@ Address: %4 RecentRequestsTableModel - Date თარიღი - Label ნიშნული - Message მესიჯი - Amount რაოდენობა - (no label) (არ არის ნიშნული) - (no message) (მესიჯები არ არის) - (no amount) (თანხა არ არის) @@ -2093,247 +1695,194 @@ Address: %4 SendCoinsDialog - - - Send Coins მონეტების გაგზავნა - Coin Control Features მონეტების კონტროლის პარამეტრები - Inputs... ხარჯები... - automatically selected არჩეულია ავტომატურად - Insufficient funds! არ არის საკმარისი თანხა! - Quantity: რაოდენობა: - Bytes: ბაიტები: - Amount: თანხა: - Priority: პრიორიტეტი: - Fee: საკომისიო: - Low Output: ქვედა ზღვარი: - After Fee: დამატებითი საკომისიო: - Change: ხურდა: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. ამის გააქტიურებისას თუ ხურდის მისამართი ცარიელია ან არასწორია, ხურდა გაიგზავნება ახლად გენერირებულ მისამართებზე. - Custom change address ხურდის მისამართი - Send to multiple recipients at once გაგზავნა რამდენიმე რეციპიენტთან ერთდროულად - Add &Recipient &რეციპიენტის დამატება - Clear all fields of the form. ფორმის ყველა ველის წაშლა - Clear &All გ&ასუფთავება - Balance: ბალანსი: - Confirm the send action გაგზავნის დადასტურება - S&end გაგ&ზავნა - Confirm send coins მონეტების გაგზავნის დადასტურება - - - - %1 to %2 %1-დან %2-ში - Copy quantity რაოდენობის კოპირება - Copy amount თანხის კოპირება - Copy fee საკომისიოს კოპირება - Copy after fee დამატებითი საკომისიოს კოპირება - Copy bytes ბაიტების კოპირება - Copy priority პრიორიტეტის კოპირება - Copy low output ქვედა ზღვრის კოპირება - Copy change ხურდის კოპირება - Total Amount %1 (= %2) ჯამური თანხა %1 (= %2) - or ან - The recipient address is not valid, please recheck. მიმღების მისამართი არასწორია, შეამოწმეთ. - The amount to pay must be larger than 0. გადახდის მოცულობა 0-ზე მეტი უნდა იყოს - The amount exceeds your balance. თანხა აღემატება თქვენს ბალანსს - The total exceeds your balance when the %1 transaction fee is included. საკომისიო 1%-ის დამატების შემდეგ თანხა აჭარბებს თქვენს ბალანსს - Duplicate address found, can only send to each address once per send operation. მისამართები დუბლირებულია, დაშვებულია ერთ ჯერზე თითო მისამართზე ერთხელ გაგზავნა. - Transaction creation failed! შეცდომა ტრანსაქციის შექმნისას! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. ტრანსაქცია უარყოფილია! შესაძლოა მონეტების ნაწილი თქვენი საფულიდან უკვე გამოყენებულია, რაც შეიძლება მოხდეს wallet.dat-ის ასლის გამოყენებისას, როცა მონეტები გაიგზავნა სხვა ასლიდან, აქ კი არ არის გაგზავნილად მონიშნული. - Warning: Invalid Dogecoin address ყურადღება: არასწორია Dogecoin-მისამართი - (no label) (არ არის ნიშნული) - Warning: Unknown change address ყურადღება: უცნობია ხურდის მისამართი - Are you sure you want to send? დარწმუნებული ხართ, რომ გინდათ გაგზავნა? - added as transaction fee დამატებულია საკომისიო - Payment request expired გადახდის მოთხოვნას ვადა გაუვიდა - Invalid payment address %1 გადახდის მისამართი არასწორია: %1 @@ -2341,98 +1890,74 @@ Address: %4 SendCoinsEntry - - - A&mount: &რაოდენობა - Pay &To: ადრესა&ტი: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) მისამართი, რომლითაც ასრულებთ გადახდას (მაგ.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book შეიყვანეთ ამ მისამართის ნიშნული მისამართების წიგნში დასამატებლად - &Label: ნიშნუ&ლი: - Choose previously used address აირჩიეთ ადრე გამოყენებული მისამართი - This is a normal payment. ეს არის ჩვეულებრივი გადახდა. - Alt+A Alt+A - Paste address from clipboard მისამართის ჩასმა კლიპბორდიდან - Alt+P Alt+P - - - Remove this entry ჩანაწერის წაშლა - Message: მესიჯი: - This is a verified payment request. ეს არის ვერიფიცირებული გადახდის მოთხოვნა. - Enter a label for this address to add it to the list of used addresses შეიყვანეთ ამ მისამართის ნიშნული გამოყენებული მისამართების სიაში დასამატებლად - - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. მესიჯი, რომელიც თან ერთვის მონეტებს: URI, რომელიც შეინახება ტრანსაქციასთან ერთად თქვენთვის. შენიშვნა: მესიჯი არ გაყვება გადახდას ბითქოინის ქსელში. - This is an unverified payment request. ეს არის არავერიფიცირებული გადახდის მოთხოვნა. - - Pay To: ადრესატი: - - Memo: შენიშვნა: @@ -2440,12 +1965,10 @@ Address: %4 ShutdownWindow - Dogecoin Core is shutting down... Dogecoin Core იხურება... - Do not shut down the computer until this window disappears. არ გამორთოთ კომპიუტერი ამ ფანჯრის გაქრობამდე. @@ -2453,186 +1976,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message ხელმოწერები - მესიჯის ხელმოწერა/ვერიფიკაცია - &Sign Message მე&სიჯის ხელმოწერა - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. ხელმოწერით თქვენ ადასტურებთ, რომ მესიჯი თქვენია. ფრთხილად - არ მოაწეროთ ხელი რაიმე საეჭვოს: ფიშინგური ხრიკებით შეიძლება ის თქვენს მესიჯად გაასაღონ. მოაწერეთ ხელი მხოლოდ იმას, რასაც ყველა წვრილმანში ეთანხმებით. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) მისამართი, რომლითაც ხელს აწერთ (მაგ.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address აირჩიეთ ადრე გამოყენებული მისამართი - - Alt+A Alt+A - Paste address from clipboard მისამართის ჩასმა კლიპბორდიდან - Alt+P Alt+P - Enter the message you want to sign here აკრიფეთ ხელმოსაწერი მესიჯი - Signature ხელმოწერა - Copy the current signature to the system clipboard მიმდინარე ხელმოწერის კოპირება კლიპბორდში - Sign the message to prove you own this Dogecoin address მოაწერეთ ხელი იმის დასადასტურებლად, რომ ეს მისამართი თქვენია - Sign &Message &მესიჯის ხელმოწერა - Reset all sign message fields ხელმოწერის ყველა ველის წაშლა - - Clear &All გ&ასუფთავება - &Verify Message მესიჯის &ვერიფიკაცია - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. შეიყვანეთ ხელმოწერის მისამართი, მესიჯი (დაუკვირდით, რომ ზუსტად იყოს კოპირებული სტრიქონის გადატანები, ჰარები, ტაბულაციები და სხვ) და ხელმოწერა მესიჯის ვერიფიკაციისათვის. მიაქციეთ ყურადღება, რომ რაიმე ზედმეტი არ გაგყვეთ კოპირებისას, რათა არ გახდეთ "man-in-the-middle" შეტევის ობიექტი. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) მისამართი, რომლითაც ხელმოწერილია მესიჯი (მაგ.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address შეამოწმეთ, რომ მესიჯი ხელმოწერილია მითითებული Dogecoin-მისამართით - Verify &Message &მესიჯის ვერიფიკაცია - Reset all verify message fields ვერიფიკაციის ყველა ველის წაშლა - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) შეიყვანეთ ბიტკოინ-მისამართი (მაგ. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature ხელმოწერის გენერირებისათვის დააჭირეთ "მესიჯის ხელმოწერა"-ს - - The entered address is invalid. შეყვანილი მისამართი არასწორია. - - - - Please check the address and try again. შეამოწმეთ მისამართი და სცადეთ ხელახლა. - - The entered address does not refer to a key. შეყვანილი მისამართი არ არის კავშირში გასაღებთან. - Wallet unlock was cancelled. საფულის განბლოკვა შეწყვეტილია. - Private key for the entered address is not available. ამ მისამართისათვის პირადი გასაღები მიუწვდომელია. - Message signing failed. ვერ მოხერხდა მესიჯის ხელმოწერა. - Message signed. მესიჯი ხელმოწერილია. - The signature could not be decoded. ხელმოწერის დეკოდირება ვერ ხერხდება. - - Please check the signature and try again. შეამოწმეთ ხელმოწერა და სცადეთ ხელახლა. - The signature did not match the message digest. ხელმოწერა არ შეესაბამება მესიჯის დაიჯესტს. - Message verification failed. მესიჯის ვერიფიკაცია ვერ მოხერხდა. - Message verified. მესიჯი ვერიფიცირებულია. @@ -2640,17 +2119,14 @@ Address: %4 SplashScreen - Dogecoin Core Dogecoin Core - The Dogecoin Core developers Dogecoin Core-ს ავტორები - [testnet] [testnet] @@ -2658,7 +2134,6 @@ Address: %4 TrafficGraphWidget - KB/s KB/s @@ -2666,179 +2141,138 @@ Address: %4 TransactionDesc - Open until %1 ღია იქნება სანამ %1 - + conflicted + კონფლიქტშია + + %1/offline %1/გათიშულია - %1/unconfirmed %1/დაუდასტურებელია - %1 confirmations %1 დადასტურებულია - Status სტატუსი - , broadcast through %n node(s) , დაგზავნილია %n კვანძისათვის - Date თარიღი - Source წყარო - Generated გენერირებულია - - From გამგზავნი - - - To მიმღები - - own address საკუთარი მისამართი - label ნიშნული - - - - - Credit კრედიტი - matures in %n more block(s) მზად იქნება %n ბლოკის შემდეგ - not accepted უარყოფილია - - - - Debit დებიტი - Transaction fee ტრანსაქციის საფასური - საკომისიო - Net amount სუფთა თანხა - - Message მესიჯი - Comment შენიშვნა - Transaction ID ტრანსაქციის ID - Merchant გამყიდველი - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. გენერირებული მონეტები გასაგზავნად მომწიფდება %1 ბლოკის შემდეგ. ეს ბლოკი გენერირების შემდეგ გავრცელებულ იქნა ქსელში ბლოკთა ჯაჭვზე დასამატებლად. თუ ის ვერ ჩაჯდა ჯაჭვში, მიეცემა სტატუსი "უარყოფილია" და ამ მონეტებს ვერ გამოიყენებთ. ასეთი რამ შეიძლება მოხდეს, თუ რომელიმე კვანძმა რამდენიმე წამით დაგასწროთ ბლოკის გენერირება. - Debug information დახვეწის ინფორმაცია - Transaction ტრანსაქცია - Inputs ხარჯები - Amount თანხა - true ჭეშმარიტი - false მცდარი - , has not been successfully broadcast yet , დაგზავნა არ არის წარმატებით დასრულებული - Open for %n more block(s) ღიაა კიდევ %n ბლოკისათვის - unknown უცნობია @@ -2846,12 +2280,10 @@ Address: %4 TransactionDescDialog - Transaction details ტრანსაქციის დეტალები - This pane shows a detailed description of the transaction ტრანსაქციის დაწვრილებითი აღწერილობა @@ -2859,118 +2291,102 @@ Address: %4 TransactionTableModel - Date თარიღი - Type ტიპი - Address მისამართი - Amount რაოდენობა - Immature (%1 confirmations, will be available after %2) არ არის მომწიფებული (%1 დასტური, საჭიროა სულ %2) - Open for %n more block(s) ღიაა კიდევ %n ბლოკისათვის - Open until %1 ღია იქნება სანამ %1 - - Offline (%1 confirmations) - ოფლაინშია (%1 დასასტურება) - - - - Unconfirmed (%1 of %2 confirmations) - დაუდასტურებელია (%1 დადასტურება %2-დან) - - - - Confirmed (%1 confirmations) დადასტურებულია (%1დასტური) - This block was not received by any other nodes and will probably not be accepted! ეს ბლოკი არ არის მიღებული არცერთი კვანძის მიერ და სავარაუდოდ უარყოფილია! - Generated but not accepted გენერირებულია, მაგრამ უარყოფილია - + Offline + ოფლაინშია + + + Unconfirmed + დაუდასტურებელია + + + Confirming (%1 of %2 recommended confirmations) + დადასტურებულია (%1, რეკომენდებულია %2) + + + Conflicted + კონფლიქტშია + + Received with მიღებულია - Received from გამომგზავნი - Sent to გაგზავნილია ადრესატთან - Payment to yourself გადახდილია საკუთარი თავისათვის - Mined მოპოვებულია - (n/a) (მიუწვდ.) - Transaction status. Hover over this field to show number of confirmations. ტრანსაქციის სტატუსი. ველზე კურსორის შეყვანისას გამოჩნდება დასტურების რაოდენობა. - Date and time that the transaction was received. ტრანსაქციის მიღების თარიღი და დრო. - Type of transaction. ტრანსაქციის ტიპი. - Destination address of transaction. ტრანსაქიის დანიშნულების მისამართი. - Amount removed from or added to balance. ბალანსიდან მოხსნილი ან დამატებული თანხა. @@ -2978,178 +2394,142 @@ Address: %4 TransactionView - - All ყველა - Today დღეს - This week ამ კვირის - This month ამ თვის - Last month ბოლო თვის - This year ამ წლის - Range... შუალედი... - Received with შემოსულია - Sent to გაგზავნილია - To yourself საკუთარი თავისათვის - Mined მოპოვებულია - Other სხვა - Enter address or label to search შეიყვანეთ საძებნი მისამართი ან ნიშნული - Min amount მინ. თანხა - Copy address მისამართის კოპირება - Copy label ნიშნულის კოპირება - Copy amount თანხის კოპირება - Copy transaction ID ტრანსაქციის ID-ს კოპირება - Edit label ნიშნულის რედაქტირება - Show transaction details ტრანსაქციის დეტალების ჩვენება - Export Transaction History ტრანსაქციების ისტორიის ექსპორტი - Exporting Failed ექსპორტი ვერ განხორციელდა - There was an error trying to save the transaction history to %1. შეცდომა %1-ში ტრანსაქციების შენახვის მცდელობისას. - Exporting Successful ეხპორტი განხორციელებულია - The transaction history was successfully saved to %1. ტრანსაქციების ისტორია შენახულია %1-ში. - Comma separated file (*.csv) CSV-ფაილი (*.csv) - Confirmed დადასტურებულია - Date თარიღი - Type ტიპი - Label ნიშნული - Address მისამართი - Amount თანხა - ID ID - Range: შუალედი: - to - @@ -3157,7 +2537,6 @@ Address: %4 WalletFrame - No wallet has been loaded. არ არის ჩატვირთული საფულე. @@ -3165,7 +2544,6 @@ Address: %4 WalletModel - Send Coins მონეტების გაგზავნა @@ -3173,154 +2551,125 @@ Address: %4 WalletView - &Export &ექსპორტი - Export the data in the current tab to a file ამ ბარათიდან მონაცემების ექსპორტი ფაილში - Backup Wallet საფულის არქივირება - Wallet Data (*.dat) საფულის მონაცემები (*.dat) - Backup Failed არქივირება ვერ მოხერხდა - There was an error trying to save the wallet data to %1. შეცდომა %1-ში საფულის მონაცემების შენახვის მცდელობისას. - The wallet data was successfully saved to %1. საფულის მონაცემები შენახულია %1-ში. - Backup Successful არქივირება შესრულებულია - dogecoin-core + bitcoin-core - Usage: გამოყენება: - List commands ბრძანებები - Get help for a command ბრძანების აღწერილობა - Options: ოპციები: - - Specify configuration file (default: dogecoin.conf) - მიუთითეთ საკონფიგურაციო ფაილი (ნაგულისხმევია: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + მიუთითეთ საკონფიგურაციო ფაილი (ნაგულისხმევია: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - მიუთითეთ pid ფაილი (ნაგულისხმევია: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + მიუთითეთ pid ფაილი (ნაგულისხმევია: bitcoind.pid) - Specify data directory მიუთითეთ მონაცემთა კატალოგი - - Set database cache size in megabytes (default: 25) - მონაცემთა ბაზის ქეშის ზომა მეგაბაიტებში (ნაგულისხმევია 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + მიყურადება პორტზე <port> (ნაგულისხმევი: 8333 ან სატესტო ქსელში: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - მიყურადება პორტზე <port> (ნაგულისხმევი: 22556 ან სატესტო ქსელში: 44556) - - - Maintain at most <n> connections to peers (default: 125) არაუმეტეს <n> შეერთებისა პირებზე (ნაგულისხმევი: 125) - Connect to a node to retrieve peer addresses, and disconnect მიერთება კვანძთან, პირების მისამართების მიღება და გათიშვა - Specify your own public address მიუთითეთ თქვენი საჯარო მისამართი - Threshold for disconnecting misbehaving peers (default: 100) არასწორად მოქმედი პირების გათიშვის ზღვარი (ნაგულისხმევი:100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) არასწორად მოქმედი პირების ბლოკირების დრო წამებში (ნაგულისხმევი: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s შეცდომა %u RPC-პორტის მიყურადების ჩართვისას IPv4 მისამართზე: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - JSON-RPC-შეერთებების მიყურადება პორტზე <port> (ნაგულისხმევი: 22555 ან სატესტო ქსელში: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + JSON-RPC-შეერთებების მიყურადება პორტზე <port> (ნაგულისხმევი: 8332 ან სატესტო ქსელში: 18332) - Accept command line and JSON-RPC commands საკომანდო სტრიქონისა და JSON-RPC-კომამდების ნებართვა - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands რეზიდენტულად გაშვება და კომანდების მიღება - Use the test network სატესტო ქსელის გამოყენება - Accept connections from outside (default: 1 if no -proxy or -connect) გარედან შეერთებების დაშვება (ნაგულისხმევი: 1 თუ არ გამოიყენება -proxy ან -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3331,7 +2680,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, მიუთითეთ rpcpassword საკონფიგურაციო ფაილში: %s რეკომენდებულია შემდეგი შემთხვევითი პაროლი: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (ამის დამახსოვრება არ გჭირდებათ) სახელი და პაროლი ერთმანეთს არ უნდა ემთხვეოდეს. @@ -3341,707 +2690,686 @@ 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 IPv6, falling back to IPv4: %s შეცდომა %u RPC-პორტის მიყურადების ჩართვისას IPv6 მისამართზე, ვბრუნდებით IPv4-ზე : %s - Bind to given address and always listen on it. Use [host]:port notation for IPv6 მოცემულ მისამართზე მიჯაჭვა მუდმივად მასზე მიყურადებით. გამოიყენეთ [host]:port ფორმა IPv6-სათვის - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - მონაცემთა კატალოგის %s ბლოკირება ვერ ხერხდება. შესაძლოა Dogecoin უკვე გაშვებულია. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + - 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 %d) + + + 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 რაოდენობის, სირთულის ან ბოლოს მიღებული თანხების შესაბამისად! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) კომანდის შესრულება საფულის ტრანსაქციის ცვლილებისას (%s კომანდაში ჩანაცვლდება TxID-ით) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) ფარული Tor-სერვისებით პირების წვდომისათვის სხვა 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 Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. ყურადღება: შეამოწმეთ თქვენი კომპიუტერის სისტემური თარიღი და დრო! თუ ისინი არასწორია, Dogecoin ვერ იმუშავებს კორექტულად. - 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-ში; თუ შეამჩნიეთ უზუსტობა ნაშთში ან ტრანსაქციებში, აღადგინეთ არქივიდან. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: <category> შეიძლება იყოს: - Attempt to recover private keys from a corrupt wallet.dat პირადი გასაღებების აღდგენის მცდელობა wallet.dat-იდან - Dogecoin Core Daemon Dogecoin Core დემონი - - Dogecoin Core RPC client version - Dogecoin-კლიენტის RPC-ვერსია - - - Block creation options: ბლოკის შექმნის ოპციები: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + საფულის ტრანსაქციების სიის წაშლა (დიაგნოსტიკის საშუალება; მოიცავს -rescan-ს) + + Connect only to the specified node(s) შეერთება მხოლოდ მითითებულ კვანძ(ებ)თან - Connect through SOCKS proxy შეერთება SOCKS-პროქსით - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - JSON-RPC-შეერთება პორტზე <port> (ნაგულისხმევი: 22555 ან სატესტო ქსელში: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + JSON-RPC-შეერთება პორტზე <port> (ნაგულისხმევი: 8332 ან სატესტო ქსელში: 18332) + + + Connection options: + - Corrupted block database detected შენიშნულია ბლოკთა ბაზის დაზიანება - + 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 არ ჩაიტვირთოს საფულე და აიკრძალოს საფულისადმი RPC-მიმართვები - Do you want to rebuild the block database now? გავუშვათ ბლოკთა ბაზის ხელახლა აგება ეხლა? - Error initializing block database ვერ ინიციალიზდება ბლოკების ბაზა - Error initializing wallet database environment %s! ვერ ინიციალიზდება საფულის ბაზის გარემო %s! - Error loading block database არ იტვირთება ბლოკების ბაზა - Error opening block database ბლოკთა ბაზის შექმნა ვერ მოხერხდა - Error: Disk space is low! შეცდომა: დისზე არ არის ადგილი! - Error: Wallet locked, unable to create transaction! შეცდომა: საფულე დაბლოკილია, ტრანსაქცია ვერ შეიქმნება! - 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: + + + Find peers using DNS lookup (default: 1 unless -connect) პირების ძებნა DNS-ით (ნაგულისხმევი: 1 გარდა -connect-ისა) - + Force safe mode (default: 0) + + + Generate coins (default: 0) მონეტების გენერირება (ნაგულისხმევი: 0) - How many blocks to check at startup (default: 288, 0 = all) რამდენი ბლოკი შემოწმდეს გაშვებისას (ნაგულისხმევი: 288, 0 - ყველა) - - How thorough the block verification is (0-4, default: 3) - ბლოკების შემოწმების სიზუსტე (0-4, ნაგულისხმევი: 3) - - - If <category> is not supplied, output all debugging information. თუ <category> არ არის მითითებული, ნაჩვენები იქნება სრული დახვეწის ინფორმაცია. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? საწყისი ბლოკი არ არსებობს ან არასწორია. ქსელის მონაცემთა კატალოგი datadir ხომ არის არასწორი? - Invalid -onion address: '%s' არასწორია მისამართი -onion: '%s' - Not enough file descriptors available. არ არის საკმარისი ფაილ-დესკრიპტორები. - Prepend debug output with timestamp (default: 1) დაემატოს დახვეწის ინფორმაციას დროის ჭდეები (ნაგულისხმევი: 1) - RPC client options: RPC კლიენტის ოპციები: - Rebuild block chain index from current blk000??.dat files ბლოკთა ჯაჭვის ინდექსის ხელახლა აგება blk000??.dat ფაილიდან - Select SOCKS version for -proxy (4 or 5, default: 5) SOCKS-ვერსიის არჩევა -proxy-სათვის (4 ან 5, ნაგულისხმევი: 5) - - Send command to Dogecoin Core server - კომანდის გაგზავნა Dogecoin-სერვერზე + Set database cache size in megabytes (%d to %d, default: %d) + - Set maximum block size in bytes (default: %d) ბლოკის მაქსიმალური ზომის განსაზღვრა ბაიტებში (ნადულისხმევი: %d) - Set the number of threads to service RPC calls (default: 4) RPC-ნაკადების რაოდენობა (ნაგულისხმევი: 4) - Specify wallet file (within data directory) მიუთითეთ საფულის ფაილი (კატალოგში) - - Start Dogecoin Core server - Dogecoin-სერვერის გაშვება + Spend unconfirmed change when sending transactions (default: 1) + დაუდასტურებელი ხურდის გამოყენება ტრანსაქციის გაგზავნისას (ნაგულისხმევი: 1) - This is intended for regression testing tools and app development. გამოიყენება რეგრესული ტესტირების ინსტრუმენტებისა და პროგრამების შემუშავებისას. - - Usage (deprecated, use dogecoin-cli): - გამოყენება (მოძველებულია, გამოიყენეთ dogecoin-cli): + Usage (deprecated, use bitcoin-cli): + გამოყენება (მოძველებულია, გამოიყენეთ bitcoin-cli): - Verifying blocks... ბლოკების ვერიფიკაცია... - Verifying wallet... საფულის ვერიფიკაცია... - Wait for RPC server to start RPC-სერვერის დალოდება გაშვებისათვის - Wallet %s resides outside data directory %s საფულე %s მდებარეობს მონაცემთა კატალოგის %s გარეთ - Wallet options: სფულის ოპციები: - Warning: Deprecated argument -debugnet ignored, use -debug=net ყურადღება: მოძველებული არგუმენტი -debugnet იგნორირდება. გამოიყენეთ -debug=net - You need to rebuild the database using -reindex to change -txindex საჭიროა ბაზის ხელახალი აგება, გამოიყენეთ -reindex რათა შეცვალოთ -txindex - Imports blocks from external blk000??.dat file ბლოკების იმპორტი გარე blk000??.dat ფაილიდან - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) ბრძანების შესრულება შესაბამისი უწყების მიღებისას ან როცა შეინიშნება საგრძნობი გახლეჩა (cmd-ში %s შეიცვლება მესიჯით) - Output debugging information (default: 0, supplying <category> is optional) დახვეწის ინფორმაციის გამოყვანა (ნაგულისხმევი: 0, <category> - არააუცილებელი არგუმენტია) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) მაღალპრიორიტეტული/დაბალსაკომისიოიანი ტრანსაქციების მაქსიმალური ზომა ბაიტებში (ნაგულისხმევი: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - სკრიპტის ვერიფიკაციის ნაკადების რაოდენობა (16-მდე, 0 - ავტომატური, <0 - დასატოვებელი ბირთვების რაოდენობა, ნაგულისხმევი: 0) - - - Information ინფორმაცია - Invalid amount for -minrelaytxfee=<amount>: '%s' დაუშვებელი მნიშვნელობა -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' დაუშვებელი მნიშვნელობა -mintxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) ტრანსაქციის სრული ინდექსი (ნაგულისხმევი: 0) - 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 ბაიტი (ნაგულისხმევი: 5000) - 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) - + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL ოპციები: (იხილე Bitcoin Wiki-ში SSL-ს მოწყობის ინსტრუქციები) - + Send command to Dogecoin Core + + + Send trace/debug info to console instead of debug.log file ტრასირების/დახვეწის ინფოს გაგზავნა კონსოლზე debug.log ფაილის ნაცვლად - Set minimum block size in bytes (default: 0) დააყენეთ ბლოკის მინიმალური ზომა ბაიტებში (ნაგულისხმევი: 0) - + 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 transaction failed ტრანსაქციების ხელმოწერა ვერ მოხერხდა - Specify connection timeout in milliseconds (default: 5000) მიუთითეთ შეერთების ტაიმაუტი მილიწამებში (ნაგულისხმევი: 5000) - + Start Dogecoin Core Daemon + + + System error: სისტემური შეცდომა: - Transaction amount too small ტრანსაქციების რაოდენობა ძალიან ცოტაა - Transaction amounts must be positive ტრანსაქციების რაოდენობა დადებითი რიცხვი უნდა იყოს - Transaction too large ტრანსაქცია ძალიან დიდია - Use UPnP to map the listening port (default: 0) გამოიყენეთ UPnP მისაყურადებელი პორტის გადასამისამართებლად (ნაგულისხმევი: 0) - Use UPnP to map the listening port (default: 1 when listening) გამოიყენეთ UPnP მისაყურადებელი პორტის გადასამისამართებლად (ნაგულისხმევი: 1 როცა ჩართულია მიყურადება) - Username for JSON-RPC connections მომხმარებლის სახელი JSON-RPC-შეერთებისათვის - Warning გაფრთხილება - Warning: This version is obsolete, upgrade required! ყურადღება: ვერსია მოძველებულია, საჭიროა განახლება! - + Zapping all transactions from wallet... + ტრანსაქციების ჩახსნა საფულიდან... + + + on startup + + + version ვერსია - wallet.dat corrupt, salvage failed wallet.dat დაზიანებულია, აღდგენა ვერ მოხერხდა - Password for JSON-RPC connections პაროლი JSON-RPC-შეერთებისათვის - Allow JSON-RPC connections from specified IP address JSON-RPC-შეერთების ნებართვა მითითებული IP მისამართიდან - Send commands to node running on <ip> (default: 127.0.0.1) კომანდის გაგზავნა კვანძისათვის, რომელიც გაშვებულია მისამართზე <ip> (ნაგულისხმევი: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) კომანდის შესრულება უკეთესი ბლოკის გამოჩენისას (%s კომანდაში ჩანაცვლდება ბლოკის ჰეშით) - Upgrade wallet to latest format საფულის ფორმატის განახლება - Set key pool size to <n> (default: 100) გასაღების პულის ზომა იქნება <n> (ნაგულისხმევი: 100) - Rescan the block chain for missing wallet transactions ბლოკების ჯაჭვის გადამოწმება საფულეში გამორჩენილ ტრანსაქციებზე - Use OpenSSL (https) for JSON-RPC connections OpenSSL-ის (https) გამოყენება JSON-RPC-შეერთებებისათვის - Server certificate file (default: server.cert) სერვერის სერტიფიკატის ფაილი (ნაგულისხმევი: server.cert) - Server private key (default: server.pem) სერვერის პირადი გასაღები (ნაგულისხმევი: server.pem) - This help message ეს ტექსტი - Unable to bind to %s on this computer (bind returned error %d, %s) ვერ ხერხდება მიბმა %s-თან ამ კომპიუტერზე (მიღებულია შეცდომა %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect DNS-ძებნის დაშვება -addnode, -seednode და -connect-სათვის - Loading addresses... მისამართების ჩატვირთვა... - Error loading wallet.dat: Wallet corrupted არ იტვირთება wallet.dat: საფულე დაზიანებულია - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin არ იტვირთება wallet.dat: საფულეს სჭირდება Dogecoin-ის ახალი ვერსია - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete საჭიროა საფულის აღდგენა: დაარესტარტეთ Dogecoin - Error loading wallet.dat არ იტვირთება wallet.dat - Invalid -proxy address: '%s' არასწორია მისამართი -proxy: '%s' - Unknown network specified in -onlynet: '%s' -onlynet-ში მითითებულია უცნობი ქსელი: '%s' - Unknown -socks proxy version requested: %i მოთხოვნილია -socks პროქსის უცნობი ვერსია: %i - Cannot resolve -bind address: '%s' ვერ ხერხდება -bind მისამართის გარკვევა: '%s' - Cannot resolve -externalip address: '%s' ვერ ხერხდება -externalip მისამართის გარკვევა: '%s' - Invalid amount for -paytxfee=<amount>: '%s' დაუშვებელი მნიშვნელობა -paytxfee=<amount>: '%s' - Invalid amount დაუშვებელი თანხა - Insufficient funds არ არის საკმარისი თანხა - Loading block index... ბლოკების ინდექსის ჩატვირთვა... - Add a node to connect to and attempt to keep the connection open მისაერთებელი კვანძის დამატება და მიერთების შეძლებისდაგვარად შენარჩუნება - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - ვერ ხერხდება მიბმა %s-თან ამ კომპიუტერზე. შეიძლება Dogecoin უკვე გაშვებულია. - - - Loading wallet... საფულის ჩატვირთვა... - Cannot downgrade wallet საფულის ძველ ვერსიაზე გადაყვანა შეუძლებელია - Cannot write default address ვერ ხერხდება ნაგულისხმევი მისამართის ჩაწერა - Rescanning... სკანირება... - Done loading ჩატვირთვა დასრულებულია - To use the %s option %s ოპციის გამოსაყენებლად - Error შეცდომა - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4050,4 +3378,4 @@ If the file does not exist, create it with owner-readable-only file permissions. თუ ეს ფაილი არ არსებობს, შექმენით იგი უფლებებით owner-readable-only. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_kk_KZ.ts b/src/qt/locale/bitcoin_kk_KZ.ts index 898fdc50c..b95ab57c8 100644 --- a/src/qt/locale/bitcoin_kk_KZ.ts +++ b/src/qt/locale/bitcoin_kk_KZ.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Адресті немесе белгіні өзгерту үшін екі рет шертіңіз - Create a new address Жаңа адрес енгізу - &New - Copy the currently selected address to the system clipboard Таңдаған адресті тізімнен жою - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete Жою - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) Үтірмен бөлінген текст (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,158 +133,121 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label - + таңба - Address - + Адрес - (no label) - + (таңбасыз) AskPassphraseDialog - Passphrase Dialog - Enter passphrase - + Құпия сөзді енгізу - New passphrase - + Жаңа құпия сөзі - Repeat new passphrase - + Жаңа құпия сөзді қайта енгізу - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + Әмиянға жаңа қүпия сөзді енгізіңіз.<br/><b>10 немесе одан әрі кездейсоқ белгілерді</b>, әлде <b>сегіз немесе одан әрі сөздерді</b>құпия сөзіңізде пайдалану өтінеміз. - Encrypt wallet - + Әмиянді шифрлау - This operation needs your wallet passphrase to unlock the wallet. - + Бұл операциясы бойынша сіздің әмиянізді қоршаудан шығару үшін әмиянның құпия сөзі керек - Unlock wallet - + Әмиянізді қоршаудан шығару - This operation needs your wallet passphrase to decrypt the wallet. - + Бұл операциясы бойынша сіздің әмиянізді шифрлап тастау үшін әмиянның құпия сөзі керек - Decrypt wallet - + Әмиянізді шифрлап тастау - Change passphrase - + Құпия сөзді өзгерту - Enter the old and new passphrase to the wallet. - Confirm wallet encryption - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - The supplied passphrases do not match. - Wallet unlock failed - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... - &Overview - Node - Show general overview of wallet - &Transactions - Browse transaction history - E&xit - Quit application - - Show information about Dogecoin Core + Show information about Dogecoin - - About &Qt - Show information about Qt - &Options... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File - &Settings - &Help - Tabs toolbar - - [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address - + Адрес - Date - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) - + (таңбасыз) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,41 +1324,45 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1674,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1867,155 +1517,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + + + + Copy message + + + + Copy amount + + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address - + Адрес - Amount - Label - + таңба - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2023,285 +1655,225 @@ Address: %4 RecentRequestsTableModel - Date - Label - + таңба - Message - Amount - (no label) + (таңбасыз) + + + (no message) - - (no message) + (no amount) SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: - Confirm the send action - S&end - Confirm send coins - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) - + (таңбасыз) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2309,116 +1881,85 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard - Alt+P - - - Remove this entry - Message: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2426,192 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard - Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2619,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2637,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2645,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2825,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2838,118 +2282,102 @@ Address: %4 TransactionTableModel - Date - Type - Address - + Адрес - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2957,178 +2385,142 @@ Address: %4 TransactionView - - All - Today - This week - This month - Last month - This year - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - Үтірмен бөлінген текст (*.csv) + Үтірмен бөлінген файл (*.csv) - Confirmed - Date - Type - Label - + таңба - Address - + Адрес - Amount - ID - Range: - to @@ -3136,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3144,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3152,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3310,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - Транзакция өте кішкентай - - - - Transaction amounts must be positive - - - - - Transaction too large - Транзакция өте үлкен - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + Транзакция өте кішкентай + + + Transaction amounts must be positive + + + + Transaction too large + Транзакция өте үлкен + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_ko_KR.ts b/src/qt/locale/bitcoin_ko_KR.ts index d48555a16..b64427588 100644 --- a/src/qt/locale/bitcoin_ko_KR.ts +++ b/src/qt/locale/bitcoin_ko_KR.ts @@ -1,15 +1,17 @@ - + + + AboutDialog About Dogecoin Core - 비트코인 코어 소개 + Dogecoin 코어 정보 <b>Dogecoin Core</b> version - <b>비트코인 코어</b> 버젼 + <b>Dogecoin 코어</b> 버전 @@ -22,9 +24,9 @@ This product includes software developed by the OpenSSL Project for use in the O 이 프로그램은 시험용입니다. -MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http://www.opensource.org/licenses/mit-license.php를 참조하십시오. +MIT/X11 프로그램 라이선스에 따라 배포합니다. 동봉된 COPYING.txt 파일 또는 http://www.opensource.org/licenses/mit-license.php를 참조하세요. -이 프로그램에는 OpenSSL 툴킷(http://www.openssl.org) 사용 목적으로 개발한 OpenSSL 프로젝트를 포함하고 있으며, 암호화 프로그램은 Eric Young(eay@cryptsoft.com)이, UPnP 프로그램은 Thomas Bernard가 작성했습니다. +이 프로그램은 OpenSSL Toolkit (http://www.openssl.org) 사용 목적으로 개발한 OpenSSL 프로젝트를 포함하고 있으며, 암호화 프로그램은 Eric Young (eay@cryptsoft.com)이, UPnP 프로그램은 Thomas Bernard가 작성했습니다. @@ -34,12 +36,12 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http The Dogecoin Core developers - 비트코인코어 개발자들 + - (%1-bit) + (%1-bit) (%1-비트) @@ -48,102 +50,102 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http Double-click to edit address or label - 표 또는 주소를 편집하기 위해 더블클릭 하세요 + 주소 또는 라벨을 편집하기 위해 더블클릭 하세요 Create a new address - 새 주소 만들기 + 새 주소 생성 &New - + 추가(&N) Copy the currently selected address to the system clipboard - 현재 선택한 주소를 시스템 클립보드로 복사하기 + 현재 선택한 주소를 시스템 클립보드로 복사 &Copy - 복사 + 복사(&C) - + C&lose - + 닫기(&l) &Copy Address - 계좌 복사(&C) + 주소 복사(&C) - + Delete the currently selected address from the list - 현재 목록에 선택한 주소 삭제 + 현재 선택된 주소를 목록에서 삭제 Export the data in the current tab to a file - 현재 탭에 있는 데이터를 파일로 내보내기 + 현재 창에 있는 데이터를 파일로 내보내기 &Export - + 내보내기(&E) &Delete - &삭제 + 삭제(&D) Choose the address to send coins to - 코인을 보내실 주소를 선택하세요 + 코인을 보낼 주소를 선택하세요 Choose the address to receive coins with - 코인을 받으실 주소를 선택하세요 + 코인을 받을 주소를 선택하세요 C&hoose - + 선택(&h) Very sending addresses - 보내는 주소들 + 매우 보내는 주소들 Much receiving addresses - 받은 주소들 + 많이 받는 주소들 These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - + 여기에 Dogecoin을 보낼 수 있는 주소가 있습니다. 코인을 보내기 전에 항상 보내는 주소와 액수를 확인하세요. These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - + 여기에 Dogecoin을 받을 수 있는 주소가 있습니다. 매 거래기록마다 새로운 주소 사용을 권장합니다. Copy &Label - 표 복사 + 라벨 복사(&L) &Edit - 편집& + 편집(&E) @@ -153,7 +155,7 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http Comma separated file (*.csv) - 각각의 파일에 쉼표하기(*.csv) + CSV 파일 형식 (*.csv) @@ -163,7 +165,7 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http There was an error trying to save the address list to %1. - + 주소 목록을 %1로 저장하던 중 오류가 발생했습니다. @@ -171,7 +173,7 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http Label - + 라벨 @@ -181,7 +183,7 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http (no label) - (표 없음) + (라벨 없음) @@ -194,22 +196,22 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http Enter passphrase - 암호 입력하기 + 암호문 입력하기 New passphrase - 새로운 암호 + 새로운 암호문 Repeat new passphrase - 새 암호 반복 + 새 암호문 반복 Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - 새로운 암호를 지갑에 입력. 8자보다 많은 단어를 입력하거나 10 자보다 많은 여러 종류를 암호에 사용하세요. + 새로운 암호문(passphrase)을 지갑에 입력하세요. 10자 이상의 랜덤한 문자 혹은 여덟 개나 그 이상의 단어(word)로 된 암호문을 사용하는 것이 좋습니다. @@ -219,7 +221,7 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http This operation needs your wallet passphrase to unlock the wallet. - 이 작업은 지갑을 열기위해 사용자의 지갑의 암호가 필요합니다. + 이 작업은 지갑을 열기 위해 사용자의 지갑 암호문이 필요합니다. @@ -229,7 +231,7 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http This operation needs your wallet passphrase to decrypt the wallet. - 이 작업은 지갑을 해독하기 위해 사용자의 지갑 암호가 필요합니다. + 이 작업은 지갑을 해독하기 위해 사용자의 지갑 암호문이 필요합니다. @@ -239,38 +241,38 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http Change passphrase - 암호 변경 + 암호문 변경 Enter the old and new passphrase to the wallet. - 지갑의 예전 암호와 새로운 암호를 입력 + 지갑의 예전 암호문과 새로운 암호문을 입력 Confirm wallet encryption - 지갑의 암호화를 확정 + 지갑 암호화 확인 Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - 경고: 만약 당신의 지갑을 암호화 하고 비밀번호를 잃어 버릴 경우, 당신의 모든 비트코인들을 잃어버릴 수 있습니다! + 경고: 만약 지갑을 암호화 한 뒤 암호문을 잃어버리면, 모든 Dogecoin을 잃어버리게 됩니다! Are you sure you wish to encrypt your wallet? - 지갑 암호화를 허용하시겠습니까? + 지갑을 암호화 하시겠습니까? IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + 중요함: 이전에 사용자가 백업한 어느 지갑 파일이든 새롭게 생성된 암호화된 지갑 파일로 교체하여야 합니다. 보안상의 이유로, 이전의 암호화되지 않은 지갑의 백업 파일들은 새롭게 암호화된 지갑을 사용하자마자 무용지물이 될 것입니다. Warning: The Caps Lock key is on! - 경고: 캡스록 키가 켜져있습니다! + 경고: Caps Lock 키가 켜져 있습니다! @@ -280,8 +282,8 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - 암호화 처리 과정을 끝내기 위해 비트코인을 닫겠습니다. 지갑 암호화는 컴퓨터로의 멀웨어 감염으로 인한 비트코인 도난을 완전히 막아주지 못함을 기억하십시오. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + 암호화 과정을 끝내기 위해 Dogecoin을 닫습니다. 지갑 암호화는 컴퓨터의 멀웨어 감염으로 인한 Dogecoin 도난을 완전히 막아주지 못함을 기억하세요. @@ -294,13 +296,13 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http Wallet encryption failed due to an internal error. Your wallet was not encrypted. - 지갑 암호화는 내부 에러로 인해 실패했습니다. 당신의 지갑은 암호화 되지 않았습니다. + 지갑 암호화는 내부 오류로 인해 실패했습니다. 사용자의 지갑은 암호화 되지 않았습니다. The supplied passphrases do not match. - 지정한 암호가 일치하지 않습니다. + 지정한 암호문이 일치하지 않습니다. @@ -312,7 +314,7 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http The passphrase entered for the wallet decryption was incorrect. - 지갑 해독을 위한 암호가 틀렸습니다. + 지갑 해독을 위한 암호문이 틀렸습니다. @@ -322,60 +324,60 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http Wallet passphrase was successfully changed. - 지갑 비밀번호가 성공적으로 변경되었습니다 + 지갑 암호문이 성공적으로 변경되었습니다 BitcoinGUI - + Sign &message... - 메시지 서명&... + 메시지 서명(&m)... Synchronizing with network... - 네트워크와 동기화중... + 네트워크와 동기화 중... &Overview - &개요 + 우왕(&O) - + Node 노드 - + Show general overview of wallet - 지갑의 일반적 개요를 보여 줍니다. + 지갑의 종합적 개요를 보여 줍니다. &Transactions - &거래 + 많은 내역(&T) Browse transaction history - 거래내역을 검색합니다. + 거래기록 내역 둘러보기 E&xit - 나가기(&X) + 끝내기(&x) Quit application - 적용 중단 + 프로그램을 끝냅니다 - Show information about Dogecoin Core - 비트코인에 대한 정보를 보여줍니다. + Show information about Dogecoin + Dogecoin에 대한 정보를 보여줍니다. @@ -386,42 +388,42 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http Show information about Qt - Qt 정보를 표시합니다 + Qt에 대한 정보를 표시합니다 &Options... - &옵션 + 옵션(&O)... &Encrypt Wallet... - 지갑 암호화&... + 지갑 암호화(&E)... &Backup Wallet... - 지갑 백업&... + 지갑 백업(&B)... &Change Passphrase... - 암호문 변경&... + 암호문 변경(&C)... Very &sending addresses... - + 매우 보내는 주소들(&s)... Much &receiving addresses... - + 많이 받는 주소들(&r)... Open &URI... - URI&열기 + URI 열기(&U)... @@ -431,32 +433,32 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http Reindexing blocks on disk... - 디스크에서 블록 다시 색인중... + 디스크에서 블록 다시 색인 중... Send coins to a Dogecoin address - 비트코인 주소로 코인 전송 + Dogecoin 주소로 코인 전송 Modify configuration options for Dogecoin Core - 비트코인 설정 옵션 수정 + Dogecoin 코어의 환경 설정 옵션을 변경합니다 Backup wallet to another location - 지갑을 다른장소에 백업 + 지갑을 다른 위치에 백업합니다 Change the passphrase used for wallet encryption - 지갑 암호화에 사용되는 암호를 변경합니다 + 지갑 암호화에 사용된 암호문을 변경합니다 &Debug window - 디버그 창& + 디버그 창(&D) @@ -466,27 +468,27 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http &Verify message... - 메시지 확인&... + 메시지 검증(&V)... - + Dogecoin - 비트코인 + Dogecoin - + Wallet 지갑 - + &Send - 보내기(&S) + 매우 보내기(&S) &Receive - 받기(&R) + 많이 받기(&R) @@ -497,135 +499,161 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http Show or hide the main Window - 주 창 보이기 또는 숨기기 + 주 창을 보이거나 숨깁니다 Encrypt the private keys that belong to your wallet - 소유 지갑 개인키 암호화 + 지갑의 개인 키들을 암호화합니다 Sign messages with your Dogecoin addresses to prove you own them - + 지갑 주소가 자신 소유의 것인지 증명하기 위해 Dogecoin 주소에 서명할 수 있습니다. Verify messages to ensure they were signed with specified Dogecoin addresses - + 메시지를 검증하여 지정된 Dogecoin 주소가 서명되었는지 확인하세요. &File - &파일 + 파일(&F) &Settings - &설정 + 설정(&S) &Help - &도움말 + 도움(&H) Tabs toolbar - 툴바 색인표 + 도구 모음 탭 - - + + [testnet] [테스트넷] - + Dogecoin Core - 비트코인코어 + Dogecoin 코어 - + Request payments (generates QR codes and dogecoin: URIs) - 지불 요청하기 (QR코드와 비트코인이 생성됩니다: URIs) + 지불 요청하기 (QR코드와 DogecoinURI 생성) &About Dogecoin Core - &비트코인 코어 소개 + Dogecoin 코어 정보(&A) Show the list of used sending addresses and labels - + 사용했던 보내는 주소와 라벨 목록을 보여줍니다 Show the list of used receiving addresses and labels - + 사용했던 받는 주소와 라벨 목록을 보여줍니다 Open a dogecoin: URI or payment request - 비트코인: URI 또는 지불요청 열기 + DogecoinURI 또는 지불 요청을 엽니다 &Command-line options - 명령어-라인 옵션 + 명령어-라인 옵션(&C) - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options - + Show the Dogecoin Core help message to get a list with possible command-line options + 가능한 명령어-라인 옵션 목록을 Dogecoin 코어 도움말 메시지에서 안내합니다. Dogecoin client - 비트코인 고객 + Dogecoin 클라이언트 %n active connection(s) to Dogecoin network - 비트코인 네트워크와 %n 개의 활성연결 + + Dogecoin 네트워크와 %n개의 연결이 활성화 되었습니다 + Dogecoin 네트워크와 %n개의 연결들이 활성화 되었습니다 + No block source available... - 사용 가능한 블락 소스가 없습니다... + 사용 가능한 블록 소스가 없습니다... Processed %1 of %2 (estimated) blocks of transaction history. - 송금 기록 %1/%2개 블록 (추산) 처리됨. + %2블록(예상)의 거래기록 내역 중 %1개가 처리되었습니다. Processed %1 blocks of transaction history. - %1 블락의 거래 기록들이 처리됨. + %1블록의 거래기록 내역이 처리되었습니다. - + %n hour(s) - 시간 + + %시간 + %시간 + %n day(s) - + + %n일 + %n일 + + %n week(s) - + + %n주 + %n주 + + + + + %1 and %2 + %1 그리고 %2 + + + + %n year(s) + + %n년 + %n년 + %1 behind - + %1 전 @@ -635,7 +663,7 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http Transactions after this will not yet be visible. - 이것 후의 거래들은 아직 보이지 않을 것입니다. + 이 이후의 거래기록들은 아직 보이지 않을 것입니다. @@ -653,24 +681,24 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http 정보 - + Up to date 현재까지 - + Catching up... 따라잡기... Sent transaction - 거래 보내기 + 보낸 거래기록 Incoming transaction - 거래 들어오는 중 + 받은 거래기록 @@ -680,31 +708,31 @@ Type: %3 Address: %4 날짜: %1 -거래액: %2 -형식: %3 +액수: %2 +종류: %3 주소: %4 Wallet is <b>encrypted</b> and currently <b>unlocked</b> - 지갑이 암호화 되었고 현재 차단해제 되었습니다 + 지갑이 <b>암호화</b> 되었고 현재 <b>차단해제</b> 되었습니다 Wallet is <b>encrypted</b> and currently <b>locked</b> - 지갑이 암호화 되었고 현재 잠겨져 있습니다 + 지갑이 <b>암호화</b> 되었고 현재 <b>잠겨</b> 있습니다 - + A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. - 치명적인 오류가 있습니다. 비트코인을 더이상 안전하게 진행할 수 없어 빠져나갑니다. + 치명적인 오류가 발생했습니다. Dogecoin 코어를 더 이상 안전하게 진행할 수 없어 끝냅니다. ClientModel - + Network Alert 네트워크 경고 @@ -714,7 +742,7 @@ Address: %4 Coin Control Address Selection - 코인컨트롤 주소 선택 + 코인 컨트롤 주소 선택 @@ -724,12 +752,12 @@ Address: %4 Bytes: - Bytes: + 바이트: Amount: - 거래량 + 액수: @@ -744,22 +772,22 @@ Address: %4 Low Output: - + 낮은 산출: After Fee: - 수수료 이후: + 수수료 적용 후: Change: - + 잔액: (un)select all - + 모두 선택(해제) @@ -774,7 +802,7 @@ Address: %4 Amount - 거래량 + 액수 @@ -802,7 +830,7 @@ Address: %4 우선도 - + Copy address 주소 복사하기 @@ -815,22 +843,22 @@ Address: %4 Copy amount - 거래액 복사 + 액수 복사 Copy transaction ID - 송금 ID 복사 + 거래기록ID 복사 Lock unspent - + 미소비 잠금 Unlock unspent - + 미소비 풀기 @@ -845,12 +873,12 @@ Address: %4 Copy after fee - 수수료 이후 복사 + 수수료 적용 후 복사 Copy bytes - bytes를 복사 + 바이트 복사 @@ -860,57 +888,57 @@ Address: %4 Copy low output - + 낮은 산출 복사 Copy change - + 잔액 복사 - + highest - 최상 + 가장 높음 higher - + 더욱 높음 high - + 높음 medium-high - 중상 + 높음~중간 medium - + 중간 low-medium - 중하 + 중간~낮음 low - + 낮음 lower - + 더욱 낮음 lowest - + 가장 낮음 @@ -918,14 +946,14 @@ Address: %4 (%1 잠금) - + none 없음 Dust - + 먼지 @@ -935,70 +963,70 @@ Address: %4 no - 아니요 + 아니오 - This label turns red, if the transaction size is greater than 1000 bytes. - + This label turns red, if the transaction size is greater than 5000 bytes. + 거래기록 크기가 5000바이트보다 크면 라벨이 붉은 색으로 변합니다. This means a fee of at least %1 per kB is required. - + 이것은 적어도 KB당 %1의 수수료가 필요함을 의미합니다. Can vary +/- 1 byte per input. - + 입력 당 +/- 1바이트씩 달라질 수 있습니다. Transactions with higher priority are more likely to get included into a block. - + 우선도가 높은 거래기록들은 블록 안에 좀더 잘 포함될 수 있습니다. This label turns red, if the priority is smaller than "medium". - + 우선도가 "중간"보다 작으면, 이 라벨이 붉은색으로 변합니다. This label turns red, if any recipient receives an amount smaller than %1. - + 어떤 받는 이가 %1보다 작은 액수를 받으면, 이 라벨이 붉은 색으로 변합니다. This means a fee of at least %1 is required. - + 이것은 적어도 %1의 수수료가 필요함을 의미합니다. Amounts below 0.546 times the minimum relay fee are shown as dust. - + 최소 전달 수수료에 0.546을 곱한 값보다 낮은 액수는 먼지로 나타납니다. This label turns red, if the change is smaller than %1. - + 반환액이 %1보다 작으면, 이 라벨이 붉은 색으로 바뀝니다. - + (no label) - (표 없슴) + (라벨 없음) - + change from %1 (%2) - ~로부터 변경 %1 (%2) + %1의 반환액 (%2) (change) - + (반환액) @@ -1011,32 +1039,32 @@ Address: %4 &Label - &표 + 라벨(&L) The label associated with this address list entry - + 이 주소 목록 항목과 관련된 라벨입니다. The address associated with this address list entry. This can only be modified for sending addresses. - + 이 주소 목록 항목과 관련된 주소입니다. 이 항목은 보내는 주소일 때만 수정할 수 있습니다. &Address - &주소 + 주소(&A) New receiving address - 새로 받는 주소 + 새 받는 주소 New sending address - 새로 보내는 주소 + 새 보내는 주소 @@ -1051,12 +1079,12 @@ Address: %4 The entered address "%1" is already in the address book. - 입력된 주소는"%1" 이미 주소록에 있습니다. + 입력된 주소 "%1"은(는) 이미 주소록에 있습니다. The entered address "%1" is not a valid Dogecoin address. - 입력한 "%1" 주소는 올바른 비트코인 주소가 아닙니다. + 입력한 주소 "%1"은(는) 올바른 Dogecoin 주소가 아닙니다. @@ -1072,9 +1100,9 @@ Address: %4 FreespaceChecker - + A new data directory will be created. - 새로운 데이터 폴더가 생성됩니다. + 새로운 데이터 디렉토리가 생성됩니다. @@ -1084,17 +1112,17 @@ Address: %4 Directory already exists. Add %1 if you intend to create a new directory here. - + 디렉토리가 이미 존재합니다. 새로운 디렉토리 생성을 원한다면 %1 명령어를 추가하세요. Path already exists, and is not a directory. - 경로가 이미 존재합니다. 그리고 그것은 폴더가 아닙니다. + 경로가 이미 존재합니다. 또한, 디렉토리가 아닙니다. Cannot create data directory here. - 데이터 폴더를 여기 생성할 수 없습니다. + 데이터 디렉토리를 여기 생성할 수 없습니다. @@ -1102,12 +1130,12 @@ Address: %4 Dogecoin Core - Command-line options - 비트코인 코어 - 명령어-라인 옵션 + Dogecoin 코어 - 명령-줄 옵션 Dogecoin Core - 비트코인코어 + Dogecoin 코어 @@ -1122,7 +1150,7 @@ Address: %4 command-line options - 명령줄 옵션 + 명령-줄 옵션 @@ -1130,9 +1158,9 @@ Address: %4 UI 옵션 - + Set language, for example "de_DE" (default: system locale) - "de_DE"와 같이 언어를 설정하십시오 (기본값: 시스템 로캘) + "de_DE"와 같이 언어를 설정하세요 (기본값: 시스템 로켈) @@ -1141,13 +1169,18 @@ Address: %4 - Show splash screen on startup (default: 1) - 시작시 시작 화면 표시 (기본값: 1) + Set SSL root certificates for payment request (default: -system-) + 지불 요청을 위한 SSL 루트 인증 설정 (기본값: -system-) + Show splash screen on startup (default: 1) + 시작 시 시작 화면 표시 (기본값: 1) + + + Choose data directory on startup (default: 0) - 파일목록을 선택하여 시작하시오(기본값: 0) + 시작 시 데이터 디렉토리 선택 (기본값: 0) @@ -1160,40 +1193,40 @@ Address: %4 Welcome to Dogecoin Core. - 비트코인 코어에 오신것을 환영합니. + Dogecoin 코어에 오신 것을 환영합니다. As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - + 프로그램이 처음으로 실행되었기 때문에, Dogecoin 코어의 데이터를 어느 위치에 저장할지 선택할 수 있습니다. Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - + Dogecoin 코어는 블록 체인의 복사본을 다운받아 저장할 것입니다. 적어도 %1GB의 데이터가 이 디렉토리에 저장되고, 시간이 흐르면 증가합니다. 사용자의 지갑 또한 이곳에 저장됩니다. Use the default data directory - 기본 데이터 폴더를 사용하기 + 기본 디렉토리 사용 Use a custom data directory: - 커스텀 데이터 폴더 사용: + 사용자 정의 디렉토리 - + Dogecoin - 비트코인 + Dogecoin Error: Specified data directory "%1" can not be created. - + 오류: 지정된 디렉토리 "%1"에 생성할 수 없습니다. - + Error 오류 @@ -1205,7 +1238,7 @@ Address: %4 (of %1GB needed) - (%1GB가 필요) + (%1GB 필요) @@ -1218,7 +1251,7 @@ Address: %4 Open payment request from URI or file - 지급 요청 URI 또는 파일 열기 + URI 또는 파일로부터 지불 요청 열기 @@ -1233,7 +1266,7 @@ Address: %4 Select payment request file to open - 지불 요청 파일을 열기 위해서 선택하세요 + 열려는 지불 요청 파일 선택 @@ -1241,7 +1274,7 @@ Address: %4 Options - 선택들 + 옵션 @@ -1249,69 +1282,70 @@ Address: %4 메인(&M) - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - 당신의 거래가 더욱 빠르게 처리될 수 있도록 선택적으로 kBd당 거래 수수료를 지정합니다. 참고로 대부분의 거래들은 1kB입니다. + 사용자의 거래기록들이 더욱 빠르게 처리될 수 있도록 돕는 추가적인 kB당 거래기록 수수료입니다. 대부분의 거래기록들은 1kB입니다. Pay transaction &fee - 송금 수수료(&F) + 거래기록 수수료 지불하기(&f) - + Automatically start Dogecoin Core after logging in to the system. - 시스템 로그인후에 비트코인을 자동으로 시작합니다. + 시스템 로그인 후 자동으로 Dogecoin 코어를 시작합니다. &Start Dogecoin Core on system login - 시스템 로그인시 비트코인 시작(&S) + 시스템 로그인 시 Dogecoin 코어 시작(&S) Size of &database cache - 데이터베이스 캐시 크기 + 데이터베이스 캐시 크기(&d) MB - 메가바이트 + MB Number of script &verification threads - + 스크립트 검증 스레드의 수(&v) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - &Spend unconfirmed change (experts only) - - - - + Connect to the Dogecoin network through a SOCKS proxy. - + SOCKS 프록시를 통해 Dogecoin 네트워크 연결 &Connect through SOCKS proxy (default proxy): - SOCKS 프록시를 거쳐 연결합니다 (기본값 프록시): + SOCKS 프록시를 통해 연결합니다(&C) (프록시 기본값): IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - 프록시 아이피 주소(예. IPv4:127.0.0.1 / IPv6: ::1) + 프록시 아이피 주소(예: IPv4:127.0.0.1 / IPv6: ::1) - + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + 바로 가기 메뉴 항목으로 거래기록 탭에 나타나는 서드 파티 URL (예: a block explorer)입니다. URL안의 %s(은)는 거래기록 해쉬로 대체됩니다. 여러 개의 URL들은 수직 바 | 로 구분됩니다. + + + + Third party transaction URLs + 서드 파티 거래기록 URL들 + + + Active command-line options that override above options: - + 위의 옵션을 무시하는 활성화된 명령-줄 옵션: @@ -1324,24 +1358,44 @@ Address: %4 옵션 재설정(&R) - + &Network 네트워크(&N) - + + (0 = auto, <0 = leave that many cores free) + (0 = 자동, <0 = 많은 코어들을 쉬게 함) + + + W&allet - 지갑 + 지갑(&a) - + + Expert + 전문가 + + + + Enable coin &control features + 코인 컨트롤 기능 활성화(&c) + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - + 만약 확인되지 않은 반환액 사용을 비활성화하면, 거래기록 후 반환액은 그 거래기록이 적어도 한 번 확인되기 전까지 사용되지 않습니다. 이것은 잔액 계산에도 영향을 미칩니다. - + + &Spend unconfirmed change + 확인되지 않은 반환액 사용(&S) + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - 라우터의 비트코인 클라이언트 포트를 자동으로 엽니다. 라우터에서 UPnP를 지원하고 활성화 했을 경우에만 동작합니다. + 라우터의 Dogecoin 클라이언트 포트를 자동으로 엽니다. 라우터에서 UPnP를 지원하고 활성화 했을 경우에만 동작합니다. @@ -1351,7 +1405,7 @@ Address: %4 Proxy &IP: - 프록시 IP(&I): + 프록시 &IP: @@ -1386,17 +1440,17 @@ Address: %4 &Minimize to the tray instead of the taskbar - 작업 표시줄 대신 트레이로 최소화(&M) + 작업 표시줄 대신 시스템 트레이로 최소화(&M) Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - 창을 닫으면 프로그램에서 나가지 않고 최소화합니다. 이 옵션을 활성화하면, 프로그램은 메뉴에서 나가기를 선택한 후에만 닫힙니다. + 창을 닫으면 프로그램을 끝내지 않고 최소화합니다. 이 옵션을 활성화하면, 프로그램은 메뉴에서 끝내기를 선택한 후에만 닫힙니다. M&inimize on close - 닫을때 최소화(&I) + 닫을 때 최소화(&i) @@ -1406,45 +1460,40 @@ Address: %4 User Interface &language: - 사용자 인터페이스 언어(&L): + 사용자 표시 언어(&l): The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. - 사용자 인터페이스 언어를 여기서 설정할 수 있습니다. 이 설정은 비트코인을 다시 시작할때 적용됩니다. + 여기서 사용자에게 표시할 언어를 설정할 수 있습니다. 이 설정은 Dogecoin 코어를 다시 시작할 때 적용됩니다. &Unit to show amounts in: - 거래액을 표시할 단위(&U): + 액수를 표시할 단위(&U): Choose the default subdivision unit to show in the interface and when sending coins. - 인터페이스에 표시하고 코인을 보낼때 사용할 기본 최소화 단위를 선택하십시오. + 인터페이스에 표시하거나 코인을 보낼 때 사용할 기본 단위를 선택합니다. Whether to show Dogecoin addresses in the transaction list or not. - 송금 목록에 비트코인 주소를 표시할지의 여부입니다. + 거래기록 목록에 Dogecoin 주소를 표시할 지의 여부입니다. &Display addresses in transaction list - 송금 목록에 주소 표시(&D) + 거래기록 목록에 주소 표시(&D) - + Whether to show coin control features or not. - + 코인 컨트롤 기능을 표시할 지의 여부입니다. - - Display coin &control features (experts only) - - - - + &OK 확인(&O) @@ -1454,25 +1503,25 @@ Address: %4 취소(&C) - + default 기본값 - + none 없음 - + Confirm options reset - 옵션 초기화를 확인 + 옵션 재설정 확인 Client restart required to activate changes. - + 변경한 내용을 적용하려면 클라이언트를 재 시작 해야 합니다. @@ -1482,7 +1531,7 @@ Address: %4 This change would require a client restart. - + 변경을 위해 클라이언트 재 시작이 필요합니다. @@ -1501,7 +1550,7 @@ Address: %4 The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - 표시한 정보가 오래된 것 같습니다. 비트코인 네트워크에 연결하고 난 다음에 지갑을 자동으로 동기화 하지만, 아직 과정이 끝나지는 않았습니다. + 표시된 정보가 오래된 것 같습니다. 연결이 자리를 잡으면 지갑은 자동적으로 Dogecoin 네트워크와 동기화 하지만, 아직 동기화가 끝나지 않았습니다. @@ -1511,22 +1560,22 @@ Address: %4 Available: - 유용한 + 사용가능: Your current spendable balance - 당신의 현재 사용 가능한 잔액 + 사용자의 현재 사용 가능한 잔액 Pending: - 미정 + 확인 중: Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - 전체 거래들은 아직 확인되지 않았고, 그리고 현재 잔액에 아직 반영되지 않았습니다. + 앞으로 확인해야 하는 모든 거래기록들은 아직 사용 가능한 잔액에 반영되지 않습니다. @@ -1546,18 +1595,18 @@ Address: %4 Your current total balance - 당신의 현재 총액 + 사용자의 현재 총 잔액 <b>Recent transactions</b> - <b>최근 거래내역</b> + <b>최근 거래기록들</b> out of sync - 오래됨 + 동기화 안 됨 @@ -1566,17 +1615,17 @@ Address: %4 URI handling - + URI 핸들링 URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - + URI를 분석할 수 없습니다! 이것은 유효하지 않은 Dogecoin 주소나 잘못된 형태의 URI 인수로 인해 유발될 수 있습니다. Requested payment amount of %1 is too small (considered dust). - + %1의 지불 요청된 액수가 너무 작습니다 (먼지 일 수 있음) @@ -1586,12 +1635,12 @@ Address: %4 Payment request error - 지불 요청 애러 + 지불 요청 오류 Cannot start dogecoin: click-to-pay handler - 비트코인을 시작할 수 없습니다: 지급제어기를 클릭하시오 + Dogecoin을 시작할 수 없습니다: click-to-pay handler @@ -1601,81 +1650,92 @@ Address: %4 Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - + 사용자의 활성 프록시가, 프록시를 통한 지불 요청에 필요한 SOCKS5를 지원하지 않습니다. Payment request fetch URL is invalid: %1 - + 지불 요청 fetch URL이 올바르지 않습니다: %1 Payment request file handling - + 지불 요청 파일 핸들링 Payment request file can not be read or processed! This can be caused by an invalid payment request file. - + 지불 요청 파일을 처리하거나 읽을 수 없습니다! 이것은 잘못된 지불 요청 파일 때문에 발생할 수 있습니다. Unverified payment requests to custom payment scripts are unsupported. - + 검증되지 않은 사용자 지불 스크립트에 대한 지불 요청은 지원되지 않습니다. Refund from %1 - %1 으로부터의 환불 + %1 (으)로부터 환불 Error communicating with %1: %2 - %1과 소통하는데 애러: %2 + %1과 통신 중 오류: %2 Payment request can not be parsed or processed! - + 처리하거나 분석될 수 없는 지불 요청입니다! Bad response from server %1 - 서버로 부터 반응이 없습니다 %1 + 서버로부터 반응이 없습니다 %1 Payment acknowledged - 지불이 승인됨 + 지불이 인정됨 Network request error - 네트워크 요청 애러 + 네트워크 요청 오류 QObject - + + Dogecoin - 비트코인 + Dogecoin - + Error: Specified data directory "%1" does not exist. - 애러: 지정한 데이터 폴더 "%1"은 존재하지 않습니다. + 오류: 지정한 데이터 디렉토리 "%1"은 존재하지 않습니다. - + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + 오류: 환경 설정 파일을 분석할 수 없습니다: %1. key=value구문만 사용하세요. + + + Error: Invalid combination of -regtest and -testnet. - + 오류: 잘못된 조합의 -regtest와 -testnet입니다. - + + Dogecoin Core didn't yet exit safely... + Dogecoin 코어를 아직 안전하게 끝낼 수 없습니다… + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - 비트코인 주소를 입력하기 (예 DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Dogecoin 주소를 입력하세요 (예: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1719,7 +1779,7 @@ Address: %4 - + N/A 없음 @@ -1731,7 +1791,7 @@ Address: %4 &Information - 정보& + 정보(&I) @@ -1746,7 +1806,7 @@ Address: %4 Using OpenSSL version - 오픈SSL 버전을 사용합니다 + 사용 중인 OpenSSL 버전 @@ -1771,22 +1831,22 @@ Address: %4 Block chain - 블럭 체인 + 블록 체인 Current number of blocks - 현재 블럭 수 + 현재 블록의 수 Estimated total blocks - 예상 전체 블럭 + 예상되는 총 블록 Last block time - 최종 블럭 시각 + 마지막 블록 시각 @@ -1801,27 +1861,29 @@ Address: %4 &Network Traffic - &네트워크 트래픽 + 네트워크 트래픽(&N) &Clear - + 제거(&C) Totals - 총액 + 합계 + In: - + 받음: + Out: - + 보냄: @@ -1831,67 +1893,67 @@ Address: %4 Debug log file - 로그 파일 디버그 + 디버그 로그 파일 - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. - 비트코인 디버그 로그파일을 현재 데이터 폴더에서 여십시요. 용량이 큰 로그 파일들은 몇 초가 걸릴 수 있습니다. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. + 현재 데이터 디렉토리의 Dogecoin 디버그 로그 파일을 엽니다. 용량이 큰 로그 파일들은 몇 초가 걸릴 수 있습니다. Clear console - 콘솔 초기화 + 콘솔 지우기 - - Welcome to the Dogecoin Core RPC console. - 비트코인 RPC 콘솔에 오신걸 환영합니다 + + Welcome to the Dogecoin RPC console. + Dogecoin 코어 RPC 콘솔에 오신걸 환영합니다 Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - 기록을 찾아보려면 위 아래 화살표 키를, 화면을 지우려면 <b>Ctrl-L</b>키를 사용하십시오. + 기록을 찾아보려면 위 아래 화살표 키를, 화면을 지우려면 <b>Ctrl-L</b>키를 사용하세요. Type <b>help</b> for an overview of available commands. - 사용할 수 있는 명령을 둘러보려면 <b>help</b>를 입력하십시오. + 사용할 수 있는 명령을 둘러보려면 <b>help</b>를 입력하세요. - + %1 B - % 1 바이트 + %1 B %1 KB - % 1 킬로바이트 + %1 KB %1 MB - % 1 메가바이트 + %1 MB %1 GB - % 1 기가바이트 + %1 GB %1 m - % 1 분 + %1분 %1 h - % 1 시간 + %1시간 %1 h %2 m - % 1시 %2 분 + %1시 %2분 @@ -1899,55 +1961,55 @@ Address: %4 &Amount: - &거래량: + 액수(&A): &Label: - 표: + 라벨(&L): &Message: - &메시지: + 메시지(&M): Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - + 이전에 사용된 주소를 재사용 합니다. 재사용된 주소는 보안과 개인정보 문제가 있습니다. 전에 만들었던 지불 요청을 재생성 하는 경우 외에는 사용하지 마세요. R&euse an existing receiving address (not recommended) - + 현재 있는 받는 주소 재사용(&e) (권장되지 않음) An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + 요청이 열릴 때 표시될 지불 요청에 첨부하는 메시지를 추가합니다. 참고: 이 메시지는 지불과 함께 Dogecoin 네트워크를 통해 보내지지는 않을 것입니다. An optional label to associate with the new receiving address. - + 새 받는 주소와 관련된 라벨을 추가합니다. Use this form to request payments. All fields are <b>optional</b>. - + 지불 요청을 위해 이 양식을 사용하세요. 모든 항목은 <b>옵션</b>입니다. An optional amount to request. Leave this empty or zero to not request a specific amount. - + 요청할 액수를 추가합니다. 특정한 액수를 요청하지 않으려면 이곳을 빈칸으로 놔두거나 0으로 하세요. Clear all fields of the form. - 양식의 모든 필드를 지웁니다 + 양식의 모든 항목을 지웁니다. @@ -1957,7 +2019,7 @@ Address: %4 Requested payments history - 지출기록 확인 + 요청된 지불 내역 @@ -1967,7 +2029,7 @@ Address: %4 Show the selected request (does the same as double clicking an entry) - + 선택된 요청 보이기 (항목 더블클릭) @@ -1975,9 +2037,9 @@ Address: %4 보기 - + Remove the selected entries from the list - 목록에서 삭제할 항목을 선택하시오 + 목록에 있는 선택된 항목들을 삭제합니다 @@ -1985,7 +2047,7 @@ Address: %4 삭제 - + Copy label 표 복사하기 @@ -1997,7 +2059,7 @@ Address: %4 Copy amount - 거래량 복사 + 액수 복사 @@ -2025,7 +2087,7 @@ Address: %4 Request payment to %1 - %1에 지불을 요청했습니다 + %1에 지불 요청하기 @@ -2045,7 +2107,7 @@ Address: %4 Amount - 거래량 + 액수 @@ -2060,12 +2122,12 @@ Address: %4 Resulting URI too long, try to reduce the text for label / message. - URI 결과가 너무 길음, 표/메세지의 글을 줄이도록 하세요. + 만들어진 URI가 너무 깁니다. 라벨/메시지의 글을 줄이도록 하세요. Error encoding URI into QR Code. - QR코드 인코딩 오류 + URI를 QR코드로 인코딩 중 오류 @@ -2078,7 +2140,7 @@ Address: %4 Label - + 라벨 @@ -2088,22 +2150,22 @@ Address: %4 Amount - 거래량 + 액수 (no label) - (표 없슴) + (라벨 없음) (no message) - (메세지가 없습니다) + (메시지가 없습니다) (no amount) - (거래량 없음) + (액수 없음) @@ -2113,27 +2175,27 @@ Address: %4 Send Coins - 코인들 보내기 + 코인 보내기 Coin Control Features - 코인 컨트롤 기능들 + 코인 컨트롤 기능 Inputs... - + 투입... automatically selected - 자동 선택 + 자동으로 선택됨 Insufficient funds! - 자금이 부족합니다! + 자금 부족! @@ -2143,12 +2205,12 @@ Address: %4 Bytes: - Bytes: + 바이트: Amount: - 거래량: + 액수: @@ -2163,42 +2225,42 @@ Address: %4 Low Output: - + 낮은 산출: After Fee: - 수수료 이후: + 수수료 포함: Change: - + 반환액: If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - + 이것이 활성화 되었을 때, 반환액 주소가 비어있거나 잘못되었더라도, 반환액은 새롭게 생성된 주소로 보내질 것입니다. Custom change address - 주소변경 + 사용자 반환액 주소 Send to multiple recipients at once - 다수의 수령인들에게 한번에 보내기 + 다수의 받는 이들에게 한번에 보내기 Add &Recipient - 수령인 추가하기 + 받는 이 추가하기(&R) Clear all fields of the form. - 양식의 모든 필드를 지웁니다 + 양식의 모든 항목을 지웁니다 @@ -2206,14 +2268,14 @@ Address: %4 모두 지우기(&A) - + Balance: 잔액: - + Confirm the send action - 전송 기능 확인 + 보내기 확인 @@ -2223,7 +2285,7 @@ Address: %4 Confirm send coins - 코인 전송을 확인 + 코인 보내기 확인 @@ -2231,7 +2293,7 @@ Address: %4 %1 to %2 - %1을(를) %2(으)로 + %1 를 %2 에 @@ -2241,7 +2303,7 @@ Address: %4 Copy amount - 거래액 복사 + 액수 복사 @@ -2251,12 +2313,12 @@ Address: %4 Copy after fee - 수수료 이후 복사 + 수수료 포함 복사 Copy bytes - bytes 복사 + 바이트 복사 @@ -2266,17 +2328,17 @@ Address: %4 Copy low output - + 낮은 산출 복사 Copy change - + 반환액 복사 Total Amount %1 (= %2) - 총 액수 %1(=%2) + 총액 %1 (= %2) @@ -2286,52 +2348,52 @@ Address: %4 The recipient address is not valid, please recheck. - 수령인 주소가 정확하지 않습니다. 재확인 바랍니다 + 받는 이의 주소가 정확하지 않습니다. 재확인 바랍니다 The amount to pay must be larger than 0. - 지불하는 금액은 0 보다 커야 합니다. + 지불하는 금액은 0보다 커야 합니다. The amount exceeds your balance. - 잔고를 초과하였습니다. + 액수가 잔액을 초과하였습니다. The total exceeds your balance when the %1 transaction fee is included. - %1 의 거래수수료를 포함하면 잔고를 초과합니다. + %1의 거래기록 수수료를 포함하면 총액이 잔액을 초과합니다. Duplicate address found, can only send to each address once per send operation. - 두개 이상의 주소입니다. 한번에 하나의 주소에만 작업할 수 있습니다. + 중복된 주소 발견, 각 보내는 작업마다 각각의 주소에 한 번씩만 보낼 수 있습니다. Transaction creation failed! - 거래를 생성하는 것을 실패하였습니다 + 거래기록 생성을 실패하였습니다 The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - + 이 거래기록은 거절되었습니다! 지갑의 몇몇 코인이 이미 사용되었을 때 이런 일이 발생할 수 있습니다. 예를 들면 사용자가 복사한 wallet.dat를 이용하고 거기서 코인을 사용했지만 여기서는 사용되었다고 표시되지 않은 경우입니다. Warning: Invalid Dogecoin address - 경고: 잘못된 비트코인주소입니다 + 경고: 잘못된 Dogecoin주소입니다 (no label) - (표 없슴) + (라벨 없음) Warning: Unknown change address - 경고: 알려지지 않은 주소변경입니다 + 경고: 알려지지 않은 반환액 주소입니다. @@ -2341,7 +2403,7 @@ Address: %4 added as transaction fee - 거래 수수료로 추가됨 + 거래기록 수수료로 추가됩니다 @@ -2351,7 +2413,7 @@ Address: %4 Invalid payment address %1 - 잘못된 지불 주소입니다 %1 + 잘못된 지불 주소 %1 @@ -2361,37 +2423,37 @@ Address: %4 A&mount: - 금액: + 액수(&m): Pay &To: - 지급&수신: + 지불할 곳(&T): The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - + 금액을 보낼 주소입니다 (예: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Enter a label for this address to add it to your address book - 당신의 주소록에 이 주소를 추가하기 위하여 표를 입역하세요 + 주소록에 추가하기 위해 이 주소의 라벨을 입력하세요 &Label: - 표: + 라벨(&L): Choose previously used address - 이전에 사용한 주소를 선택하십시오 + 이전에 사용했던 주소를 선택합니다 This is a normal payment. - 평균지급입니다 + 일반 지불입니다. @@ -2401,7 +2463,7 @@ Address: %4 Paste address from clipboard - 클립보드로 부터 주소를 붙이세요 + 주소를 클립보드로 복사합니다 @@ -2413,7 +2475,7 @@ Address: %4 Remove this entry - 항목을 지우시오 + 항목을 지웁니다 @@ -2423,28 +2485,28 @@ Address: %4 This is a verified payment request. - 지급 확인요청입니다. + 검증된 지불 요청입니다. Enter a label for this address to add it to the list of used addresses - + 사용한 주소 목록에 추가하기 위해 이 주소를 위한 라벨을 입력합니다 A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - + 참고용으로 DogecoinURI에 첨부된 거래기록에 저장될 수 있는 메시지 입니다. 참고: 이 메시지는 Dogecoin 네트워크를 통해 보내지지는 않을 것입니다. This is an unverified payment request. - 지급요청 미확인입니다 + 검증되지 않은 지불 요청입니다. Pay To: - + 지불할 곳: @@ -2456,14 +2518,14 @@ Address: %4 ShutdownWindow - + Dogecoin Core is shutting down... - 비트코인코어가 닫아지고 있습니다 + Dogecoin 코어를 닫고 있습니다... Do not shut down the computer until this window disappears. - 창이 사라지기 전까지 컴퓨터를 끄지마시오. + 이 창이 사라지기 전까지 컴퓨터를 끄지 마세요. @@ -2471,7 +2533,7 @@ Address: %4 Signatures - Sign / Verify a Message - 서명 - 싸인 / 메시지 확인 + 서명 – 메시지 서명/검증하기 @@ -2481,18 +2543,18 @@ Address: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - 여러분 자신을 증명하기 위해 주소를 첨가하고 섬여할 수 있습니다. 피싱 공격으로 말미암아 여러분의 서명을 통해 속아 넘어가게 할 수 있으므로, 서명하지 않은 어떤 모호한 요소든 주의하십시오. 동의하는 완전 무결한 조항에만 서명하십시오. + 메시지를 서명하여 주소를 가지고 있다는 것을 증명할 수 있습니다. 피싱 공격같이 사용자를 속여 개인정보를 넘기게 만들 수 있는 불분명한, 어떠한 것에도 서명하지 않게 주의하시고, 동의하는 완전무결한 사항에만 서명하세요. The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - 메시지를 서명할 주소 (예: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + 메시지를 서명할 주소입니다 (예: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Choose previously used address - 이전에 사용한 주소를 선택하십시오 + 이전에 사용했던 주소를 선택합니다 @@ -2503,7 +2565,7 @@ Address: %4 Paste address from clipboard - 클립보드로 부터 주소를 붙이세요 + 주소를 클립보드로 복사합니다 @@ -2513,7 +2575,7 @@ Address: %4 Enter the message you want to sign here - 여기에 서명하려는 메시지를 입력하십시오 + 여기에 서명하려면 메시지를 입력하세요 @@ -2528,17 +2590,17 @@ Address: %4 Sign the message to prove you own this Dogecoin address - 여러분의 비트코인 주소를 증명하려면 메시지 서명하십시오 + 메시지를 서명하여 이 Dogecoin 주소를 가지고 있다는 것을 증명하세요 Sign &Message - 메시지에 서명(&M) + 메시지 서명하기(&M) Reset all sign message fields - 메시지 필드의 모든 서명 재설정 + 모든 메시지 서명 항목 재설정 @@ -2554,37 +2616,37 @@ Address: %4 Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - + 메시지를 검증하기 위해 아래에 서명하는 주소와 메시지 (메시지 원본의 띄어쓰기, 들여쓰기, 행 나눔 등이 정확하게 복사되었는지 확인하세요) 그리고 서명을 입력하세요. 사용자를 속이는 공격을 피하기 위해 서명된 메시지 내용을 잘못 읽지 않게 주의하세요. The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - 서명한 메시지의 주소입니다 (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + 메시지가 서명된 주소입니다 (예: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Verify the message to ensure it was signed with the specified Dogecoin address - 정확한 비트코인주소가 입력됬는지 메시지를 확인하시오 + 메시지를 검증하여 지정된 Dogecoin 주소로 서명되었는지 확인하세요. Verify &Message - 메시지 검증(&M) + 메시지 검증하기(&M) Reset all verify message fields - 모든 검증 메시지 필드 재설정 + 모든 메시지 검증 항목 재설정 Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - 비트코인 주소를 입력하기 (예 DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Dogecoin 주소를 입력하세요 (예: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Click "Sign Message" to generate signature - 서명을 만들려면 "메시지 서명"을 누르십시오 + 서명을 생성하려면 "메시지 서명하기"를 클릭하세요 @@ -2598,7 +2660,7 @@ Address: %4 Please check the address and try again. - 주소를 확인하고 다시 시도하십시오. + 주소를 확인하고 다시 시도하세요. @@ -2635,7 +2697,7 @@ Address: %4 Please check the signature and try again. - 서명을 확인하고 다시 시도하십시오. + 서명을 확인하고 다시 시도하세요. @@ -2656,14 +2718,14 @@ Address: %4 SplashScreen - + Dogecoin Core - 비트코인코어 + Dogecoin 코어 The Dogecoin Core developers - 비트코인코어 개발자들 + @@ -2682,7 +2744,7 @@ Address: %4 TransactionDesc - + Open until %1 %1 까지 열림 @@ -2699,22 +2761,25 @@ Address: %4 %1/unconfirmed - %1/미확인 + %1번/확인되지 않음 %1 confirmations - %1 확인됨 + %1번 확인 - + Status 상태 , broadcast through %n node(s) - + + , %n 노드를 통해 알려짐 + , %n 노드들을 통해 알려짐 + @@ -2729,26 +2794,26 @@ Address: %4 Generated - 생성하다 + 생성됨 From - 으로부터 + 보낸 주소 To - 에게 + 받은 주소 own address - 자신의 주소 + 가지고 있는 주소 @@ -2762,17 +2827,20 @@ Address: %4 Credit - 예금 + 입금액 matures in %n more block(s) - + + %n 이상의 블록이 성숙됨 + %n 이상의 블록들이 성숙됨 + not accepted - 허용되지 않는다 + 허용되지 않음 @@ -2780,17 +2848,17 @@ Address: %4 Debit - 차변 + 출금액 Transaction fee - 송금 수수료 + 거래기록 수수료 Net amount - 총액 + 합산액 @@ -2806,7 +2874,7 @@ Address: %4 Transaction ID - 송금 ID + 거래기록 ID @@ -2816,27 +2884,27 @@ Address: %4 Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + 사용되기 전에 생성된 코인들은 반드시 %1 블록 성숙되어야 합니다. 사용자가 이 블록을 생성했을 때, 이 블록은 블록 체인에 더해지기 위해 네트워크로 알려집니다. 만약 이 블록이 체인 안에 들어가는데 실패하면, 이 블록의 상태는 "허용되지 않음(not accepted)"으로 바뀌고 사용할 수 없게 됩니다. 이것은 간혹 다른 노드가 사용자가 생성한 것보다 수 초안으로 블록을 생성했다면 발생할 수 있습니다. Debug information - 디버깅 정보 + 디버그 정보 Transaction - 송금 + 거래기록 Inputs - 입력 + 투입 - + Amount - 거래량 + 액수 @@ -2849,19 +2917,22 @@ Address: %4 거짓 - + , has not been successfully broadcast yet - . 아직 성공적으로 통보하지 않음 + , 아직 성공적으로 통보하지 않음 - + Open for %n more block(s) - + + %n 이상의 블록에게 열림 + %n 이상의 블록(들)에게 열림 + - + unknown - 알수없음 + 알 수 없음 @@ -2869,25 +2940,25 @@ Address: %4 Transaction details - 거래 세부 내역 + 거래기록 세부정보 This pane shows a detailed description of the transaction - 이 창은 거래의 세부내역을 보여줍니다 + 이 창은 거래기록의 세부정보를 보여줍니다 TransactionTableModel - + Date 날짜 Type - 형식 + 종류 @@ -2897,17 +2968,20 @@ Address: %4 Amount - 수량 + 액수 - + Immature (%1 confirmations, will be available after %2) - + 미성숙(%1번 확인, %2번 뒤에 사용가능) Open for %n more block(s) - + + %n 이상의 블록에게 열림 + %n 이상의 블록(들)에게 열림 + @@ -2917,12 +2991,12 @@ Address: %4 Confirmed (%1 confirmations) - 확인됨(%1 확인됨) + 확인됨 (%1번 확인) This block was not received by any other nodes and will probably not be accepted! - 이 블럭은 다른 노드로부터 받지 않아 허용되지 않을 것임. + 이 블록은 다른 노드로부터 받지 않아 허용되지 않을 것입니다! @@ -2937,12 +3011,12 @@ Address: %4 Unconfirmed - 미확인 + 확인되지 않음 Confirming (%1 of %2 recommended confirmations) - + 확인 중 (권장되는 확인 %2번 중 %1번) @@ -2952,22 +3026,22 @@ Address: %4 Received with - 다음과 함께 받음 : + 받음 Received from - 보낸 주소 + 이곳에서 받음 Sent to - 다음에게 보냄 : + 보냄 Payment to yourself - 자신에게 지불 + 자신에게 보냄 @@ -2980,35 +3054,35 @@ Address: %4 (없음) - + Transaction status. Hover over this field to show number of confirmations. - 거래상황. 마우스를 올리면 승인횟수가 표시됩니다. + 거래기록 상태. 내용에 마우스를 올리면 확인 횟수가 표시됩니다. Date and time that the transaction was received. - 거래가 이루어진 날짜와 시각. + 거래기록이 반영된 날짜와 시각. Type of transaction. - 거래의 종류. + 거래기록 종류. Destination address of transaction. - 거래가 도달할 주소 + 거래기록 도착 주소. Amount removed from or added to balance. - + 잔액에서 가감한 액수 TransactionView - + All 전체 @@ -3021,7 +3095,7 @@ Address: %4 This week - 이번주 + 이번 주 @@ -3046,17 +3120,17 @@ Address: %4 Received with - 보낸 주소 + 받음 Sent to - 받는 주소 + 보냄 To yourself - 자기거래 + 자신에게 @@ -3071,47 +3145,47 @@ Address: %4 Enter address or label to search - 검색하기 위한 주소 또는 표 입력 + 검색할 주소 또는 라벨 입력 Min amount - 최소 거래량 + 최소 액수 Copy address - 주소 복사하기 + 주소 복사 Copy label - 표 복사하기 + 라벨 복사 Copy amount - 거래액 복사 + 액수 복사 Copy transaction ID - 송금 ID 복사 + 거래기록 ID 복사 Edit label - 표 수정하기 + 라벨 수정하기 Show transaction details - 거래 내역 확인 + 거래기록 내역 보기 - + Export Transaction History - 거래 기록 내보내기 + 거래기록 내역 내보내기 @@ -3121,7 +3195,7 @@ Address: %4 There was an error trying to save the transaction history to %1. - %1으로 거래 기록을 저장하는데 애러가 있었습니다. + %1으로 거래기록 내역을 저장하는데 오류가 있었습니다. @@ -3131,12 +3205,12 @@ Address: %4 The transaction history was successfully saved to %1. - 거래 기록이 성공적으로 %1에 저장되었습니다. + 거래기록 내역이 성공적으로 %1에 저장되었습니다. Comma separated file (*.csv) - 각각의 파일에 쉼표하기(*.csv) + CSV 파일 형식 (*.csv) @@ -3156,7 +3230,7 @@ Address: %4 Label - + 라벨 @@ -3166,22 +3240,22 @@ Address: %4 Amount - 거래량 + 액수 ID - 아이디 + ID - + Range: 범위: to - 상대방 + 에서 @@ -3189,23 +3263,23 @@ Address: %4 No wallet has been loaded. - + 불러온 지갑이 없습니다. WalletModel - + Send Coins - 코인들 보내기 + 코인 보내기 WalletView - + &Export - + 내보내기(&E) @@ -3213,7 +3287,7 @@ Address: %4 현재 탭에 있는 데이터를 파일로 내보내기 - + Backup Wallet 지갑 백업 @@ -3230,12 +3304,12 @@ Address: %4 There was an error trying to save the wallet data to %1. - + %1에 지갑 데이터 저장을 시도하던 중 오류가 발생했습니다. The wallet data was successfully saved to %1. - 지갑 정보가 %1에 성공적으로 저장되었습니다 + 지갑 데이터가 %1에 성공적으로 저장되었습니다 @@ -3246,27 +3320,27 @@ Address: %4 dogecoin-core - + Usage: - 사용법: + 사용법: (이 항목의 번역은 완전하지 않습니다. 참고용으로만 사용하세요.) - + List commands 커맨드 목록 - + Get help for a command - 커맨드 도움말 + 명령 도움말 얻기 - + Options: 옵션: - + Specify configuration file (default: dogecoin.conf) 설정파일 지정 (기본값: dogecoin.conf) @@ -3278,75 +3352,75 @@ Address: %4 Specify data directory - 데이터 폴더 지정 + 데이터 디렉토리 지정 - - Set database cache size in megabytes (default: 25) - 데이터베이스 캐시 크기를 메가바이트로 지정(기본값:25) - - - + Listen for connections on <port> (default: 22556 or testnet: 44556) - + <port> 연결에서 대기 중 (기본값: 22556 or testnet: 44556) - + Maintain at most <n> connections to peers (default: 125) 가장 잘 연결되는 사용자를 유지합니다(기본값: 125) - + Connect to a node to retrieve peer addresses, and disconnect 피어 주소를 받기 위해 노드에 연결하고, 받은 후에 연결을 끊습니다 - + Specify your own public address - 공인 주소를 지정하십시오 + 사용자 고유의 공인 주소를 지정합니다 Threshold for disconnecting misbehaving peers (default: 100) - + 이상행동 네트워크 참여자의 연결을 차단시키기 위한 한계치 (기본값: 100) - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + 이상행동을 하는 네트워크 참여자들을 다시 연결시키는데 걸리는 시간 (기본값: 86400초) - + An error occurred while setting up the RPC port %u for listening on IPv4: %s - IPv4 감청을 위한 RPC 포트 %u번을 설정중 오류가 발생했습니다: %s + IPv4: %s 에서 수신 대기를 위해 RPC 포트 %u(을)를 설정하던 중 오류가 발생했습니다: %s - + Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - + <포트>의 JSON-RPC 연결에서 대기 중 (기본값: 22555 or testnet: 44555) - + Accept command line and JSON-RPC commands 명령줄과 JSON-RPC 명령 수락 - + + Dogecoin Core RPC client version + Dogecoin 코어 RPC 클라이언트 버전 + + + Run in the background as a daemon and accept commands 데몬으로 백그라운드에서 실행하고 명령을 허용 - + Use the test network 테스트 네트워크 사용 - + Accept connections from outside (default: 1 if no -proxy or -connect) - 외부 접속을 승인합니다 + 외부 연결을 허용합니다 (기본값: no -proxy거나 –connect면 1) - + %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: @@ -3358,97 +3432,157 @@ If the file does not exist, create it with owner-readable-only file permissions. It is also recommended to set alertnotify so you are notified of problems; for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo.com - + %s, 사용자는 반드시 rpcpassword를 환경 설정 파일에 설정해야 합니다: +%s +다음과 같은 임의 비밀번호를 사용하는 것을 권장합니다: +rpcuser=dogecoinrpc +rpcpassword=%s +(사용자는 이 비밀번호를 기억할 필요가 없습니다) +유저이름과 비밀번호는 절대로 같지 않아야 합니다. +만약 파일이 존재하지 않으면, 사용자-읽기-전용 파일 권한으로 만듭니다. +또한, alertnotify를 설정하는 것을 권장합니다. 그러면 사용자는 문제를 고지 받게 됩니다. +예: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo.com + Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + 암호 허용(기본값: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + IPv6에서 수신 대기를 위해 RPC 포트 %u을(를) 설정하던 중 오류가 발생, IPv4: %s 로 돌아갑니다. Bind to given address and always listen on it. Use [host]:port notation for IPv6 - + 주어진 주소를 바인드하고 항상 수신 대기합니다. IPv6를 위해 [host]:port 표기법을 사용하세요 - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + 계속해서 요청 제한이 없는 거래기록을 분당 <n>*1000바이트로 합니다 (기본값: 15) 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. - + 어느 블록이 즉시 풀리게 할 수 있는 특수한 체인을 사용하는 회귀 테스트 모드(regression test mode)에 진입합니다. 이 모드는 회귀 테스트 툴과 앱 개발을 위해 만들어진 것입니다. Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + 어느 블록이 즉시 풀리게 할 수 있는 특수한 체인을 사용하는 회귀 테스트 모드(regression test mode)에 진입합니다. + Error: Listening for incoming connections failed (listen returned error %d) + 오류: 들어오는 연결에 대한 수신 대기 실패 (오류 %d를 리턴함) + + + 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 이상의 거래기록 수수료가 필요합니다. Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 지갑 거래기록이 변경되면 커맨드를 실행합니다 (cmd 안의 %s는 TxID로 대체됨) - + + Fees smaller than this are considered zero fee (for transaction creation) (default: + 이것보다 작은 수수료는 수수료 0으로 간주합니다 (거래기록 생성 시) + + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + 디스크 로그 <n>메가바이트마다 메모리 풀의 데이터 베이스 비우기 실시 (기본값: 100) + + + + 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은 얼마나 많은 블록들이 즉시 생성되는지 조절합니다. + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + 스크립트 검증 스레드의 수를 설정합니다. (%u부터 %d, 0 = 자동, <0 = 많은 코어들을 쉬게 함, 기본값: 0) + + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + 생성이 진행 중일 때를 위한 프로세서 제한을 설정합니다 (-1 = 무제한, 기본값: -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. Dogecoin Core is probably already running. + 이 컴퓨터의 %s에 바인드 할 수 없습니다. Dogecoin 코어가 이미 실행중인 것 같습니다. + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Tor hidden 서비스를 이용하여 네트워크에 참여하기 위해서 SOCKS5 프록시를 따로 사용함 (기본값: -proxy) Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - 경고: -paytxfee값이 너무 큽니다! 이 값은 송금할때 지불할 송금 수수료입니다. + 경고: -paytxfee값이 너무 큽니다! 이 값은 거래기록을 보낼 때 지불할 거래기록 수수료입니다. Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. - 경고: 컴퓨터의 날짜와 시간이 올바른지 확인하십시오! 시간이 잘못되면 비트코인은 제대로 동작하지 않습니다. + 경고: 컴퓨터의 날짜와 시간이 올바른지 확인하세요! 시간이 잘못되면 Dogecoin 코어는 제대로 동작하지 않습니다. 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. - + 경고: 현재 Dogecoin 버전이 다른 네트워크 참여자들과 동일하지 않은 것 같습니다. 사용자가 업그레이드가 필요하거나, 다른 노드들이 업그레이드가 필요한 것 같습니다. 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에 저장되었습니다. 만약 사용자의 잔액이나 거래기록들이 부정확하면 백업에서 복구하세요. + (default: 1) + (기본값: 1) + + + + (default: wallet.dat) + (기본값: wallet.dat) + + + <category> can be: - + <카테고리>가 이것일 수 있습니다: @@ -3458,27 +3592,22 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Dogecoin Core Daemon - 비트코인 코어 데몬 + Dogecoin 코어 데몬 - - Dogecoin Core RPC client version - 비트코인 RPC 클라이언트 버전 - - - + Block creation options: 블록 생성 옵션: Clear list of wallet transactions (diagnostic tool; implies -rescan) - 거래내역 삭제(진단도구; 재스캔 포함) + 지갑 거래기록 목록 지우기(진단도구; 재스캔 포함) Connect only to the specified node(s) - 지정된 노드에만 연결하기 + 지정된 노드(들)에게만 연결하기 @@ -3488,47 +3617,62 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - + JSON-RPC에 연결 <포트> (기본값: 22555 or testnet: 44555) + Connection options: + 연결 옵션: + + + Corrupted block database detected 손상된 블록 데이터베이스가 감지되었습니다 + + + 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) - + 자신의 아이피 주소를 찾습니다 (기본값: 1 -externalip가 아니거나 수신 대기 일 때) Do not load the wallet and disable wallet RPC calls - + 지갑을 로드하지 않고 지갑 RPC call을 비활성화 합니다. Do you want to rebuild the block database now? - 블락 데이터베이스를 다시 생성하시겠습니까? + 블록 데이터베이스를 다시 생성하시겠습니까? Error initializing block database - 블록 데이터베이스를 초기화하는데 오류 + 블록 데이터베이스 초기화 중 오류 Error initializing wallet database environment %s! - + 지갑 데이터베이스 환경 %s 초기화 중 오류! Error loading block database - 블록 데이터베이스를 불러오는데 오류 + 블록 데이터베이스 불러오는 중 오류 Error opening block database - 블록 데이터베이스를 여는데 오류 + 블록 데이터베이스를 여는 중 오류 @@ -3538,17 +3682,17 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Error: Wallet locked, unable to create transaction! - 오류: 지갑이 잠금상태여서 거래를 생성할 수 없습니다! + 오류: 지갑이 잠금 상태여서 거래기록을 생성할 수 없습니다! Error: system error: - 오류: 시스템 오류: + 오류: 시스템 오류: Failed to listen on any port. Use -listen=0 if you want this. - + 어떤 포트도 반응하지 않습니다. 만약 원한다면 –listen = 0 을 사용하세요. @@ -3563,12 +3707,12 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Failed to sync block index - 블록 인덱스를 동기화하는데 실패했습니다 + 블록 색인을 동기화하는데 실패했습니다 Failed to write block index - 블록 인덱스를 기록하는데 실패했습니다 + 블록 색인을 기록하는데 실패했습니다 @@ -3593,7 +3737,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Failed to write transaction index - 송금 인덱스에 기록하는데 실패했습니다 + 거래기록 색인에 기록하는데 실패했습니다 @@ -3603,127 +3747,132 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Fee per kB to add to transactions you send - + kB당 수수료가 사용자가 보내는 거래기록들에 추가됩니다. + + + + Fees smaller than this are considered zero fee (for relaying) (default: + 이것보다 작은 수수료는 수수료 0으로 간주합니다 (중계 시) (기본값: Find peers using DNS lookup (default: 1 unless -connect) - DNS 찾기를 이용하여 사용자를 찾으시오(기본값: 1 연결 되면) + DNS 찾기를 이용하여 사용자를 찾으세요(기본값: 1 연결 되면) + + + + Force safe mode (default: 0) + 강제 안전 모드 (기본값: 0) Generate coins (default: 0) - 코인 생성(기본값: 0) + 코인 생성 (기본값: 0) How many blocks to check at startup (default: 288, 0 = all) - 시작할때 검사할 블록 갯수입니다(기본값: 288, 0 = 모두) - - - - How thorough the block verification is (0-4, default: 3) - + 시작할 때 검사할 블록 개수 입니다(기본값: 288, 0 = 모두) If <category> is not supplied, output all debugging information. - + <카테고리>가 공급되지 않으면, 모든 디버깅 정보를 아웃풋 + + + + Importing... + 가져오는 중… Incorrect or no genesis block found. Wrong datadir for network? - + 부정확 또는 최초 블록 미 발견. 네트워크를 위한 datadir이 틀립니까? Invalid -onion address: '%s' - 잘못된 -onion 주소입니다: '%s' + 잘못된 -onion 주소: '%s' - + Not enough file descriptors available. - + 사용 가능한 파일 디스크립터(File Descriptor)가 부족합니다. Prepend debug output with timestamp (default: 1) - + 디버그 아웃풋을 타임스탬프와 함께 앞에 붙이기 (기본값: 1) - + RPC client options: RPC 클라이언트 옵션 - + Rebuild block chain index from current blk000??.dat files - + 현재의 blk000??.dat 파일들로부터 블록 체인 색인을 재구성합니다. - + Select SOCKS version for -proxy (4 or 5, default: 5) -proxy를 위한 SOCKS 버전을 선택하세요 (4 또는 5, 기본: 5) - - Send command to Dogecoin Core server - 비트코인 서버로 명령 보내기 + + Set database cache size in megabytes (%d to %d, default: %d) + 데이터베이스 캐시 크기를 메가바이트로 지정(%d부터 %d, 기본값: %d) - + Set maximum block size in bytes (default: %d) - 최대 블락 크기를 Bytes로 지정하세요 (기본: %d) + 최대 블록 크기를 바이트로 지정하세요 (기본: %d) Set the number of threads to service RPC calls (default: 4) - + 원격 프로시져 호출 서비스를 위한 스레드 개수를 설정합니다 (기본값 : 4) - + Specify wallet file (within data directory) - 데이터 폴더 안에 지갑 파일을 선택하세요. + 데이터 디렉토리 안에 지갑 파일을 선택하세요. Spend unconfirmed change when sending transactions (default: 1) - + 보내는 거래기록들에 확인되지 않은 반환액을 사용합니다 (기본값: 1) - - Start Dogecoin Core server - 비트코인 서버 시작 - - - + This is intended for regression testing tools and app development. - + 이것은 리그레션 테스트 툴과 앱 개발을 대상으로 합니다. Usage (deprecated, use dogecoin-cli): - 사용법 (오래되었습니다. dogecoin-cli를 사용하십시오): + 사용법 (오래되었습니다. dogecoin-cli를 사용하세요): Verifying blocks... - 블록 검증중... + 블록 검증 중... Verifying wallet... - 지갑 검증중... + 지갑 검증 중... Wait for RPC server to start - RPC서버가 시작되길 기다리십시요 + RPC서버가 시작되길 기다리세요 Wallet %s resides outside data directory %s - + 지갑 %s가 외부 데이터 디렉토리 %s에 남아 있습니다 @@ -3733,67 +3882,77 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Warning: Deprecated argument -debugnet ignored, use -debug=net - + 경고: 사용되지 않는 인수 -debugnet이 무시되었습니다. -debug=net을 사용하세요 You need to rebuild the database using -reindex to change -txindex - + -txindex를 바꾸기 위해 -reindex를 사용하여 데이터베이스를 다시 빌드할 필요가 있습니다 - + Imports blocks from external blk000??.dat file 외부 blk000??.dat 파일에서 블록 가져오기 - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + 디렉토리 %s 데이터 락을 얻을 수 없습니다. 아마도 Dogecoin 코어가 실행중인 것 같습니다. - + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + 관련된 경고를 받거나 너무 긴 포크를 관측할 때 명령을 실행합니다(cmd의 %s는 메시지에 의해 대체됩니다) + + + Output debugging information (default: 0, supplying <category> is optional) - + 아웃풋 디버깅 정보 (기본: 0, 지원되는 <카테고리>는 선택적) Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + 높은 우선도/낮은 수수료 거래기록들의 최대 크기를 바이트로 설정 (기본값: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - + Information 정보 Invalid amount for -minrelaytxfee=<amount>: '%s' - + -minrelaytxfee=<amount>에 대한 잘못된 액수: '%s' Invalid amount for -mintxfee=<amount>: '%s' - + -mintxfee=<amount>에 대한 잘못된 액수: '%s' - + + Limit size of signature cache to <n> entries (default: 50000) + 서명 캐쉬의 사이즈 제한을 <n> 엔트리로 함 (기본값: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + 채굴 중인 블록일 때 거래기록 우선도와 kB당 수수료를 기록 (기본값: 0) + + + Maintain a full transaction index (default: 0) - 전체 거래 지수를 유지합니다(기본값: 0) + 전체 거래기록 색인을 유지합니다(기본값: 0) 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) @@ -3803,17 +3962,57 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL 옵션: (SSL 설정 절차를 보혀면 비트코인 위키를 참조하십시오) + 네트워크 <net> (IPv4, IPv6 or Tor) 안에 있는 노드들에만 연결합니다. + 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 server options: + RPC 서버 옵션: + + + + Randomly drop 1 of every <n> network messages + 모든 네트워크 메시지 <n>마다 임의로 drop 1 + + + + Randomly fuzz 1 of every <n> network messages + 모든 네트워크 메시지 <n>마다 임의로 fuzz 1 + + + + Run a thread to flush wallet periodically (default: 1) + 주기적으로 지갑을 비우기 위한 스레드 실행 (기본값: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL 옵션: (SSL 설정 절차를 보려면 Dogecoin 위키를 참조하세요) + + + + Send command to Dogecoin Core + Dogecoin 코어에 명령 보내기 + + + Send trace/debug info to console instead of debug.log file - 추적오류 정보를 degug.log 자료로 보내는 대신 콘솔로 보내기 + 추적 오류정보를 degug.log 자료로 보내는 대신 콘솔로 보내기 @@ -3822,48 +4021,68 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + 지갑 db 환경에 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.log 파일 비우기 (기본값: -debug 안 할 시 1) Signing transaction failed - 거래를 서명하는것을 실패하였습니다. + 거래기록 서명을 실패하였습니다. Specify connection timeout in milliseconds (default: 5000) - 밀리초 단위로 연결 제한시간을 설정하십시오(기본값: 5000) + 밀리 초 단위로 연결 제한시간을 설정하세요 (기본값: 5000) - + + Start Dogecoin Core Daemon + Dogecoin 코어 데몬 시작 + + + System error: - 시스템 오류: + 시스템 오류: Transaction amount too small - 거래량이 너무 적습니다 + 거래기록 액수가 너무 적습니다 Transaction amounts must be positive - 거래량은 반드시 정수여야합니다. + 거래기록 액수는 반드시 정수여야 합니다 Transaction too large - 너무 큰 거래 + 거래기록이 너무 큽니다 Use UPnP to map the listening port (default: 0) - + UPnP를 사용하여 수신 대기 중인 포트를 맵핑 (기본값: 0) Use UPnP to map the listening port (default: 1 when listening) - + UPnP를 사용하여 수신 대기 중인 포트를 맵핑 (기본값: 1 반응이 생기면) @@ -3883,7 +4102,12 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo Zapping all transactions from wallet... - 지갑의 모든거래내역 건너뛰기... + 지갑의 모든 거래기록들 건너뛰기... + + + + on startup + 시작 시 @@ -3896,47 +4120,47 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo wallet.dat 파일이 손상되었고 복구가 실패하였습니다. - + Password for JSON-RPC connections JSON-RPC 연결에 사용할 암호 - + Allow JSON-RPC connections from specified IP address 지정한 IP 주소의 JSON-RPC 연결 허용 - + Send commands to node running on <ip> (default: 127.0.0.1) - 실행 중인 노드로 명령 전송 <ip> (기본값: 127.0.0.1) + <ip>에서 실행 중인 노드로 명령 보내기 (기본값: 127.0.0.1) - + Execute command when the best block changes (%s in cmd is replaced by block hash) - 최고의 블럭이 변하면 명령을 실행(cmd 에 있는 %s 는 블럭 해시에 의해 대체되어 짐) + 가장 높은 블록이 변경되면 명령을 실행 (cmd 에 있는 %s 는 블록 해시에 의해 대체됨) - + Upgrade wallet to latest format - 지갑을 최근 형식으로 개선하시오 + 지갑을 최근 형식으로 개선하세요 - + Set key pool size to <n> (default: 100) 키 풀 크기 설정 <n>(기본값: 100) - + Rescan the block chain for missing wallet transactions - 누락된 지갑 송금에 대한 블록 체인 다시 검색 + 누락된 지갑 거래기록들에 대한 블록 체인 다시 검색 - + Use OpenSSL (https) for JSON-RPC connections JSON-RPC 연결에 OpenSSL(https) 사용 - + Server certificate file (default: server.cert) 서버 인증 파일 (기본값: server.cert) @@ -3946,62 +4170,62 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo 서버 개인 키(기본값: server.pem) - + This help message - 도움말 메시지입니다 + 이 도움말 메시지입니다 Unable to bind to %s on this computer (bind returned error %d, %s) - 이 컴퓨터의 %s에 바인딩할 수 없습니다 (바인딩 과정에 %d 오류 발생, %s) + 이 컴퓨터의 %s에 바인드 할 수 없습니다 (바인드에 %d 오류 발생, %s) - + Allow DNS lookups for -addnode, -seednode and -connect -addnode, -seednode, -connect 옵션에 대해 DNS 탐색 허용 - + Loading addresses... 주소를 불러오는 중... - + Error loading wallet.dat: Wallet corrupted - wallet.dat 불러오기 에러: 지갑 오류 + wallet.dat 불러오기 오류: 지갑이 손상되었습니다 Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - wallet.dat 불러오기 에러: 지갑은 새버전의 비트코인이 필요합니다. + wallet.dat 불러오기 오류: 지갑은 상위 버전의 Dogecoin 코어가 필요합니다. - + Wallet needed to be rewritten: restart Dogecoin Core to complete - 지갑을 새로 써야 합니다.: 완성하기 위하여 비트코인을 다시 시작하십시오. + 지갑을 다시 써야 함: 완료하기 위해 Dogecoin 코어를 다시 시작하세요 - + Error loading wallet.dat - wallet.dat 불러오기 에러 + wallet.dat 불러오기 오류 - + Invalid -proxy address: '%s' - 잘못된 -proxy 주소입니다: '%s' + 잘못된 -proxy 주소: '%s' - + Unknown network specified in -onlynet: '%s' - -onlynet에 지정한 네트워크를 알 수 없습니다: '%s' + -onlynet에 지정한 알 수 없는 네트워크: '%s' Unknown -socks proxy version requested: %i - 요청한 -socks 프록히 버전을 알 수 없습니다: %i + 알 수 없는 -socks 프록시 버전 요청: %i - + Cannot resolve -bind address: '%s' -bind 주소를 확인할 수 없습니다: '%s' @@ -4011,14 +4235,14 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo -externalip 주소를 확인할 수 없습니다: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' - -paytxfee=<amount>에 대한 양이 잘못되었습니다: '%s' + -paytxfee=<amount>에 대한 잘못된 액수: '%s' Invalid amount - 효력없는 금액 + 잘못된 액수 @@ -4026,27 +4250,22 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo 자금 부족 - + Loading block index... - 블럭 인덱스를 불러오는 중... + 블록 색인을 불러오는 중... - + Add a node to connect to and attempt to keep the connection open - + 노드를 추가하여 연결하고 연결상태를 계속 유지하려고 시도합니다. - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - 이 컴퓨터의 %s에 바인딩 할 수 없습니다. 아마도 비트코인이 실행중인 것 같습니다. - - - + Loading wallet... 지갑을 불러오는 중... - + Cannot downgrade wallet 지갑을 다운그레이드 할 수 없습니다 @@ -4056,33 +4275,33 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo 기본 계좌에 기록할 수 없습니다 - + Rescanning... 재검색 중... - + Done loading - 로딩 완료 + 불러오기 완료 - + To use the %s option %s 옵션을 사용하려면 - + Error 오류 - + You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. 설정 파일에 rpcpassword=<암호>를 설정해야 합니다: %s -파일이 없으면 소유자 읽기 전용 파일 권한으로 만들어야 합니다. +파일이 없으면 소유자-읽기-전용 파일 권한으로 만들어야 합니다. diff --git a/src/qt/locale/bitcoin_ky.ts b/src/qt/locale/bitcoin_ky.ts index 44da8f001..54458221a 100644 --- a/src/qt/locale/bitcoin_ky.ts +++ b/src/qt/locale/bitcoin_ky.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label - Create a new address Жаң даректи жасоо - &New - Copy the currently selected address to the system clipboard - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete Ө&чүрүү - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label - Address Дарек - (no label) (аты жок) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase - New passphrase - Repeat new passphrase - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Encrypt wallet - This operation needs your wallet passphrase to unlock the wallet. - Unlock wallet - This operation needs your wallet passphrase to decrypt the wallet. - Decrypt wallet - Change passphrase - Enter the old and new passphrase to the wallet. - Confirm wallet encryption - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - The supplied passphrases do not match. - Wallet unlock failed - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... - &Overview - Node - Show general overview of wallet - &Transactions &Транзакциялар - Browse transaction history - E&xit - Quit application - - Show information about Dogecoin Core + Show information about Dogecoin - - About &Qt - Show information about Qt - &Options... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... Билдирүүнү &текшерүү... - Dogecoin Dogecoin - Wallet Капчык - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &Файл - &Settings - &Help &Жардам - Tabs toolbar - - [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error Ката - Warning Эскертүү - Information Маалымат - Up to date Жаңыланган - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address Дарек - Date Дата - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none жок - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (аты жок) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Дарек - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version версия - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Error Ката - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB МБ - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network &Тармак - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: &Порт: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window &Терезе - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &Жарайт - &Cancel &Жокко чыгаруу - default жарыяланбаган - none жок - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet Капчык - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync синхрондоштурулган эмес @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,23 +1324,26 @@ Address: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1656,22 +1351,18 @@ Address: %4 QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1679,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General Жалпы - Using OpenSSL version - Startup time - Network - Name Аты - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open &Ачуу - &Console &Консоль - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console Консолду тазалоо - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1872,105 +1517,82 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - - An optional label to associate with the new receiving address. - Use this form to request payments. All fields are <b>optional</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - Requested payments history - &Request payment - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove - Copy label - Copy message - Copy amount @@ -1978,67 +1600,54 @@ Address: %4 ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address Дарек - Amount - Label - Message Билдирүү - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2046,37 +1655,30 @@ Address: %4 RecentRequestsTableModel - Date Дата - Label - Message Билдирүү - Amount - (no label) (аты жок) - (no message) - (no amount) @@ -2084,247 +1686,194 @@ Address: %4 SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All &Бардыгын тазалоо - Balance: - Confirm the send action - S&end &Жөнөтүү - Confirm send coins - - - - %1 to %2 - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (аты жок) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2332,98 +1881,74 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard Даректи алмашуу буферинен коюу - Alt+P - - - Remove this entry - Message: Билдирүү: - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. - - Pay To: - - Memo: @@ -2431,12 +1956,10 @@ Address: %4 ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2444,186 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard Даректи алмашуу буферинен коюу - Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All &Бардыгын тазалоо - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2631,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2649,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2657,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline %1/тармакта эмес - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date Дата - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message Билдирүү - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2837,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2850,118 +2282,102 @@ Address: %4 TransactionTableModel - Date Дата - Type - Address Дарек - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2969,178 +2385,142 @@ Address: %4 TransactionView - - All - Today - This week - This month - Last month - This year - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - Confirmed - Date Дата - Type - Label - Address Дарек - Amount - ID - Range: - to @@ -3148,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3156,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3164,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3322,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - Маалымат - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - Эскертүү - - - - Warning: This version is obsolete, upgrade required! - - - - - version - версия - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + Маалымат + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + Эскертүү + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + версия + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error Ката - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_la.ts b/src/qt/locale/bitcoin_la.ts index 00f3b256f..34863a013 100644 --- a/src/qt/locale/bitcoin_la.ts +++ b/src/qt/locale/bitcoin_la.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -26,135 +23,113 @@ Distributum sub MIT/X11 licentia programmatum, vide comitantem plicam COPYING ve Hoc productum continet programmata composita ab OpenSSL Project pro utendo in OpenSSL Toolkit (http://www.openssl.org/) et programmata cifrarum scripta ab Eric Young (eay@cryptsoft.com) et UPnP programmata scripta ab Thomas Bernard. - Copyright Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Dupliciter-clicca ut inscriptionem vel titulum mutes - Create a new address Crea novam inscriptionem - &New - Copy the currently selected address to the system clipboard Copia inscriptionem iam selectam in latibulum systematis - &Copy - C&lose - &Copy Address &Copia Inscriptionem - Delete the currently selected address from the list Dele active selectam inscriptionem ex enumeratione - Export the data in the current tab to a file Exporta data in hac tabella in plicam - &Export &Exporta - &Delete &Dele - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Hae sunt inscriptiones mittendi pensitationes. Semper inspice quantitatem et inscriptionem accipiendi antequam nummos mittis. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label Copia &Titulum - &Edit &Muta - Export Address List - Comma separated file (*.csv) Comma Separata Plica (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -162,17 +137,14 @@ Hoc productum continet programmata composita ab OpenSSL Project pro utendo in Op AddressTableModel - Label Titulus - Address Inscriptio - (no label) (nullus titulus) @@ -180,140 +152,106 @@ Hoc productum continet programmata composita ab OpenSSL Project pro utendo in Op AskPassphraseDialog - Passphrase Dialog Dialogus Tesserae - Enter passphrase Insere tesseram - New passphrase Nova tessera - Repeat new passphrase Itera novam tesseram - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Insero novam tesseram cassidili.<br/>Sodes tessera <b>10 pluriumve fortuitarum litterarum</b> utere aut <b>octo pluriumve verborum</b>. - Encrypt wallet Cifra cassidile - This operation needs your wallet passphrase to unlock the wallet. Huic operationi necesse est tessera cassidili tuo ut cassidile reseret. - Unlock wallet Resera cassidile - This operation needs your wallet passphrase to decrypt the wallet. Huic operationi necesse est tessera cassidili tuo ut cassidile decifret. - Decrypt wallet Decifra cassidile - Change passphrase Muta tesseram - Enter the old and new passphrase to the wallet. Insero veterem novamque tesseram cassidili. - Confirm wallet encryption Confirma cifrationem cassidilis - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! Monitio: Si cassidile tuum cifras et tesseram amittis, tu <b>AMITTES OMNES TUOS NUMMOS BITOS</b>! - Are you sure you wish to encrypt your wallet? Certusne es te velle tuum cassidile cifrare? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. GRAVE: Oportet ulla prioria conservata quae fecisti de plica tui cassidilis reponi a nove generata cifrata plica cassidilis. Propter securitatem, prioria conservata de plica non cifrata cassidilis inutilia fiet simul atque incipis uti novo cifrato cassidili. - - Warning: The Caps Lock key is on! Monitio: Litterae ut capitales seratae sunt! - - Wallet encrypted Cassidile cifratum - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Dogecoin iam desinet ut finiat actionem cifrandi. Memento cassidile cifrare non posse cuncte curare ne tui nummi clepantur ab malis programatibus in tuo computatro. - - - - Wallet encryption failed Cassidile cifrare abortum est - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Cassidile cifrare abortum est propter internum errorem. Tuum cassidile cifratum non est. - - The supplied passphrases do not match. Tesserae datae non eaedem sunt. - Wallet unlock failed Cassidile reserare abortum est. - - - The passphrase entered for the wallet decryption was incorrect. Tessera inserta pro cassidilis decifrando prava erat. - Wallet decryption failed Cassidile decifrare abortum est. - Wallet passphrase was successfully changed. Tessera cassidilis successa est in mutando. @@ -321,352 +259,286 @@ Hoc productum continet programmata composita ab OpenSSL Project pro utendo in Op BitcoinGUI - Sign &message... Signa &nuntium... - Synchronizing with network... Synchronizans cum rete... - &Overview &Summarium - Node - Show general overview of wallet Monstra generale summarium cassidilis - &Transactions &Transactiones - Browse transaction history Inspicio historiam transactionum - E&xit E&xi - Quit application Exi applicatione - - Show information about Dogecoin Core + Show information about Dogecoin Monstra informationem de Dogecoin - - About &Qt Informatio de &Qt - Show information about Qt Monstra informationem de Qt - &Options... &Optiones - &Encrypt Wallet... &Cifra Cassidile... - &Backup Wallet... &Conserva Cassidile... - &Change Passphrase... &Muta tesseram... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... Importans frusta ab disco... - Reindexing blocks on disk... Recreans indicem frustorum in disco... - Send coins to a Dogecoin address Mitte nummos ad inscriptionem Dogecoin - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Muta configurationis optiones pro Dogecoin - Backup wallet to another location Conserva cassidile in locum alium - Change the passphrase used for wallet encryption Muta tesseram utam pro cassidilis cifrando - &Debug window Fenestra &Debug - Open debugging and diagnostic console Aperi terminalem debug et diagnosticalem - &Verify message... &Verifica nuntium... - Dogecoin Dogecoin - Wallet Cassidile - &Send &Mitte - &Receive &Accipe - - &Show / Hide &Monstra/Occulta - Show or hide the main Window Monstra vel occulta Fenestram principem - Encrypt the private keys that belong to your wallet Cifra claves privatas quae cassidili tui sunt - Sign messages with your Dogecoin addresses to prove you own them Signa nuntios cum tuis inscriptionibus Dogecoin ut demonstres te eas possidere - Verify messages to ensure they were signed with specified Dogecoin addresses Verifica nuntios ut certus sis eos signatos esse cum specificatis inscriptionibus Dogecoin - &File &Plica - &Settings &Configuratio - &Help &Auxilium - Tabs toolbar Tabella instrumentorum "Tabs" - - [testnet] [testnet] - Dogecoin Core Dogecoin Nucleus - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Dogecoin cliens - %n active connection(s) to Dogecoin network %n activa conexio ad rete Dogecoin%n activae conexiones ad rete Dogecoin - No block source available... Nulla fons frustorum absens... - Processed %1 of %2 (estimated) blocks of transaction history. Perfecta %1 de %2 (aestimato) frusta historiae transactionum. - Processed %1 blocks of transaction history. Processae %1 frusta historiae transactionum. - %n hour(s) %n hora%n horae - %n day(s) %n dies%n dies - %n week(s) %n hebdomas%n hebdomades - + %1 and %2 + + + + %n year(s) + + + %1 behind %1 post - Last received block was generated %1 ago. Postremum acceptum frustum generatum est %1 abhinc. - Transactions after this will not yet be visible. Transactiones post hoc nondum visibiles erunt. - Error Error - Warning Monitio - Information Informatio - Up to date Recentissimo - Catching up... Persequens... - Sent transaction Transactio missa - Incoming transaction Transactio incipiens - Date: %1 Amount: %2 Type: %3 @@ -679,25 +551,21 @@ Inscriptio: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Cassidile <b>cifratum</b> est et iam nunc <b>reseratum</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Cassidile <b>cifratum</b> est et iam nunc <b>seratum</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Error fatalis accidit. Dogecoin nondum pergere tute potest, et exibit. ClientModel - Network Alert Monitio Retis @@ -705,291 +573,230 @@ Inscriptio: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: Quantitas: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Quantitas - Address Inscriptio - Date Dies - Confirmations - Confirmed Confirmatum - Priority - Copy address Copia inscriptionem - Copy label Copia titulum - - Copy amount Copia quantitatem - Copy transaction ID Copia transactionis ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (nullus titulus) - change from %1 (%2) - (change) @@ -997,67 +804,54 @@ Inscriptio: %4 EditAddressDialog - Edit Address Muta Inscriptionem - &Label &Titulus - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Inscriptio - New receiving address Nova inscriptio accipiendi - New sending address Nova inscriptio mittendi - Edit receiving address Muta inscriptionem accipiendi - Edit sending address Muta inscriptionem mittendi - The entered address "%1" is already in the address book. Inserta inscriptio "%1" iam in libro inscriptionum est. - The entered address "%1" is not a valid Dogecoin address. Inscriptio inserta "%1" non valida inscriptio Dogecoin est. - Could not unlock wallet. Non potuisse cassidile reserare - New key generation failed. Generare novam clavem abortum est. @@ -1065,27 +859,22 @@ Inscriptio: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1093,52 +882,46 @@ Inscriptio: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Dogecoin Nucleus - version versio - Usage: Usus: - command-line options Optiones mandati intiantis - UI options UI optiones - Set language, for example "de_DE" (default: system locale) Constitue linguam, exempli gratia "de_DE" (praedefinitum: lingua systematis) - Start minimized Incipe minifactum ut icon - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Monstra principem imaginem ad initium (praedefinitum: 1) - Choose data directory on startup (default: 0) @@ -1146,57 +929,46 @@ Inscriptio: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1204,27 +976,22 @@ Inscriptio: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1232,243 +999,206 @@ Inscriptio: %4 OptionsDialog - Options Optiones - &Main &Princeps - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Optionalis merces transactionum singulis kB quae adiuvat curare tuas transactiones processas esse celeriter. Plurimi transactiones 1kB sunt. - Pay transaction &fee Solve &mercedem transactionis - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Pelle Dogecoin per se postquam in systema inire. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Pelle Dogecoin cum inire systema - Size of &database cache - - Set database cache size in megabytes (default: 25) - Constitue magnitudinem databasis cache in megabytes (praedefinitum: 25) - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Constitue numerum filorum verificationis scriptorum (Maximum 16, 0 = auto, <0 = tot corda libera erunt, praedefinitum: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. Reconstitue omnes optiones clientis ad praedefinita. - &Reset Options &Reconstitue Optiones - &Network &Rete - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Aperi per se portam clientis Dogecoin in itineratore. Hoc tantum effectivum est si itineratrum tuum supportat UPnP et id activum est. - Map port using &UPnP Designa portam utendo &UPnP - Proxy &IP: &IP vicarii: - &Port: &Porta: - Port of the proxy (e.g. 9050) Porta vicarii (e.g. 9050) - SOCKS &Version: SOCKS &Versio: - SOCKS version of the proxy (e.g. 5) SOCKS versio vicarii (e.g. 5) - &Window &Fenestra - Show only a tray icon after minimizing the window. Monstra tantum iconem in tabella systematis postquam fenestram minifactam est. - &Minimize to the tray instead of the taskbar &Minifac in tabellam systematis potius quam applicationum - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minifac potius quam exire applicatione quando fenestra clausa sit. Si haec optio activa est, applicatio clausa erit tantum postquam selegeris Exi in menu. - M&inimize on close M&inifac ad claudendum - &Display &UI - User Interface &language: &Lingua monstranda utenti: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Lingua monstranda utenti hic constitui potest. Haec configuratio effectiva erit postquam Dogecoin iterum initiatum erit. - &Unit to show amounts in: &Unita qua quantitates monstrare: - Choose the default subdivision unit to show in the interface and when sending coins. Selige praedefinitam unitam subdivisionis monstrare in interfacie et quando nummos mittere - Whether to show Dogecoin addresses in the transaction list or not. Num monstrare inscriptiones Dogecoin in enumeratione transactionum. - &Display addresses in transaction list &Monstra inscriptiones in enumeratione transactionum - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &OK - &Cancel &Cancella - default praedefinitum - none - Confirm options reset Confirma optionum reconstituere - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. Inscriptio vicarii tradita non valida est. @@ -1476,69 +1206,54 @@ Inscriptio: %4 OverviewPage - Form Schema - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Monstrata informatio fortasse non recentissima est. Tuum cassidile per se synchronizat cum rete Dogecoin postquam conexio constabilita est, sed hoc actio nondum perfecta est. - - Unconfirmed: - Non confirmata: - - - Wallet Cassidile - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: Immatura: - Mined balance that has not yet matured Fossum pendendum quod nondum maturum est - Total: - Your current total balance - <b>Recent transactions</b> <b>Recentes transactiones</b> - - out of sync non synchronizato @@ -1546,93 +1261,70 @@ Inscriptio: %4 PaymentServer - - URI handling Tractatio URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. URI intellegi non posse! Huius causa possit inscriptionem Dogecoin non validam aut URI parametra maleformata. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler Dogecoin incipere non potest: cliccare-ad-pensandum handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1640,41 +1332,45 @@ Inscriptio: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Insere inscriptionem Dogecoin (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code Salva codicem QR - PNG Image (*.png) @@ -1682,192 +1378,146 @@ Inscriptio: %4 RPCConsole - Client name Nomen clientis - - - - - - - - - - - N/A N/A - Client version Versio clientis - &Information &Informatio - Debug window - General - Using OpenSSL version Utens OpenSSL versione - Startup time Tempus initiandi - Network Rete - Name - Number of connections Numerus conexionum - Block chain Catena frustorum - Current number of blocks Numerus frustorum iam nunc - Estimated total blocks Aestimatus totalis numerus frustorum - Last block time Hora postremi frusti - &Open &Aperi - &Console &Terminale - &Network Traffic - &Clear - Totals - In: - Out: - Build date Dies aedificandi - Debug log file Debug catalogi plica - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Aperi plicam catalogi de Dogecoin debug ex activo indice datorum. Hoc possit pauca secunda pro plicis magnis catalogi. - Clear console Vacuefac terminale - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Bene ventio in terminale RPC de Dogecoin. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Utere sagittis sursum deorsumque ut per historiam naviges, et <b>Ctrl+L</b> ut scrinium vacuefacias. - Type <b>help</b> for an overview of available commands. Scribe <b>help</b> pro summario possibilium mandatorum. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1875,155 +1525,137 @@ Inscriptio: %4 ReceiveCoinsDialog - &Amount: - &Label: &Titulus: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + Copia titulum + + + Copy message + + + + Copy amount + Copia quantitatem + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address Inscriptio - Amount Quantitas - Label Titulus - Message Nuntius - Resulting URI too long, try to reduce the text for label / message. Resultato URI nimis longo, conare minuere verba pro titulo / nuntio. - Error encoding URI into QR Code. Error codificandi URI in codicem QR. @@ -2031,285 +1663,225 @@ Inscriptio: %4 RecentRequestsTableModel - Date Dies - Label Titulus - Message Nuntius - Amount Quantitas - (no label) (nullus titulus) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins Mitte Nummos - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: Quantitas: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Mitte pluribus accipientibus simul - Add &Recipient Adde &Accipientem - Clear all fields of the form. - Clear &All Vacuefac &Omnia - Balance: Pendendum: - Confirm the send action Confirma actionem mittendi - S&end &Mitte - Confirm send coins Confirma mittendum nummorum - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Insere inscriptionem Dogecoin (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount Copia quantitatem - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. Inscriptio accipientis non est valida, sodes reproba. - The amount to pay must be larger than 0. Oportet quantitatem ad pensandum maiorem quam 0 esse. - The amount exceeds your balance. Quantitas est ultra quod habes. - The total exceeds your balance when the %1 transaction fee is included. Quantitas est ultra quod habes cum merces transactionis %1 includitur. - Duplicate address found, can only send to each address once per send operation. Geminata inscriptio inventa, tantum posse mittere ad quamque inscriptionem semel singulare operatione. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (nullus titulus) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2317,116 +1889,85 @@ Inscriptio: %4 SendCoinsEntry - - - A&mount: &Quantitas: - Pay &To: Pensa &Ad: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Inscriptio cui mittere pensitationem (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Insero titulum huic inscriptioni ut eam in tuum librum inscriptionum addas. - &Label: &Titulus: - Choose previously used address - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard Conglutina inscriptionem ex latibulo - Alt+P Alt+P - - - Remove this entry - Message: Nuntius: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Insero inscriptionem Dogecoin (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2434,192 +1975,142 @@ Inscriptio: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Signationes - Signa / Verifica nuntium - &Sign Message &Signa Nuntium - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Potes nuntios signare inscriptionibus tuis ut demonstres te eas possidere. Cautus es non amibiguum signare, quia impetus phiscatorum conentur te fallere ut signes identitatem tuam ad eos. Solas signa sententias cuncte descriptas quibus convenis. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Inscriptio qua signare nuntium (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard Glutina inscriptionem ex latibulo - Alt+P Alt+P - Enter the message you want to sign here Insere hic nuntium quod vis signare - Signature Signatio - Copy the current signature to the system clipboard Copia signationem in latibulum systematis - Sign the message to prove you own this Dogecoin address Signa nuntium ut demonstres hanc inscriptionem Dogecoin a te possessa esse - Sign &Message Signa &Nuntium - Reset all sign message fields Reconstitue omnes campos signandi nuntii - - Clear &All Vacuefac &Omnia - &Verify Message &Verifica Nuntium - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Insere inscriptionem signantem, nuntium (cura ut copias intermissiones linearum, spatia, tabs, et cetera exacte) et signationem infra ut nuntium verifices. Cautus esto ne magis legas in signationem quam in nuntio signato ipso est, ut vites falli ab impetu homo-in-medio. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Inscriptio qua nuntius signatus est (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Verifica nuntium ut cures signatum esse cum specifica inscriptione Dogecoin - Verify &Message Verifica &Nuntium - Reset all verify message fields Reconstitue omnes campos verificandi nuntii - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Insere inscriptionem Dogecoin (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Clicca "Signa Nuntium" ut signatio generetur - - Enter Dogecoin signature - Insere signationem Dogecoin - - - - The entered address is invalid. Inscriptio inserta non valida est. - - - - Please check the address and try again. Sodes inscriptionem proba et rursus conare. - - The entered address does not refer to a key. Inserta inscriptio clavem non refert. - Wallet unlock was cancelled. Cassidilis reserare cancellatum est. - Private key for the entered address is not available. Clavis privata absens est pro inserta inscriptione. - Message signing failed. Nuntium signare abortum est. - Message signed. Nuntius signatus. - The signature could not be decoded. Signatio decodificari non potuit. - - Please check the signature and try again. Sodes signationem proba et rursus conare. - The signature did not match the message digest. Signatio non convenit digesto nuntii - Message verification failed. Nuntium verificare abortum est. - Message verified. Nuntius verificatus. @@ -2627,17 +2118,14 @@ Inscriptio: %4 SplashScreen - Dogecoin Core Dogecoin Nucleus - The Dogecoin Core developers - [testnet] [testnet] @@ -2645,7 +2133,6 @@ Inscriptio: %4 TrafficGraphWidget - KB/s @@ -2653,179 +2140,138 @@ Inscriptio: %4 TransactionDesc - Open until %1 Apertum donec %1 - + conflicted + + + %1/offline %1/non conecto - %1/unconfirmed %1/non confirmata - %1 confirmations %1 confirmationes - Status Status - , broadcast through %n node(s) , disseminatum per %n nodo, disseminata per %n nodis - Date Dies - Source Fons - Generated Generatum - - From Ab - - - To Ad - - own address inscriptio propria - label titulus - - - - - Credit Creditum - matures in %n more block(s) maturum erit in %n plure frustomaturum erit in %n pluribus frustis - not accepted non acceptum - - - - Debit Debitum - Transaction fee Transactionis merces - Net amount Cuncta quantitas - - Message Nuntius - Comment Annotatio - Transaction ID ID transactionis - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information Informatio de debug - Transaction Transactio - Inputs Lectenda - Amount Quantitas - true verum - false falsum - , has not been successfully broadcast yet , nondum prospere disseminatum est - Open for %n more block(s) Aperi pro %n pluribus frustis - unknown ignotum @@ -2833,12 +2279,10 @@ Inscriptio: %4 TransactionDescDialog - Transaction details Particularia transactionis - This pane shows a detailed description of the transaction Haec tabula monstrat descriptionem verbosam transactionis @@ -2846,118 +2290,102 @@ Inscriptio: %4 TransactionTableModel - Date Dies - Type Typus - Address Inscriptio - Amount Quantitas - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) Aperi pro %n plure frustoAperi pro %n pluribus frustis - Open until %1 Apertum donec %1 - - Offline (%1 confirmations) - Non conectum (%1 confirmationes) - - - - Unconfirmed (%1 of %2 confirmations) - Non confirmatum (%1 de %2 confirmationibus) - - - - Confirmed (%1 confirmations) Confirmatum (%1 confirmationes) - This block was not received by any other nodes and will probably not be accepted! Hoc frustum non acceptum est ab ulla alia nodis et probabiliter non acceptum erit! - Generated but not accepted Generatum sed non acceptum - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Acceptum cum - Received from Acceptum ab - Sent to Missum ad - Payment to yourself Pensitatio ad te ipsum - Mined Fossa - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. Status transactionis. Supervola cum mure ut monstretur numerus confirmationum. - Date and time that the transaction was received. Dies et tempus quando transactio accepta est. - Type of transaction. Typus transactionis. - Destination address of transaction. Inscriptio destinationis transactionis. - Amount removed from or added to balance. Quantitas remota ex pendendo aut addita ei. @@ -2965,178 +2393,142 @@ Inscriptio: %4 TransactionView - - All Omne - Today Hodie - This week Hac hebdomade - This month Hoc mense - Last month Postremo mense - This year Hoc anno - Range... Intervallum... - Received with Acceptum cum - Sent to Missum ad - To yourself Ad te ipsum - Mined Fossa - Other Alia - Enter address or label to search Insere inscriptionem vel titulum ut quaeras - Min amount Quantitas minima - Copy address Copia inscriptionem - Copy label Copia titulum - Copy amount Copia quantitatem - Copy transaction ID Copia transactionis ID - Edit label Muta titulum - Show transaction details Monstra particularia transactionis - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Comma Separata Plica (*.csv) - Confirmed Confirmatum - Date Dies - Type Typus - Label Titulus - Address Inscriptio - Amount Quantitas - ID ID - Range: Intervallum: - to ad @@ -3144,7 +2536,6 @@ Inscriptio: %4 WalletFrame - No wallet has been loaded. @@ -3152,7 +2543,6 @@ Inscriptio: %4 WalletModel - Send Coins Mitte Nummos @@ -3160,154 +2550,125 @@ Inscriptio: %4 WalletView - &Export &Exporta - Export the data in the current tab to a file Exporta data in hac tabella in plicam - Backup Wallet Conserva cassidile - Wallet Data (*.dat) Data cassidilis (*.dat) - Backup Failed Conservare abortum est. - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful Successum in conservando - dogecoin-core + bitcoin-core - Usage: Usus: - List commands Enumera mandata - Get help for a command Accipe auxilium pro mandato - Options: Optiones: - - Specify configuration file (default: dogecoin.conf) - Specifica configurationis plicam (praedefinitum: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Specifica configurationis plicam (praedefinitum: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Specifica pid plicam (praedefinitum: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Specifica pid plicam (praedefinitum: bitcoin.pid) - Specify data directory Specifica indicem datorum - - Set database cache size in megabytes (default: 25) - Constitue magnitudinem databasis cache in megabytes (praedefinitum: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Ausculta pro conexionibus in <porta> (praedefinitum: 8333 vel testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Ausculta pro conexionibus in <porta> (praedefinitum: 22556 vel testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Manutene non plures quam <n> conexiones ad paria (praedefinitum: 125) - Connect to a node to retrieve peer addresses, and disconnect Conecta ad nodum acceptare inscriptiones parium, et disconecte - Specify your own public address Specifica tuam propriam publicam inscriptionem - Threshold for disconnecting misbehaving peers (default: 100) Limen pro disconectendo paria improba (praedefinitum: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Numerum secundorum prohibere ne paria improba reconectant (praedefinitum: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s Error erat dum initians portam RPC %u pro auscultando in IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Ausculta pro conexionibus JSON-RPC in <porta> (praedefinitum: 22555 vel testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Ausculta pro conexionibus JSON-RPC in <porta> (praedefinitum: 8332 vel testnet: 18332) - Accept command line and JSON-RPC commands Accipe terminalis et JSON-RPC mandata. - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Operare infere sicut daemon et mandata accipe - Use the test network Utere rete experimentale - Accept connections from outside (default: 1 if no -proxy or -connect) Accipe conexiones externas (praedefinitum: 1 nisi -proxy neque -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3318,7 +2679,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, necesse est te rpcpassword constituere in plica configurationis: %s Hortatur te hanc fortuitam tesseram uti: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (non est necesse te hanc tesseram meminisse) Nomen usoris et tessera eadem esse NON POSSUNT. @@ -3328,707 +2689,686 @@ exempli gratia: alertnotify=echo %%s | mail -s "Dogecoin Notificatio" - 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 IPv6, falling back to IPv4: %s Error erat dum initians portam RPC %u pro auscultando in IPv6, labens retrorsum ad IPv4: %s - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Conglutina ad inscriptionem datam et semper in eam ausculta. Utere [moderatrum]:porta notationem pro IPv6 - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - Non posse serare datorum indicem %s. Dogecoin probabiliter iam operatur. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + - 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 %d) + + + 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: Transactio eiecta est! Hoc possit accidere si alii nummorum in cassidili tuo iam soluti sint, ut si usus es exemplar de wallet.dat et nummi soluti sunt in exemplari sed non hic notati ut soluti. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Error: Huic transactioni necesse est merces saltem %s propter eius magnitudinem, complexitatem, vel usum recentum acceptorum nummorum! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Facere mandatum quotiescumque cassidilis transactio mutet (%s in mandato sbstituitur ab TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Hoc est prae-dimittum experimentala aedes - utere eo periculo tuo proprio - nolite utere fodendo vel applicationibus mercatoriis - + Unable to bind to %s on this computer. Dogecoin Core is probably already running. + + + 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. Monitio: -paytxfee constitutum valde magnum! Hoc est merces transactionis solves si mittis transactionem. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Monitio: Sodes cura ut dies tempusque computatri tui recti sunt! Si horologium tuum pravum est, Dogecoin non proprie fungetur. - 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. Monitio: error legendo wallet.dat! Omnes claves recte lectae, sed data transactionum vel libri inscriptionum fortasse desint vel prava sint. - 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. Monitio: wallet.data corrupta, data salvata! Originalis wallet.dat salvata ut wallet.{timestamp}.bak in %s; si pendendum tuum vel transactiones pravae sunt, oportet ab conservato restituere. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: - Attempt to recover private keys from a corrupt wallet.dat Conare recipere claves privatas de corrupto wallet.dat - Dogecoin Core Daemon - - Dogecoin Core RPC client version - - - - Block creation options: Optiones creandi frustorum: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + Connect only to the specified node(s) Conecte sole ad nodos specificatos (vel nodum specificatum) - Connect through SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: - Corrupted block database detected Corruptum databasum frustorum invenitur - + Debugging/Testing options: + + + + Disable safemode, override a real safe mode event (default: 0) + + + Discover own IP address (default: 1 when listening and no -externalip) Discooperi propriam inscriptionem IP (praedefinitum: 1 quando auscultans et nullum -externalip) - Do not load the wallet and disable wallet RPC calls - Do you want to rebuild the block database now? Visne reficere databasum frustorum iam? - Error initializing block database Error initiando databasem frustorum - Error initializing wallet database environment %s! Error initiando systematem databasi cassidilis %s! - Error loading block database Error legendo frustorum databasem - Error opening block database Error aperiendo databasum frustorum - Error: Disk space is low! Error: Inopia spatii disci! - Error: Wallet locked, unable to create transaction! Error: Cassidile seratum, non posse transactionem creare! - Error: system error: Error: systematis error: - Failed to listen on any port. Use -listen=0 if you want this. Non potuisse auscultare in ulla porta. Utere -listen=0 si hoc vis. - Failed to read block info Non potuisse informationem frusti legere - Failed to read block Non potuisse frustum legere - Failed to sync block index Synchronizare indicem frustorum abortum est - Failed to write block index Scribere indicem frustorum abortum est - Failed to write block info Scribere informationem abortum est - Failed to write block Scribere frustum abortum est - Failed to write file info Scribere informationem plicae abortum est - Failed to write to coin database Scribere databasem nummorum abortum est - Failed to write transaction index Scribere indicem transactionum abortum est - Failed to write undo data Scribere data pro cancellando mutationes abortum est - Fee per kB to add to transactions you send - + Fees smaller than this are considered zero fee (for relaying) (default: + + + Find peers using DNS lookup (default: 1 unless -connect) Inveni paria utendo DNS quaerendo (praedefinitum: 1 nisi -connect) - + Force safe mode (default: 0) + + + Generate coins (default: 0) Genera nummos (praedefinitum: 0) - How many blocks to check at startup (default: 288, 0 = all) Quot frusta proba ad initium (praedefinitum: 288, 0 = omnia) - - How thorough the block verification is (0-4, default: 3) - Quam perfecta frustorum verificatio est (0-4, praedefinitum: 3) - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? - Invalid -onion address: '%s' - Not enough file descriptors available. Inopia descriptorum plicarum. - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files Restituere indicem catenae frustorum ex activis plicis blk000??.dat - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server + Set database cache size in megabytes (%d to %d, default: %d) - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) Constitue numerum filorum ad tractandum RPC postulationes (praedefinitum: 4) - Specify wallet file (within data directory) - - Start Dogecoin Core server + Spend unconfirmed change when sending transactions (default: 1) - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): + Usage (deprecated, use bitcoin-cli): - Verifying blocks... Verificante frusta... - Verifying wallet... Verificante cassidilem... - Wait for RPC server to start - Wallet %s resides outside data directory %s - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex - Imports blocks from external blk000??.dat file Importat frusta ab externa plica blk000??.dat - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Constitue numerum filorum verificationis scriptorum (Maximum 16, 0 = auto, <0 = tot corda libera erunt, praedefinitum: 0) - - - Information Informatio - Invalid amount for -minrelaytxfee=<amount>: '%s' Quantitas non valida pro -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' Quantitas non valida pro -mintxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) Manutene completam indicem transactionum (praedefinitum: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Maxima magnitudo memoriae pro datis accipendis singulis conexionibus, <n>*1000 octetis/bytes (praedefinitum: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Maxima magnitudo memoriae pro datis mittendis singulis conexionibus, <n>*1000 octetis/bytes (praedefinitum: 1000) - Only accept block chain matching built-in checkpoints (default: 1) Tantum accipe catenam frustorum convenientem internis lapidibus (praedefinitum: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Tantum conecte ad nodos in rete <net> (IPv4, IPv6 aut Tor) - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Optiones SSL: (vide vici de Bitcoin pro instructionibus SSL configurationis) + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Optiones SSL: (vide vici de Dogecoin pro instructionibus SSL configurationis) + + + Send command to Dogecoin Core + - Send trace/debug info to console instead of debug.log file Mitte informationem vestigii/debug ad terminale potius quam plicam debug.log - Set minimum block size in bytes (default: 0) Constitue minimam magnitudinem frusti in octetis/bytes (praedefinitum: 0) - + 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) Diminue plicam debug.log ad initium clientis (praedefinitum: 1 nisi -debug) - Signing transaction failed Signandum transactionis abortum est - Specify connection timeout in milliseconds (default: 5000) Specifica tempumfati conexionis in millisecundis (praedefinitum: 5000) - + Start Dogecoin Core Daemon + + + System error: Systematis error: - Transaction amount too small Magnitudo transactionis nimis parva - Transaction amounts must be positive Necesse est magnitudines transactionum positivas esse. - Transaction too large Transactio nimis magna - Use UPnP to map the listening port (default: 0) Utere UPnP designare portam auscultandi (praedefinitum: 0) - Use UPnP to map the listening port (default: 1 when listening) Utere UPnP designare portam auscultandi (praedefinitum: 1 quando auscultans) - Username for JSON-RPC connections Nomen utentis pro conexionibus JSON-RPC - Warning Monitio - Warning: This version is obsolete, upgrade required! Monitio: Haec versio obsoleta est, progressio postulata! - + Zapping all transactions from wallet... + + + + on startup + + + version versio - wallet.dat corrupt, salvage failed wallet.dat corrupta, salvare abortum est - Password for JSON-RPC connections Tessera pro conexionibus JSON-RPC - Allow JSON-RPC connections from specified IP address Permitte conexionibus JSON-RPC ex inscriptione specificata - Send commands to node running on <ip> (default: 127.0.0.1) Mitte mandata nodo operanti in <ip> (praedefinitum: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) Pelle mandatum quando optissimum frustum mutat (%s in mandato substituitur ab hash frusti) - Upgrade wallet to latest format Progredere cassidile ad formam recentissimam - Set key pool size to <n> (default: 100) Constitue magnitudinem stagni clavium ad <n> (praedefinitum: 100) - Rescan the block chain for missing wallet transactions Iterum perlege catenam frustorum propter absentes cassidilis transactiones - Use OpenSSL (https) for JSON-RPC connections Utere OpenSSL (https) pro conexionibus JSON-RPC - Server certificate file (default: server.cert) Plica certificationis daemonis moderantis (praedefinitum: server.cert) - Server private key (default: server.pem) Clavis privata daemonis moderans (praedefinitum: server.pem) - This help message Hic nuntius auxilii - Unable to bind to %s on this computer (bind returned error %d, %s) Non posse conglutinare ad %s in hoc computatro (conglutinare redidit errorem %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Permitte quaerenda DNS pro -addnode, -seednode, et -connect - Loading addresses... Legens inscriptiones... - Error loading wallet.dat: Wallet corrupted Error legendi wallet.dat: Cassidile corruptum - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Error legendi wallet.dat: Cassidili necesse est recentior versio Dogecoin - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Cassidili necesse erat rescribi: Repelle Dogecoin ut compleas - Error loading wallet.dat Error legendi wallet.dat - Invalid -proxy address: '%s' Inscriptio -proxy non valida: '%s' - Unknown network specified in -onlynet: '%s' Ignotum rete specificatum in -onlynet: '%s' - Unknown -socks proxy version requested: %i Ignota -socks vicarii versio postulata: %i - Cannot resolve -bind address: '%s' Non posse resolvere -bind inscriptonem: '%s' - Cannot resolve -externalip address: '%s' Non posse resolvere -externalip inscriptionem: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Quantitas non valida pro -paytxfee=<quantitas>: '%s' - Invalid amount Quantitas non valida - Insufficient funds Inopia nummorum - Loading block index... Legens indicem frustorum... - Add a node to connect to and attempt to keep the connection open Adice nodum cui conectere et conare sustinere conexionem apertam - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Non posse conglutinare ad %s in hoc cumputatro. Dogecoin probabiliter iam operatur. - - - Loading wallet... Legens cassidile... - Cannot downgrade wallet Non posse cassidile regredi - Cannot write default address Non posse scribere praedefinitam inscriptionem - Rescanning... Iterum perlegens... - Done loading Completo lengendi - To use the %s option Ut utaris optione %s - Error Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4037,4 +3377,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Si plica non existat, crea eam cum permissionibus ut solus eius dominus eam legere sinatur. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_lt.ts b/src/qt/locale/bitcoin_lt.ts index b8b20b1a7..49f1eaed4 100644 --- a/src/qt/locale/bitcoin_lt.ts +++ b/src/qt/locale/bitcoin_lt.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -26,135 +23,113 @@ Platinama pagal MIT/X11 licenciją, kurią rasite faile COPYING arba http://www. Šiame produkte yra OpenSSL projekto kuriamas OpenSSL Toolkit (http://www.openssl.org/), Eric Young parašyta kriptografinė programinė įranga bei Thomas Bernard sukurta UPnP programinė įranga. - Copyright Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Spragtelėkite, kad pakeistumėte adresą arba žymę - Create a new address Sukurti naują adresą - &New &Naujas - Copy the currently selected address to the system clipboard Kopijuoti esamą adresą į mainų atmintį - &Copy &Kopijuoti - C&lose &Užverti - &Copy Address &Kopijuoti adresą - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export &Eksportuoti - &Delete &Trinti - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label Kopijuoti ž&ymę - &Edit &Keisti - Export Address List - Comma separated file (*.csv) Kableliais išskirtas failas (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -162,17 +137,14 @@ Platinama pagal MIT/X11 licenciją, kurią rasite faile COPYING arba http://www. AddressTableModel - Label Žymė - Address Adresas - (no label) (nėra žymės) @@ -180,140 +152,106 @@ Platinama pagal MIT/X11 licenciją, kurią rasite faile COPYING arba http://www. AskPassphraseDialog - Passphrase Dialog Slaptafrazės dialogas - Enter passphrase Įvesti slaptafrazę - New passphrase Nauja slaptafrazė - Repeat new passphrase Pakartokite naują slaptafrazę - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Įveskite naują piniginės slaptafrazę.<br/>Prašome naudoti slaptafrazę iš <b> 10 ar daugiau atsitiktinių simbolių</b> arba <b>aštuonių ar daugiau žodžių</b>. - Encrypt wallet Užšifruoti piniginę - This operation needs your wallet passphrase to unlock the wallet. Ši operacija reikalauja jūsų piniginės slaptafrazės jai atrakinti. - Unlock wallet Atrakinti piniginę - This operation needs your wallet passphrase to decrypt the wallet. Ši operacija reikalauja jūsų piniginės slaptafrazės jai iššifruoti. - Decrypt wallet Iššifruoti piniginę - Change passphrase Pakeisti slaptafrazę - Enter the old and new passphrase to the wallet. Įveskite seną ir naują piniginės slaptafrazes. - Confirm wallet encryption Patvirtinkite piniginės užšifravimą - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Dėmesio: jei užšifruosite savo piniginę ir pamesite slaptafrazę, jūs<b>PRARASITE VISUS SAVO DOGECOINUS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Dėmesio: jei užšifruosite savo piniginę ir pamesite slaptafrazę, jūs<b>PRARASITE VISUS SAVO DogecoinUS</b>! - Are you sure you wish to encrypt your wallet? Ar tikrai norite šifruoti savo piniginę? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! Įspėjimas: įjungtas Caps Lock klavišas! - - Wallet encrypted Piniginė užšifruota - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin dabar užsidarys šifravimo proceso pabaigai. Atminkite, kad piniginės šifravimas negali pilnai apsaugoti dogecoinų vagysčių kai tinkle esančios kenkėjiškos programos patenka į jūsų kompiuterį. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin dabar užsidarys šifravimo proceso pabaigai. Atminkite, kad piniginės šifravimas negali pilnai apsaugoti bitcoinų vagysčių kai tinkle esančios kenkėjiškos programos patenka į jūsų kompiuterį. - - - - Wallet encryption failed Nepavyko užšifruoti piniginę - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Dėl vidinės klaidos nepavyko užšifruoti piniginę.Piniginė neužšifruota. - - The supplied passphrases do not match. Įvestos slaptafrazės nesutampa. - Wallet unlock failed Nepavyko atrakinti piniginę - - - The passphrase entered for the wallet decryption was incorrect. Neteisingai įvestas slaptažodis piniginės iššifravimui. - Wallet decryption failed Nepavyko iššifruoti piniginės - Wallet passphrase was successfully changed. Piniginės slaptažodis sėkmingai pakeistas. @@ -321,352 +259,286 @@ Platinama pagal MIT/X11 licenciją, kurią rasite faile COPYING arba http://www. BitcoinGUI - Sign &message... Pasirašyti ži&nutę... - Synchronizing with network... Sinchronizavimas su tinklu ... - &Overview &Apžvalga - Node - Show general overview of wallet Rodyti piniginės bendrą apžvalgą - &Transactions &Sandoriai - Browse transaction history Apžvelgti sandorių istoriją - E&xit &Išeiti - Quit application Išjungti programą - - Show information about Dogecoin Core + Show information about Dogecoin Rodyti informaciją apie Dogecoin - - About &Qt Apie &Qt - Show information about Qt Rodyti informaciją apie Qt - &Options... &Parinktys... - &Encrypt Wallet... &Užšifruoti piniginę... - &Backup Wallet... &Backup piniginę... - &Change Passphrase... &Keisti slaptafrazę... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... Blokai importuojami iš disko... - Reindexing blocks on disk... Blokai iš naujo indeksuojami... - Send coins to a Dogecoin address Siųsti monetas Dogecoin adresui - - Modify configuration options for Dogecoin Core - Keisti dogecoin konfigūracijos galimybes + Modify configuration options for Dogecoin + Keisti bitcoin konfigūracijos galimybes - Backup wallet to another location Daryti piniginės atsarginę kopiją - Change the passphrase used for wallet encryption Pakeisti slaptafrazę naudojamą piniginės užšifravimui - &Debug window &Derinimo langas - Open debugging and diagnostic console Atverti derinimo ir diagnostikos konsolę - &Verify message... &Tikrinti žinutę... - Dogecoin Dogecoin - Wallet Piniginė - &Send &Siųsti - &Receive &Gauti - - &Show / Hide &Rodyti / Slėpti - Show or hide the main Window Rodyti arba slėpti pagrindinį langą - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &Failas - &Settings &Nustatymai - &Help &Pagalba - Tabs toolbar Kortelių įrankinė - - [testnet] [testavimotinklas] - Dogecoin Core Dogecoin branduolys - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Dogecoin klientas - %n active connection(s) to Dogecoin network %n Dogecoin tinklo aktyvus ryšys%n Dogecoin tinklo aktyvūs ryšiai%n Dogecoin tinklo aktyvūs ryšiai - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) %n valanda%n valandos%n valandų - %n day(s) %n diena%n dienos%n dienų - %n week(s) %n savaitė%n savaitės%n savaičių - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error Klaida - Warning - Information Informacija - Up to date Atnaujinta - Catching up... Vejamasi... - Sent transaction Sandoris nusiųstas - Incoming transaction Ateinantis sandoris - Date: %1 Amount: %2 Type: %3 @@ -678,25 +550,21 @@ Tipas: %3 Adresas: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Piniginė <b>užšifruota</b> ir šiuo metu <b>atrakinta</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Piniginė <b>užšifruota</b> ir šiuo metu <b>užrakinta</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert Tinklo įspėjimas @@ -704,291 +572,230 @@ Adresas: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: Suma: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Suma - Address Adresas - Date Data - Confirmations - Confirmed Patvirtintas - Priority - Copy address Kopijuoti adresą - Copy label Kopijuoti žymę - - Copy amount Kopijuoti sumą - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (nėra žymės) - change from %1 (%2) - (change) @@ -996,67 +803,54 @@ Adresas: %4 EditAddressDialog - Edit Address Keisti adresą - &Label Ž&ymė - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Adresas - New receiving address Naujas gavimo adresas - New sending address Naujas siuntimo adresas - Edit receiving address Keisti gavimo adresą - Edit sending address Keisti siuntimo adresą - The entered address "%1" is already in the address book. Įvestas adresas „%1“ jau yra adresų knygelėje. - The entered address "%1" is not a valid Dogecoin address. Įvestas adresas „%1“ nėra galiojantis Dogecoin adresas. - Could not unlock wallet. Nepavyko atrakinti piniginės. - New key generation failed. Naujo rakto generavimas nepavyko. @@ -1064,27 +858,22 @@ Adresas: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1092,52 +881,46 @@ Adresas: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Dogecoin branduolys - version versija - Usage: Naudojimas: - command-line options komandinės eilutės parametrai - UI options Naudotoji sąsajos parametrai - Set language, for example "de_DE" (default: system locale) Nustatyti kalbą, pavyzdžiui "lt_LT" (numatyta: sistemos kalba) - Start minimized Paleisti sumažintą - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1145,57 +928,46 @@ Adresas: %4 Intro - Welcome Sveiki - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Error Klaida - GB of free space available - (of %1GB needed) @@ -1203,27 +975,22 @@ Adresas: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1231,243 +998,206 @@ Adresas: %4 OptionsDialog - Options Parinktys - &Main &Pagrindinės - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee &Mokėti sandorio mokestį - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Automatiškai paleisti Dogekoin programą įjungus sistemą. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Paleisti Dogecoin programą su window sistemos paleidimu - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network &Tinklas - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Automatiškai atidaryti Dogecoin kliento prievadą maršrutizatoriuje. Tai veikia tik tada, kai jūsų maršrutizatorius palaiko UPnP ir ji įjungta. - Map port using &UPnP Persiųsti prievadą naudojant &UPnP - Proxy &IP: Tarpinio serverio &IP: - &Port: &Prievadas: - Port of the proxy (e.g. 9050) Tarpinio serverio preivadas (pvz, 9050) - SOCKS &Version: SOCKS &versija: - SOCKS version of the proxy (e.g. 5) Tarpinio serverio SOCKS versija (pvz., 5) - &Window &Langas - Show only a tray icon after minimizing the window. Po programos lango sumažinimo rodyti tik programos ikoną. - &Minimize to the tray instead of the taskbar &M sumažinti langą bet ne užduočių juostą - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Uždarant langą neuždaryti programos. Kai ši parinktis įjungta, programa bus uždaryta tik pasirinkus meniu komandą Baigti. - M&inimize on close &Sumažinti uždarant - &Display &Rodymas - User Interface &language: Naudotojo sąsajos &kalba: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Čia gali būti nustatyta naudotojo sąsajos kalba. Šis nustatymas įsigalios iš naujo paleidus Dogecoin. - &Unit to show amounts in: &Vienetai, kuriais rodyti sumas: - Choose the default subdivision unit to show in the interface and when sending coins. Rodomų ir siunčiamų monetų kiekio matavimo vienetai - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list &Rodyti adresus sandorių sąraše - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &Gerai - &Cancel &Atšaukti - default numatyta - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. Nurodytas tarpinio serverio adresas negalioja. @@ -1475,69 +1205,54 @@ Adresas: %4 OverviewPage - Form Forma - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - Nepatvirtinti: - - - Wallet Piniginė - - Confirmed: - Patvirtinta: + Available: + - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: Nepribrendę: - Mined balance that has not yet matured - Total: Viso: - Your current total balance Jūsų balansas - <b>Recent transactions</b> <b>Naujausi sandoriai</b> - - out of sync nesinchronizuota @@ -1545,93 +1260,70 @@ Adresas: %4 PaymentServer - - URI handling URI apdorojimas - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error Tinklo užklausos klaida @@ -1639,41 +1331,45 @@ Adresas: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Įveskite dogekoinų adresą (pvz. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code Įrašyti QR kodą - PNG Image (*.png) @@ -1681,192 +1377,146 @@ Adresas: %4 RPCConsole - Client name Kliento pavadinimas - - - - - - - - - - - N/A nėra - Client version Kliento versija - &Information &Informacija - Debug window - General - Using OpenSSL version Naudojama OpenSSL versija - Startup time Paleidimo laikas - Network Tinklas - Name - Number of connections Prisijungimų kiekis - Block chain Blokų grandinė - Current number of blocks Dabartinis blokų skaičius - Estimated total blocks - Last block time Paskutinio bloko laikas - &Open &Atverti - &Console &Konsolė - &Network Traffic - &Clear - Totals - In: - Out: - Build date Kompiliavimo data - Debug log file Derinimo žurnalo failas - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console Išvalyti konsolę - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 m - %1 h %1 h - %1 h %2 m %1 h %2 m @@ -1874,155 +1524,137 @@ Adresas: %4 ReceiveCoinsDialog - &Amount: - &Label: Ž&ymė: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + Kopijuoti žymę + + + Copy message + + + + Copy amount + Kopijuoti sumą + ReceiveRequestDialog - QR Code QR kodas - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information Mokėjimo informacija - URI - Address Adresas - Amount Suma - Label Žymė - Message Žinutė - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. Klaida, koduojant URI į QR kodą. @@ -2030,285 +1662,225 @@ Adresas: %4 RecentRequestsTableModel - Date Data - Label Žymė - Message Žinutė - Amount Suma - (no label) (nėra žymės) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins Siųsti monetas - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: Suma: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Siųsti keliems gavėjams vienu metu - Add &Recipient &A Pridėti gavėją - Clear all fields of the form. - Clear &All Išvalyti &viską - Balance: Balansas: - Confirm the send action Patvirtinti siuntimo veiksmą - S&end &Siųsti - Confirm send coins Patvirtinti monetų siuntimą - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Įveskite dogekoinų adresą (pvz. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount Kopijuoti sumą - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. Negaliojantis gavėjo adresas. Patikrinkite. - The amount to pay must be larger than 0. Apmokėjimo suma turi būti didesnė nei 0. - The amount exceeds your balance. Suma viršija jūsų balansą. - The total exceeds your balance when the %1 transaction fee is included. Jei pridedame sandorio mokestį %1 bendra suma viršija jūsų balansą. - Duplicate address found, can only send to each address once per send operation. Rastas adreso dublikatas. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (nėra žymės) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2316,116 +1888,85 @@ Adresas: %4 SendCoinsEntry - - - A&mount: Su&ma: - Pay &To: Mokėti &gavėjui: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Įveskite žymę šiam adresui kad galėtumėte įtraukti ją į adresų knygelę - &Label: Ž&ymė: - Choose previously used address - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard Įvesti adresą iš mainų atminties - Alt+P Alt+P - - - Remove this entry - Message: Žinutė: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Įveskite dogekoinų adresą (pvz. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2433,192 +1974,142 @@ Adresas: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message &Pasirašyti žinutę - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Įveskite dogekoinų adresą (pvz. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard Įvesti adresą iš mainų atminties - Alt+P Alt+P - Enter the message you want to sign here Įveskite pranešimą, kurį norite pasirašyti čia - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address Registruotis žinute įrodymuii, kad turite šį adresą - Sign &Message - Reset all sign message fields - - Clear &All Išvalyti &viską - &Verify Message &Patikrinti žinutę - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Įveskite dogekoinų adresą (pvz. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Patikrinkite žinutę, jog įsitikintumėte, kad ją pasirašė nurodytas Dogecoin adresas - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Įveskite dogekoinų adresą (pvz. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Spragtelėkite "Registruotis žinutę" tam, kad gauti parašą - - Enter Dogecoin signature - Įveskite Dogecoin parašą - - - - The entered address is invalid. Įvestas adresas negalioja. - - - - Please check the address and try again. Prašom patikrinti adresą ir bandyti iš naujo. - - The entered address does not refer to a key. - Wallet unlock was cancelled. Piniginės atrakinimas atšauktas. - Private key for the entered address is not available. - Message signing failed. Žinutės pasirašymas nepavyko. - Message signed. Žinutė pasirašyta. - The signature could not be decoded. Nepavyko iškoduoti parašo. - - Please check the signature and try again. Prašom patikrinti parašą ir bandyti iš naujo. - The signature did not match the message digest. Parašas neatitinka žinutės. - Message verification failed. Žinutės tikrinimas nepavyko. - Message verified. Žinutė patikrinta. @@ -2626,17 +2117,14 @@ Adresas: %4 SplashScreen - Dogecoin Core Dogecoin branduolys - The Dogecoin Core developers - [testnet] [testavimotinklas] @@ -2644,7 +2132,6 @@ Adresas: %4 TrafficGraphWidget - KB/s KB/s @@ -2652,179 +2139,138 @@ Adresas: %4 TransactionDesc - Open until %1 Atidaryta iki %1 - + conflicted + + + %1/offline %1/neprisijungęs - %1/unconfirmed %1/nepatvirtintas - %1 confirmations %1 patvirtinimų - Status Būsena - , broadcast through %n node(s) - Date Data - Source Šaltinis - Generated Sugeneruotas - - From Nuo - - - To Kam - - own address savo adresas - label žymė - - - - - Credit Kreditas - matures in %n more block(s) - not accepted nepriimta - - - - Debit Debitas - Transaction fee Sandorio mokestis - Net amount Neto suma - - Message Žinutė - Comment Komentaras - Transaction ID Sandorio ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information Derinimo informacija - Transaction Sandoris - Inputs - Amount Suma - true tiesa - false netiesa - , has not been successfully broadcast yet , transliavimas dar nebuvo sėkmingas - Open for %n more block(s) - unknown nežinomas @@ -2832,12 +2278,10 @@ Adresas: %4 TransactionDescDialog - Transaction details Sandorio detelės - This pane shows a detailed description of the transaction Šis langas sandorio detalų aprašymą @@ -2845,118 +2289,102 @@ Adresas: %4 TransactionTableModel - Date Data - Type Tipas - Address Adresas - Amount Suma - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 Atidaryta iki %1 - - Offline (%1 confirmations) - Atjungta (%1 patvirtinimai) - - - - Unconfirmed (%1 of %2 confirmations) - Nepatvirtintos (%1 iš %2 patvirtinimų) - - - - Confirmed (%1 confirmations) Patvirtinta (%1 patvirtinimai) - This block was not received by any other nodes and will probably not be accepted! Šis blokas negautas nė vienu iš mazgų ir matomai nepriimtas - Generated but not accepted Išgauta bet nepriimta - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Gauta su - Received from Gauta iš - Sent to Siųsta - Payment to yourself Mokėjimas sau - Mined Išgauta - (n/a) nepasiekiama - Transaction status. Hover over this field to show number of confirmations. Sandorio būklė. Užvedus pelės žymeklį ant šios srities matysite patvirtinimų skaičių. - Date and time that the transaction was received. Sandorio gavimo data ir laikas - Type of transaction. Sandorio tipas. - Destination address of transaction. Sandorio paskirties adresas - Amount removed from or added to balance. Suma pridėta ar išskaičiuota iš balanso @@ -2964,178 +2392,142 @@ Adresas: %4 TransactionView - - All Visi - Today Šiandien - This week Šią savaitę - This month Šį mėnesį - Last month Paskutinį mėnesį - This year Šiais metais - Range... Intervalas... - Received with Gauta su - Sent to Išsiųsta - To yourself Skirta sau - Mined Išgauta - Other Kita - Enter address or label to search Įveskite adresą ar žymę į paiešką - Min amount Minimali suma - Copy address Kopijuoti adresą - Copy label Kopijuoti žymę - Copy amount Kopijuoti sumą - Copy transaction ID - Edit label Taisyti žymę - Show transaction details Rodyti sandėrio detales - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Kableliais atskirtų duomenų failas (*.csv) - Confirmed Patvirtintas - Date Data - Type Tipas - Label Žymė - Address Adresas - Amount Suma - ID ID - Range: Grupė: - to skirta @@ -3143,7 +2535,6 @@ Adresas: %4 WalletFrame - No wallet has been loaded. @@ -3151,7 +2542,6 @@ Adresas: %4 WalletModel - Send Coins Siųsti monetas @@ -3159,154 +2549,125 @@ Adresas: %4 WalletView - &Export &Eksportuoti - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful Atsarginė kopija sėkmingai padaryta - dogecoin-core + bitcoin-core - Usage: Naudojimas: - List commands Komandų sąrašas - Get help for a command Suteikti pagalba komandai - Options: Parinktys: - - Specify configuration file (default: dogecoin.conf) - Nurodyti konfigūracijos failą (pagal nutylėjimąt: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Nurodyti konfigūracijos failą (pagal nutylėjimąt: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Nurodyti pid failą (pagal nutylėjimą: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Nurodyti pid failą (pagal nutylėjimą: bitcoind.pid) - Specify data directory Nustatyti duomenų aplanką - - Set database cache size in megabytes (default: 25) - + Listen for connections on <port> (default: 8333 or testnet: 18333) + Sujungimo klausymas prijungčiai <port> (pagal nutylėjimą: 8333 arba testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Sujungimo klausymas prijungčiai <port> (pagal nutylėjimą: 22556 arba testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Palaikyti ne daugiau <n> jungčių kolegoms (pagal nutylėjimą: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) Atjungimo dėl netinkamo kolegų elgesio riba (pagal nutylėjimą: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Sekundžių kiekis eikiamas palaikyti ryšį dėl lygiarangių nestabilumo (pagal nutylėjimą: 86.400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Klausymas JSON-RPC sujungimui prijungčiai <port> (pagal nutylėjimą: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Klausymas JSON-RPC sujungimui prijungčiai <port> (pagal nutylėjimą: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands Priimti komandinę eilutę ir JSON-RPC komandas - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Dirbti fone kaip šešėlyje ir priimti komandas - Use the test network Naudoti testavimo tinklą - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3317,711 +2678,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + + + 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. Įspėjimas: -paytxfee yra nustatytas per didelis. Tai sandorio mokestis, kurį turėsite mokėti, jei siųsite sandorį. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Įspėjimas: Patikrinkite, kad kompiuterio data ir laikas yra teisingi.Jei Jūsų laikrodis neteisingai nustatytas Dogecoin, veiks netinkamai. - 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. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: - Attempt to recover private keys from a corrupt wallet.dat - Dogecoin Core Daemon - - Dogecoin Core RPC client version - - - - Block creation options: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + Connect only to the specified node(s) Prisijungti tik prie nurodyto mazgo - Connect through SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: - Corrupted block database detected - + 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? - Error initializing block database - Error initializing wallet database environment %s! - Error loading block database - Error opening block database Klaida atveriant blokų duombazę - Error: Disk space is low! - Error: Wallet locked, unable to create transaction! - Error: system error: Klaida: sistemos klaida: - Failed to listen on any port. Use -listen=0 if you want this. - Failed to read block info Nepavyko nuskaityti bloko informacijos - Failed to read block Nepavyko nuskaityti bloko - Failed to sync block index - Failed to write block index - Failed to write block info - Failed to write block Nepavyko įrašyti bloko - Failed to write file info Nepavyko įrašyti failo informacijos - 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 Įtraukti mokestį už kB siunčiamiems sandoriams - + Fees smaller than this are considered zero fee (for relaying) (default: + + + Find peers using DNS lookup (default: 1 unless -connect) - + Force safe mode (default: 0) + + + Generate coins (default: 0) Generuoti monetas (numatyta: 0) - How many blocks to check at startup (default: 288, 0 = all) - - How thorough the block verification is (0-4, default: 3) - - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? - Invalid -onion address: '%s' - Not enough file descriptors available. - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server - Siųsti komandą Dogecoin serveriui + Set database cache size in megabytes (%d to %d, default: %d) + - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) - Specify wallet file (within data directory) - - Start Dogecoin Core server - Paleisti Dogecoin serverį + Spend unconfirmed change when sending transactions (default: 1) + - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): + Usage (deprecated, use bitcoin-cli): - Verifying blocks... Tikrinami blokai... - Verifying wallet... Tikrinama piniginė... - Wait for RPC server to start - Wallet %s resides outside data directory %s - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex - Imports blocks from external blk000??.dat file - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Information Informacija - Invalid amount for -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Maksimalus buferis priėmimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Maksimalus buferis siuntimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 1000) - Only accept block chain matching built-in checkpoints (default: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL opcijos (žr.e Bitcoin Wiki for SSL setup instructions) - + Send command to Dogecoin Core + + + Send trace/debug info to console instead of debug.log file Siųsti atsekimo/derinimo info į konsolę vietoj debug.log failo - Set minimum block size in bytes (default: 0) - + 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 transaction failed - Specify connection timeout in milliseconds (default: 5000) Nustatyti sujungimo trukmę milisekundėmis (pagal nutylėjimą: 5000) - + Start Dogecoin Core Daemon + + + System error: Sistemos klaida: - Transaction amount too small - Transaction amounts must be positive - Transaction too large - Use UPnP to map the listening port (default: 0) Bandymas naudoti UPnP struktūra klausymosi prievadui (default: 0) - Use UPnP to map the listening port (default: 1 when listening) Bandymas naudoti UPnP struktūra klausymosi prievadui (default: 1 when listening) - Username for JSON-RPC connections Vartotojo vardas JSON-RPC jungimuisi - Warning - Warning: This version is obsolete, upgrade required! - + Zapping all transactions from wallet... + + + + on startup + + + version versija - wallet.dat corrupt, salvage failed - Password for JSON-RPC connections Slaptažodis JSON-RPC sujungimams - Allow JSON-RPC connections from specified IP address Leisti JSON-RPC tik iš nurodytų IP adresų - Send commands to node running on <ip> (default: 127.0.0.1) Siųsti komandą mazgui dirbančiam <ip> (pagal nutylėjimą: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) - Upgrade wallet to latest format Atnaujinti piniginę į naujausią formatą - Set key pool size to <n> (default: 100) Nustatyti rakto apimties dydį <n> (pagal nutylėjimą: 100) - Rescan the block chain for missing wallet transactions Ieškoti prarastų piniginės sandorių blokų grandinėje - Use OpenSSL (https) for JSON-RPC connections Naudoti OpenSSL (https) jungimuisi JSON-RPC - Server certificate file (default: server.cert) Serverio sertifikato failas (pagal nutylėjimą: server.cert) - Server private key (default: server.pem) Serverio privatus raktas (pagal nutylėjimą: server.pem) - This help message Pagelbos žinutė - Unable to bind to %s on this computer (bind returned error %d, %s) Nepavyko susieti šiame kompiuteryje prievado %s (bind returned error %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Leisti DNS paiešką sujungimui ir mazgo pridėjimui - Loading addresses... Užkraunami adresai... - Error loading wallet.dat: Wallet corrupted wallet.dat pakrovimo klaida, wallet.dat sugadintas - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin wallet.dat pakrovimo klaida, wallet.dat reikalauja naujasnės Dogecoin versijos - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Piniginė turi būti prrašyta: įvykdymui perkraukite Dogecoin - Error loading wallet.dat wallet.dat pakrovimo klaida - Invalid -proxy address: '%s' Neteisingas proxy adresas: '%s' - Unknown network specified in -onlynet: '%s' - Unknown -socks proxy version requested: %i - Cannot resolve -bind address: '%s' - Cannot resolve -externalip address: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Neteisinga suma -paytxfee=<amount>: '%s' - Invalid amount Neteisinga suma - Insufficient funds Nepakanka lėšų - Loading block index... Įkeliamas blokų indeksas... - Add a node to connect to and attempt to keep the connection open Pridėti mazgą prie sujungti su and attempt to keep the connection open - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Nepavyko susieti šiame kompiuteryje prievado %s. Dogecoin tikriausiai jau veikia. - - - Loading wallet... Užkraunama piniginė... - Cannot downgrade wallet - Cannot write default address - Rescanning... Peržiūra - Done loading Įkėlimas baigtas - To use the %s option - Error Klaida - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_lv_LV.ts b/src/qt/locale/bitcoin_lv_LV.ts index 8151f05dd..a25f73a09 100644 --- a/src/qt/locale/bitcoin_lv_LV.ts +++ b/src/qt/locale/bitcoin_lv_LV.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - + Par Dogecoin Core - <b>Dogecoin Core</b> version - + <b>Dogecoin Core</b> versija - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - + Autortiesības - The Dogecoin Core developers + Dogecoin Core izstrādātāji + + + (%1-bit) AddressBookPage - Double-click to edit address or label Adresi vai nosaukumu rediģē ar dubultklikšķi - Create a new address Izveidot jaunu adresi - &New - + &Jauns - Copy the currently selected address to the system clipboard Kopēt iezīmēto adresi uz starpliktuvi - &Copy - + &Kopēt - C&lose - + &Aizvērt - &Copy Address &Kopēt adresi - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - + &Eksportēt - &Delete &Dzēst - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - + &Izvēlēties - Very sending addresses - + Sūtīšanas adreses - Much receiving addresses - + Saņemšanas adreses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label Kopēt &Nosaukumu - &Edit &Rediģēt - Export Address List - + Eksportēt Adrešu Sarakstu - Comma separated file (*.csv) Fails ar komatu kā atdalītāju (*.csv) - Exporting Failed - + Eksportēšana Neizdevās - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Nosaukums - Address Adrese - (no label) (bez nosaukuma) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog Paroles dialogs - Enter passphrase Ierakstiet paroli - New passphrase Jauna parole - Repeat new passphrase Jaunā parole vēlreiz - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Ierakstiet maciņa jauno paroli.<br/>Lūdzu izmantojiet <b>10 vai vairāk nejauši izvēlētas zīmes</b>, vai <b>astoņus un vairāk vārdus</b>. - Encrypt wallet Šifrēt maciņu - This operation needs your wallet passphrase to unlock the wallet. Lai veikto šo darbību, maciņš jāatslēdz ar paroli. - Unlock wallet Atslēgt maciņu - This operation needs your wallet passphrase to decrypt the wallet. Šai darbībai maciņš jāatšifrē ar maciņa paroli. - Decrypt wallet Atšifrēt maciņu - Change passphrase Mainīt paroli - Enter the old and new passphrase to the wallet. Ierakstiet maciņa veco un jauno paroli. - Confirm wallet encryption Apstiprināt maciņa šifrēšanu - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - + Brīdinājums: Caps Lock ir ieslēgts! - - Wallet encrypted Maciņš nošifrēts - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Dogecoin aizvērsies, lai pabeigtu šifrēšanu. Atcerieties, ka maciņa šifrēšana nevar pilnībā novērst dogekoinu zādzību, ko veic datorā ieviesušās kaitīgas programmas. - - - - Wallet encryption failed Maciņa šifrēšana neizdevās - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Maciņa šifrēšana neizdevās programmas kļūdas dēļ. Jūsu maciņš netika šifrēts. - - The supplied passphrases do not match. Ievadītās paroles nav vienādas. - Wallet unlock failed Maciņu atšifrēt neizdevās - - - The passphrase entered for the wallet decryption was incorrect. Maciņa atšifrēšanai ievadītā parole nav pareiza. - Wallet decryption failed Maciņu neizdevās atšifrēt - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... Parakstīt &ziņojumu... - Synchronizing with network... Sinhronizācija ar tīklu... - &Overview &Pārskats - Node - Show general overview of wallet Rādīt vispārēju maciņa pārskatu - &Transactions &Transakcijas - Browse transaction history Skatīt transakciju vēsturi - E&xit &Iziet - Quit application Aizvērt programmu - - Show information about Dogecoin Core + Show information about Dogecoin Parādīt informāciju par Dogecoin - - About &Qt Par &Qt - Show information about Qt Parādīt informāciju par Qt - &Options... &Iespējas - &Encrypt Wallet... Š&ifrēt maciņu... - &Backup Wallet... &Izveidot maciņa rezerves kopiju - &Change Passphrase... &Mainīt paroli - Very &sending addresses... - + &Adrešu sūtīšana... - Much &receiving addresses... - + Adrešu &saņemšana... - Open &URI... - + Atvērt &URI - Importing blocks from disk... - + Importē blokus no diska... - Reindexing blocks on disk... - + Bloku reindeksēšana no diska... - Send coins to a Dogecoin address Nosūtīt dogekoinus uz Dogecoin adresi - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Mainīt Dogecoin konfigurācijas uzstādījumus - Backup wallet to another location Izveidot maciņa rezerves kopiju citur - Change the passphrase used for wallet encryption Mainīt maciņa šifrēšanas paroli - &Debug window &Debug logs - Open debugging and diagnostic console Atvērt atkļūdošanas un diagnostikas konsoli - &Verify message... &Pārbaudīt ziņojumu... - Dogecoin - + Dogecoin - Wallet Maciņš - &Send - + &Sūtīt - &Receive - + Saņe&mt - - &Show / Hide - + &Rādīt / Paslēpt - Show or hide the main Window - Encrypt the private keys that belong to your wallet - + Šifrēt privātās atslēgas kuras pieder tavam maciņam - Sign messages with your Dogecoin addresses to prove you own them - + Parakstīt ziņojumus ar savām Dogecoin adresēm lai pierādītu ka tās pieder tev - Verify messages to ensure they were signed with specified Dogecoin addresses - + Pārbaudīt ziņojumus lai pārliecinātos, ka tie tika parakstīti ar norādītajām Dogecoin adresēm - &File &Fails - &Settings &Uzstādījumi - &Help &Palīdzība - Tabs toolbar Ciļņu rīkjosla - - [testnet] [testnet] - Dogecoin Core + Dogecoin Core + + + Request payments (generates QR codes and bitcoin: URIs) - - Request payments (generates QR codes and dogecoin: URIs) - - - - - &About Dogecoin Core - + Par &Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request - + Open a bitcoin: URI or payment request + Atvērt bitcoin URI vai maksājuma pieprasījumu - &Command-line options + &Komandrindas iespējas + + + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options - - - - - Dogecoin client Dogecoin klients - %n active connection(s) to Dogecoin network %n aktīvu savienojumu ar Dogecoin tīklu%n aktīvs savienojums ar Dogecoin tīklu%n aktīvu savienojumu as Dogecoin tīklu - No block source available... - + Nav pieejams neviens bloku avots... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - + Apstrādāti %1 bloki no transakciju vēstures. - %n hour(s) - + %n stundas%n stunda%n stundas - %n day(s) - + %n dienas%n diena%n dienas - %n week(s) - + %n nedēļas%n nedēļa%n nedēļas + + + %1 and %2 + %1 un %2 + + + %n year(s) + %n gadi%n gads%n gadi - %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - + Transakcijas pēc šī vel nebūs redzamas - Error Kļūda - Warning Brīdinājums - Information - + Informācija - Up to date Sinhronizēts - Catching up... Sinhronizējos... - Sent transaction Transakcija nosūtīta - Incoming transaction Ienākoša transakcija - Date: %1 Amount: %2 Type: %3 @@ -675,25 +547,21 @@ 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>locked</b> Maciņš ir <b>šifrēts</b> un pašlaik <b>slēgts</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert Tīkla brīdinājums @@ -701,359 +569,285 @@ Adrese: %4 CoinControlDialog - Coin Control Address Selection - + Dogecoin Kontroles Adrešu Atlase - Quantity: - + Daudzums: - Bytes: - + Baiti: - Amount: Daudzums: - Priority: - + Prioritāte: - Fee: - + Maksa: - Low Output: - After Fee: - + Pēc Maksas: - Change: - + Atlikums: - (un)select all - Tree mode - + Koka režīms - List mode - + Saraksta režīms - Amount Daudzums - Address Adrese - Date Datums - Confirmations - + Apstiprinājumi - Confirmed Apstiprināts - Priority - + Prioritāte - Copy address Kopēt adresi - Copy label Kopēt nosaukumu - - Copy amount Kopēt daudzumu - Copy transaction ID - + Kopēt transakcijas ID - Lock unspent - Unlock unspent - Copy quantity - + Kopēt daudzumu - Copy fee - + Kopēt maksu - Copy after fee - + Kopēt pēc maksas - Copy bytes - + Kopēt baitus - Copy priority - + Kopēt prioritāti - Copy low output - Copy change - + Kopēt atlikumu - highest - + augstākais - higher - + augstāks - high - + augsts - medium-high - + vidēji-augsts - medium - + vidējs - low-medium - + zemi-vidējs - low - + zems - lower - + zemāks - lowest - + zemākais - (%1 locked) - none - + neviens - Dust - yes - + - no - + - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (bez nosaukuma) - change from %1 (%2) - + atlikums no %1 (%2) - (change) - + (atlikums) EditAddressDialog - Edit Address Mainīt adrese - &Label &Nosaukums - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Adrese - New receiving address Jauna saņemšanas adrese - New sending address Jauna nosūtīšanas adrese - Edit receiving address Mainīt saņemšanas adresi - Edit sending address Mainīt nosūtīšanas adresi - The entered address "%1" is already in the address book. Nupat ierakstītā adrese "%1" jau atrodas adrešu grāmatā. - The entered address "%1" is not a valid Dogecoin address. Ierakstītā adrese "%1" nav derīga Dogecoin adrese. - Could not unlock wallet. Nav iespējams atslēgt maciņu. - New key generation failed. Neizdevās ģenerēt jaunu atslēgu. @@ -1061,27 +855,22 @@ Adrese: %4 FreespaceChecker - A new data directory will be created. - name - + vārds - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1089,52 +878,46 @@ Adrese: %4 HelpMessageDialog - Dogecoin Core - Command-line options - + Dogecoin Core - Komandrindas iespējas - Dogecoin Core - + Dogecoin Core - version versija - Usage: Lietojums: - command-line options komandrindas izvēles - UI options Lietotāja interfeisa izvēlnes - Set language, for example "de_DE" (default: system locale) Uzstādiet valodu, piemēram "de_DE" (pēc noklusēšanas: sistēmas lokāle) - Start minimized Sākt minimizētu - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Uzsākot, parādīt programmas informācijas logu (pēc noklusēšanas: 1) - Choose data directory on startup (default: 0) @@ -1142,329 +925,276 @@ Adrese: %4 Intro - Welcome - + Sveiciens - Welcome to Dogecoin Core. - + Sveicināts Dogecoin Core - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - + Dogecoin - Error: Specified data directory "%1" can not be created. - Error - + Kļūda - GB of free space available - + GB ar brīvo vietu pieejams - (of %1GB needed) - + (no %1GB nepieciešams) OpenURIDialog - Open URI - + Atvērt URI - Open payment request from URI or file - + Atvērt maksājuma pieprasījumu no URI vai datnes - URI: - + URI: - Select payment request file - + Izvēlies maksājuma pieprasījuma datni - Select payment request file to open - + Izvēlies maksājuma pieprasījuma datni lai atvēru OptionsDialog - Options Iespējas - &Main &Galvenais - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee &Maksāt par transakciju - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Automātiski sākt Dogecoin pēc pieteikšanās sistēmā. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Sākt Dogecoin reizē ar sistēmu - Size of &database cache - - Set database cache size in megabytes (default: 25) - Uzstādiet datu bāzes bufera izmēru megabaitos (pēc noklusēšanas: 25) - - - MB - + MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network &Tīkls - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + &Maciņš + + + Expert + Eksperts + + + Enable coin &control features + Ieslēgt bitcoin &kontroles funkcijas + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + &Tērēt neapstiprinātu atlikumu + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Uz rūtera automātiski atvērt Dogecoin klienta portu. Tas strādā tikai tad, ja rūteris atbalsta UPnP un tas ir ieslēgts. - Map port using &UPnP Kartēt portu, izmantojot &UPnP - Proxy &IP: Proxy &IP: - &Port: &Ports: - Port of the proxy (e.g. 9050) Proxy ports (piem. 9050) - SOCKS &Version: SOCKS &Versija: - SOCKS version of the proxy (e.g. 5) proxy SOCKS versija (piem. 5) - &Window &Logs - Show only a tray icon after minimizing the window. Pēc loga minimizācijas rādīt tikai ikonu sistēmas teknē. - &Minimize to the tray instead of the taskbar &Minimizēt uz sistēmas tekni, nevis rīkjoslu - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Logu aizverot, minimizēt, nevis beigt darbu. Kad šī izvēlne iespējota, programma aizvērsies tikai pēc Beigt komandas izvēlnē. - M&inimize on close M&inimizēt aizverot - &Display &Izskats - User Interface &language: Lietotāja interfeiss un &valoda: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Šeit var iestatīt lietotāja valodu. Iestatījums aktivizēsies pēc Dogecoin pārstartēšanas. - &Unit to show amounts in: &Vienības, kurās attēlot daudzumus: - Choose the default subdivision unit to show in the interface and when sending coins. Izvēlēties dalījuma vienību pēc noklusēšanas, ko izmantot interfeisā un nosūtot dogekoinus. - Whether to show Dogecoin addresses in the transaction list or not. Rādīt vai nē Dogecoin adreses transakciju sarakstā. - &Display addresses in transaction list &Attēlot adreses transakciju sarakstā - Whether to show coin control features or not. - + Vai rādīt Dogecoin kontroles funkcijas vai nē. - - Display coin &control features (experts only) - - - - &OK &OK - &Cancel &Atcelt - default pēc noklusēšanas - none - + neviens - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. Norādītā proxy adrese nav derīga. @@ -1472,69 +1202,54 @@ Adrese: %4 OverviewPage - Form Forma - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Attēlotā informācija var būt novecojusi. Jūsu maciņš pēc savienojuma izveides automātiski sinhronizējas ar Dogecoin tīklu, taču šis process vēl nav beidzies. - - Unconfirmed: - Neapstiprinātas: - - - Wallet Maciņš - - Confirmed: - + Available: + Pieejams: - Your current spendable balance + Tava pašreizējā tērējamā bilance + + + Pending: - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - + Nenobriedušu: - Mined balance that has not yet matured - Total: - + Kopā: - Your current total balance - + Jūsu kopējā tekošā bilance - <b>Recent transactions</b> <b>Pēdējās transakcijas</b> - - out of sync nav sinhronizēts @@ -1542,93 +1257,70 @@ Adrese: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1636,390 +1328,330 @@ Adrese: %4 QObject - - Dogecoin - + Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Ierakstiet Dogecoin adresi (piem. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - + &Saglabāt Attēlu... - &Copy Image - + &Kopēt Attēlu - Save QR Code Saglabāt QR kodu - PNG Image (*.png) - + PNG Attēls (*.png) RPCConsole - Client name Klienta vārds - - - - - - - - - - - N/A N/A - Client version Klienta versija - &Information &Informācija - Debug window - General - Using OpenSSL version - + Izmantotā OpenSSL versija - Startup time Sākuma laiks - Network Tīkls - Name - + Vārds - Number of connections Savienojumu skaits - Block chain Bloku virkne - Current number of blocks Pašreizējais bloku skaits - Estimated total blocks Bloku skaita novērtējums - Last block time Pēdējā bloka laiks - &Open &Atvērt - &Console &Konsole - &Network Traffic - + &Tīkla Satiksme - &Clear - + &Notīrīt - Totals - + Kopsummas - In: - Out: - Build date Kompilācijas datums - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console Notīrīt konsoli - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Laipni lūgti Dogecoin RPC konsolē. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Izmantojiet bultiņas uz augšu un leju, lai pārvietotos pa vēsturi, un <b>Ctrl-L</b> ekrāna notīrīšanai. - Type <b>help</b> for an overview of available commands. Ierakstiet <b>help</b> lai iegūtu pieejamo komandu sarakstu. - %1 B - + %1 B - %1 KB - + %1 KB - %1 MB - + %1 MB - %1 GB - + %1 GB - %1 m - + %1 m - %1 h - + %1 st - %1 h %2 m - + %1 st %2 m ReceiveCoinsDialog - &Amount: - + &Daudzums: - &Label: &Nosaukums: - &Message: - + &Ziņojums: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - + Notīrīt visus laukus formā. - Clear - + Notīrīt + + + Requested payments history + Pieprasīto maksājumu vēsture - &Request payment - + &Pieprasīt maksājumu - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - + Rādīt - Remove the selected entries from the list - Remove - + Noņemt + + + Copy label + Kopēt nosaukumu + + + Copy message + Kopēt ziņojumu + + + Copy amount + Kopēt daudzumu ReceiveRequestDialog - QR Code - + QR Kods - Copy &URI - + Kopēt &URI - Copy &Address - + Kopēt &Adresi - &Save Image... - + &Saglabāt Attēlu - Request payment to %1 - + Pieprasīt maksājumu uz %1 - Payment information - + Maksājuma informācija - URI - + URI - Address Adrese - Amount Daudzums - Label Nosaukums - Message - + Ziņojums - Resulting URI too long, try to reduce the text for label / message. Rezultāta URI pārāk garš, mēģiniet saīsināt nosaukumu vai ziņojumu. - Error encoding URI into QR Code. Kļūda kodējot URI QR kodā. @@ -2027,285 +1659,225 @@ Adrese: %4 RecentRequestsTableModel - Date Datums - Label Nosaukums - Message - + Ziņojums - Amount Daudzums - (no label) (bez nosaukuma) - (no message) - + (nav ziņojuma) + + + (no amount) + (nav summas) SendCoinsDialog - - - Send Coins Sūtīt dogekoinus - Coin Control Features - + Dogecoin Kontroles Funkcijas - Inputs... - automatically selected - Insufficient funds! - Quantity: - + Daudzums: - Bytes: - + Baiti: - Amount: Daudzums: - Priority: - + Prioritāte: - Fee: - + Maksa: - Low Output: - After Fee: - + Pēc Maksas: - Change: - + Atlikums: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - + Pielāgota atlikuma adrese - Send to multiple recipients at once Sūtīt vairākiem saņēmējiem uzreiz - Add &Recipient - + &Pievienot Saņēmēju - Clear all fields of the form. - + Notīrīt visus laukus formā. - Clear &All &Notīrīt visu - Balance: Bilance: - Confirm the send action Apstiprināt nosūtīšanu - S&end - + &Sūtīt - Confirm send coins Apstiprināt dogekoinu sūtīšanu - - - - %1 to %2 - + %1 līdz %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Ierakstiet Dogecoin adresi (piem. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - + Kopēt daudzumu - Copy amount Kopēt daudzumu - Copy fee - + Kopēt maksu - Copy after fee - + Kopēt pēc maksas - Copy bytes - + Kopēt baitus - Copy priority - + Kopēt prioritāti - Copy low output - Copy change - + Kopēt atlikumu - Total Amount %1 (= %2) - + Kopējā Summa %1 (= %2) - or - + vai - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. Nosūtāmajai summai jābūt lielākai par 0. - The amount exceeds your balance. Daudzums pārsniedz pieejamo. - The total exceeds your balance when the %1 transaction fee is included. Kopsumma pārsniedz pieejamo, ja pieskaitīta %1 transakcijas maksa. - Duplicate address found, can only send to each address once per send operation. Atrastas divas vienādas adreses, vienā nosūtīšanas reizē uz katru adresi var sūtīt tikai vienreiz. - Transaction creation failed! - + Transakcijas izveidošana neizdevās! - 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. - Warning: Invalid Dogecoin address - (no label) (bez nosaukuma) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - + pievienots kā transakcijas maksa - Payment request expired - + Maksājuma pieprasījums ir novecojis - Invalid payment address %1 @@ -2313,116 +1885,85 @@ Adrese: %4 SendCoinsEntry - - - A&mount: Apjo&ms - Pay &To: &Saņēmējs: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - + Adrese lai sūtītu maksājumu uz (piem. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Lai pievienotu adresi adrešu grāmatai, tai jādod nosaukums - &Label: &Nosaukums: - Choose previously used address - This is a normal payment. - + Šis ir parasts maksājums. - Alt+A Alt+A - Paste address from clipboard ielīmēt adresi no starpliktuves - Alt+P Alt+P - - - Remove this entry - + Noņem šo ierakstu - Message: Ziņojums: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - + Šis ir pārbaudīts maksājuma pieprasījums. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - + Šis ir nepārbaudīts maksājuma pieprasījums. - - Pay To: - + Maksāt: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Ierakstiet Dogecoin adresi (piem. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - + Dogecoin Core tiek izslēgta... - Do not shut down the computer until this window disappears. @@ -2430,398 +1971,303 @@ Adrese: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - + Paraksti - Parakstīt / Pabaudīt Ziņojumu - &Sign Message - + Parakstīt &Ziņojumu - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard ielīmēt adresi no starpliktuves - Alt+P Alt+P - Enter the message you want to sign here - Signature - + Paraksts - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - + Parakstīt &Ziņojumu - Reset all sign message fields - - Clear &All &Notīrīt visu - &Verify Message - + &Pārbaudīt Ziņojumu - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - + &Pārbaudīt Ziņojumu - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Ierakstiet Dogecoin adresi (piem. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - + Nospied "Parakstīt Ziņojumu" lai ģenerētu parakstu - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - + Neizdevās parakstīt ziņojumu. - Message signed. - + Ziņojums parakstīts. - The signature could not be decoded. - + Paraksts nevarēja tikt dekodēts. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - + Ziņojumu neizdevās pārbaudīt. - Message verified. - + Ziņojums pārbaudīts. SplashScreen - Dogecoin Core - + Dogecoin Core - The Dogecoin Core developers - + Dogecoin Core izstrādātāji - [testnet] - + [testnets] TrafficGraphWidget - KB/s - + KB/s TransactionDesc - Open until %1 Atvērts līdz %1 - - %1/offline + conflicted - + %1/offline + %1/bezsaistē + + %1/unconfirmed %1/neapstiprinātas - %1 confirmations %1 apstiprinājumu - Status - + Status - , broadcast through %n node(s) - Date Datums - Source - + Avots - Generated - - From - + No - - - To - + Uz - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - + Transakcijas maksa - Net amount - + Neto summa - - Message - + Ziņojums - Comment - + Komentārs - Transaction ID - + Transakcijas ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - + Transakcija - Inputs - Amount Daudzums - true - + patiess - false - + nepatiess - , has not been successfully broadcast yet , vēl nav veiksmīgi izziņots - Open for %n more block(s) - unknown nav zināms @@ -2829,12 +2275,10 @@ Adrese: %4 TransactionDescDialog - Transaction details Transakcijas detaļas - This pane shows a detailed description of the transaction Šis panelis parāda transakcijas detaļas @@ -2842,118 +2286,102 @@ Adrese: %4 TransactionTableModel - Date Datums - Type Tips - Address Adrese - Amount Daudzums - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 Atvērts līdz %1 - - Offline (%1 confirmations) - Nav pieslēgts (%1 apstiprinājumu) - - - - Unconfirmed (%1 of %2 confirmations) - Nav apstiprināts (%1 no %2 apstiprinājumu) - - - - Confirmed (%1 confirmations) Apstiprināts (%1 apstiprinājumu) - This block was not received by any other nodes and will probably not be accepted! Neviens cits mezgls šo bloku nav saņēmis un droši vien netiks akceptēts! - Generated but not accepted Ģenerēts, taču nav akceptēts - + Offline + Bezsaitē + + + Unconfirmed + Neapstiprināts + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Saņemts ar - Received from Saņemts no - Sent to Nosūtīts - Payment to yourself Maksājums sev - Mined Atrasts - (n/a) (nav pieejams) - Transaction status. Hover over this field to show number of confirmations. Transakcijas statuss. Turiet peli virs šī lauka, lai redzētu apstiprinājumu skaitu. - Date and time that the transaction was received. Transakcijas saņemšanas datums un laiks. - Type of transaction. Transakcijas tips. - Destination address of transaction. Transakcijas mērķa adrese. - Amount removed from or added to balance. Bilancei pievienotais vai atņemtais daudzums. @@ -2961,349 +2389,282 @@ Adrese: %4 TransactionView - - All Visi - Today Šodien - This week Šonedēļ - This month Šomēnes - Last month Pēdējais mēnesis - This year Šogad - Range... Diapazons... - Received with Saņemts ar - Sent to Nosūtīts - To yourself Sev - Mined Atrasts - Other Cits - Enter address or label to search Ierakstiet meklējamo nosaukumu vai adresi - Min amount Minimālais daudzums - Copy address Kopēt adresi - Copy label Kopēt nosaukumu - Copy amount Kopēt daudzumu - Copy transaction ID - + Kopēt transakcijas ID - Edit label Mainīt nosaukumu - Show transaction details Rādīt transakcijas detaļas - Export Transaction History - + Eksportēt Transakciju Vēsturi - Exporting Failed - + Eksportēšana Neizdevās - There was an error trying to save the transaction history to %1. - Exporting Successful - + Eksportēšana Veiksmīga - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Fails ar komatu kā atdalītāju (*.csv) - Confirmed Apstiprināts - Date Datums - Type Tips - Label Nosaukums - Address Adrese - Amount Daudzums - ID ID - Range: Diapazons: - to - + uz WalletFrame - No wallet has been loaded. - + Neviens maciņš nav ielādēts. WalletModel - Send Coins - + Sūtīt Dogekoinus WalletView - &Export - + &Eksportēt... - Export the data in the current tab to a file - Backup Wallet Izveidot maciņa rezerves kopiju - Wallet Data (*.dat) Maciņa dati (*.dat) - Backup Failed Rezerves kopēšana neizdevās - There was an error trying to save the wallet data to %1. - + Notikusi kļūme mēģinot saglabāt maciņa datus uz %1. - The wallet data was successfully saved to %1. - + Maciņa dati tika veiksmīgi saglabāti uz %1. - Backup Successful - + Dublēšana Veiksmīga - dogecoin-core + bitcoin-core - Usage: Lietojums: - List commands Komandu saraksts - Get help for a command Palīdzība par komandu - Options: Iespējas: - - Specify configuration file (default: dogecoin.conf) - Norādiet konfigurācijas failu (pēc noklusēšanas: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Norādiet konfigurācijas failu (pēc noklusēšanas: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Norādiet pid failu (pēc noklusēšanas: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Norādiet pid failu (pēc noklusēšanas: bitcoind.pid) - Specify data directory Norādiet datu direktoriju - - Set database cache size in megabytes (default: 25) - Uzstādiet datu bāzes bufera izmēru megabaitos (pēc noklusēšanas: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Gaidīt savienojumus portā <port> (pēc noklusēšanas: 8333 vai testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Gaidīt savienojumus portā <port> (pēc noklusēšanas: 22556 vai testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Uzturēt līdz <n> savienojumiem ar citiem mezgliem(pēc noklusēšanas: 125) - Connect to a node to retrieve peer addresses, and disconnect Pievienoties mezglam, lai iegūtu citu mezglu adreses, un atvienoties - Specify your own public address Norādiet savu publisko adresi - Threshold for disconnecting misbehaving peers (default: 100) Slieksnis pārkāpējmezglu atvienošanai (pēc noklusēšanas: 100) - 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) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands Pieņemt komandrindas un JSON-RPC komandas - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Darbināt fonā kā servisu un pieņemt komandas - Use the test network Izmantot testa tīklu - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3314,707 +2675,686 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + + + 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 Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin 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. - - <category> can be: + (default: 1) - + (default: wallet.dat) + + + + <category> can be: + <category> var būt: + + Attempt to recover private keys from a corrupt wallet.dat - Dogecoin Core Daemon - + Dogecoin Core Process - - Dogecoin Core RPC client version - - - - Block creation options: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + Connect only to the specified node(s) - Connect through SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: - Corrupted block database detected - + 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? - Error initializing block database - Error initializing wallet database environment %s! - Error loading block database - Error opening block database - Error: Disk space is low! - Error: Wallet locked, unable to create transaction! - 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 + Pievienot maksu par kB tām transakcijām kuras tu sūti + + + Fees smaller than this are considered zero fee (for relaying) (default: - Find peers using DNS lookup (default: 1 unless -connect) - + Force safe mode (default: 0) + + + Generate coins (default: 0) - How many blocks to check at startup (default: 288, 0 = all) - - How thorough the block verification is (0-4, default: 3) - - - - If <category> is not supplied, output all debugging information. + Ja <category> nav norādīta, izvadīt visu atkļūdošanas informāciju. + + + Importing... - Incorrect or no genesis block found. Wrong datadir for network? - Invalid -onion address: '%s' - Not enough file descriptors available. - Prepend debug output with timestamp (default: 1) - RPC client options: - + RPC klienta iespējas: - Rebuild block chain index from current blk000??.dat files - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server + Set database cache size in megabytes (%d to %d, default: %d) - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) - Specify wallet file (within data directory) - - Start Dogecoin Core server + Spend unconfirmed change when sending transactions (default: 1) - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): + Usage (deprecated, use bitcoin-cli): - Verifying blocks... - + Pārbauda blokus... - Verifying wallet... - + Pārbauda maciņu... - Wait for RPC server to start - Wallet %s resides outside data directory %s - Wallet options: - + Maciņa iespējas: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex - Imports blocks from external blk000??.dat file - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Information - + Informācija - Invalid amount for -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - Only accept block chain matching built-in checkpoints (default: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Send command to Dogecoin Core + + + Send trace/debug info to console instead of debug.log file Debug/trace informāciju izvadīt konsolē, nevis debug.log failā - Set minimum block size in bytes (default: 0) - + 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 transaction failed - Specify connection timeout in milliseconds (default: 5000) - + Start Dogecoin Core Daemon + + + System error: - Transaction amount too small - Transaction amounts must be positive - Transaction too large - + Transakcija ir pārāk liela - Use UPnP to map the listening port (default: 0) - Use UPnP to map the listening port (default: 1 when listening) - Username for JSON-RPC connections JSON-RPC savienojumu lietotājvārds - Warning Brīdinājums - Warning: This version is obsolete, upgrade required! - + Zapping all transactions from wallet... + + + + on startup + + + version versija - wallet.dat corrupt, salvage failed - Password for JSON-RPC connections JSON-RPC savienojumu parole - Allow JSON-RPC connections from specified IP address Atļaut JSON-RPC savienojumus no norādītās IP adreses - 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) - 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) - Upgrade wallet to latest format Atjaunot maciņa formātu uz jaunāko - Set key pool size to <n> (default: 100) Uzstādīt atslēgu bufera izmēru uz <n> (pēc noklusēšanas: 100) - Rescan the block chain for missing wallet transactions Atkārtoti skanēt bloku virkni, meklējot trūkstošās maciņa transakcijas - Use OpenSSL (https) for JSON-RPC connections JSON-RPC savienojumiem izmantot OpenSSL (https) - 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) - This help message Šis palīdzības paziņojums - Unable to bind to %s on this computer (bind returned error %d, %s) Nevar pievienoties pie %s šajā datorā (pievienošanās atgrieza kļūdu %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Atļaut DNS uzmeklēšanu priekš -addnode, -seednode un -connect - Loading addresses... Ielādē adreses... - Error loading wallet.dat: Wallet corrupted Nevar ielādēt wallet.dat: maciņš bojāts - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Nevar ielādēt wallet.dat: maciņa atvēršanai nepieciešama jaunāka Dogecoin versija - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Bija nepieciešams pārstartēt maciņu: pabeigšanai pārstartējiet Dogecoin - Error loading wallet.dat Kļūda ielādējot wallet.dat - Invalid -proxy address: '%s' Nederīga -proxy adrese: '%s' - Unknown network specified in -onlynet: '%s' -onlynet komandā norādīts nepazīstams tīkls: '%s' - Unknown -socks proxy version requested: %i Pieprasīta nezināma -socks proxy versija: %i - Cannot resolve -bind address: '%s' Nevar uzmeklēt -bind adresi: '%s' - Cannot resolve -externalip address: '%s' Nevar atrisināt -externalip adresi: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Nederīgs daudzums priekš -paytxfree=<amount>: '%s' - Invalid amount Nederīgs daudzums - Insufficient funds Nepietiek dogekoinu - Loading block index... Ielādē bloku indeksu... - Add a node to connect to and attempt to keep the connection open Pievienot mezglu, kam pievienoties un turēt savienojumu atvērtu - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Nevar pievienoties %s uz šī datora. Dogecoin droši vien jau darbojas. - - - Loading wallet... Ielādē maciņu... - Cannot downgrade wallet Nevar maciņa formātu padarīt vecāku - Cannot write default address Nevar ierakstīt adresi pēc noklusēšanas - Rescanning... Skanēju no jauna... - Done loading Ielāde pabeigta - To use the %s option Izmantot opciju %s - Error Kļūda - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4023,4 +3363,4 @@ 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. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_ms_MY.ts b/src/qt/locale/bitcoin_ms_MY.ts index 7191c53be..be6017f8f 100644 --- a/src/qt/locale/bitcoin_ms_MY.ts +++ b/src/qt/locale/bitcoin_ms_MY.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Klik dua kali untuk mengubah alamat atau label - Create a new address Cipta alamat baru - &New - Copy the currently selected address to the system clipboard Salin alamat terpilih ke dalam sistem papan klip - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete &Padam - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) Fail yang dipisahkan dengan koma - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label - Address Alamat - (no label) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase - New passphrase - Repeat new passphrase - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Encrypt wallet - This operation needs your wallet passphrase to unlock the wallet. - Unlock wallet - This operation needs your wallet passphrase to decrypt the wallet. - Decrypt wallet - Change passphrase - Enter the old and new passphrase to the wallet. - Confirm wallet encryption - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - The supplied passphrases do not match. - Wallet unlock failed - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... - &Overview - Node - Show general overview of wallet - &Transactions - Browse transaction history - E&xit - Quit application - - Show information about Dogecoin Core + Show information about Dogecoin - - About &Qt - Show information about Qt - &Options... Pilihan - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File - &Settings - &Help - Tabs toolbar - - [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address Alamat - Date - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address Alamat - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address Alamat - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,41 +1324,45 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1674,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1867,155 +1517,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + + + + Copy message + + + + Copy amount + + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address Alamat - Amount - Label - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2023,285 +1655,225 @@ Address: %4 RecentRequestsTableModel - Date - Label - Message - Amount - (no label) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: Baki - Confirm the send action - S&end - Confirm send coins - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2309,116 +1881,85 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard - Alt+P - - - Remove this entry - Message: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2426,192 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard - Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2619,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2637,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2645,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2825,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2838,118 +2282,102 @@ Address: %4 TransactionTableModel - Date - Type - Address Alamat - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2957,178 +2385,142 @@ Address: %4 TransactionView - - All - Today - This week - This month - Last month - This year - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Fail yang dipisahkan dengan koma - Confirmed - Date - Type - Label - Address Alamat - Amount - ID - Range: - to @@ -3136,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3144,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3152,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3310,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitcoin_nb.ts index 0c3637f6e..fb5cde980 100644 --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitcoin_nb.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core Om Dogecoin Core - <b>Dogecoin Core</b> version <b>Dogecoin Core</b> versjon - This is experimental software. @@ -24,156 +21,131 @@ Dette er eksperimentell programvare. Distribuert under MIT/X11 programvarelisensen, se medfølgende fil COPYING eller http://www.opensource.org/licenses/mit-license.php. -Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i OpenSSL Toolkit (http://www.openssl.org/) og kryptografisk programvare skrevet av Eric Young (eay@cryptsoft.com) og UPnP programvare skrevet av Thomas Bernard. +Dette produktet inneholder programvare utviklet av OpenSSL Project for bruk i OpenSSL Toolkit (http://www.openssl.org/), kryptografisk programvare skrevet av Eric Young (eay@cryptsoft.com) og UPnP programvare skrevet av Thomas Bernard. - Copyright Copyright - The Dogecoin Core developers Dogecoin Core utviklerne + + (%1-bit) + (%1-bit) + AddressBookPage - Double-click to edit address or label - Dobbeltklikk for å redigere adresse eller merkelapp + Dobbelklikk for å redigere adresse eller merkelapp - Create a new address Lag en ny adresse - &New &Ny - Copy the currently selected address to the system clipboard Kopier den valgte adressen til systemets utklippstavle - &Copy &Kopier - C&lose &Lukk - &Copy Address &Kopier Adresse - Delete the currently selected address from the list Slett den valgte adressen fra listen. - Export the data in the current tab to a file Eksporter data fra nåværende fane til fil - &Export - &Eksporter... + &Eksporter - &Delete &Slett - Choose the address to send coins to Velg adressen å sende mynter til - Choose the address to receive coins with Velg adressen til å motta mynter med - C&hoose &Velg - Very sending addresses Utsendingsadresser - Much receiving addresses Mottaksadresser - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Dette er dine Dogecoin adresser for å sende betalinger. Alltid sjekk mengden og mottaker adresse før sending av mynter. + Dette er dine Dogecoin-adresser for å sende betalinger. Alltid sjekk beløp og mottakeradresse før sending av mynter. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Dette er dine Dogecoin adresser for å sende betalinger. Det er anbefalt å bruk en ny mottaksadresse for hver transaksjon. + Dette er dine Dogecoin-adresser for å sende betalinger. Det er anbefalt å bruk en ny mottaksadresse for hver transaksjon. - Copy &Label Kopier &Merkelapp - &Edit &Rediger - Export Address List Ekporter Adresseliste - Comma separated file (*.csv) Kommaseparert fil (*.csv) - Exporting Failed Ekport Feilet - There was an error trying to save the address list to %1. - + En feil oppstod ved lagring av adresselisten til %1. AddressTableModel - Label Merkelapp - Address Adresse - (no label) (ingen merkelapp) @@ -181,140 +153,106 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i AskPassphraseDialog - Passphrase Dialog Dialog for Adgangsfrase - Enter passphrase Angi adgangsfrase - New passphrase Ny adgangsfrase - Repeat new passphrase Gjenta ny adgangsfrase - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Skriv inn den nye adgangsfrasen for lommeboken.<br/>Vennligst bruk en adgangsfrase med <b>10 eller flere tilfeldige tegn</b>, eller <b>åtte eller flere ord</b>. - Encrypt wallet Krypter lommebok - This operation needs your wallet passphrase to unlock the wallet. Denne operasjonen krever adgangsfrasen til lommeboken for å låse den opp. - Unlock wallet Lås opp lommebok - This operation needs your wallet passphrase to decrypt the wallet. Denne operasjonen krever adgangsfrasen til lommeboken for å dekryptere den. - Decrypt wallet Dekrypter lommebok - Change passphrase Endre adgangsfrase - Enter the old and new passphrase to the wallet. Skriv inn gammel og ny adgangsfrase for lommeboken. - Confirm wallet encryption Bekreft kryptering av lommebok - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Advarsel: Hvis du krypterer lommeboken og mister adgangsfrasen, så vil du <b>MISTE ALLE DINE DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Advarsel: Hvis du krypterer lommeboken og mister adgangsfrasen, så vil du <b>MISTE ALLE DINE DogecoinS</b>! - Are you sure you wish to encrypt your wallet? Er du sikker på at du vil kryptere lommeboken? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - VIKTIG: Tidligere sikkerhetskopier av din lommebok-fil, bør erstattes med den nylig genererte, krypterte filen, da de blir ugyldiggjort av sikkerhetshensyn så snart du begynner å bruke den nye krypterte lommeboken. + VIKTIG: Tidligere sikkerhetskopier av din lommebokfil bør erstattes med den nylig genererte og krypterte filen, da de blir ugyldiggjort av sikkerhetshensyn så snart du begynner å bruke den nye krypterte lommeboken. - - Warning: The Caps Lock key is on! - Advarsel: Caps Lock er på ! + Advarsel: Caps Lock er på! - - Wallet encrypted Lommebok kryptert - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine dogecoins fra å bli stjålet om skadevare infiserer datamaskinen. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine bitcoins fra å bli stjålet om skadevare infiserer datamaskinen. - - - - Wallet encryption failed Kryptering av lommebok feilet - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Kryptering av lommebok feilet på grunn av en intern feil. Din lommebok ble ikke kryptert. - - The supplied passphrases do not match. De angitte adgangsfrasene er ulike. - Wallet unlock failed Opplåsing av lommebok feilet - - - The passphrase entered for the wallet decryption was incorrect. Adgangsfrasen angitt for dekryptering av lommeboken var feil. - Wallet decryption failed Dekryptering av lommebok feilet - Wallet passphrase was successfully changed. Adgangsfrase for lommebok endret. @@ -322,352 +260,286 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i BitcoinGUI - Sign &message... Signer &melding... - Synchronizing with network... Synkroniserer med nettverk... - &Overview &Oversikt - Node - + Node - Show general overview of wallet Vis generell oversikt over lommeboken - &Transactions &Transaksjoner - Browse transaction history Vis transaksjonshistorikk - E&xit &Avslutt - Quit application Avslutt applikasjonen - - Show information about Dogecoin Core + Show information about Dogecoin Vis informasjon om Dogecoin - - About &Qt Om &Qt - Show information about Qt Vis informasjon om Qt - &Options... &Innstillinger... - &Encrypt Wallet... &Krypter Lommebok... - &Backup Wallet... Lag &Sikkerhetskopi av Lommebok... - &Change Passphrase... &Endre Adgangsfrase... - Very &sending addresses... - + &Utsendingsadresser... - Much &receiving addresses... - + &Mottaksadresser... - Open &URI... - Åpne %URI... + Åpne &URI... - Importing blocks from disk... Importere blokker... - Reindexing blocks on disk... - Re-indekserer blokker på disk... + Reindekserer blokker på harddisk... - Send coins to a Dogecoin address Send til en Dogecoin-adresse - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Endre oppsett for Dogecoin - Backup wallet to another location - Sikkerhetskopiér lommebok til annet sted + Sikkerhetskopier lommebok til annet sted - Change the passphrase used for wallet encryption Endre adgangsfrasen brukt for kryptering av lommebok - &Debug window &Feilsøkingsvindu - Open debugging and diagnostic console Åpne konsoll for feilsøk og diagnostikk - &Verify message... &Verifiser melding... - Dogecoin Dogecoin - Wallet Lommebok - &Send &Send - &Receive &Motta - - &Show / Hide - &Gjem / vis + &Vis / Skjul - Show or hide the main Window Vis eller skjul hovedvinduet - Encrypt the private keys that belong to your wallet Krypter de private nøklene som tilhører lommeboken din - Sign messages with your Dogecoin addresses to prove you own them - Signér en melding for å bevise at du eier denne adressen + Signer en melding med Dogecoin-adressene dine for å bevise at du eier dem - Verify messages to ensure they were signed with specified Dogecoin addresses Bekreft meldinger for å være sikker på at de ble signert av en angitt Dogecoin-adresse - &File &Fil - &Settings &Innstillinger - &Help &Hjelp - Tabs toolbar Verktøylinje for faner - - [testnet] [testnett] - Dogecoin Core - Dogecoin Kjerne + Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) - Forespør betalinger (genererer QR koder og dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) + Forespør betalinger (genererer QR-koder og bitcoin: URIer) - - &About Dogecoin Core &Om Dogecoin Core - Show the list of used sending addresses and labels Vis listen av brukte utsendingsadresser og merkelapper - Show the list of used receiving addresses and labels Vis listen over bruke mottaksadresser og merkelapper - - Open a dogecoin: URI or payment request - Åpne en dogecoin: URI eller betalingsetterspørring + Open a bitcoin: URI or payment request + Åpne en Dogecoin: URI eller betalingsetterspørring - &Command-line options - + &Kommandolinjevalg - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options - + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options + Vis Dogecoin Core hjelpemeldingen for å få en liste med mulige kommandolinjevalg - - Dogecoin client - Dogecoinklient + Dogecoin-klienten - %n active connection(s) to Dogecoin network %n aktiv forbindelse til Dogecoin-nettverket%n aktive forbindelser til Dogecoin-nettverket - No block source available... - Ingen blokk-kilde tilgjengelig... + Ingen kilde for blokker tilgjengelig... - Processed %1 of %2 (estimated) blocks of transaction history. Lastet %1 av %2 (estimert) blokker med transaksjonshistorikk. - Processed %1 blocks of transaction history. Lastet %1 blokker med transaksjonshistorikk. - %n hour(s) %n time%n timer - %n day(s) %n dag%n dager - %n week(s) %n uke%n uker - + %1 and %2 + %1 og %2 + + + %n year(s) + %n år%n år + + %1 behind %1 bak - 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 enda. - Error Feil - Warning Advarsel - Information Informasjon - Up to date Ajour - Catching up... Kommer ajour... - Sent transaction Sendt transaksjon - Incoming transaction Innkommende transaksjon - Date: %1 Amount: %2 Type: %3 @@ -680,25 +552,21 @@ Adresse: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Lommeboken er <b>kryptert</b> og for tiden <b>ulåst</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Lommeboken er <b>kryptert</b> og for tiden <b>låst</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. En fatal feil har inntruffet. Det er ikke trygt å fortsette og Dogecoin må derfor avslutte. ClientModel - Network Alert Nettverksvarsel @@ -706,359 +574,285 @@ Adresse: %4 CoinControlDialog - Coin Control Address Selection - Mynt Kontroll Adresse Valg + Myntkontroll Adresse Valg - Quantity: Mengde: - Bytes: Bytes: - Amount: Beløp: - Priority: Prioritet: - Fee: Avgift: - Low Output: Lav Utdata: - After Fee: - Etter Avgift: + Etter Gebyr: - Change: - Endring: + Veksel: - (un)select all - Fjern alt valgt + velg (fjern) alt - Tree mode - Tre modus + Tremodus - List mode - Liste modus + Listemodus - Amount Beløp - Address Adresse - Date Dato - Confirmations Bekreftelser - Confirmed Bekreftet - Priority Prioritet - Copy address Kopier adresse - Copy label Kopier merkelapp - - Copy amount - Kopiér beløp + Kopier beløp - Copy transaction ID Kopier transaksjons-ID - Lock unspent - + Lås ubrukte - Unlock unspent - + Lås opp ubrukte - Copy quantity Kopier mengde - Copy fee - + Kopier gebyr - Copy after fee - + Kopier fra gebyr - Copy bytes - + Kopier bytes - Copy priority - + Kopier prioritet - Copy low output - + Kopier svake utdata - Copy change - + Kopier veksel - highest høyest - higher høyere - high høy - medium-high medium-høy - medium medium - low-medium lav-medium - low lav - lower lavere - lowest lavest - (%1 locked) (%1 låst) - none ingen - Dust Støv - yes ja - no nei - This label turns red, if the transaction size is greater than 1000 bytes. Denne merkelappen blir rød, hvis transaksjonsstørrelsen er større enn 1000 bytes. - - This means a fee of at least %1 per kB is required. - Dette betyr at en avgift på minst %1 per KB er påkrevd. + Dette betyr at et gebyr på minst %1 per KB er påkrevd. - Can vary +/- 1 byte per input. Kan variere +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. Transaksjoner med høyere prioritet har mer sannsynlighet for å bli inkludert i en blokk. - This label turns red, if the priority is smaller than "medium". - + Denne merkelappen blir rød, hvis prioriteten er mindre enn "medium". - This label turns red, if any recipient receives an amount smaller than %1. - Denne merkelappen blir rød, hvis noen mottaker mottar en mengde på mindre enn %1. + Denne merkelappen blir rød, hvis en mottaker mottar en mengde på mindre enn %1. - - This means a fee of at least %1 is required. - Dette betyr at en avgift på minst %1 er påkrevd. + Dette betyr at et gebyr på minst %1 er påkrevd. - Amounts below 0.546 times the minimum relay fee are shown as dust. - Mengder under 0.546 ganger minimum relé avgiften er vist som støv. + Mengder under 0.546 ganger minimum relégebyr er vist som støv. - This label turns red, if the change is smaller than %1. Denne merkelappen blir rød, hvis endringen er mindre enn %1. - - (no label) (ingen merkelapp) - change from %1 (%2) - endring fra %1 (%2) + veksel fra %1 (%2) - (change) - (endring) + (veksel) EditAddressDialog - Edit Address Rediger adresse - &Label &Merkelapp - The label associated with this address list entry Merkelappen koblet til denne adresseliste oppføringen - The address associated with this address list entry. This can only be modified for sending addresses. Adressen til denne oppføringen i adresseboken. Denne kan kun endres for utsendingsadresser. - &Address &Adresse - New receiving address Ny mottaksadresse - New sending address Ny utsendingsadresse - Edit receiving address Rediger mottaksadresse - Edit sending address Rediger utsendingsadresse - The entered address "%1" is already in the address book. Den oppgitte adressen "%1" er allerede i adresseboken. - The entered address "%1" is not a valid Dogecoin address. Den angitte adressed "%1" er ikke en gyldig Dogecoin-adresse. - Could not unlock wallet. Kunne ikke låse opp lommeboken. - New key generation failed. Generering av ny nøkkel feilet. @@ -1066,139 +860,116 @@ Adresse: %4 FreespaceChecker - A new data directory will be created. - En ny data mappe vil bli laget. + En ny datamappe vil bli laget. - name navn - Directory already exists. Add %1 if you intend to create a new directory here. Mappe finnes allerede. Legg til %1 hvis du vil lage en ny mappe her. - Path already exists, and is not a directory. - Sti finnes allerede, og er ikke en mappe. + Snarvei finnes allerede, og er ikke en mappe. - Cannot create data directory here. - Kan ikke laget data mappe her. + Kan ikke lage datamappe her. HelpMessageDialog - Dogecoin Core - Command-line options - + Dogecoin Core - Kommandolinjevalg - Dogecoin Core - Dogecoin Kjerne + Dogecoin Core - version versjon - Usage: Bruk: - command-line options kommandolinjevalg - UI options valg i brukergrensesnitt - Set language, for example "de_DE" (default: system locale) Sett språk, for eksempel "nb_NO" (standardverdi: fra operativsystem) - Start minimized - Start minimert - + Start minimert + + + Set SSL root certificates for payment request (default: -system-) + Sett SSL-rotsertifikat for betalingsforespørsel (standard: -system-) - Show splash screen on startup (default: 1) Vis splashskjerm ved oppstart (standardverdi: 1) - Choose data directory on startup (default: 0) - Velg data mappe ved oppstart (standard: 0) + Velg datamappe ved oppstart (standard: 0) Intro - Welcome Velkommen - Welcome to Dogecoin Core. Velkommen til Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Siden dette er første gang programmet starter, kan du velge hvor Dogecoin Core skal lagre sine data. + Siden dette er første gang programmet starter, kan du nå velge hvor Dogecoin Core skal lagre sine data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Dogecoin Core vil laste ned og lagre en kopi av Dogecoins blokk kjede. Minst %1GB av data vil bli lagret i denne mappen, og det vil vokse over tid. Lommeboken vil også bli lagret i denne mappen. + Dogecoin Core vil laste ned og lagre en kopi av Dogecoin sin blokkjede. Minst %1GB av data vil bli lagret i denne mappen, og det vil vokse over tid. Lommeboken vil også bli lagret i denne mappen. - Use the default data directory - Bruk standard data mappe + Bruk standard datamappe - Use a custom data directory: - Bruk en egendefinert data mappe: + Bruk en egendefinert datamappe: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Feil: Spesifisert data mappe "%1" kan ikke opprettes. + Feil: Spesifisert datamappe "%1" kan ikke opprettes. - Error Feil - GB of free space available - GB av ledig lagringsplass + GB ledig lagringsplass - (of %1GB needed) (av %1GB behøvd) @@ -1206,271 +977,229 @@ Adresse: %4 OpenURIDialog - Open URI - Open URI + Åpne URI - Open payment request from URI or file Åpne betalingsetterspørring fra URI eller fil - URI: URI: - Select payment request file - Velg betalingsetterspørring fil + Velg fil for betalingsetterspørring - Select payment request file to open - Velg betalingsetterspørrings fil å åpne + Velg fil for betalingsetterspørring å åpne OptionsDialog - Options Innstillinger - &Main &Hoved - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. - Pay transaction &fee - Betal transaksjons&gebyr + Betal &transaksjonsgebyr - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Start Dogecoin automatisk etter innlogging. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Start Dogecoin ved systeminnlogging - Size of &database cache - + Størrelse på &database hurtigbuffer - - Set database cache size in megabytes (default: 25) - Sett størrelse på mellomlager for database i megabytes (standardverdi: 25) - - - MB MB - Number of script &verification threads - + Antall script &verifikasjonstråder - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - + Koble til Dogecoin-nettverket gjennom en SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - + &Koble til gjennom SOCKS proxy (standardvalg proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - + IP-adressen til proxyen (f.eks. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - + Aktive kommandolinjevalg som overstyrer valgene ovenfor: - Reset all client options to default. Tilbakestill alle klient valg til standard - &Reset Options &Tilbakestill Instillinger - &Network &Nettverk - + (0 = auto, <0 = leave that many cores free) + (0 = automatisk, <0 = la så mange kjerner være ledig) + + + W&allet + L&ommebok + + + Expert + Ekspert + + + Enable coin &control features + Aktiver &myntkontroll funksjoner + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Hvis du sperrer for bruk av ubekreftet veksel, kan ikke vekselen fra transaksjonen bli brukt før transaksjonen har minimum en bekreftelse. Dette påvirker også hvordan balansen din blir beregnet. + + + &Spend unconfirmed change + &Bruk ubekreftet veksel + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Åpne automatisk Dogecoin klientporten på ruteren. Dette virker kun om din ruter støtter UPnP og dette er påslått. - Map port using &UPnP - Sett opp port vha. &UPnP + Sett opp port ved hjelp av &UPnP - Proxy &IP: Proxy &IP: - &Port: &Port: - Port of the proxy (e.g. 9050) Proxyens port (f.eks. 9050) - SOCKS &Version: SOCKS &Versjon: - SOCKS version of the proxy (e.g. 5) Proxyens SOCKS versjon (f.eks. 5) - &Window &Vindu - Show only a tray icon after minimizing the window. Vis kun ikon i systemkurv etter minimering av vinduet. - &Minimize to the tray instead of the taskbar &Minimer til systemkurv istedenfor oppgavelinjen - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimerer vinduet istedenfor å avslutte applikasjonen når vinduet lukkes. Når dette er slått på avsluttes applikasjonen kun ved å velge avslutt i menyen. - M&inimize on close M&inimer ved lukking - &Display &Visning - User Interface &language: &Språk for brukergrensesnitt - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Språket for brukergrensesnittet kan settes her. Innstillingen trer i kraft ved omstart av Dogecoin. - &Unit to show amounts in: &Enhet for visning av beløper: - Choose the default subdivision unit to show in the interface and when sending coins. - Velg standard delt enhet for visning i grensesnittet og for sending av dogecoins. + Velg standard delt enhet for visning i grensesnittet og for sending av bitcoins. - Whether to show Dogecoin addresses in the transaction list or not. Om Dogecoin-adresser skal vises i transaksjonslisten eller ikke. - &Display addresses in transaction list &Vis adresser i transaksjonslisten - Whether to show coin control features or not. - Skal mynt kontroll funksjoner vises eller ikke. + Skal myntkontroll funksjoner vises eller ikke. - - Display coin &control features (experts only) - Vis mynt &kontroll funksjoner (kun for eksperter) - - - &OK &OK - &Cancel &Avbryt - default standardverdi - none ingen - Confirm options reset - Bekreft innstillings tilbakestilling + Bekreft tilbakestilling av innstillinger - - Client restart required to activate changes. - + Omstart av klienten er nødvendig for å aktivere endringene. - Client will be shutdown, do you want to proceed? - + Klienten vil bli lukket, vil du fortsette? - This change would require a client restart. - + Denne endringen krever omstart av klienten. - The supplied proxy address is invalid. Angitt proxyadresse er ugyldig. @@ -1478,69 +1207,54 @@ Adresse: %4 OverviewPage - Form Skjema - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Informasjonen som vises kan være foreldet. Din lommebok synkroniseres automatisk med Dogecoin-nettverket etter at tilkobling er opprettet, men denne prosessen er ikke ferdig enda. - - Unconfirmed: - Ubekreftet - - - Wallet Lommebok - - Confirmed: - Bekreftet: + Available: + Tilgjengelig: - Your current spendable balance Din nåværende saldo - + Pending: + Under behandling: + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Totalt antall ubekreftede transaksjoner som ikke teller med i saldo - Immature: Umoden: - Mined balance that has not yet matured Minet saldo har ikke modnet enda - Total: Totalt: - Your current total balance Din nåværende saldo - <b>Recent transactions</b> <b>Siste transaksjoner</b> - - out of sync ute av synk @@ -1548,93 +1262,70 @@ Adresse: %4 PaymentServer - - URI handling - URI håndtering + URI-håndtering - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. URI kunne ikke tolkes! Dette kan forårsakes av en ugyldig Dogecoin-adresse eller feil i URI-parametere. - Requested payment amount of %1 is too small (considered dust). Forespurt betalingsmengde på %1 er for liten (betraktet som støv). - - - - - - Payment request error Betalingsforespørsel feil - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler Kan ikke starte Dogecoin: klikk-og-betal håndterer - Net manager warning - + Nettleder advarsel - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - + Din aktive proxy har ikke støtte for SOCKS5, som er påkrevd for betalingsforespørsler via proxy. - Payment request fetch URL is invalid: %1 - + Hentelenke for betalingsforespørsel er ugyldig: %1 - Payment request file handling - + Filhåndtering for betalingsforespørsel - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - + Fil for betalingsforespørsel kan ikke leses eller behandles! Dette kan skyldes en ugyldig fil for betalingsforespørsel. - Unverified payment requests to custom payment scripts are unsupported. - + Uverifiserte betalingsforespørsler til egentilpassede betalingscript er ikke støttet. - Refund from %1 Refundering fra %1 - Error communicating with %1: %2 - Feil ved å kommunisere med %1: %2 + Feil i kommunikasjonen med %1: %2 - Payment request can not be parsed or processed! - + Betalingsforespørsler kan ikke analyseres eller behandles! - Bad response from server %1 Dårlig svar fra server %1 - Payment acknowledged Betaling erkjent - Network request error Nettverksforespørsel feil @@ -1642,234 +1333,192 @@ Adresse: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. - Feil: Spesifisert data mappe "%1" finnes ikke. + Feil: Spesifisert datamappe "%1" finnes ikke. + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Feil: Kan ikke lese konfigurasjonsfil: %1. Bruk kun syntaksen nøkkel=verdi. - Error: Invalid combination of -regtest and -testnet. Feil: Ugyldig kombinasjon av -regtest og -testnet. + + Dogecoin Core did't yet exit safely... + Dogecoin Core har annå ikke avsluttet på en sikker måte... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Skriv inn en Dogecoin-adresse (f.eks. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Lagre bilde... + &Lagre Bilde... - &Copy Image &Kopier Bilde - Save QR Code - Lagre QR Kode + Lagre QR-kode - PNG Image (*.png) - PNG Bilde (*.png) + PNG-bilde (*.png) RPCConsole - Client name Klientnavn - - - - - - - - - - - N/A - - Client version Klientversjon - &Information &Informasjon - Debug window - Debug vindu + Feilsøkingsvindu - General Generelt - Using OpenSSL version Bruker OpenSSL versjon - Startup time Oppstartstidspunkt - Network Nettverk - Name Navn - Number of connections Antall tilkoblinger - Block chain Blokkjeden - Current number of blocks Nåværende antall blokker - Estimated total blocks Estimert totalt antall blokker - Last block time Tidspunkt for siste blokk - &Open &Åpne - &Console &Konsoll - &Network Traffic &Nettverkstrafikk - &Clear &Fjern - Totals Totalt - In: Inn: - Out: Ut: - Build date Byggedato - Debug log file Loggfil for feilsøk - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. - Åpne Dogecoin loggfil for feilsøk fra datamappen. Dette kan ta noen sekunder for store loggfiler. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. + Åpne Dogecoin sin loggfil for feilsøk fra den gjeldende datamappen. Dette kan ta noen sekunder for store loggfiler. - Clear console Tøm konsoll - - Welcome to the Dogecoin Core RPC console. - Velkommen til Dogecoin RPC konsoll. + Welcome to the Dogecoin RPC console. + Velkommen til Dogecoin sin RPC-konsoll. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Bruk opp og ned pil for å navigere historikken, og <b>Ctrl-L</b> for å tømme skjermen. - Type <b>help</b> for an overview of available commands. Skriv <b>help</b> for en oversikt over kommandoer. - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 m - %1 h %1 t - %1 h %2 m %1 t %2 m @@ -1877,441 +1526,363 @@ Adresse: %4 ReceiveCoinsDialog - &Amount: &Beløp: - &Label: &Merkelapp: - &Message: &Melding: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Gjenbruk en av de tidligere brukte mottaksadressene. Gjenbruk av adresser har sikkerhets og personverns utfordringer. Ikke bruk dette med unntak for å gjennopprette en betalingsforespørsel som ble gjort tidligere. + Gjenbruk en av de tidligere brukte mottaksadressene. Gjenbruk av adresser har sikkerhets- og personvernsutfordringer. Ikke bruk dette med unntak for å gjennopprette en betalingsforespørsel som ble gjort tidligere. - R&euse an existing receiving address (not recommended) Gj&enbruk en eksisterende mottaksadresse (ikke anbefalt) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + En valgfri melding å tilknytte betalingsforespørselen, som vil bli vist når forespørselen er åpnet. Meldingen vil ikke bli sendt med betalingen over Dogecoin-nettverket. + + + An optional label to associate with the new receiving address. + En valgfri merkelapp å tilknytte den nye mottakeradressen. - Use this form to request payments. All fields are <b>optional</b>. - + Bruk dette skjemaet til betalingsforespørsler. Alle felt er <b>valgfrie</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - + Et valgfritt beløp å etterspørre. La stå tomt eller null for ikke å etterspørre et spesifikt beløp. - Clear all fields of the form. - Fjern alle felter fra formen. + Fjern alle felter fra skjemaet. - Clear Fjern - + Requested payments history + Etterspurt betalingshistorikk + + &Request payment - Ette&rspør betaling + &Etterspør betaling - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Vis den valgte etterspørringen (gjør det samme som å dobbelklikke en oppføring) + Vis den valgte etterspørringen (gjør det samme som å dobbelklikke på en oppføring) - Show Vis - Remove the selected entries from the list - Fjern den valgte oppføringen fra listen + Fjern de valgte oppføringene fra listen - Remove Fjern + + Copy label + Kopier merkelapp + + + Copy message + Kopier melding + + + Copy amount + Kopier beløp + ReceiveRequestDialog - QR Code - QR Kode + QR-kode - Copy &URI Kopier &URI - Copy &Address Kopier &Adresse - &Save Image... - &Lagre bilde... + &Lagre Bilde... - Request payment to %1 Etterspør betaling til %1 - Payment information Betalingsinformasjon - URI URI - Address Adresse - Amount Beløp - Label Merkelapp - Message Melding - Resulting URI too long, try to reduce the text for label / message. - Resulterende URI for lang, prøv å redusere teksten for merkelapp / melding. + Resultat URI for lang, prøv å redusere teksten for merkelapp / melding. - Error encoding URI into QR Code. - Feil ved koding av URI i QR kode. + Feil ved koding av URI til QR-kode. RecentRequestsTableModel - Date Dato - Label Merkelapp - Message Melding - Amount Beløp - (no label) (ingen merkelapp) - (no message) (ingen melding) + + (no amount) + (intet beløp) + SendCoinsDialog - - - Send Coins Send Dogecoins - Coin Control Features - Mynt Kontroll Funksjoner + Myntkontroll Funksjoner - Inputs... Inndata... - automatically selected automatisk valgte - Insufficient funds! Utilstrekkelige midler! - Quantity: Mengde: - Bytes: Bytes: - Amount: Beløp: - Priority: Prioritet: - Fee: - Avgift: + Gebyr: - Low Output: - Lav Utdata: + Svak Utdata: - After Fee: - Etter Avgift: + Etter Gebyr: - Change: - Endring: + Veksel: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - + Hvis dette er aktivert, men adressen for veksel er tom eller ugyldig, vil veksel bli sendt til en nylig generert adresse. - Custom change address - + Egendefinert adresse for veksel - Send to multiple recipients at once - Send til flere enn én mottaker + Send til flere enn en mottaker - Add &Recipient - &Legg til Mottaker + Legg til &Mottaker - Clear all fields of the form. - Fjern alle felter fra formen. + Fjern alle felter fra skjemaet. - Clear &All Fjern &Alt - Balance: Saldo: - Confirm the send action Bekreft sending - S&end S&end - Confirm send coins - Bekreft sending av dogecoins + Bekreft sending av bitcoins - - - - %1 to %2 %1 til %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Skriv inn en Dogecoin adresse (f.eks. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity Kopier mengde - Copy amount - Kopiér beløp + Kopier beløp - Copy fee - + Kopier gebyr - Copy after fee - + Kopier fra gebyr - Copy bytes - + Kopier bytes - Copy priority - + Kopier prioritet - Copy low output - + Kopier svake utdata - Copy change - + Kopier veksel - Total Amount %1 (= %2) - Total Mengde %1 (= %2) + Totalt Beløp %1 (= %2) - or eller - The recipient address is not valid, please recheck. Adresse for mottaker er ugyldig. - The amount to pay must be larger than 0. - Beløpen som skal betales må være over 0. + Beløpet som skal betales må være over 0. - The amount exceeds your balance. Beløpet overstiger saldo. - The total exceeds your balance when the %1 transaction fee is included. Totalbeløpet overstiger saldo etter at %1 transaksjonsgebyr er lagt til. - Duplicate address found, can only send to each address once per send operation. - Duplikate adresser funnet. Kan bare sende én gang til hver adresse per operasjon. + Doble antall adresser funnet. Kan bare sende en gang til hver adresse per operasjon. - Transaction creation failed! Opprettelse av transaksjon feilet! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Transaksjonen ble avvist. Dette kan skje hvis noen av myntene i lommeboken allerede er brukt, f.eks. hvis du kopierte wallet.dat og mynter ble brukt i kopien uten å bli markert som brukt her. + Transaksjonen ble avvist! Dette kan skje hvis noen av myntene i lommeboken allerede er brukt, som hvis du kopierte wallet.dat og mynter ble brukt i kopien uten å bli markert som brukt her. - Warning: Invalid Dogecoin address - Advarsel: Ugyldig Dogecoin adresse + Advarsel: Ugyldig Dogecoin-adresse - (no label) (ingen merkelapp) - Warning: Unknown change address - + Advarsel: Ukjent adresse for veksel - Are you sure you want to send? Er du sikker på at du vil sende? - added as transaction fee lagt til som transaksjonsgebyr - Payment request expired Betalingsforespørsel utgått - Invalid payment address %1 Ugyldig betalingsadresse %1 @@ -2319,309 +1890,228 @@ Adresse: %4 SendCoinsEntry - - - A&mount: &Beløp: - Pay &To: Betal &Til: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Adressen betalingen skal sendes til (f.eks. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Skriv inn en merkelapp for denne adressen for å legge den til i din adressebok - &Label: &Merkelapp: - Choose previously used address Velg tidligere brukt adresse - This is a normal payment. Dette er en normal betaling. - Alt+A Alt+A - Paste address from clipboard Lim inn adresse fra utklippstavlen - Alt+P Alt+P - - - Remove this entry Fjern denne oppføringen - Message: Melding: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. Dette er en verifisert betalingsetterspørring - Enter a label for this address to add it to the list of used addresses Skriv inn en merkelapp for denne adressen for å legge den til listen av brukte adresser - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + En melding som var tilknyttet bitcoinen: URI vil bli lagret med transaksjonen for din oversikt. Denne meldingen vil ikke bli sendt over Dogecoin-nettverket. + + This is an unverified payment request. Dette er en uverifisert betalingsetterspørring - - Pay To: Betal Til: - - Memo: - - - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Skriv inn en Dogecoin adresse (f.eks. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Memo: ShutdownWindow - Dogecoin Core is shutting down... - + Dogecoin Core lukker... - Do not shut down the computer until this window disappears. - + Slå ikke av datamaskinen før dette vinduet forsvinner. SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Signaturer - Signer / Verifiser en melding + Signaturer - Signer / Verifiser en Melding - &Sign Message - &Signér Melding + &Signer Melding - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Du kan signere meldinger med dine adresser for å bevise at du eier dem. Ikke signér vage meldinger da phishing-angrep kan prøve å lure deg til å signere din identitet over til andre. Signér kun fullt detaljerte utsagn som du er enig i. + Du kan signere meldinger med dine adresser for å bevise at du eier dem. Ikke signer vage meldinger da phishing-angrep kan prøve å lure deg til å signere din identitet over til andre. Signer kun fullt detaljerte utsagn som du er enig i. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Adressen for signering av meldingen (f.eks. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Velg tidligere brukt adresse - - Alt+A Alt+A - Paste address from clipboard Lim inn adresse fra utklippstavlen - Alt+P Alt+P - Enter the message you want to sign here Skriv inn meldingen du vil signere her - Signature Signatur - Copy the current signature to the system clipboard Kopier valgt signatur til utklippstavle - Sign the message to prove you own this Dogecoin address Signer meldingen for å bevise at du eier denne Dogecoin-adressen - Sign &Message - Signér &Melding + Signer &Melding - Reset all sign message fields Tilbakestill alle felter for meldingssignering - - Clear &All Fjern &Alt - &Verify Message &Verifiser Melding - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Angi adresse for signering, melding (vær sikker på at du kopierer linjeskift, mellomrom, tab, etc. helt nøyaktig) og signatur under for å verifisere meldingen. Vær forsiktig med at du ikke gir signaturen mer betydning enn det som faktisk står i meldingen, for å unngå å bli lurt av såkalte "man-in-the-middle" angrep. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Adressen meldingen var signert med (f.eks. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Verifiser meldingen for å være sikker på at den ble signert av den angitte Dogecoin-adressen - Verify &Message - &Verifiser Melding + Verifiser &Melding - Reset all verify message fields Tilbakestill alle felter for meldingsverifikasjon - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Skriv inn en Dogecoin adresse (f.eks. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Skriv inn en Dogecoin-adresse (f.eks. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Klikk "Signer Melding" for å generere signatur - - Enter Dogecoin signature - Angi Dogecoin signatur - - - - The entered address is invalid. Angitt adresse er ugyldig. - - - - Please check the address and try again. Vennligst sjekk adressen og prøv igjen. - - The entered address does not refer to a key. Angitt adresse refererer ikke til en nøkkel. - Wallet unlock was cancelled. Opplåsing av lommebok ble avbrutt. - Private key for the entered address is not available. Privat nøkkel for den angitte adressen er ikke tilgjengelig. - Message signing failed. Signering av melding feilet. - Message signed. Melding signert. - The signature could not be decoded. Signaturen kunne ikke dekodes. - - Please check the signature and try again. Vennligst sjekk signaturen og prøv igjen. - The signature did not match the message digest. Signaturen passer ikke til meldingen. - Message verification failed. Verifikasjon av melding feilet. - Message verified. Melding verifisert. @@ -2629,17 +2119,14 @@ Adresse: %4 SplashScreen - Dogecoin Core - Dogecoin Kjerne + Dogecoin Core - The Dogecoin Core developers Dogecoin Core utviklerne - [testnet] [testnett] @@ -2647,7 +2134,6 @@ Adresse: %4 TrafficGraphWidget - KB/s KB/s @@ -2655,179 +2141,138 @@ Adresse: %4 TransactionDesc - Open until %1 Åpen til %1 - + conflicted + konflikt + + %1/offline %1/frakoblet - %1/unconfirmed %1/ubekreftet - %1 confirmations %1 bekreftelser - Status Status - , broadcast through %n node(s) , kringkast gjennom %n node, kringkast gjennom %n noder - Date Dato - Source Kilde - Generated Generert - - From Fra - - - To Til - - own address egen adresse - label merkelapp - - - - - Credit Kredit - matures in %n more block(s) blir moden om %n blokkblir moden om %n blokker - not accepted ikke akseptert - - - - Debit Debet - Transaction fee Transaksjonsgebyr - Net amount Nettobeløp - - Message Melding - Comment Kommentar - Transaction ID Transaksjons-ID - Merchant Forhandler - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + Genererte bitcoins må modnes %1 blokker før de kan brukes. Da du genererte denne blokken ble den kringkastet på nettverket for å bli lagt til i kjeden av blokker. Hvis den ikke kommer med i kjeden vil den endre seg til "ikke akseptert" og pengene vil ikke kunne brukes. Dette vil noen ganger skje hvis en annen node genererer en blokk noen sekunder i tid fra din egen. - Debug information Informasjon for feilsøk - Transaction Transaksjon - Inputs Inndata - Amount Beløp - true sann - false usann - , has not been successfully broadcast yet - , har ikke blitt kringkastet uten problemer enda. + , har ikke blitt kringkastet med hell enda - Open for %n more block(s) Åpen for %n blokk tilÅpen for %n blokker til - unknown ukjent @@ -2835,12 +2280,10 @@ Adresse: %4 TransactionDescDialog - Transaction details Transaksjonsdetaljer - This pane shows a detailed description of the transaction Her vises en detaljert beskrivelse av transaksjonen @@ -2848,118 +2291,102 @@ Adresse: %4 TransactionTableModel - Date Dato - Type Type - Address Adresse - Amount Beløp - Immature (%1 confirmations, will be available after %2) - + Umoden (%1 bekreftelser, vil være tilgjengelig etter %2) - Open for %n more block(s) Åpen for %n blokk tilÅpen for %n blokker til - Open until %1 Åpen til %1 - - Offline (%1 confirmations) - Frakoblet (%1 bekreftelser) - - - - Unconfirmed (%1 of %2 confirmations) - Ubekreftet (%1 av %2 bekreftelser) - - - - Confirmed (%1 confirmations) Bekreftet (%1 bekreftelser) - This block was not received by any other nodes and will probably not be accepted! Denne blokken har ikke blitt mottatt av noen andre noder og vil sannsynligvis ikke bli akseptert! - Generated but not accepted Generert men ikke akseptert - + Offline + Frakoblet + + + Unconfirmed + Ubekreftet + + + Confirming (%1 of %2 recommended confirmations) + Bekrefter (%1 av %2 anbefalte bekreftelser) + + + Conflicted + Konflikt + + Received with Mottatt med - Received from Mottatt fra - Sent to Sendt til - Payment to yourself Betaling til deg selv - Mined Utvunnet - (n/a) - - Transaction status. Hover over this field to show number of confirmations. Transaksjonsstatus. Hold muspekeren over dette feltet for å se antall bekreftelser. - Date and time that the transaction was received. Dato og tid for da transaksjonen ble mottat. - Type of transaction. Type transaksjon. - Destination address of transaction. - Mottaksadresse for transaksjonen + Mottaksadresse for transaksjonen. - Amount removed from or added to balance. Beløp fjernet eller lagt til saldo. @@ -2967,178 +2394,142 @@ Adresse: %4 TransactionView - - All Alle - Today I dag - This week Denne uken - This month Denne måneden - Last month Forrige måned - This year Dette året - Range... Intervall... - Received with Mottatt med - Sent to Sendt til - To yourself Til deg selv - Mined Utvunnet - Other Andre - Enter address or label to search Skriv inn adresse eller merkelapp for søk - Min amount Minimumsbeløp - Copy address Kopier adresse - Copy label Kopier merkelapp - Copy amount - Kopiér beløp + Kopier beløp - Copy transaction ID Kopier transaksjons-ID - Edit label Rediger merkelapp - Show transaction details Vis transaksjonsdetaljer - Export Transaction History Eksporter Transaksjonshistorikk - Exporting Failed Ekport Feilet - There was an error trying to save the transaction history to %1. En feil oppstod ved lagring av transaksjonshistorikken til %1. - Exporting Successful Ekport Fullført - The transaction history was successfully saved to %1. Transaksjonshistorikken ble lagret til %1. - Comma separated file (*.csv) Kommaseparert fil (*.csv) - Confirmed Bekreftet - Date Dato - Type Type - Label Merkelapp - Address Adresse - Amount Beløp - ID ID - Range: Intervall: - to til @@ -3146,7 +2537,6 @@ Adresse: %4 WalletFrame - No wallet has been loaded. Ingen lommebok har blitt lastet. @@ -3154,7 +2544,6 @@ Adresse: %4 WalletModel - Send Coins Send Dogecoins @@ -3162,154 +2551,125 @@ Adresse: %4 WalletView - &Export - &Eksporter... + &Eksporter - Export the data in the current tab to a file Eksporter data fra nåværende fane til fil - Backup Wallet - Sikkerhetskopier lommebok + Sikkerhetskopier Lommebok - Wallet Data (*.dat) Lommebokdata (*.dat) - Backup Failed - Sikkerhetskopiering feilet + Sikkerhetskopiering Feilet - There was an error trying to save the wallet data to %1. En feil oppstod ved lagring av lommebok til %1. - The wallet data was successfully saved to %1. Lommeboken ble lagret til %1. - Backup Successful - Sikkerhetskopiering fullført + Sikkerhetskopiering Fullført - dogecoin-core + bitcoin-core - Usage: Bruk: - List commands List opp kommandoer - Get help for a command Vis hjelpetekst for en kommando - Options: Innstillinger: - - Specify configuration file (default: dogecoin.conf) - Angi konfigurasjonsfil (standardverdi: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Angi konfigurasjonsfil (standardverdi: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Angi pid-fil (standardverdi: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Angi pid-fil (standardverdi: bitcoind.pid) - Specify data directory Angi mappe for datafiler - - Set database cache size in megabytes (default: 25) - Sett størrelse på mellomlager for database i megabytes (standardverdi: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Lytt etter tilkoblinger på <port> (standardverdi: 8333 eller testnett: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Lytt etter tilkoblinger på <port> (standardverdi: 22556 eller testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Hold maks <n> koblinger åpne til andre noder (standardverdi: 125) - Connect to a node to retrieve peer addresses, and disconnect Koble til node for å hente adresser til andre noder, koble så fra igjen - Specify your own public address Angi din egen offentlige adresse - Threshold for disconnecting misbehaving peers (default: 100) Grenseverdi for å koble fra noder med dårlig oppførsel (standardverdi: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Antall sekunder noder med dårlig oppførsel hindres fra å koble til på nytt (standardverdi: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - En feil oppstod ved opprettelse av RPC port %u for lytting: %s + En feil oppstod ved opprettelse av RPC-port %u for IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Lytt etter JSON-RPC tilkoblinger på <port> (standardverdi: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Lytt etter JSON-RPC tilkoblinger på <port> (standardverdi: 8332 eller testnett: 18332) - Accept command line and JSON-RPC commands Ta imot kommandolinje- og JSON-RPC-kommandoer - + Dogecoin Core RPC client version + Dogecoin Core RPC-klientversjon + + Run in the background as a daemon and accept commands Kjør i bakgrunnen som daemon og ta imot kommandoer - Use the test network Bruk testnettverket - Accept connections from outside (default: 1 if no -proxy or -connect) Ta imot tilkoblinger fra utsiden (standardverdi: 1 hvis uten -proxy eller -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3320,716 +2680,695 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, du må angi rpcpassord i konfigurasjonsfilen. %s Det anbefales at du bruker det følgende tilfeldige passordet: -rpcbruker=dogecoinrpc +rpcbruker=bitcoinrpc rpcpassord=%s (du behøver ikke å huske passordet) Brukernavnet og passordet MÅ IKKE være like. Om filen ikke eksisterer, opprett den nå med eier-kun-les filrettigheter. Det er også anbefalt at å sette varselsmelding slik du får melding om problemer. -For eksempel: varselmelding=echo %%s | mail -s "Dogecoin varsel" admin@foo.com +For eksempel: varselmelding=echo %%s | mail -s "Dogecoin Varsel" admin@foo.com - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Akseptable krypteringsmetoder (standardverdi: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - En feil oppstod under oppsettet av RPC port %u for IPv6, tilbakestilles til IPv4: %s + En feil oppstod under oppsettet av RPC-port %u for IPv6, tilbakestilles til IPv4: %s - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Bind til angitt adresse. Bruk [vertsmaskin]:port notasjon for IPv6 - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - Kan ikke skaffe lås på denne datamappen %s. Dogecoin kjører sansynlig alerede. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + Ratebegrens gratistransaksjoner kontinuerlig til <n>*1000 bytes per minutt (standard: 15) - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development. - + Gå til modus for regresjonstesting, som bruker en spesiell blokkjede der blokker kan bli løst momentant. Dette er tenkt til verktøy for regresjonstesting og apputvikling. - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + Gå til modus for regresjonstesting, som bruker en spesiell blokkjede der blokker kan bli løst momentant. + + + Error: Listening for incoming connections failed (listen returned error %d) + Feil: Lytting etter innkommende tilkoblinger feilet (lytting returnerte feil %d) - 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. - Feil: Transaksjonen ble avvist! Dette kan skje hvis noen av myntene i lommeboken alerede er blit brukt, som om du brukte en kopi av wallet.dat og myntene ble brukt i kopien, men ikke markert som brukt her. + Feil: Transaksjonen ble avvist! Dette kan skje hvis noen av myntene i lommeboken allerede er blitt brukt, som om du brukte en kopi av wallet.dat og myntene ble brukt i kopien, men ikke markert som brukt her. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Feil: Denne transaksjonen trenger en gebyr på minst %s på grunn av beløpet, kompleksiteten, eller bruk av allerede mottatte penger. + Feil: Denne transaksjonen trenger en gebyr på minst %s på grunn av beløpet, kompleksiteten eller bruk av allerede mottatte penger! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Kjør kommando når en lommeboktransaksjon endres (%s i cmd er erstattet med TxID) + Kjør kommando når en lommeboktransaksjon endres (%s i kommando er erstattet med TxID) + + + Fees smaller than this are considered zero fee (for transaction creation) (default: + Gebyr mindre enn dette er betraktet som intet gebyr (for laging av transaksjoner) (standardverdi: + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + Overfør aktiviteten i databasen fra minnelageret til loggen på harddisken for hver <n> megabytes (standardverdi: 100) + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + Hvor grundig blokkverifiseringen til -checkblocks er (0-4, standard: 3) + + + In this mode -genproclimit controls how many blocks are generated immediately. + I denne modusen kontrollerer -genproclimit hvor mange blokker som genereres øyeblikkelig. + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Angi antall tråder for skriptverifisering (%u til %d, 0 = auto, <0 = la det antallet kjerner være ledig, standard: %d) + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + Sett prosessorgrensen for når blokkutvinning er på (-1 = ubegrenset, standard: -1) - This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - Dette er en forhånds-sluppet test versjon - bruk på egen risiko - ikke for bruk av "Mining" (utvinning) eller markedsføring applikasjoner. + Dette er en forhåndssluppet testversjon - bruk på egen risiko - ikke for bruk til blokkutvinning eller bedriftsapplikasjoner + + + Unable to bind to %s on this computer. Dogecoin Core is probably already running. + Ute av stand til å binde til %s på denne datamaskinen. Dogecoin Core kjører sannsynligvis allerede. - Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Bruk separate SOCKS5 proxyer for å nå noder via Tor skjulte tjenester (standardverdi: -proxy) - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Advarsel: -paytxfee er satt veldig høyt! Dette er transaksjonsgebyret du betaler når du sender transaksjoner. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Advarsel: Vennligst undersøk at din datamaskin har riktig dato og klokkeslett! Hvis klokken er stilt feil vil ikke Dogecoin fungere riktig. - Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - Advarsel: Nettverket ser ikke ut til å vær enig! Noen minere ser ut til å ha problemer. + Advarsel: Nettverket ser ikke ut til å være enig! Noen minere ser ut til å ha 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 ut til å være enige med våre noder! Du må oppgradere, eller andre nodes må oppgradere. + Advarsel: Vi ser ikke ut til å være enige med våre noder! Du må oppgradere, eller andre noder må oppgradere. - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - Advarsel: Feil ved lesing av wallet.dat! Alle taster lest riktig, men transaksjon dataene eller adresse innlegg er kanskje manglende eller feil. + Advarsel: Feil ved lesing av wallet.dat! Alle nøkler lest riktig, men transaksjonsdataene eller oppføringer i adresseboken mangler kanskje eller er feil. - 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 korrupt, data reddet! Original wallet.dat lagret som wallet.{timestamp}.bak i %s; hvis din saldo eller dine transaksjoner ikke er korrekte bør du gjenopprette fra en backup. + + + (default: 1) + (standardverdi: 1) + + + (default: wallet.dat) + (standardverdi: wallet.dat) - <category> can be: <category> kan være: - Attempt to recover private keys from a corrupt wallet.dat Forsøk å berge private nøkler fra en korrupt wallet.dat - Dogecoin Core Daemon - + Dogecoin Core Daemon - - Dogecoin Core RPC client version - Dogecoin RPC klientversjon - - - Block creation options: Valg for opprettelse av blokker: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Tøm listen over transaksjoner i lommeboken (diagnoseverktøy; impliserer -rescan) + + Connect only to the specified node(s) Koble kun til angitt(e) node(r) - Connect through SOCKS proxy Koble til via SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - Koble til JSON-RPC på <port> (default: 22555 eller testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + Koble til JSON-RPC på <port> (default: 8332 eller testnet: 18332) + + + Connection options: + Innstillinger for tilkobling: - Corrupted block database detected Oppdaget korrupt blokkdatabase - + Debugging/Testing options: + Valg for feilsøking/testing: + + + Disable safemode, override a real safe mode event (default: 0) + Slå av sikkerhetsmodus, overstyr en virkelig sikkerhetsmodushendelse (standard: 0) + + Discover own IP address (default: 1 when listening and no -externalip) Oppdag egen IP-adresse (standardverdi: 1 ved lytting og uten -externalip) - Do not load the wallet and disable wallet RPC calls - + Ikke last inn lommeboken og deaktiver RPC-kall - Do you want to rebuild the block database now? Ønsker du å gjenopprette blokkdatabasen nå? - Error initializing block database Feil under initialisering av blokkdatabase - Error initializing wallet database environment %s! - Feil under oppstart av lommebokdatabasemiljø %s! + Feil under oppstart av lommeboken sitt databasemiljø %s! - Error loading block database Feil ved lasting av blokkdatabase - Error opening block database Feil under åpning av blokkdatabase - Error: Disk space is low! - Feil: lite ledig lagringsplass! + Feil: Lite ledig lagringsplass! - Error: Wallet locked, unable to create transaction! Feil: Lommebok låst, kan ikke opprette transaksjon! - Error: system error: Feil: systemfeil: - Failed to listen on any port. Use -listen=0 if you want this. Kunne ikke lytte på noen port. Bruk -listen=0 hvis det er dette du vil. - Failed to read block info Feil ved lesing av blokkinfo - Failed to read block Feil ved lesing av blokk - Failed to sync block index Feil ved synkronisering av blokkindeks - Failed to write block index Ved feil skriving av blokkindeks - Failed to write block info Feil ved skriving av blokkinfo - Failed to write block Feil ved skriving av blokk - Failed to write file info Feil ved skriving av filinfo - Failed to write to coin database - Feil ved skriving av dogecoin database + Feil ved skriving til bitcoin sin database - Failed to write transaction index Feil ved skriving av transaksjonsindeks - Failed to write undo data - Feil ved skriving av angre-data + Feil ved skriving av angredata - Fee per kB to add to transactions you send Gebyr per kB for transaksjoner du sender - + Fees smaller than this are considered zero fee (for relaying) (default: + Gebyrer mindre enn dette vil anses som gebyrfrie (for videresending) (standard: + + Find peers using DNS lookup (default: 1 unless -connect) - Finn andre noder gjennom DNS-oppslag (standardverdi: 1 med mindre -connect er oppgit) + Finn andre noder gjennom DNS-oppslag (standardverdi: 1 med mindre -connect er oppgitt) + + + Force safe mode (default: 0) + Tving sikkerhetsmodus (standard: 0) - Generate coins (default: 0) - Generér dogecoins (standardverdi: 0) + Generer bitcoins (standardverdi: 0) - How many blocks to check at startup (default: 288, 0 = all) Hvor mange blokker skal sjekkes ved oppstart (standardverdi: 288, 0 = alle) - - How thorough the block verification is (0-4, default: 3) - Hvor grundig verifisering av blokker gjøres (0-4, standardverdi: 3) - - - If <category> is not supplied, output all debugging information. - + Hvis <category> ikke er oppgitt, ta ut all informasjon om feilsøking. + + + Importing... + Importerer... - Incorrect or no genesis block found. Wrong datadir for network? - Ugyldig eller ingen skaperblokk funnet. Feil datadir for nettverk? + Ugyldig eller ingen skaperblokk funnet. Feil datamappe for nettverk? - Invalid -onion address: '%s' Ugyldig -onion adresse: '%s' - Not enough file descriptors available. For få fildeskriptorer tilgjengelig. - Prepend debug output with timestamp (default: 1) - + Sett inn tidsstempel i front av feilsøkingsdata (standardverdi: 1) - RPC client options: - RPC klient innstillinger: + Innstillinger for RPC-klient: - Rebuild block chain index from current blk000??.dat files - Gjenopprett blokkjedeindex fra blk000??.dat filer + Gjenopprett blokkjedeindeks fra blk000??.dat filer - Select SOCKS version for -proxy (4 or 5, default: 5) - Velg versjon av SOCKS proxy (4 eller 5, standardverdi: 5) + Velg versjon av SOCKS -proxy (4 eller 5, standardverdi: 5) - - Send command to Dogecoin Core server - Send kommando til Dogecoin tjener + Set database cache size in megabytes (%d to %d, default: %d) + Sett databasen sin størrelse på hurtigbufferen i megabytes (%d til %d, standardverdi: %d) - Set maximum block size in bytes (default: %d) Sett maks blokkstørrelse i bytes (standardverdi: %d) - Set the number of threads to service RPC calls (default: 4) - Sett nummer av tråder til betjening av RPC kall (standardverdi: 4) + Sett nummer av tråder til betjening av RPC-kall (standardverdi: 4) - Specify wallet file (within data directory) - Angi lommebok fil (inne i data mappe) + Angi lommebokfil (inne i datamappe) - - Start Dogecoin Core server - Start Dogecoin tjener + Spend unconfirmed change when sending transactions (default: 1) + Bruk ubekreftet veksel ved sending av transaksjoner (standardverdi: 1) - This is intended for regression testing tools and app development. - + Dette er tiltenkt verktøy for regresjonstesting og apputvikling. - - Usage (deprecated, use dogecoin-cli): - + Usage (deprecated, use bitcoin-cli): + Bruk (foreldet, bruk bitcoin-cli): - Verifying blocks... Verifiserer blokker... - Verifying wallet... Verifiserer lommebok... - Wait for RPC server to start - Vent på start av RPV tjeneren + Vent på start av RPC-tjeneren - Wallet %s resides outside data directory %s - Lommebok %s befinner seg utenfor data mappe %s + Lommebok %s befinner seg utenfor datamappe %s - Wallet options: - + Valg for lommebok: - Warning: Deprecated argument -debugnet ignored, use -debug=net - + Advarsel: Utløpt argument -debugnet ignorert, bruk -debug=net - You need to rebuild the database using -reindex to change -txindex Du må gjenoppbygge databasen med å bruke -reindex for å endre -txindex - Imports blocks from external blk000??.dat file - Importerer blokker fra ekstern blk000?.dat fil + Importerer blokker fra ekstern fil blk000??.dat + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + Ute av stand til å låse datamappen %s. Dogecoin Core kjører sannsynligvis allerede. - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - + Utfør kommando når et relevant varsel er mottatt eller vi ser en veldig lang gaffel (%s i kommando er erstattet med melding) - Output debugging information (default: 0, supplying <category> is optional) - + Ta ut feilsøkingsinformasjon (standardverdi: 0, bruk av <category> er valgfritt) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + Sett maksimum størrelse for transaksjoner med høy prioritet / lavt gebyr, i bytes (standardverdi: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Information Informasjon - Invalid amount for -minrelaytxfee=<amount>: '%s' - Ugyldig mengde for -minrelaytxfee=<amount>: '%s' + Ugyldig mengde for -minrelaytxfee=<beløp>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' - Ugyldig mengde for -mintxfee=<amount>: '%s' + Ugyldig mengde for -mintxfee=<beløp>: '%s' + + + Limit size of signature cache to <n> entries (default: 50000) + Begrens størrelsen på signatur-hurtigbufferen til <n> oppføringer (standard: 50000) + + + Log transaction priority and fee per kB when mining blocks (default: 0) + Logg transaksjonsprioritet og gebyr per kB under blokkutvinning (standard: 0) - Maintain a full transaction index (default: 0) Oppretthold en full transaksjonsindeks (standard: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Maks mottaksbuffer per forbindelse, <n>*1000 bytes (standardverdi: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Maks sendebuffer per forbindelse, <n>*1000 bytes (standardverdi: 1000) - Only accept block chain matching built-in checkpoints (default: 1) - + Aksepter kun en blokkjede som passer med innebygde sjekkpunkter (standardvalg: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Koble kun til noder i nettverket <nett> (IPv4, IPv6 eller Tor) - + Print block on startup, if found in block index + Skriv ut blokken ved oppstart, hvis funnet i blokkindeksen + + + Print block tree on startup (default: 0) + Skriv ut blokktreet ved oppstart (standardverdi: 0) + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + RPC SSL-valg: (se Bitcoin Wiki for oppsettsinstruksjoner for SSL) + + + RPC server options: + Innstillinger for RPC-server: + + + Randomly drop 1 of every <n> network messages + Slumpvis dropp 1 av hver <n> nettverksmeldinger + + + Randomly fuzz 1 of every <n> network messages + Slumpvis bland 1 av hver <n> nettverksmeldinger + + + Run a thread to flush wallet periodically (default: 1) + Kjør en tråd som skriver lommeboken til disk periodisk (standard: 1) + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL valg: (se Bitcoin Wiki for instruksjoner for oppsett av SSL) - - Send trace/debug info to console instead of debug.log file - Send spor/debug informasjon til konsollet istedenfor debug.log filen + Send command to Dogecoin Core + Send kommando til Dogecoin Core + + + Send trace/debug info to console instead of debug.log file + Send spor-/feilsøkingsinformasjon til konsollen istedenfor filen debug.log - Set minimum block size in bytes (default: 0) Sett minimum blokkstørrelse i bytes (standardverdi: 0) - - Shrink debug.log file on client startup (default: 1 when no -debug) - Krymp debug.log filen når klienten starter (standardverdi: 1 hvis uten -debug) + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + Setter flagget DB_PRIVATE i miljøet til lommebokdatabasen (standard: 1) + + + Show all debugging options (usage: --help -help-debug) + Vis alle feilsøkingsvalg (bruk: --help -help-debug) + + + Show benchmark information (default: 0) + Vis informasjon om ytelsesmål (standard: 0) + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Krymp filen debug.log når klienten starter (standardverdi: 1 hvis uten -debug) - Signing transaction failed Signering av transaksjon feilet - Specify connection timeout in milliseconds (default: 5000) Angi tidsavbrudd for forbindelse i millisekunder (standardverdi: 5000) - + Start Dogecoin Core Daemon + Start Dogecoin Core Daemon + + System error: Systemfeil: - Transaction amount too small Transaksjonen er for liten - Transaction amounts must be positive - Transaksjonsmengden må være positiv + Transaksjonsbeløpet må være positivt - Transaction too large Transaksjonen er for stor - Use UPnP to map the listening port (default: 0) Bruk UPnP for lytteport (standardverdi: 0) - Use UPnP to map the listening port (default: 1 when listening) Bruk UPnP for lytteport (standardverdi: 1 ved lytting) - Username for JSON-RPC connections Brukernavn for JSON-RPC forbindelser - Warning Advarsel - Warning: This version is obsolete, upgrade required! Advarsel: Denne versjonen er foreldet, oppgradering kreves! - + Zapping all transactions from wallet... + Zapper alle transaksjoner fra lommeboken... + + + on startup + ved oppstart + + version versjon - wallet.dat corrupt, salvage failed wallet.dat korrupt, bergning feilet - Password for JSON-RPC connections Passord for JSON-RPC forbindelser - Allow JSON-RPC connections from specified IP address Tillat JSON-RPC tilkoblinger fra angitt IP-adresse - Send commands to node running on <ip> (default: 127.0.0.1) Send kommandoer til node på <ip> (standardverdi: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) - Eksekvér kommando når beste blokk endrer seg (%s i kommandoen erstattes med blokkens hash) + Utfør kommando når beste blokk endrer seg (%s i kommandoen erstattes med blokkens hash) - Upgrade wallet to latest format - Oppgradér lommebok til nyeste format + Oppgrader lommebok til nyeste format - Set key pool size to <n> (default: 100) - Angi størrelse på nøkkel-lager til <n> (standardverdi: 100) + Angi størrelsen på nøkkellageret til <n> (standardverdi: 100) - Rescan the block chain for missing wallet transactions - Se gjennom blokk-kjeden etter manglende lommeboktransaksjoner + Se gjennom blokkjeden etter manglende lommeboktransaksjoner - Use OpenSSL (https) for JSON-RPC connections Bruk OpenSSL (https) for JSON-RPC forbindelser - Server certificate file (default: server.cert) Servers sertifikat (standardverdi: server.cert) - Server private key (default: server.pem) Servers private nøkkel (standardverdi: server.pem) - This help message Denne hjelpemeldingen - Unable to bind to %s on this computer (bind returned error %d, %s) Kan ikke binde til %s på denne datamaskinen (bind returnerte feil %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect - Tillat DNS oppslag for -addnode, -seednode og -connect + Tillat oppslag i DNS for -addnode, -seednode og -connect - Loading addresses... Laster adresser... - Error loading wallet.dat: Wallet corrupted Feil ved lasting av wallet.dat: Lommeboken er skadet - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Feil ved lasting av wallet.dat: Lommeboken krever en nyere versjon av Dogecoin - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Lommeboken måtte skrives om: start Dogecoin på nytt for å fullføre - Error loading wallet.dat Feil ved lasting av wallet.dat - Invalid -proxy address: '%s' Ugyldig -proxy adresse: '%s' - Unknown network specified in -onlynet: '%s' Ukjent nettverk angitt i -onlynet '%s' - Unknown -socks proxy version requested: %i - Ukjent -socks proxy versjon angitt: %i + Ukjent -socks proxyversjon angitt: %i - Cannot resolve -bind address: '%s' Kunne ikke slå opp -bind adresse: '%s' - Cannot resolve -externalip address: '%s' Kunne ikke slå opp -externalip adresse: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Ugyldig beløp for -paytxfee=<beløp>: '%s' - Invalid amount Ugyldig beløp - Insufficient funds Utilstrekkelige midler - Loading block index... Laster blokkindeks... - Add a node to connect to and attempt to keep the connection open Legg til node for tilkobling og hold forbindelsen åpen - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Kan ikke binde til %s på denne datamaskinen. Sannsynligvis kjører Dogecoin allerede. - - - Loading wallet... Laster lommebok... - Cannot downgrade wallet Kan ikke nedgradere lommebok - Cannot write default address Kan ikke skrive standardadresse - Rescanning... Leser gjennom... - Done loading Ferdig med lasting - To use the %s option For å bruke %s opsjonen - Error Feil - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4038,4 +3377,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Hvis filen ikke finnes, opprett den med leserettighet kun for eier av filen. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts index f54bdc674..be8350b14 100644 --- a/src/qt/locale/bitcoin_nl.ts +++ b/src/qt/locale/bitcoin_nl.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core Over Dogecoin Core - <b>Dogecoin Core</b> version <b> Dogecoin Core</b> versie - This is experimental software. @@ -27,153 +24,128 @@ Gedistribueerd onder de MIT/X11 software licentie, zie het bijgevoegde bestand C Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in de OpenSSL Toolkit (http://www.openssl.org/) en cryptografische software gemaakt door Eric Young (eay@cryptsoft.com) en UPnP software geschreven door Thomas Bernard. - Copyright Auteursrecht - The Dogecoin Core developers De Dogecoin Core ontwikkelaars + + (%1-bit) + (%1-bit) + AddressBookPage - Double-click to edit address or label - Dubbelklik om het adres of label te wijzigen + Dubbelklik om adres of label te wijzigen - Create a new address Maak een nieuw adres aan - &New &Nieuw - Copy the currently selected address to the system clipboard - Kopiëer het geselecteerde adres naar het klembord + Kopieer het huidig geselecteerde adres naar het klembord - &Copy - &Kopiëer + &Kopieer - C&lose S&luiten - &Copy Address &Kopiëer Adres - Delete the currently selected address from the list - Verwijder het geselecteerde adres uit de lijst + Verwijder het geselecteerde adres van de lijst - Export the data in the current tab to a file - Exporteer de gegevens in de huidige tab naar een bestand + Exporteer de data in de huidige tab naar een bestand - &Export &Exporteer - &Delete &Verwijder - Choose the address to send coins to - Kies het adres om munten naar te verzenden + Kies het adres om munten naar te versturen - Choose the address to receive coins with Kies het adres om munten voor te ontvangen - C&hoose K&iezen - Very sending addresses - Verzendadressen + Bezig met versturen adressen - Much receiving addresses - Ontvangst Adressen + Adressen ontvangen - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Dit zijn uw opgeslagen adressen om betalingen naar te verzenden. Controleer altijd het bedrag en het ontvangende adres voordat u uw dogecoins verzendt. + Dit zijn uw Dogecoinadressen om betalingen mee te verzenden. Check altijd het bedrag en het ontvangende adres voordat u uw bitcoins verzendt. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Dit zijn uw Dogecoin adressen om betalingen te ontvangen. We raden u aan om een nieuw ontvangstadres voor iedere transactie te gebruiken. + Dit zijn uw Dogecoin-adressen waarmee u kunt betalen. We raden u aan om een nieuw ontvangstadres voor elke transactie te gebruiken. - Copy &Label Kopiëer &Label - &Edit - &Bewerken + &Bewerk - Export Address List Exporteer adreslijst - Comma separated file (*.csv) Kommagescheiden bestand (*.csv) - Exporting Failed - Export mislukt + Export Mislukt - There was an error trying to save the address list to %1. - Er is een fout opgetreden tijdens de opslag naar %1 + Een fout is opgetreden tijdens het opslaan van deze adreslijst naar %1. AddressTableModel - Label Label - Address Adres - (no label) (geen label) @@ -181,140 +153,106 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d AskPassphraseDialog - Passphrase Dialog - Wachtwoord instellen + Wachtwoorddialoogscherm - Enter passphrase Voer wachtwoord in - New passphrase Nieuw wachtwoord - Repeat new passphrase Herhaal nieuw wachtwoord - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Vul een nieuw wachtwoord in voor uw portemonnee. <br/> Gebruik een wachtwoord van <b>10 of meer lukrake karakters</b>, of <b> acht of meer woorden</b> . + Vul een nieuw wachtwoord in voor uw portemonnee. <br/> Gebruik een wachtwoord van <b>10 of meer lukrake karakters</b>, of <b>acht of meer woorden</b> . - Encrypt wallet Versleutel portemonnee - This operation needs your wallet passphrase to unlock the wallet. Deze operatie vereist uw portemonneewachtwoord om de portemonnee te openen. - Unlock wallet Open portemonnee - This operation needs your wallet passphrase to decrypt the wallet. Deze operatie vereist uw portemonneewachtwoord om de portemonnee te ontsleutelen - Decrypt wallet Ontsleutel portemonnee - Change passphrase Wijzig wachtwoord - Enter the old and new passphrase to the wallet. Vul uw oude en nieuwe portemonneewachtwoord in. - Confirm wallet encryption Bevestig versleuteling van de portemonnee - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Waarschuwing: Als u uw portemonnee versleutelt en uw wachtwoord vergeet, zult u <b>AL UW DOGECOINS KWIJT RAKEN</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Waarschuwing: Als u uw portemonnee versleutelt en uw wachtwoord vergeet, zult u <b>AL UW DogecoinS VERLIEZEN</b>! - Are you sure you wish to encrypt your wallet? Weet u zeker dat u uw portemonnee wilt versleutelen? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. BELANGRIJK: Elke eerder gemaakte backup van uw portemonneebestand dient u te vervangen door het nieuw gegenereerde, versleutelde portemonneebestand. Om veiligheidsredenen zullen eerdere backups van het niet-versleutelde portemonneebestand onbruikbaar worden zodra u uw nieuwe, versleutelde, portemonnee begint te gebruiken. - - Warning: The Caps Lock key is on! - Waarschuwing: De Caps-Lock toets staat aan! + Waarschuwing: De Caps-Lock-toets staat aan! - - Wallet encrypted Portemonnee versleuteld - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw dogecoins stelen. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw bitcoins stelen. - - - - Wallet encryption failed Portemonneeversleuteling mislukt - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Portemonneeversleuteling mislukt door een interne fout. Uw portemonnee is niet versleuteld. - - The supplied passphrases do not match. De opgegeven wachtwoorden komen niet overeen - Wallet unlock failed Portemonnee openen mislukt - - - The passphrase entered for the wallet decryption was incorrect. Het opgegeven wachtwoord voor de portemonnee-ontsleuteling is niet correct. - Wallet decryption failed Portemonnee-ontsleuteling mislukt - Wallet passphrase was successfully changed. Portemonneewachtwoord is met succes gewijzigd. @@ -322,352 +260,286 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d BitcoinGUI - Sign &message... &Onderteken bericht... - Synchronizing with network... Synchroniseren met netwerk... - &Overview &Overzicht - Node Node - Show general overview of wallet Toon algemeen overzicht van de portemonnee - &Transactions &Transacties - Browse transaction history - Blader door transactiegeschiedenis + Blader door transactieverleden - E&xit &Afsluiten - Quit application Programma afsluiten - - Show information about Dogecoin Core + Show information about Dogecoin Laat informatie zien over Dogecoin - - About &Qt Over &Qt - Show information about Qt Toon informatie over Qt - &Options... O&pties... - &Encrypt Wallet... &Versleutel Portemonnee... - &Backup Wallet... &Backup Portemonnee... - &Change Passphrase... &Wijzig Wachtwoord - Very &sending addresses... - &Adresboek... + &Adressen aan het versturen. - Much &receiving addresses... - &Mijn adressen.. + &Adressen aan het ontvangen... - Open &URI... Open &URI... - Importing blocks from disk... Blokken aan het importeren vanaf harde schijf... - Reindexing blocks on disk... - Blokken aan het herindexeren op harde schijf... + Bezig met herindexeren van blokken op harde schijf... - Send coins to a Dogecoin address - Verzend munten naar een Dogecoin adres + Verstuur munten naar een Dogecoinadres - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Wijzig instellingen van Dogecoin - Backup wallet to another location Backup portemonnee naar een andere locatie - Change the passphrase used for wallet encryption Wijzig het wachtwoord voor uw portemonneversleuteling - &Debug window &Debugscherm - Open debugging and diagnostic console Open debugging en diagnostische console - &Verify message... &Verifiëer bericht... - Dogecoin Dogecoin - Wallet Portemonnee - &Send - &Verzenden + &Versturen - &Receive &Ontvangen - - &Show / Hide &Toon / Verberg - Show or hide the main Window Toon of verberg het hoofdvenster - Encrypt the private keys that belong to your wallet Versleutel de geheime sleutels die bij uw portemonnee horen - Sign messages with your Dogecoin addresses to prove you own them - Onderteken berichten met uw Dogecoin adressen om te bewijzen dat u deze adressen bezit + Onderteken berichten met uw Dogecoinadressen om te bewijzen dat u deze adressen bezit - Verify messages to ensure they were signed with specified Dogecoin addresses - Verifiëer handtekeningen om zeker te zijn dat de berichten zijn ondertekend met de gespecificeerde Dogecoin adressen + Verifiëer handtekeningen om zeker te zijn dat de berichten zijn ondertekend met de gespecificeerde Dogecoinadressen - &File &Bestand - &Settings &Instellingen - &Help &Hulp - Tabs toolbar Tab-werkbalk - - [testnet] [testnetwerk] - Dogecoin Core - Dogecoin Core + Dogecoin Kern - - Request payments (generates QR codes and dogecoin: URIs) - Vraag betaling aan (genereert QR codes en "dogecoin:" URIs) + Request payments (generates QR codes and bitcoin: URIs) + Vraag betaling aan (genereert QR codes en bitcoin: URIs) - - &About Dogecoin Core &Over Dogecoin Core - Show the list of used sending addresses and labels - Toon de lijst met gebruikte verzend adressen en labels + Toon de lijst met gebruikt verzend adressen en labels - Show the list of used receiving addresses and labels Toon de lijst met gebruikte ontvangst adressen en labels - - Open a dogecoin: URI or payment request - Open een dogecoin: URI of betalingsverzoek + Open a bitcoin: URI or payment request + Open een bitcoin: URI of betalingsverzoek - &Command-line options &Commandoregel-opties - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options - Toon het help-bericht voor een lijst met geldige commandoregel-opties + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options + Toon het Dogecoin Core hulpbericht om een lijst te krijgen met mogelijke Dogecoin commandoregelopties - - Dogecoin client Dogecoin client - %n active connection(s) to Dogecoin network - %n actieve connectie naar het Dogecoin netwerk%n actieve connecties naar het Dogecoin netwerk + %n actieve connectie naar Dogecoinnetwerk%n actieve connecties naar Dogecoinnetwerk - No block source available... Geen bron van blokken beschikbaar... - Processed %1 of %2 (estimated) blocks of transaction history. %1 van %2 (geschat) blokken van de transactiehistorie verwerkt. - Processed %1 blocks of transaction history. %1 blokken van transactiehistorie verwerkt. - %n hour(s) %n uur%n uur - %n day(s) %n dag%n dagen - %n week(s) %n week%n weken - + %1 and %2 + %1 en %2 + + + %n year(s) + %n jaar%n jaar + + %1 behind %1 achter - 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. - Error Fout - Warning Waarschuwing - Information Informatie - Up to date Bijgewerkt - Catching up... Aan het bijwerken... - Sent transaction Verzonden transactie - Incoming transaction Binnenkomende transactie - Date: %1 Amount: %2 Type: %3 @@ -680,25 +552,21 @@ 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>locked</b> Portemonnee is <b>versleuteld</b> en momenteel <b>gesloten</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Er is een fatale fout opgetreden. Dogecoin kan niet meer veilig doorgaan en zal nu afgesloten worden. ClientModel - Network Alert Netwerkwaarschuwing @@ -706,359 +574,285 @@ Adres: %4 CoinControlDialog - Coin Control Address Selection - Geavanceerde muntopties - adres selectie + Coin controle adres selectie - Quantity: - Kwantiteit: + Kwantiteit - Bytes: Bytes: - Amount: Bedrag: - Priority: Prioriteit: - Fee: - Kosten: + Vergoeding: - Low Output: Lage uitvoer: - After Fee: - Na kosten: + Na vergoeding: - Change: - Restant: + Wisselgeld: - (un)select all (de)selecteer alles - Tree mode - Hierarchische modus + Boom modus - List mode Lijst modus - Amount Bedrag - Address Adres - Date Datum - Confirmations Bevestigingen - Confirmed Bevestigd - Priority Prioriteit - Copy address Kopieer adres - Copy label Kopieer label - - Copy amount Kopieer bedrag - Copy transaction ID Kopieer transactie-ID - Lock unspent Blokeer niet gebruikte - Unlock unspent Deblokkeer ongebruikte - Copy quantity Kopieer aantal - Copy fee - Kopieer kosten + Kopieer vergoeding - Copy after fee - Kopieer na kosten + Kopieer na vergoeding - Copy bytes Kopieer bytes - Copy priority Kopieer prioriteit - Copy low output Kopieer lage uitvoer - Copy change - Kopieer restant + Kopieer wisselgeld - highest hoogste - higher hoger - high hoog - medium-high - gemiddeld-hoog + gemiddeld hoog - medium gemiddeld - low-medium - laag-gemiddeld + laag gemiddeld - low laag - lower lager - lowest laagste - (%1 locked) - (%1 geblokkeerd) + (%1 geblokeerd) - none geen - Dust Stof - yes ja - no nee - This label turns red, if the transaction size is greater than 1000 bytes. - Dit label wordt rood als de transactie grootte meer dan 1000 bytes is. + Dit label wordt rood, als de transactie grootte meer dan 1000 bytes is. - - This means a fee of at least %1 per kB is required. Dit betekent dat een vergoeding van minimaal %1 per kB nodig is. - Can vary +/- 1 byte per input. Kan +/- byte per invoer variëren. - Transactions with higher priority are more likely to get included into a block. - Transacties met een hogere prioriteit zullen eerder in een blok verwerkt worden. + Transacties met een hogere prioriteit zullen eerder in een block gezet worden. - This label turns red, if the priority is smaller than "medium". Als dit label rood is, is de prioriteit minder dan "medium". - This label turns red, if any recipient receives an amount smaller than %1. - Dit label wordt rood wanneer enig ontvanger een bedrag van minder dan %1 ontvangt. + Dit label wordt rood, als een ontvanger een bedrag van minder dan %1 gekregen heeft. - - This means a fee of at least %1 is required. Dit betekend dat een minimale vergoeding van %1 nodig is. - Amounts below 0.546 times the minimum relay fee are shown as dust. - Bedragen kleiner dan 0.546 keer de minimum doorstuur vergoeding (kosten), worden als stof aangemerkt. + Bedragen beneden 0.546 keer het minimum relais vergoeding, worden als stof aangemerkt. - This label turns red, if the change is smaller than %1. - Dit label wordt rood, als het restant kleiner dan %1. + Dit label wordt rood, als de wijziging is kleiner dan %1. - - (no label) (geen label) - change from %1 (%2) - restant van %1 (%2) + wijzig van %1 (%2) - (change) - (wisselgeld) + (wijzig) EditAddressDialog - Edit Address Bewerk Adres - &Label &Label - The label associated with this address list entry - Het label dat bij dit adres hoort + Het label dat bij dit adres item hoort - The address associated with this address list entry. This can only be modified for sending addresses. - Het adres dat bij dit item hoort. Dit kan alleen bewerkt worden voor verzendadressen. + Het adres dat bij dit adres item hoort. Dit kan alleen bewerkt worden voor verstuur adressen. - &Address &Adres - New receiving address Nieuw ontvangstadres - New sending address Nieuw adres om naar te verzenden - Edit receiving address Bewerk ontvangstadres - Edit sending address Bewerk adres om naar te verzenden - The entered address "%1" is already in the address book. Het opgegeven adres "%1" bestaat al in uw adresboek. - The entered address "%1" is not a valid Dogecoin address. - Het opgegeven adres "%1" is een ongeldig Dogecoin adres + Het opgegeven adres "%1" is een ongeldig Dogecoinadres - Could not unlock wallet. Kon de portemonnee niet openen. - New key generation failed. Genereren nieuwe sleutel mislukt. @@ -1066,27 +860,22 @@ Adres: %4 FreespaceChecker - A new data directory will be created. Een nieuwe gegevensmap wordt aangemaakt. - name naam - Directory already exists. Add %1 if you intend to create a new directory here. Map bestaat al. Voeg %1 toe als u van plan bent hier een nieuwe map aan te maken. - Path already exists, and is not a directory. - Locatie bestaat al, en is geen map. + Communicatiepad bestaat al, en is geen folder. - Cannot create data directory here. Kan hier geen gegevensmap aanmaken. @@ -1094,110 +883,93 @@ Adres: %4 HelpMessageDialog - Dogecoin Core - Command-line options Dogecoin Core - Commandoregel-opties - Dogecoin Core - Dogecoin Core + Dogecoin Kern - version versie - Usage: Gebruik: - command-line options commandoregel-opties - UI options gebruikersinterfaceopties - Set language, for example "de_DE" (default: system locale) Stel taal in, bijvoorbeeld ''de_DE" (standaard: systeeminstellingen) - Start minimized Geminimaliseerd starten - + Set SSL root certificates for payment request (default: -system-) + Zet SSL root certificaten voor betalingsverzoek (standaard: -sytem-) + + Show splash screen on startup (default: 1) Laat laadscherm zien bij het opstarten. (standaard: 1) - Choose data directory on startup (default: 0) - Kies de gegevensmap tijdens het opstarten (default: 0) + Kies de gegevensmap tijdens het opstarten (standaard: 0) Intro - Welcome Welkom - Welcome to Dogecoin Core. Welkom bij Dogecoin Core - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Omdat dit de eerste keer is dat het programma gestart is, kan je nu kiezen waar Dogecoin Core de data moet opslaan. + Omdat dit de eerste keer is dat het programma gestart is, kunt u nu kiezen waar Dogecoin Core de data moet opslaan. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Dogecoin Core zal een kopie van de Dogecoin blok keten downloaden en opslaan. Tenminste %1 GB aan data wordt opgeslagen in deze map en het zal groeien in de tijd. De portemonnee ook in deze map. + Dogecoin Core zal een kopie van de Dogecoin blokketen downloaden en opslaan. Tenminste %1 GB aan data wordt opgeslagen in deze map en het zal groeien in de tijd. De portemonnee wordt ook in deze map opgeslagen. - Use the default data directory Gebruik de standaard gegevensmap - Use a custom data directory: - Gebruik een aangepaste gegevensmap: + Gebruik een persoonlijke gegevensmap: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. Fout: Opgegeven gegevensmap "%1" kan niet aangemaakt worden. - Error Fout - GB of free space available GB aan vrije opslagruimte beschikbaar - (of %1GB needed) (van %1GB benodigd) @@ -1205,281 +977,229 @@ Adres: %4 OpenURIDialog - Open URI Open URI - Open payment request from URI or file Open betalingsverzoek via URI of bestand - URI: URI: - Select payment request file Selecteer betalingsverzoek bestand - Select payment request file to open - Selecteer te openen betalingsverzoek bestand + Selecteer betalingsverzoek bestand om te openen OptionsDialog - Options Opties - &Main &Algemeen - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Optionele transactiekosten per kB. Transactiekosten helpen ervoor te zorgen dat uw transacties snel verwerkt worden. De meeste transacties zijn 1kB. - Pay transaction &fee Betaal &transactiekosten - - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Wanneer u de optie om onbevestigd wisselgeld uit te kunnen geven uitschakeld, kan wisselgeld niet opnieuw worden uitgegeven totdat de transactie ten minste een bevestiging heeft. Dit beinvloed ook hoe uw beschikbare saldo wordt berekend - - - - &Spend unconfirmed change (experts only) - &Geef onbevestigd wisselgeld uit (alleen voor experts) - - - Automatically start Dogecoin after logging in to the system. Start Dogecoin automatisch na inloggen in het systeem - &Start Dogecoin on system login Start &Dogecoin bij het inloggen in het systeem - Size of &database cache Grootte van de &database cache - - Set database cache size in megabytes (default: 25) - Stel databasecachegrootte in in megabytes (standaard: 25) - - - MB MB - Number of script &verification threads - Aantal script subprocessen (threads) + Aantal threads voor &scriptverificatie - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Stel het aantal subprocessen voor scriptverificatie in (max 16, 0 = auto, <0 = laat zoveel cores vrij, standaard: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - Verbind met het Dogecoin netwerk via een SOCKS proxy. + Verbind met het Dogecoin-netwerk via een SOCKS-proxy. - &Connect through SOCKS proxy (default proxy): - Verbind via SOCKS proxy (standaard proxy): + &Verbind via een SOCKS-proxy (standaardproxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) IP-adres van de proxy (bijv. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Actieve commandoregel-opties die bovenstaande overschrijven + Actieve commandoregelopties die bovenstaande opties overschrijven: - Reset all client options to default. Reset alle clientopties naar de standaardinstellingen. - &Reset Options &Reset Opties - &Network &Netwerk - + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = laat dit aantal kernen vrij) + + + W&allet + W&allet + + + Expert + Expert + + + Enable coin &control features + Coin &Control activeren + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Indien het uitgeven van onbevestigd wisselgeld uitgeschakeld wordt dan kan het wisselgeld van een transactie niet worden gebruikt totdat de transactie ten minste een bevestiging heeft. Dit heeft ook invloed op de manier waarop uw saldo wordt berekend. + + + &Spend unconfirmed change + &Spendeer onbevestigd wisselgeld + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Open de Dogecoin-poort automatisch op de router. Dit werkt alleen als de router UPnP ondersteunt en deze optie aan staat. + Open de Dogecoin-poort automatisch op de router. Dit werkt alleen als de router UPnP ondersteunt en het aanstaat. - Map port using &UPnP - Poortmapping via &UPnP + Portmapping via &UPnP - Proxy &IP: Proxy &IP: - &Port: &Poort: - Port of the proxy (e.g. 9050) Poort van de proxy (bijv. 9050) - SOCKS &Version: SOCKS-&Versie: - SOCKS version of the proxy (e.g. 5) SOCKS-versie van de proxy (bijv. 5) - &Window &Scherm - Show only a tray icon after minimizing the window. Laat alleen een systeemvak-icoon zien wanneer het venster geminimaliseerd is - &Minimize to the tray instead of the taskbar &Minimaliseer naar het systeemvak in plaats van de taakbalk - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimaliseer het venster in de plaats van de applicatie af te sluiten als het venster gesloten wordt. Wanneer deze optie aan staan, kan de applicatie alleen worden afgesloten door Afsluiten te kiezen in het menu. - M&inimize on close Minimaliseer bij sluiten van het &venster - &Display &Interface - User Interface &language: Taal &Gebruikersinterface: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. De taal van de gebruikersinterface kan hier ingesteld worden. Deze instelling zal pas van kracht worden nadat Dogecoin herstart wordt. - &Unit to show amounts in: - &Eenheid om bedragen in te tonen: + &Eenheid om bedrag in te tonen: - Choose the default subdivision unit to show in the interface and when sending coins. - Kies de standaard onderverdelingseenheid om weer te geven in uw programma, en voor het verzenden van munten + Kies de standaard onderverdelingseenheid om weer te geven in uw programma, en voor het versturen van munten - Whether to show Dogecoin addresses in the transaction list or not. Of Dogecoinadressen getoond worden in de transactielijst - &Display addresses in transaction list Toon a&dressen in de transactielijst - Whether to show coin control features or not. - Geavanceerde munt functies weergeven of niet. + Munt controle functies weergeven of niet. - - Display coin &control features (experts only) - Toon geavan&ceerde munt functions (alleen voor experts) - - - &OK &OK - &Cancel Ann&uleren - default standaard - none geen - Confirm options reset Bevestig reset opties - - Client restart required to activate changes. Herstart van de client is vereist om veranderingen door te voeren. - Client will be shutdown, do you want to proceed? De client zal worden afgesloten, wilt u doorgaan? - This change would require a client restart. - Deze wijziging vereist een herstart van de client + Om dit aan te passen moet de client opnieuw gestart worden. - The supplied proxy address is invalid. Het opgegeven proxyadres is ongeldig. @@ -1487,79 +1207,54 @@ Adres: %4 OverviewPage - Form Vorm - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - De weergegeven informatie kan verouderd zijn. Uw portemonnee synchroniseert automatisch met het Dogecoin netwerk nadat een verbinding is gemaakt, maar dit proces is nog niet voltooid. + De weergegeven informatie kan verouderd zijn. Uw portemonnee synchroniseert automaticsh met het Dogecoinnetwerk nadat een verbinding is gelegd, maar dit proces is nog niet voltooid. - - Unconfirmed: - Onbevestigd: - - - Wallet Portemonnee - Available: - Beschikbaar: + Beschikbaar: - - Pending: - In afwachting: - - - - Confirmed: - Bevestigd: - - - Your current spendable balance Uw beschikbare saldo - + Pending: + Afwachtend: + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance De som van de transacties die nog bevestigd moeten worden, en nog niet meetellen in uw beschikbare saldo - Immature: Immatuur: - Mined balance that has not yet matured Gedolven saldo dat nog niet tot wasdom is gekomen - Total: Totaal: - Your current total balance Uw totale saldo - <b>Recent transactions</b> <b>Recente transacties</b> - - out of sync niet gesynchroniseerd @@ -1567,93 +1262,70 @@ Adres: %4 PaymentServer - - URI handling URI-behandeling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. URI kan niet worden geïnterpreteerd. Dit kan komen door een ongeldig Dogecoinadres of misvormde URI-parameters. - Requested payment amount of %1 is too small (considered dust). - Het gevraagde betalingsbedrag van 1% is te laag (beschouwd als stof). + Het gevraagde betalingsbedrag van %1 is te weinig (beschouwd als stof). - - - - - - Payment request error Fout bij betalingsverzoek - - Cannot start dogecoin: click-to-pay handler - Kan dogecoin niet starten: click-to-pay handler + Cannot start bitcoin: click-to-pay handler + Kan bitcoin niet starten: click-to-pay handler - Net manager warning - Netwerkmanager waarschuwing + Netmanager waarschuwing - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Uw actieve proxy ondersteund geen SOCK5. Dit is benodigd om betalingsverzoeken via een proxy uit te voeren. + Uw actieve proxy ondersteunt geen SOCKS5, dewelke vereist is voor betalingsverzoeken via proxy. - Payment request fetch URL is invalid: %1 - URL van betaalverzoek is ongeldig: %1 + URL om betalingsverzoek te verkrijgen is ongeldig: %1 - Payment request file handling - Betalingsverzoek bestandsverwerking + Betalingsverzoek bestandsafhandeling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Betalingsverzoek bestand kan niet worden gelezeon of verwerkt! Dit kan worden veroorzaakt door een ongeldig bestand. + Betalingsverzoek-bestand kan niet gelezen of verwerkt worden! Dit kan veroorzaakt worden door een ongeldig betalingsverzoek-bestand. - Unverified payment requests to custom payment scripts are unsupported. Niet-geverifieerde betalingsverzoeken naar aangepaste betaling scripts worden niet ondersteund. - Refund from %1 - Restitutie van 1% + Restitutie van %1 - Error communicating with %1: %2 Fout bij communiceren met %1: %2 - Payment request can not be parsed or processed! - Betalingsverzoek kan niet worden geinterpreteerd of verwerkt! + Betalingsverzoek kan niet juist worden ontleed of verwerkt! - Bad response from server %1 - Ongeldig antwoord van server %1 + Ongeldige respons van server %1 - Payment acknowledged Betaling bevestigd - Network request error Netwerkfout bij verzoek @@ -1661,23 +1333,26 @@ Adres: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Fout: Opgegeven gegevensmap "%1" bestaat niet. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Fout: Kan configuratiebestand niet parsen: %1. Gebruik enkel de key=value syntax. + + Error: Invalid combination of -regtest and -testnet. Fout: Ongeldige combinatie van -regtest en -testnet - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Vul een Dogecoinadres in (bijv. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1685,22 +1360,18 @@ Adres: %4 QRImageWidget - &Save Image... &Afbeelding opslaan... - &Copy Image &Afbeelding kopiëren - Save QR Code Sla QR-code op - PNG Image (*.png) PNG afbeelding (*.png) @@ -1708,298 +1379,229 @@ Adres: %4 RPCConsole - Client name Clientnaam - - - - - - - - - - - N/A N.v.t. - Client version Clientversie - &Information &Informatie - Debug window Debug venster - General Algemeen - Using OpenSSL version Gebruikt OpenSSL versie - Startup time Opstarttijd - Network Netwerk - Name Naam - Number of connections Aantal connecties - Block chain - Blok-keten + Blokketen - Current number of blocks Huidig aantal blokken - Estimated total blocks Geschat totaal aantal blokken - Last block time Tijd laatste blok - &Open &Open - &Console &Console - &Network Traffic &Netwerkverkeer - &Clear &Wissen - Totals Totalen - In: - In: + In; - Out: Uit: - Build date Bouwdatum - Debug log file Debug-logbestand - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Open het Dogecoindebug-logbestand van de huidige datamap. Dit kan een aantal seconden duren voor grote logbestanden. - Clear console Maak console leeg - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Welkom bij de Dogecoin RPC-console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Gebruik de pijltjestoetsen om door de geschiedenis te navigeren, en <b>Ctrl-L</b> om het scherm leeg te maken. - Type <b>help</b> for an overview of available commands. Typ <b>help</b> voor een overzicht van de beschikbare commando's. - %1 B %1 B - %1 KB - %1 KB + %1 Kb - %1 MB %1 MB - %1 GB - %1 GB + %1 Gb - %1 m %1 m - %1 h - %1 u + %1 uur - %1 h %2 m - %1 u %2 m + %1 h %2 m ReceiveCoinsDialog - &Amount: - &Bedrag: + &Bedrag - &Label: &Label: - &Message: - &Bericht: + &Bericht - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Gebruik een van de eerder gebruikte ontvangstadressen opnieuw. Het opnieuw gebruiken van adressen heeft beveiliging- en privacy risico. Gebruik dit niet tenzij een eerder betalingsverzoek opnieuw gegenereerd is. + Gebruik een van de eerder gebruikte ontvangstadressen opnieuw. Het opnieuw gebruiken van adressen heeft beveiliging- en privacy problemen. Gebruik dit niet, behalve als er eerder een betalingsverzoek opnieuw gegenereerd is. - R&euse an existing receiving address (not recommended) H&ergebruik en bestaand ontvangstadres (niet aanbevolen) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - Een optioneel bericht om aan het betalingsverzoek toe te voegen, dat weergegeven zal worden bij het openen van het verzoek. Het bericht zal niet bij de betaling over het Dogecoin netwerk verzonden worden + Een optioneel bericht om bij te voegen aan het betalingsverzoek, dewelke zal getoond worden wanneer het verzoek is geopend. Opermerking: Het bericht zal niet worden verzonden met de betaling over het Dogecoin netwerk. - - An optional label to associate with the new receiving address. Een optioneel label om te associëren met het nieuwe ontvangende adres - Use this form to request payments. All fields are <b>optional</b>. - Gebruik dit formulier om betalingsverzoeken te doen. Alle velden zijn <b>optioneel</b>. + Gebruik dit formulier om te verzoeken tot betaling. Alle velden zijn <b>optioneel</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Een optioneel bedrag. Laat dit veld leeg om geen specifiek bedrag te verzoeken. + Een optioneel te verzoeken bedrag. Laat dit leeg, of nul, om geen specifiek bedrag aan te vragen. - Clear all fields of the form. Wis alle velden op het formulier. - Clear Wissen - Requested payments history Geschiedenis van de betalingsverzoeken - &Request payment &Betalingsverzoek - Show the selected request (does the same as double clicking an entry) Toon het geselecteerde verzoek (doet hetzelfde als dubbelklikken) - Show Toon - Remove the selected entries from the list - Verwijder de geselecteerd items van de lijst + Verwijder de geselecteerde items van de lijst - Remove Verwijder - Copy label Kopieer label - Copy message Kopieer bericht - Copy amount Kopieer bedrag @@ -2007,67 +1609,54 @@ Adres: %4 ReceiveRequestDialog - QR Code QR-code - Copy &URI Kopieer &URI - Copy &Address Kopieer &adres - &Save Image... - &Sla plaatje om... + &Sla afbeelding op... - Request payment to %1 - Betalingsverzoek aan %1 + Betalingsverzoek tot %1 - Payment information Betalingsinformatie - URI URI - Address Adres - Amount Bedrag - Label Label - Message Bericht - Resulting URI too long, try to reduce the text for label / message. Resulterende URI te lang, probeer de tekst korter te maken voor het label/bericht. - Error encoding URI into QR Code. Fout tijdens encoderen URI in QR-code @@ -2075,37 +1664,30 @@ Adres: %4 RecentRequestsTableModel - Date Datum - Label Label - Message Bericht - Amount Bedrag - (no label) (geen label) - (no message) (geen bericht) - (no amount) (geen bedrag) @@ -2113,247 +1695,194 @@ Adres: %4 SendCoinsDialog - - - Send Coins - Verzend munten + Verstuur munten - Coin Control Features - Geavanceerde muntopties + Coin controle opties - Inputs... - Muntbron... + Invoer... - automatically selected automatisch geselecteerd - Insufficient funds! - Onvoldoende saldo! + Onvoldoende fonds! - Quantity: - Kwantiteit: + Kwantiteit - Bytes: Bytes: - Amount: Bedrag: - Priority: Prioriteit: - Fee: - Kosten: + Vergoeding: - Low Output: Lage uitvoer: - After Fee: - Na kosten: + Na vergoeding: - Change: Wisselgeld: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Als dit is geactiveerd en het wisselgeld-adres is leeg of ongeldig, dan wordt het wisselgeld verzonden naar een nieuw gegenereerde adres. + Als dit is geactiveerd, maar het wisselgeldadres is leeg of ongeldig, dan wordt het wisselgeld verzonden naar een nieuw gegenereerd adres. - Custom change address - Specifiek wisselgeld-adres + Aangepast wisselgeldadres - Send to multiple recipients at once - Verzend aan meerdere ontvangers ineens + Verstuur aan verschillende ontvangers ineens - Add &Recipient Voeg &Ontvanger Toe - Clear all fields of the form. Wis alle velden van het formulier. - Clear &All Verwijder &Alles - Balance: Saldo: - Confirm the send action - Bevestig de verzendopdracht + Bevestig de verstuuractie - S&end - &Verzenden + &Verstuur - Confirm send coins - Bevestig de verzendopdracht + Bevestig versturen munten - - - - %1 to %2 %1 tot %2 - Copy quantity Kopieer aantal - Copy amount Kopieer bedrag - Copy fee - Kopieer kosten + Kopieer vergoeding - Copy after fee - Kopieer bedrag na kosten + Kopieer na vergoeding - Copy bytes Kopieer bytes - Copy priority Kopieer prioriteit - Copy low output Kopieer lage uitvoer - Copy change - Kopieer restant + Kopieer wijziging - Total Amount %1 (= %2) Totaal bedrag %1 (= %2) - or of - The recipient address is not valid, please recheck. Het ontvangstadres is niet geldig, controleer uw invoer. - The amount to pay must be larger than 0. Het ingevoerde bedrag moet groter zijn dan 0. - The amount exceeds your balance. - Bedrag is hoger dan uw huidige saldo. + Bedrag is hoger dan uw huidige saldo - The total exceeds your balance when the %1 transaction fee is included. - Het totaal overschrijdt uw huidige saldo wanneer de %1 transactiekosten worden meegerekend + Totaal overschrijdt uw huidige saldo wanneer de %1 transactiekosten worden meegerekend - Duplicate address found, can only send to each address once per send operation. - Dubbel adres gevonden, u kunt slechts eenmaal per transactie naar een bepaald adres verzenden + Dubbel adres gevonden, u kunt slechts eenmaal naar een bepaald adres verzenden per verstuurtransactie - Transaction creation failed! - Aanmaken van transactie is mislukt! + Transactie creatie niet gelukt! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - De transactie was afgewezen. Dit kan gebeuren als u eerder uitgegeven munten opnieuw wilt verenden, zoals wanneer u een kopie van uw wallet.dat heeft gebruikt en in de kopie deze munten zijn gemarkeerd als uitgegeven, maar in de huidige nog niet. + De transactie was afgewezen. Dit kan gebeuren als u eerder uitgegeven munten opnieuw wilt versturen, zoals wanneer u een kopie van uw wallet.dat heeft gebruikt en in de kopie deze munten zijn gemarkeerd als uitgegeven, maar in de huidige nog niet. - Warning: Invalid Dogecoin address Waarschuwing: Ongeldig Dogecoin adres - (no label) (geen label) - Warning: Unknown change address - Waarschuwing: Onbekend wisselgeld-adres + Waarschuwing: Onbekend wisselgeldadres - Are you sure you want to send? Weet u zeker dat u wilt verzenden? - added as transaction fee toegevoegd als transactiekosten - Payment request expired Betalingsverzoek verlopen - Invalid payment address %1 Ongeldig betalingsadres %1 @@ -2361,98 +1890,74 @@ Adres: %4 SendCoinsEntry - - - A&mount: Bedra&g: - Pay &To: Betaal &Aan: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Het adres waaraan u wilt betalen (bijv. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Het adres waaraan u wilt betalen (bijv. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - Vul een label in voor dit adres om het op te slaan in uw adresboek + Vul een label in voor dit adres om het toe te voegen aan uw adresboek - &Label: &Label: - Choose previously used address - Kies een opgeslagen adres + Kies een eerder gebruikt adres - This is a normal payment. Dit is een normale betaling. - Alt+A Alt+A - Paste address from clipboard Plak adres vanuit klembord - Alt+P Alt+P - - - Remove this entry - Verwijder deze invoer + Verwijder deze toevoeging - Message: Bericht: - This is a verified payment request. Dit is een geverifieerd betalingsverzoek. - Enter a label for this address to add it to the list of used addresses - Vul een label voor dit adres in om het in het adresboek op te slaan + Vul een label voor dit adres in om het aan de lijst met gebruikte adressen toe te voegen - - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - Het aan het betalingsverzoek bijgevoegde bericht zal bij de transactie worden opgeslagen. Let op: dit bericht zal niet over het Dogecoin netwerk verzonden worden. + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + Een bericht dat werd toegevoegd aan de bitcoin: URI dewelke wordt opgeslagen met de transactie ter referentie. Opmerking: Dit bericht zal niet worden verzonden over het Dogecoin netwerk. - This is an unverified payment request. Dit is een ongeverifieerd betalingsverzoek. - - Pay To: Betaal Aan: - - Memo: Memo: @@ -2460,12 +1965,10 @@ Adres: %4 ShutdownWindow - Dogecoin Core is shutting down... Dogecoin Core is aan het afsluiten... - Do not shut down the computer until this window disappears. Sluit de computer niet af totdat dit venster verdwenen is. @@ -2473,186 +1976,142 @@ Adres: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Handtekeningen - Onderteken een bericht / Verifiëer een handtekening - &Sign Message O&nderteken Bericht - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - U kunt berichten ondertekenen met een van uw adressen om te bewijzen dat u dit adres bezit. Pas op dat u geen onduidelijke berichten ondertekent, want phishing aanvallen zouden u kunnen misleiden om zo uw identiteit te stelen. Onderteken alleen berichten waarmee u het volledig eens bent. + U kunt berichten ondertekenen met een van uw adressen om te bewijzen dat u dit adres bezit. Pas op dat u geen onduidelijke dingen ondertekent, want phishingaanvallen zouden u kunnen misleiden om zo uw identiteit te stelen. Onderteken alleen berichten waarmee u het volledig eens bent. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Het adres om het bericht mee te ondertekenen (bijv. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM). + Het adres om het bericht mee te ondertekenen (Vb.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM). - - Choose previously used address Kies een eerder gebruikt adres - - Alt+A Alt+A - Paste address from clipboard Plak adres vanuit klembord - Alt+P Alt+P - Enter the message you want to sign here Typ hier het bericht dat u wilt ondertekenen - Signature Handtekening - Copy the current signature to the system clipboard Kopieer de huidige handtekening naar het systeemklembord - Sign the message to prove you own this Dogecoin address Onderteken een bericht om te bewijzen dat u een bepaald Dogecoinadres bezit - Sign &Message Onderteken &Bericht - Reset all sign message fields Verwijder alles in de invulvelden - - Clear &All Verwijder &Alles - &Verify Message &Verifiëer Bericht - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Voer het ondertekenende adres, bericht en handtekening hieronder in (let erop dat u nieuwe regels, spaties en tabs juist overneemt) om de handtekening te verifiëren. Let erop dat u niet meer uit het bericht interpreteert dan er daadwerkelijk staat, om te voorkomen dat u wordt misleid in een man-in-the-middle-aanval. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Het adres waarmee het bericht was ondertekend (bijv. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM). + Het adres waarmee bet bericht was ondertekend (Vb.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM). - Verify the message to ensure it was signed with the specified Dogecoin address Controleer een bericht om te verifiëren dat het gespecificeerde Dogecoinadres het bericht heeft ondertekend. - Verify &Message Verifiëer &Bericht - Reset all verify message fields Verwijder alles in de invulvelden - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Vul een Dogecoinadres in (bijv. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Klik "Onderteken Bericht" om de handtekening te genereren - - The entered address is invalid. Het opgegeven adres is ongeldig. - - - - Please check the address and try again. Controleer s.v.p. het adres en probeer het opnieuw. - - The entered address does not refer to a key. Het opgegeven adres verwijst niet naar een sleutel. - Wallet unlock was cancelled. Portemonnee-ontsleuteling is geannuleerd - Private key for the entered address is not available. Geheime sleutel voor het ingevoerde adres is niet beschikbaar. - Message signing failed. Ondertekenen van het bericht is mislukt. - Message signed. Bericht ondertekend. - The signature could not be decoded. De handtekening kon niet worden gedecodeerd. - - Please check the signature and try again. Controleer s.v.p. de handtekening en probeer het opnieuw. - The signature did not match the message digest. De handtekening hoort niet bij het bericht. - Message verification failed. Berichtverificatie mislukt. - Message verified. Bericht correct geverifiëerd. @@ -2660,17 +2119,14 @@ Adres: %4 SplashScreen - Dogecoin Core - Dogecoin Core + Dogecoin Kern - The Dogecoin Core developers De Dogecoin Core ontwikkelaars - [testnet] [testnetwerk] @@ -2678,7 +2134,6 @@ Adres: %4 TrafficGraphWidget - KB/s KB/s @@ -2686,179 +2141,138 @@ Adres: %4 TransactionDesc - Open until %1 Openen totdat %1 - + conflicted + conflicterend + + %1/offline %1/offline - %1/unconfirmed %1/onbevestigd - %1 confirmations %1 bevestigingen - Status Status - , broadcast through %n node(s) - , verzonden naar %n node, verzonden naar %n nodes + , uitgezonden naar %n node, uitgezonden naar %n nodes - Date Datum - Source Bron - Generated Gegenereerd - - From Van - - - To Aan - - own address eigen adres - label label - - - - - Credit Credit - matures in %n more block(s) komt tot wasdom na %n nieuw blokkomt tot wasdom na %n nieuwe blokken - not accepted niet geaccepteerd - - - - Debit Debet - Transaction fee Transactiekosten - Net amount Netto bedrag - - Message Bericht - Comment Opmerking - Transaction ID - Transactie-ID + Transactie-ID: - Merchant Handelaar - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Gegenereerde munten moeten %1 blokken rijpen voordat ze kunnen worden besteed. Toen dit blok gegenereerd werd, werd het uitgezonden naar het netwerk om aan de blok keten toegevoegd te worden. Als het niet lukt om in de keten toe te voegen, zal de status te veranderen naar "niet geaccepteerd" en het zal deze niet besteedbaar zijn. Dit kan soms gebeuren als een ander knooppunt een blok genereert binnen een paar seconden na die van jou. + Gegenereerde munten moeten %1 blokken rijpen voordat ze kunnen worden besteed. Toen dit blok gegenereerd werd, werd het uitgezonden naar het netwerk om aan de blokketen toegevoegd te worden. Als het niet lukt om in de keten toegevoegd te worden, zal de status te veranderen naar "niet geaccepteerd" en het zal deze niet besteedbaar zijn. Dit kan soms gebeuren als een ander knooppunt een blok genereert binnen een paar seconden na die van u. - Debug information Debug-informatie - Transaction Transactie - Inputs Inputs - Amount Bedrag - true waar - false onwaar - , has not been successfully broadcast yet - , is nog niet met succes verzonden + , is nog niet met succes uitgezonden - Open for %n more block(s) Open voor nog %n blokOpen voor nog %n blokken - unknown onbekend @@ -2866,12 +2280,10 @@ Adres: %4 TransactionDescDialog - Transaction details Transactiedetails - This pane shows a detailed description of the transaction Dit venster laat een uitgebreide beschrijving van de transactie zien @@ -2879,118 +2291,102 @@ Adres: %4 TransactionTableModel - Date Datum - Type Type - Address Adres - Amount Bedrag - Immature (%1 confirmations, will be available after %2) - Onrijp (%1 bevestigingen, zal na %2 beschikbaar worden) + immatuur (%1 bevestigingen, zal beschikbaar zijn na %2) - Open for %n more block(s) Open voor nog %n blokOpen voor nog %n blokken - Open until %1 Open tot %1 - - Offline (%1 confirmations) - Niet verbonden (%1 bevestigingen) - - - - Unconfirmed (%1 of %2 confirmations) - Onbevestigd (%1 van %2 bevestigd) - - - - Confirmed (%1 confirmations) Bevestigd (%1 bevestigingen) - This block was not received by any other nodes and will probably not be accepted! Dit blok is niet ontvangen bij andere nodes en zal waarschijnlijk niet worden geaccepteerd! - Generated but not accepted Gegenereerd maar niet geaccepteerd - + Offline + Niet verbonden + + + Unconfirmed + Onbevestigd + + + Confirming (%1 of %2 recommended confirmations) + Bevestigen (%1 van %2 aanbevolen bevestigingen) + + + Conflicted + Conflicterend + + Received with Ontvangen met - Received from Ontvangen van - Sent to Verzonden aan - Payment to yourself Betaling aan uzelf - Mined Gedolven - (n/a) (nvt) - Transaction status. Hover over this field to show number of confirmations. - Transactiestatus. Houd de muiscursor boven dit veld om het aantal bevestigingen te tonen. + Transactiestatus. Houd de muiscursor boven dit veld om het aantal bevestigingen te laten zien. - Date and time that the transaction was received. Datum en tijd waarop deze transactie is ontvangen. - Type of transaction. Type transactie. - Destination address of transaction. Ontvangend adres van transactie. - Amount removed from or added to balance. Bedrag verwijderd van of toegevoegd aan saldo @@ -2998,178 +2394,142 @@ Adres: %4 TransactionView - - All Alles - Today Vandaag - This week Deze week - This month Deze maand - Last month Vorige maand - This year Dit jaar - Range... Bereik... - Received with Ontvangen met - Sent to Verzonden aan - To yourself Aan uzelf - Mined Gedolven - Other Anders - Enter address or label to search Vul adres of label in om te zoeken - Min amount Min. bedrag - Copy address Kopieer adres - Copy label Kopieer label - Copy amount Kopieer bedrag - Copy transaction ID Kopieer transactie-ID - Edit label Bewerk label - Show transaction details Toon transactiedetails - Export Transaction History Exporteer Transactieverleden - Exporting Failed Export Mislukt - There was an error trying to save the transaction history to %1. Er is een fout opgetreden bij het opslaan van het transactieverleden naar %1. - Exporting Successful Export Succesvol - The transaction history was successfully saved to %1. - Het transactieverleden was succesvol opgeslagen in %1. + Het transactieverleden was succesvol bewaard in %1. - Comma separated file (*.csv) Kommagescheiden bestand (*.csv) - Confirmed Bevestigd - Date Datum - Type Type - Label Label - Address Adres - Amount Bedrag - ID ID - Range: Bereik: - to naar @@ -3177,7 +2537,6 @@ Adres: %4 WalletFrame - No wallet has been loaded. Portemonnee werd niet geladen. @@ -3185,164 +2544,134 @@ Adres: %4 WalletModel - Send Coins - Verzend munten + Verstuur munten WalletView - &Export &Exporteer - Export the data in the current tab to a file Exporteer de data in de huidige tab naar een bestand - Backup Wallet Portemonnee backuppen - Wallet Data (*.dat) Portemonnee-data (*.dat) - Backup Failed Backup Mislukt - There was an error trying to save the wallet data to %1. Er is een fout opgetreden bij het wegschrijven van de portemonnee-data naar %1. - The wallet data was successfully saved to %1. De portemonneedata is succesvol opgeslagen in %1. - Backup Successful Backup Succesvol - dogecoin-core + bitcoin-core - Usage: Gebruik: - List commands Lijst van commando's - Get help for a command Toon hulp voor een commando - Options: Opties: - - Specify configuration file (default: dogecoin.conf) - Specificeer configuratiebestand (standaard: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Specificeer configuratiebestand (standaard: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Specificeer pid-bestand (standaard: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Specificeer pid-bestand (standaard: bitcoind.pid) - Specify data directory Stel datamap in - - Set database cache size in megabytes (default: 25) - Stel database-cachegrootte in in megabytes (standaard: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Luister voor verbindingen op <poort> (standaard: 8333 of testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Luister voor verbindingen op <poort> (standaard: 22556 of testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Onderhoud maximaal <n> verbindingen naar peers (standaard: 125) - Connect to a node to retrieve peer addresses, and disconnect - Verbind naar een node om netwerkadressen van anderen op te halen, en verbreek vervolgens de verbinding + Verbind naar een node om adressen van anderen op te halen, en verbreek vervolgens de verbinding - Specify your own public address - Specificeer uw eigen publieke netwerkadres + Specificeer uw eigen publieke adres - Threshold for disconnecting misbehaving peers (default: 100) Drempel om verbinding te verbreken naar zich misdragende peers (standaard: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Aantal seconden dat zich misdragende peers niet opnieuw mogen verbinden (standaard: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s Er is een fout opgetreden tijdens het instellen van de inkomende RPC-poort %u op IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Wacht op JSON-RPC-connecties op poort <port> (standaard: 22555 of testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Wacht op JSON-RPC-connecties op poort <port> (standaard: 8332 of testnet: 18332) - Accept command line and JSON-RPC commands Aanvaard commandoregel- en JSON-RPC-commando's - + Dogecoin Core RPC client version + Dogecoin Core RPC-client versie + + Run in the background as a daemon and accept commands Draai in de achtergrond als daemon en aanvaard commando's - Use the test network Gebruik het testnetwerk - Accept connections from outside (default: 1 if no -proxy or -connect) Accepteer verbindingen van buitenaf (standaard: 1 als geen -proxy of -connect is opgegeven) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3352,716 +2681,695 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, u moet een RPC-wachtwoord instellen in het configuratiebestand: %s U wordt aangeraden het volgende willekeurige wachtwoord te gebruiken: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (u hoeft dit wachtwoord niet te onthouden) De gebruikersnaam en wachtwoord mogen niet hetzelfde zijn. Als het bestand niet bestaat, make hem dan aan met leesrechten voor enkel de eigenaar. Het is ook aan te bevelen "alertnotify" in te stellen zodat u op de hoogte gesteld wordt van problemen; -for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo.com +bijvoorbeeld: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo.com - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Aanvaardbare cijfers (standaard: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Er is een fout opgetreden tijdens het instellen van de inkomende RPC-poort %u op IPv6, terugval naar IPv4: %s - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Bind aan opgegeven adres en luister er altijd op. Gebruik [host]:port notatie voor IPv6 - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - Kan geen lock op de datamap %s verkrijgen. Dogecoin draait vermoedelijk reeds. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + Doorlopend tarief-limiet op gratis transacties toepassen tot <n>*1000 bytes per minuut (standaard: 15) - 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. - Schakel regressietest-modus in, die een speciale blokketen gebruikt waarin blokken onmiddelijk opgelost kunnen worden. Dit is bedoeld voor regressietestsoftware en app-ontwikkeling. + Schakel regressietest-modus in, die een speciale blokketen gebruikt waarin blokken instantaan opgelost kunnen worden. Dit is bedoeld voor regressietestsoftware en app-ontwikkeling. - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - Schakel regressitest-modus in, die een speciale blok keten gebruikt waarin blokken onmiddelijk opgelost kunnen worden. + Schakel regressietest-modus in, die een speciale blokketen gebruikt waarin blokken onmiddellijk opgelost kunnen worden. + + + Error: Listening for incoming connections failed (listen returned error %d) + Fout: Luisteren naar inkomende connecties mislukt (listen geeft fout terug %d) - 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. Fout: De transactie was afgewezen! Dit kan gebeuren als sommige munten in uw portemonnee al eerder uitgegeven zijn, zoals wanneer u een kopie van uw wallet.dat heeft gebruikt en in de kopie deze munten zijn uitgegeven, maar in deze portemonnee die munten nog niet als zodanig zijn gemarkeerd. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Fout: Deze transactie vereist transactiekosten van tenminste %s, vanwege zijn grootte, complexiteit, of het gebruik van onlangs ontvangen munten! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Voer opdracht uit zodra een portemonneetransactie verandert (%s in cmd wordt vervangen door TxID) - + Fees smaller than this are considered zero fee (for transaction creation) (default: + Toeslagen kleiner dan dit worden beschouwd als geen vergoeding (voor transactie aanmaak) (standaard: + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + Leeg database-activiteit uit de geheugenpool naar schijf log elke <n> megabytes (standaard: 100) + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + Hoe grondig de blokverificatie van -checkblocks is (0-4, standaard: 3) + + + In this mode -genproclimit controls how many blocks are generated immediately. + In deze modus, -genproclimit controleert hoeveel blokken er onmiddellijk worden gegenereerd. + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Kies het aantal script verificatie processen (%u tot %d, 0 = auto, <0 = laat dit aantal kernen vrij, standaard: %d) + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + Kies de processorlimiet wanneer generation is aan (-1 = ongelimiteerd, standaard: -1) + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Dit is een pre-release testversie - gebruik op eigen risico! Gebruik deze niet voor het delven van munten of handelsdoeleinden - + Unable to bind to %s on this computer. Dogecoin Core is probably already running. + Niet in staat om %s te verbinden op deze computer. Dogecoin Core draait waarschijnlijk al. + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Gebruik een aparte SOCKS5 proxy om 'Tor hidden services' te bereiken (standaard: hetzelfde als -proxy) - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - Waarschuwing: -paytxfee is zeer hoog ingesteld. Dit zijn de transactiekosten die u betaalt bij het verzenden van een transactie. + Waarschuwing: -paytxfee is zeer hoog ingesteld. Dit zijn de transactiekosten die u betaalt bij het versturen van een transactie. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Waarschuwing: Controleer dat de datum en tijd op uw computer correct zijn ingesteld. Als uw klok fout staat zal Dogecoin niet correct werken. - Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Waarschuwing: Het lijkt erop dat het netwerk geen consensus kan vinden! Sommige delvers lijken problemen te ondervinden. - Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - Waarschuwing: Het lijkt erop dat we geen consensus kunnen vinden met verbonden nodes! Mogelijk dient u te upgraden, of andere nodes moeten wellicht upgraden. + Waarschuwing: Het lijkt erop dat we geen consensus kunnen vinden met onze peers! Mogelijk dient u te upgraden, of andere nodes moeten wellicht upgraden. - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Waarschuwing: Fout bij het lezen van wallet.dat! Alle sleutels zijn in goede orde uitgelezen, maar transactiedata of adresboeklemma's zouden kunnen ontbreken of fouten bevatten. - 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. Waarschuwing: wallet.dat is corrupt, data is veiliggesteld! Originele wallet.dat is opgeslagen als wallet.{tijdstip}.bak in %s; als uw balans of transacties incorrect zijn dient u een backup terug te zetten. - + (default: 1) + (standaard: 1) + + + (default: wallet.dat) + (standaard: wallet.dat) + + <category> can be: <category> kan zijn: - Attempt to recover private keys from a corrupt wallet.dat Poog de geheime sleutels uit een corrupt wallet.dat bestand terug te halen - Dogecoin Core Daemon Dogecoin Core Daemon - - Dogecoin Core RPC client version - Dogecoin RPC desktop versie - - - Block creation options: Blokcreatie-opties: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Leeg lijst met wallet transacties (diagnostisch instrument; impliceert -rescan) + + Connect only to the specified node(s) Verbind alleen naar de gespecificeerde node(s) - Connect through SOCKS proxy Verbind via een SOCKS-proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - Verbinden met JSON-RPC op <poort> (standaard: 22555 of testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + Verbinden met JSON-RPC op <poort> (standaard: 8332 of testnet: 18332) + + + Connection options: + Verbindingsopties: - Corrupted block database detected Corrupte blokkendatabase gedetecteerd - + Debugging/Testing options: + Foutopsporing/Testopties: + + + Disable safemode, override a real safe mode event (default: 0) + Veilige modus uitschakelen, hef een echte veilige modus gebeurtenis uit (default: 0) + + Discover own IP address (default: 1 when listening and no -externalip) Ontdek eigen IP-adres (standaard: 1 als er wordt geluisterd en geen -externalip is opgegeven) - Do not load the wallet and disable wallet RPC calls - Laad geen portemonnee en schakel RPC aanvragen uit + Laad de wallet niet en schakel wallet RPC oproepen uit - Do you want to rebuild the block database now? Wilt u de blokkendatabase nu herbouwen? - Error initializing block database Fout bij intialisatie blokkendatabase - Error initializing wallet database environment %s! Probleem met initializeren van de database-omgeving %s! - Error loading block database Fout bij het laden van blokkendatabase - Error opening block database Fout bij openen blokkendatabase - Error: Disk space is low! Fout: Weinig vrije diskruimte! - Error: Wallet locked, unable to create transaction! Fout: Portemonnee vergrendeld, aanmaak transactie niet mogelijk! - Error: system error: Fout: Systeemfout: - Failed to listen on any port. Use -listen=0 if you want this. Mislukt om op welke poort dan ook te luisteren. Gebruik -listen=0 as u dit wilt. - Failed to read block info Lezen van blokinformatie mislukt - Failed to read block Lezen van blok mislukt - Failed to sync block index Synchroniseren van blokindex mislukt - Failed to write block index Schrijven van blokindex mislukt - Failed to write block info Schrijven van blokinformatie mislukt - Failed to write block Schrijven van blok mislukt - Failed to write file info Schrijven van bestandsinformatie mislukt - Failed to write to coin database Schrijven naar coindatabase mislukt - Failed to write transaction index Schrijven van transactieindex mislukt - Failed to write undo data Schrijven van undo-data mislukt - Fee per kB to add to transactions you send Transactiekosten per kB om toe te voegen aan transacties die u verzendt - + Fees smaller than this are considered zero fee (for relaying) (default: + Toeslagen kleiner dan dit worden beschouwd als geen vergoeding (voor relaying) (standaard: + + Find peers using DNS lookup (default: 1 unless -connect) Vind andere nodes d.m.v. DNS-naslag (standaard: 1 tenzij -connect) - + Force safe mode (default: 0) + Forceer veilige modus (default: 0) + + Generate coins (default: 0) Genereer munten (standaard: 0) - How many blocks to check at startup (default: 288, 0 = all) Aantal te checken blokken bij het opstarten (standaard: 288, 0 = allemaal) - - How thorough the block verification is (0-4, default: 3) - Hoe grondig de blokverificatie is (0-4, standaard: 3) - - - If <category> is not supplied, output all debugging information. Als er geen <category> is opgegeven, laat dan alle debugging informatie zien. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? Incorrect of geen genesis-blok gevonden. Verkeerde datamap voor het netwerk? - Invalid -onion address: '%s' Ongeldig -onion adres '%s' - Not enough file descriptors available. Niet genoeg file descriptors beschikbaar. - Prepend debug output with timestamp (default: 1) Prepend debug output met tijdstempel (standaard: 1) - RPC client options: RPC client opties: - Rebuild block chain index from current blk000??.dat files - Blok keten opnieuw opbouwen met behulp van huidige blk000??.dat-bestanden + Blokketen opnieuw opbouwen met behulp van huidige blk000??.dat-bestanden - Select SOCKS version for -proxy (4 or 5, default: 5) Selecteer de versie van de SOCKS-proxy om te gebruiken (4 of 5, standaard is 5) - - Send command to Dogecoin Core server - Stuur commando naar Dogecoin server + Set database cache size in megabytes (%d to %d, default: %d) + Zet database cache grootte in megabytes (%d tot %d, standaard: %d) - Set maximum block size in bytes (default: %d) Stel maximum blokgrootte in in bytes (standaard: %d) - Set the number of threads to service RPC calls (default: 4) Stel het aantal threads in om RPC-aanvragen mee te bedienen (standaard: 4) - Specify wallet file (within data directory) Specificeer het portemonnee bestand (vanuit de gegevensmap) - - Start Dogecoin Core server - Start Dogecoin Core server + Spend unconfirmed change when sending transactions (default: 1) + Spendeer onbevestigd wisselgeld wanneer transacties verstuurd worden (standaard: 1) - This is intended for regression testing tools and app development. - Dit is bedoeld voor regressietest hulpmiddelen en applicatieontwikkeling. + Dit is bedoeld voor regressie test toepassingen en applicatie onwikkeling. - - Usage (deprecated, use dogecoin-cli): - Gebruik (vervallen; gebruik Dogecoin-cli); + Usage (deprecated, use bitcoin-cli): + Gebruik (vervangen; gebruik Dogecoin-cli); - Verifying blocks... Blokken aan het controleren... - Verifying wallet... Portemonnee aan het controleren... - Wait for RPC server to start Wacht voor RPC server om te starten - Wallet %s resides outside data directory %s Portemonnee %s bevindt zich buiten de gegevensmap %s - Wallet options: - Portemonnee opties: + Portemonnee instellingen: - Warning: Deprecated argument -debugnet ignored, use -debug=net - Waarschuwing: Afgekeurd argument -debugnet ignored, use -debug=net + Waarschuwing: Afgekeurd argument -debugnet genegeerd, use -debug=net - You need to rebuild the database using -reindex to change -txindex Om -txindex te kunnen veranderen dient u de database opnieuw te bouwen met gebruik van -reindex. - Imports blocks from external blk000??.dat file Importeert blokken van extern blk000??.dat bestand - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + Kan geen lock verkrijgen op gegevensmap %s. Dogecoin Core draait waarschijnlijk al. + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Voer commando uit zodra een waarschuwing is ontvangen of wanneer we een erg lange fork detecteren (%s in commando wordt vervangen door bericht) - Output debugging information (default: 0, supplying <category> is optional) Output extra debugginginformatie (standaard: 0, het leveren van <category> is optioneel) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Stel maximumgrootte in bytes in voor hoge-prioriteits-/lage-transactiekosten-transacties (standaard: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Stel het aantal threads voor scriptverificatie in (max 16, 0 = auto, <0 = laat zoveel cores vrij, standaard: 0) - - - Information Informatie - Invalid amount for -minrelaytxfee=<amount>: '%s' Ongeldig bedrag voor -minrelaytxfee=<bedrag>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' Ongeldig bedrag voor -mintxfee=<bedrag>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + Limiteer grootte van de handtekening cache tot <n> entries (default: 50000) + + + Log transaction priority and fee per kB when mining blocks (default: 0) + Log transactieprioriteit en vergoeding per kB bij mijnen blocks (standaard: 0) + + Maintain a full transaction index (default: 0) Onderhoud een volledige transactieindex (standaard: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Maximum per-connectie ontvangstbuffer, <n>*1000 bytes (standaard: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Maximum per-connectie zendbuffer, <n>*1000 bytes (standaard: 1000) - Only accept block chain matching built-in checkpoints (default: 1) Accepteer alleen blokketen die overeenkomt met de ingebouwde checkpoints (standaard: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Verbind alleen naar nodes in netwerk <net> (IPv4, IPv6 of Tor) - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL-opties: (zie de Bitcoin Wiki voor SSL-instructies) + Print block on startup, if found in block index + Toon block bij opstarten, wanneer gevonden in block index + + + Print block tree on startup (default: 0) + Toon block structuur bij opstarten (default: 0) + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + RPC SSL opties: (zie de Bitcoin Wiki voor SSL installatie-instructies) + + + RPC server options: + RPC server opties: + + + Randomly drop 1 of every <n> network messages + Laat willekeurig 1 elke <n> netwerkberichten vallen + + + Randomly fuzz 1 of every <n> network messages + Fuzz willekeurig 1 van elke <n> netwerkberichten + + + Run a thread to flush wallet periodically (default: 1) + Draai een proces om de wallet periodiek te flushen (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL-opties: (zie de Dogecoin wiki voor SSL-instructies) + + + Send command to Dogecoin Core + Stuur commando naar Dogecoin Core - Send trace/debug info to console instead of debug.log file Stuur trace/debug-info naar de console in plaats van het debug.log bestand - Set minimum block size in bytes (default: 0) Stel minimum blokgrootte in in bytes (standaard: 0) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + Plaatst de DB_PRIVATE vlag in de wallet db omgeving (default: 1) + + + Show all debugging options (usage: --help -help-debug) + Toon alle foutopsporingsopties (gebruik: --help -help-debug) + + + Show benchmark information (default: 0) + Toon benchmark-informatie (default: 0) + + Shrink debug.log file on client startup (default: 1 when no -debug) Verklein debug.log-bestand bij het opstarten van de client (standaard: 1 als geen -debug) - Signing transaction failed Ondertekenen van transactie mislukt - Specify connection timeout in milliseconds (default: 5000) - Specificeer de timeout-tijd in milliseconden (standaard: 5000) + Specificeer de time-outtijd in milliseconden (standaard: 5000) + + + Start Dogecoin Core Daemon + Start Dogecoin Core Daemon - System error: Systeemfout: - Transaction amount too small Transactiebedrag te klein - Transaction amounts must be positive Transactiebedragen moeten positief zijn - Transaction too large Transactie te groot - Use UPnP to map the listening port (default: 0) Gebruik UPnP om de luisterende poort te mappen (standaard: 0) - Use UPnP to map the listening port (default: 1 when listening) Gebruik UPnP om de luisterende poort te mappen (standaard: 1 als er wordt geluisterd) - Username for JSON-RPC connections Gebruikersnaam voor JSON-RPC-verbindingen - Warning Waarschuwing - Warning: This version is obsolete, upgrade required! Waarschuwing: Deze versie is verouderd, een upgrade is vereist! - + Zapping all transactions from wallet... + Bezig met het zappen van alle transacties van de portemonnee... + + + on startup + bij opstarten + + version versie - wallet.dat corrupt, salvage failed wallet.dat corrupt, veiligstellen mislukt - Password for JSON-RPC connections Wachtwoord voor JSON-RPC-verbindingen - Allow JSON-RPC connections from specified IP address Sta JSON-RPC verbindingen van opgegeven IP-adres toe - Send commands to node running on <ip> (default: 127.0.0.1) Verstuur commando's naar proces dat op <ip> draait (standaard: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) Voer commando uit zodra het beste blok verandert (%s in cmd wordt vervangen door blockhash) - Upgrade wallet to latest format Vernieuw portemonnee naar nieuwste versie - Set key pool size to <n> (default: 100) Stel sleutelpoelgrootte in op <n> (standaard: 100) - Rescan the block chain for missing wallet transactions Doorzoek de blokketen op ontbrekende portemonnee-transacties - Use OpenSSL (https) for JSON-RPC connections Gebruik OpenSSL (https) voor JSON-RPC-verbindingen - Server certificate file (default: server.cert) Certificaat-bestand voor server (standaard: server.cert) - Server private key (default: server.pem) Geheime sleutel voor server (standaard: server.pem) - This help message Dit helpbericht - Unable to bind to %s on this computer (bind returned error %d, %s) Niet in staat om aan %s te binden op deze computer (bind gaf error %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Sta DNS-naslag toe voor -addnode, -seednode en -connect - Loading addresses... Adressen aan het laden... - Error loading wallet.dat: Wallet corrupted Fout bij laden wallet.dat: Portemonnee corrupt - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Fout bij laden wallet.dat: Portemonnee vereist een nieuwere versie van Dogecoin - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Portemonnee moest herschreven worden: Herstart Dogecoin om te voltooien - Error loading wallet.dat Fout bij laden wallet.dat - Invalid -proxy address: '%s' Ongeldig -proxy adres: '%s' - Unknown network specified in -onlynet: '%s' Onbekend netwerk gespecificeerd in -onlynet: '%s' - Unknown -socks proxy version requested: %i Onbekende -socks proxyversie aangegeven: %i - Cannot resolve -bind address: '%s' Kan -bind adres niet herleiden: '%s' - Cannot resolve -externalip address: '%s' Kan -externlip adres niet herleiden: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Ongeldig bedrag voor -paytxfee=<bedrag>: '%s' - Invalid amount Ongeldig bedrag - Insufficient funds Ontoereikend saldo - Loading block index... Blokindex aan het laden... - Add a node to connect to and attempt to keep the connection open Voeg een node om naar te verbinden toe en probeer de verbinding open te houden - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Niet in staat om aan %s te binden op deze computer. Dogecoin draait vermoedelijk reeds. - - - Loading wallet... Portemonnee aan het laden... - Cannot downgrade wallet Kan portemonnee niet downgraden - Cannot write default address Kan standaardadres niet schrijven - Rescanning... Blokketen aan het doorzoeken... - Done loading Klaar met laden - To use the %s option Om de %s optie te gebruiken - Error Fout - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4070,4 +3378,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Als het bestand niet bestaat, maak het dan aan, met een alleen-lezen permissie. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_pam.ts b/src/qt/locale/bitcoin_pam.ts index 25e057643..a94fac13f 100644 --- a/src/qt/locale/bitcoin_pam.ts +++ b/src/qt/locale/bitcoin_pam.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -25,135 +22,113 @@ Me-distribute ya lalam na ning lisensya na ning MIT/X11 software, lawan ye ing m Ing produktung ini atin yang makayabeng software a gewa dareng OpenSSL Project para gamit king OpenSSL Toolkit(http://www.openssl.org/) at cryptographic software a sinulat ng Eric Young (eay@cryptsoft.com) at UPnp software a sinulat ng Thomas Bernard. - Copyright Karapatan ning Pamangopya - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Pindutan meng makatidduang besis ban ayalilan me ing address o label - Create a new address Maglalang kang bayung address - &New - Copy the currently selected address to the system clipboard Kopyan me ing salukuyan at makipiling address keng system clipboard - &Copy - C&lose - &Copy Address &Kopyan ing address - Delete the currently selected address from the list Ilako ya ing kasalungsungan makapiling address keng listahan - Export the data in the current tab to a file - &Export - &Delete &Ilako - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Reni reng kekang Dogecoin address king pamagpadalang kabayaran. Lawan mulang masalese reng alaga ampo ing address na ning tumanggap bayu ka magpadalang barya. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label Kopyan ing &Label - &Edit &Alilan - Export Address List - Comma separated file (*.csv) Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -161,17 +136,14 @@ Ing produktung ini atin yang makayabeng software a gewa dareng OpenSSL Project p AddressTableModel - Label Label - Address Address - (no label) (alang label) @@ -179,140 +151,106 @@ Ing produktung ini atin yang makayabeng software a gewa dareng OpenSSL Project p AskPassphraseDialog - Passphrase Dialog Dialogo ning Passphrase - Enter passphrase Mamalub kang passphrase - New passphrase Panibayung passphrase - Repeat new passphrase Pasibayuan ya ing bayung passphrase - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Palub ye ing bayung passphrase king wallet.<br/>Maliari pu sanang gumamit kayung passphrase a maki</b> 10 or dakal pang miyayaliuang characters</b>, o ualu o dakal pang salita</b> - Encrypt wallet I-encrypt ye ing wallet - This operation needs your wallet passphrase to unlock the wallet. Ing operasyun a ini kailangan ne ing kekayung wallet passphrase, ban a-unlock ya ing wallet - Unlock wallet Unlock ya ing wallet - This operation needs your wallet passphrase to decrypt the wallet. Ing operasyun a ini kailangan ne ing kekang wallet passphrase ban a-decrypt ne ing wallet. - Decrypt wallet I-decrypt ya ing wallet - Change passphrase Alilan ya ing passphrase - Enter the old and new passphrase to the wallet. Palub ye ing luma ampo ing bayung passphrase king wallet. - Confirm wallet encryption Kumpirman ya ing wallet encryption - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Kapabaluan: Istung in-encrypt me ing kekang wallet at meala ya ing passphrase na, ma-<b>ALA NO NGAN RING KEKANG DOGECOINS</b> + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Kapabaluan: Istung in-encrypt me ing kekang wallet at meala ya ing passphrase na, ma-<b>ALA NO NGAN RING KEKANG DogecoinS</b> - Are you sure you wish to encrypt your wallet? Siguradu na kang buri meng i-encrypt ing kekang wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. Mayalaga: Reng milabas a backups a gewa mu gamit ing wallet file mu dapat lamung mialilan bayung gawang encrypted wallet file. Para keng seguridad , reng milabas a backups dareng ali maka encrypt a wallet file ma-ala nala istung inumpisan mu nalang gamitan reng bayu, at me encrypt a wallet. - - Warning: The Caps Lock key is on! Kapabaluan: Makabuklat ya ing Caps Lock key! - - Wallet encrypted Me-encrypt ne ing wallet - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Ing Dogecoin ngeni magsara ya ban ayari ing proseso ning pamag-encrypt. Tandanan yu king pamag-encrypt wallet, ali nala aprotektan king kabuuan reng dogecoins yu kareng malware a kasalunsungan atiu kareng computer yu. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Ing Dogecoin ngeni magsara ya ban ayari ing proseso ning pamag-encrypt. Tandanan yu king pamag-encrypt wallet, ali nala aprotektan king kabuuan reng bitcoins yu kareng malware a kasalunsungan atiu kareng computer yu. - - - - Wallet encryption failed Memali ya ing pamag-encrypt king wallet - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Memali ya ing encryption uli na ning ausan dang internal error. E ya me-encrypt ing wallet yu. - - The supplied passphrases do not match. E la mitutugma ring mibieng passphrase - Wallet unlock failed Memali ya ing pamag-unlock king wallet - - - The passphrase entered for the wallet decryption was incorrect. E ya istu ing passphrase a pepalub da para king wallet decryption - Wallet decryption failed Me-mali ya ing pamag-decrypt king wallet - Wallet passphrase was successfully changed. Mi-alilan ne ing passphrase na ning wallet. @@ -320,352 +258,286 @@ Ing produktung ini atin yang makayabeng software a gewa dareng OpenSSL Project p BitcoinGUI - Sign &message... I-sign ing &mensayi - Synchronizing with network... Mag-sychronize ne king network... - &Overview &Overview - Node - Show general overview of wallet Ipakit ing kabuuang lawe ning wallet - &Transactions &Transaksion - Browse transaction history Lawan ing kasalesayan ning transaksion - E&xit L&umwal - Quit application Tuknangan ing aplikasyon - - Show information about Dogecoin Core + Show information about Dogecoin Ipakit ing impormasyun tungkul king Dogecoin - - About &Qt Tungkul &Qt - Show information about Qt Magpakit impormasion tungkul king Qt - &Options... &Pipamilian... - &Encrypt Wallet... I-&Encrypt in Wallet... - &Backup Wallet... I-&Backup ing Wallet... - &Change Passphrase... &Alilan ing Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address Magpadalang barya king Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Alilan ing pipamilian konpigurasion para keng Dogecoin - Backup wallet to another location I-backup ing wallet king aliwang lugal - Change the passphrase used for wallet encryption Alilan ya ing passphrase a gagamitan para king wallet encryption - &Debug window I-&Debug ing awang - Open debugging and diagnostic console Ibuklat ing debugging at diagnostic console - &Verify message... &Beripikan ing message... - Dogecoin Dogecoin - Wallet Wallet - &Send - &Receive - - &Show / Hide &Ipalto / Isalikut - Show or hide the main Window Ipalto o isalikut ing pun a awang - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &File - &Settings &Pamag-ayus - &Help &Saup - Tabs toolbar Gamit para king Tabs - - [testnet] [testnet] - Dogecoin Core Kapilubluban ning Dogecoin - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Dogecoin client - %n active connection(s) to Dogecoin network %n ya ing aktibong koneksion keng Dogecoin network%n lareng aktibong koneksion keng Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. Me-prosesu %1 kareng %2 (me-estima) blocks ning kasalesayan ning transaksion. - Processed %1 blocks of transaction history. - %n hour(s) %n oras%n oras - %n day(s) %n aldo%n aldo - %n week(s) %n dominggu%n dominggu - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. Ing tatauling block a metanggap, me-generate ya %1 ing milabas - Transactions after this will not yet be visible. Ing transaksion kaibat na nini ali yapa magsilbing ipakit. - Error Mali - Warning Kapabaluan - Information Impormasion - Up to date Makatuki ya king aldo - Catching up... Catching up... - Sent transaction Mipadalang transaksion - Incoming transaction Paparatang a transaksion - Date: %1 Amount: %2 Type: %3 @@ -678,25 +550,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Maka-<b>encrypt</b> ya ing wallet at kasalukuyan yang maka-<b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Maka-<b>encrypt</b> ya ing wallet at kasalukuyan yang maka-<b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Atin kamalian a milyari. Ali ne magsilbing sumulung pa ing Dogecoin at kailangan na ng tuknang. ClientModel - Network Alert Alertu ning Network @@ -704,291 +572,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Alaga - Address Address - Date Kaaldauan - Confirmations - Confirmed Me-kumpirma - Priority - Copy address Kopyan ing address - Copy label Kopyan ing label - - Copy amount Kopyan ing alaga - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (alang label) - change from %1 (%2) - (change) @@ -996,67 +803,54 @@ Address: %4 EditAddressDialog - Edit Address Alilan ing Address - &Label &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Address - New receiving address Bayung address king pamagtanggap - New sending address Bayung address king pamagpadala - Edit receiving address Alilan ya ing address king pamagpadala - Edit sending address Alilan ya ing address king pamagpadala - The entered address "%1" is already in the address book. Ing pepalub yung address "%1" ati na yu king aklat dareng address - The entered address "%1" is not a valid Dogecoin address. Ing pepalub yung address "%1" ali ya katanggap-tanggap a Dogecoin address. - Could not unlock wallet. Ali ya bisang mag-unlock ing wallet - New key generation failed. Memali ya ing pamangaua king key @@ -1064,27 +858,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1092,52 +881,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Kapilubluban ning Dogecoin - version bersion - Usage: Pamanggamit: - command-line options pipamilian command-line - UI options Pipamilian ning UI - Set language, for example "de_DE" (default: system locale) Mamiling Amanu, alimbawa "de_DE"(default: system locale) - Start minimized Umpisan ing pamaglati - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Ipalto ing splash screen keng umpisa (default: 1) - Choose data directory on startup (default: 0) @@ -1145,57 +928,46 @@ Address: %4 Intro - Welcome Malaus ka - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Error Mali - GB of free space available - (of %1GB needed) @@ -1203,27 +975,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1231,243 +998,206 @@ Address: %4 OptionsDialog - Options Pipamilian - &Main &Pun - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee Mamayad &bayad para king transaksion - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Umpisan yang antimu ing Dogecoin kaibat mekapag-log in king sistema. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Umpisan ya ing Dogecoin king pamag-log-in na ning sistema. - Size of &database cache - - Set database cache size in megabytes (default: 25) - Ilage ya ing dagul o lati na ing database cache king megabytes (default: 25) - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Ibuklat yang antimanu ing Dogecoin client port king router. Gagana yamu ini istung ing router mu susuporta yang UPnP at magsilbi ya. - Map port using &UPnP Mapa ng ning port gamit ing &UPnP - Proxy &IP: Proxy &IP: - &Port: &Port: - Port of the proxy (e.g. 9050) Port na ning proxy(e.g. 9050) - SOCKS &Version: &Bersion na ning SOCKS - SOCKS version of the proxy (e.g. 5) Bersion a SOCKS ning proxy (e.g 5) - &Window &Awang - Show only a tray icon after minimizing the window. Ipakit mu ing tray icon kaibat meng pelatian ing awang. - &Minimize to the tray instead of the taskbar &Latian ya ing tray kesa king taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Palatian namu kesa king iluwal ya ing aplikasion istung makasara ya ing awang. Istung ing pipamilian a ini atiu king "magsilbi", ing aplikasion misara yamu kaibat meng pinili ing "Tuknangan" king menu. - M&inimize on close P&alatian istung isara - &Display &Ipalto - User Interface &language: Amanu na ning user interface: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Ing amanu na ning user interface maliari yang i-ayus o ilage keni. Ing ayus a ini magsilbi yamu istung pesibayuan meng pasibayu ing Dogecoin. - &Unit to show amounts in: Ing &Unit a ipakit king alaga ning: - Choose the default subdivision unit to show in the interface and when sending coins. Pilinan ing default subdivision unit a ipalto o ipakit king interface at istung magpadala kang barya. - Whether to show Dogecoin addresses in the transaction list or not. Ipakit man ing Dogecoin address king listahan naning transaksion o ali. - &Display addresses in transaction list &Ipakit ing address king listahan naning transaksion - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &OK - &Cancel I-&Cancel - default default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. Ing milageng proxy address eya katanggap-tanggap. @@ -1475,69 +1205,54 @@ Address: %4 OverviewPage - Form Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Ing makaltong impormasion mapalyaring luma ne. Ing kekang wallet otomatiku yang mag-synchronize keng Dogecoin network istung mekakonekta ne king network, oneng ing prosesung ini ali ya pa kumpletu. - - Unconfirmed: - Ali pa me-kumpirma: - - - Wallet Wallet - - Confirmed: - Me-kumpirma: + Available: + - Your current spendable balance Ing kekang kasalungsungan balanse a malyari mung gastusan - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Ing kabuuan dareng transaksion a kasalungsungan ali pa me-kumpirma, at kasalungsungan ali pa mebilang kareng kekang balanseng malyari mung gastusan - Immature: Immature: - Mined balance that has not yet matured Reng me-minang balanse a epa meg-matured - Total: Kabuuan: - Your current total balance Ing kekang kasalungsungan kabuuang balanse - <b>Recent transactions</b> <b>Reng kapilan pamung transaksion</b> - - out of sync ali ya maka-sync @@ -1545,93 +1260,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1639,41 +1331,45 @@ Address: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Magpalub kang Dogecoin address(e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1681,192 +1377,146 @@ Address: %4 RPCConsole - Client name Lagyu ning kliente - - - - - - - - - - - N/A N/A - Client version Bersion ning Cliente - &Information &Impormasion - Debug window - General - Using OpenSSL version Gagamit bersion na ning OpenSSL - Startup time Oras ning umpisa - Network Network - Name - Number of connections Bilang dareng koneksion - Block chain Block chain - Current number of blocks Kasalungsungan bilang dareng blocks - Estimated total blocks Estima kareng kabuuan dareng blocks - Last block time Tatauling oras na ning block - &Open &Ibuklat - &Console &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date Kaaldauan ning pamaglalang - Debug log file Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Ibuklat ing Dogecoin debug log file menibat king kasalungsungan data directory. Magluat ya ining pilan segundu para kareng mamaragul a log files. - Clear console I-Clear ing console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Malaus kayu king Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Gamitan me ing patas at pababang arrow para alibut me ing kasalesayan, at <b>Ctrl-L</b> ban I-clear ya ing screen. - Type <b>help</b> for an overview of available commands. I-type ing <b>help</b> ban akit la reng ati at magsilbing commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1874,155 +1524,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + Kopyan ing label + + + Copy message + + + + Copy amount + Kopyan ing alaga + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address Address - Amount Alaga - Label Label - Message Mensayi - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2030,285 +1662,225 @@ Address: %4 RecentRequestsTableModel - Date Kaaldauan - Label Label - Message Mensayi - Amount Alaga - (no label) (alang label) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins Magpadalang Barya - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Misanang magpadala kareng alialiuang tumanggap - Add &Recipient Maglage &Tumanggap - Clear all fields of the form. - Clear &All I-Clear &Eganagana - Balance: Balanse: - Confirm the send action Kumpirman ing aksion king pamagpadala - S&end Ipadala - Confirm send coins Kumpirman ing pamagpadalang barya - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Magpalub kang Dogecoin address(e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount Kopyan ing alaga - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. Ing address na ning tumanggap ali ya katanggap-tanggap, maliari pung pakilaue pasibayu. - The amount to pay must be larger than 0. Ing alaga na ning bayaran dapat mung mas matas ya king 0. - The amount exceeds your balance. Ing alaga mipasobra ya king kekang balanse. - The total exceeds your balance when the %1 transaction fee is included. Ing kabuuan mipasobra ya king kekang balanse istung inabe ya ing %1 a bayad king transaksion - Duplicate address found, can only send to each address once per send operation. Atin meakit a milupang address, maliari kamung magpadalang misan king metung a address king misan a pamagpadalang transaksion. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (alang label) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2316,116 +1888,85 @@ Address: %4 SendCoinsEntry - - - A&mount: A&laga: - Pay &To: Ibayad &kang: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Ing address nung nokarin ipadala ya ing kabayaran (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Magpalub kang label para king address a ini ban a-iabe me king aklat dareng address - &Label: &Label: - Choose previously used address - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard Idikit ing address menibat king clipboard - Alt+P Alt+P - - - Remove this entry - Message: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Magpalub kang Dogecoin address(e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2433,192 +1974,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Pirma - Pirman / I-beripika ing mensayi - &Sign Message &Pirman ing Mensayi - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Maliari kang mamirmang mensayi king kekang address bilang patune na keka ya ini. Mimingat mu king pamag-pirmang e malino uling mapalyari kang mabiktimang phishing attack a manloku keka na pirman me ing sarili mu para king karela. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Ing address ban a -pirman ya ing mensayi kayabe ning (e.g.DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard Idikit ing address menibat clipboard - Alt+P Alt+P - Enter the message you want to sign here Ipalub ing mensayi a buri mung pirman keni - Signature Pirma - Copy the current signature to the system clipboard Kopyan ing kasalungsungan pirma king system clipboard - Sign the message to prove you own this Dogecoin address Pirman ing mensayi ban patune na keka ya ining Dogecoin address - Sign &Message Pirman ing &Mensayi - Reset all sign message fields Ibalik keng dati reng ngan fields keng pamamirmang mensayi - - Clear &All I-Clear &Eganagana - &Verify Message &Beripikan ing Mensayi - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Ing address na ning mensayi nung nokarin me pirma ya ini (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Beripikan ing mensayi ban asiguradu a me pirma ya ini gamit ing mepiling Dogecoin address - Verify &Message Beripikan ing &Mensayi - Reset all verify message fields Ibalik king dati reng ngan fields na ning pamag beripikang mensayi - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Magpalub kang Dogecoin address(e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature I-click ing "Pirman ing Mensayi" ban agawa ya ing metung a pirma - - Enter Dogecoin signature - Ipalub ing pirma na ning Dogecoin - - - - The entered address is invalid. Ing milub a address e ya katanggap-tanggap. - - - - Please check the address and try again. Maliaring pakilawe pasibayu ing address at pasibayuan ya iti. - - The entered address does not refer to a key. Ing milub a address ali ya mag-refer king metung a key. - Wallet unlock was cancelled. Me-kansela ya ing pamag-unlock king wallet. - Private key for the entered address is not available. Ing private key para king milub a address, ala ya. - Message signing failed. Me-mali ya ing pamag-pirma king mensayi . - Message signed. Me-pirman ne ing mensayi. - The signature could not be decoded. Ing pirma ali ya bisang ma-decode. - - Please check the signature and try again. Maliaring pakilawe pasibayu ing pirma kaibat pasibayuan ya iti. - The signature did not match the message digest. Ing pirma ali ya makatugma king message digest. - Message verification failed. Me-mali ya ing pamag-beripika king mensayi. - Message verified. Me-beripika ne ing mensayi. @@ -2626,17 +2117,14 @@ Address: %4 SplashScreen - Dogecoin Core Kapilubluban ning Dogecoin - The Dogecoin Core developers - [testnet] [testnet] @@ -2644,7 +2132,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2652,179 +2139,138 @@ Address: %4 TransactionDesc - Open until %1 Makabuklat anggang %1 - + conflicted + + + %1/offline %1/offline - %1/unconfirmed %1/ali me-kumpirma - %1 confirmations %1 kumpirmasion - Status Kabilian - , broadcast through %n node(s) - Date Kaaldauan - Source Pikuanan - Generated Megawa - - From Menibat - - - To Para kang - - own address sariling address - label label - - - - - Credit Credit - matures in %n more block(s) - not accepted ali metanggap - - - - Debit Debit - Transaction fee Bayad king Transaksion - Net amount Alaga dareng eganagana - - Message Mensayi - Comment Komentu - Transaction ID ID ning Transaksion - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information Impormasion ning Debug - Transaction Transaksion - Inputs - Amount Alaga - true tutu - false e tutu - , has not been successfully broadcast yet , eya matagumpeng mibalita - Open for %n more block(s) - unknown e miya balu @@ -2832,12 +2278,10 @@ Address: %4 TransactionDescDialog - Transaction details Detalye ning Transaksion - This pane shows a detailed description of the transaction Ining pane a ini magpakit yang detalyadung description ning transaksion @@ -2845,118 +2289,102 @@ Address: %4 TransactionTableModel - Date Kaaldauan - Type Klase - Address Address - Amount Alaga - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 Makabuklat anggang %1 - - Offline (%1 confirmations) - Offline(%1 kumpirmasion) - - - - Unconfirmed (%1 of %2 confirmations) - Ali pa me-kumpirma(%1 kareng %2 kumpirmasion) - - - - Confirmed (%1 confirmations) Me-kumpirma(%1 kumpirmasion) - This block was not received by any other nodes and will probably not be accepted! Ing block a ini ali de atanggap deng aliwa pang nodes ania ali ya magsilbing tanggapan - Generated but not accepted Me-generate ya oneng ali ya metanggap - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Atanggap kayabe ning - Received from Atanggap menibat kang - Sent to Mipadala kang - Payment to yourself Kabayaran keka - Mined Me-mina - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. Status ning Transaksion: Itapat me babo na ning field a ini ban ipakit dala reng bilang dareng me-kumpirma na - Date and time that the transaction was received. Aldo at oras nung kapilan me tanggap ya ing transaksion - Type of transaction. Klase ning transaksion - Destination address of transaction. Kepuntalan a address ning transaksion - Amount removed from or added to balance. Alagang milako o miragdag king balanse. @@ -2964,178 +2392,142 @@ Address: %4 TransactionView - - All Eganagana - Today Aldo iti - This week Paruminggung iti - This month Bulan a iti - Last month Milabas a bulan - This year Banuang iti - Range... Angganan... - Received with Atanggap kayabe ning - Sent to Mipadala kang - To yourself Keng sarili mu - Mined Me-mina - Other Aliwa - Enter address or label to search Magpalub kang address o label para pantunan - Min amount Pekaditak a alaga - Copy address Kopyan ing address - Copy label Kopyan ing label - Copy amount Kopyan ing alaga - Copy transaction ID - Edit label Alilan ing label - Show transaction details Ipakit ing detalye ning transaksion - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Comma separated file (*.csv) - Confirmed Me-kumpirma - Date Kaaldauan - Type Klase - Label Label - Address Address - Amount Alaga - ID ID - Range: Angga: - to para kang @@ -3143,7 +2535,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3151,7 +2542,6 @@ Address: %4 WalletModel - Send Coins Magpadalang Barya @@ -3159,154 +2549,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: Pamanggamit: - List commands Listahan dareng commands - Get help for a command Maniauad saup para kareng command - Options: Pipamilian: - - Specify configuration file (default: dogecoin.conf) - Pilinan ing configuration file(default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Pilinan ing configuration file(default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Pilinan ing pid file(default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Pilinan ing pid file(default: bitcoind.pid) - Specify data directory Pilinan ing data directory - - Set database cache size in megabytes (default: 25) - Ilage ya ing dagul o lati na ing database cache king megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Makiramdam king koneksion king <port>(default: 8333 o testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Makiramdam king koneksion king <port>(default: 22556 o testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Mag-maintain peka <n> koneksion keng peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect Kumunekta king note ban ayakua mula reng peer address, at mako king panga konekta - Specify your own public address Sabyan me ing kekang pampublikong address - Threshold for disconnecting misbehaving peers (default: 100) Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s Atin kamalian a milyari kabang ayusan ya ing RPC port %u para keng pamakiramdam king IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands Tumanggap command line at JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Gumana king gulut bilang daemon at tumanggap commands - Use the test network Gamitan ing test network - Accept connections from outside (default: 1 if no -proxy or -connect) Tumanggap koneksion menibat king kilwal (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3317,707 +2678,686 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + + + 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. Kapabaluan: Sobra ya katas ing makalage king -paytxfee. Ini ing maging bayad mu para king bayad na ning transaksion istung pepadala me ing transaksion a ini. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Kapabaluan: Maliaring pakilawe ing oras at aldo a makalage king kekayung kompyuter nung istu la! Istung ing oras yu mali ya ali ya gumanang masalese ing Dogecoin. - 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. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: - Attempt to recover private keys from a corrupt wallet.dat - Dogecoin Core Daemon - - Dogecoin Core RPC client version - - - - Block creation options: Pipamilian king pamag-gawang block: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + Connect only to the specified node(s) Kumunekta mu king mepiling node(s) - Connect through SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: - Corrupted block database detected Mekapansin lang me-corrupt a block database - + Debugging/Testing options: + + + + Disable safemode, override a real safe mode event (default: 0) + + + Discover own IP address (default: 1 when listening and no -externalip) I-discover ing sariling IP address (default: 1 istung makiramdam at -externalip) - Do not load the wallet and disable wallet RPC calls - Do you want to rebuild the block database now? Buri meng buuan pasibayu ing block database ngene? - Error initializing block database Kamalian king pamag-initialize king block na ning database - Error initializing wallet database environment %s! - Error loading block database - Error opening block database Kamalian king pamag buklat king block database - Error: Disk space is low! Kamalian: Mababa ne ing espasyu king disk! - Error: Wallet locked, unable to create transaction! - Error: system error: Kamalian: kamalian na ning sistema: - Failed to listen on any port. Use -listen=0 if you want this. Memali ya ing pamakiramdam kareng gang nanung port. Gamita me ini -listen=0 nung buri me ini. - Failed to read block info Me-mali king pamagbasa king impormasion ning block - Failed to read block Me-mali king pamagbasa keng block - Failed to sync block index Me-mali para i-sync ing block index - Failed to write block index Me-mali king pamanyulat king block index - Failed to write block info Me-mali king pamanyulat king block info - Failed to write block Me-mali king pamanyulat block - Failed to write file info Me-mali king pamanyulat king file info - Failed to write to coin database Me-mali king pamanyulat king coin database - Failed to write transaction index Me-mali king pamanyulat king index ning transaksion - Failed to write undo data Me-mali king pamanyulat king undo data - Fee per kB to add to transactions you send - + Fees smaller than this are considered zero fee (for relaying) (default: + + + Find peers using DNS lookup (default: 1 unless -connect) Mantun peers gamit ing pamamantun DNS (default: 1 unless -connect) - + Force safe mode (default: 0) + + + Generate coins (default: 0) - How many blocks to check at startup (default: 288, 0 = all) Pilan la reng block a lawan keng umpisa (default: 288, 0 = all) - - How thorough the block verification is (0-4, default: 3) - - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? - Invalid -onion address: '%s' - Not enough file descriptors available. - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server + Set database cache size in megabytes (%d to %d, default: %d) - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) - Specify wallet file (within data directory) - - Start Dogecoin Core server + Spend unconfirmed change when sending transactions (default: 1) - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): + Usage (deprecated, use bitcoin-cli): - Verifying blocks... - Verifying wallet... - Wait for RPC server to start - Wallet %s resides outside data directory %s - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex - Imports blocks from external blk000??.dat file - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Information &Impormasion - Invalid amount for -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - Only accept block chain matching built-in checkpoints (default: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Pipamilian ning SSL: (lawen ye ing Bitcoin Wiki para king SSL setup instructions) - + Send command to Dogecoin Core + + + Send trace/debug info to console instead of debug.log file Magpadalang trace/debug info okeng console kesa keng debug.log file - Set minimum block size in bytes (default: 0) Ilage ing pekaditak a dagul na ning block king bytes (default: 0) - + 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 transaction failed - Specify connection timeout in milliseconds (default: 5000) - + Start Dogecoin Core Daemon + + + System error: Kamalian ning sistema: - Transaction amount too small - Transaction amounts must be positive - Transaction too large Maragul yang masiadu ing transaksion - Use UPnP to map the listening port (default: 0) - Use UPnP to map the listening port (default: 1 when listening) - Username for JSON-RPC connections Username para king JSON-RPC koneksion - Warning Kapabaluan - Warning: This version is obsolete, upgrade required! Kapabaluan: Ing bersioin a ini laus ne, kailangan nang mag-upgrade! - + Zapping all transactions from wallet... + + + + on startup + + + version bersion - wallet.dat corrupt, salvage failed - Password for JSON-RPC connections Password para king JSON-RPC koneksion - Allow JSON-RPC connections from specified IP address Payagan ya i JSON-RPC koneksion para king metung a IP address - Send commands to node running on <ip> (default: 127.0.0.1) Magpadalang command king node a gagana king <ip>(default: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) I-execute ing command istung mialilan ya ing best block (%s in cmd is replaced by block hash) - Upgrade wallet to latest format I-upgrade ing wallet king pekabayung porma - Set key pool size to <n> (default: 100) I-set ing key pool size king <n>(default: 100) - Rescan the block chain for missing wallet transactions I-scan pasibayu ing block chain para kareng mauaualang transaksion - Use OpenSSL (https) for JSON-RPC connections Gumamit OpenSSL(https) para king JSON-RPC koneksion - Server certificate file (default: server.cert) Server certificate file (default: server.cert) - Server private key (default: server.pem) Server private key (default: server.pem) - This help message Ining saup a mensayi - Unable to bind to %s on this computer (bind returned error %d, %s) Ali ya magsilbing mag-bind keng %s kening kompyuter a ini (bind returned error %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Payagan ing pamaglawe DNS para king -addnode, -seednode and -connect - Loading addresses... Lo-load da ne ing address... - Error loading wallet.dat: Wallet corrupted Me-mali ya ing pamag-load king wallet.dat: Me-corrupt ya ing wallet - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Me-mali ya ing pamag-load na ning wallet.dat: Ing wallet mangailangan yang bayung bersion na ning Dogecoin - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Ing wallet mangailangan yang misulat pasibayu: Umpisan yang pasibayu ing Dogecoin ban ma-kumpleto ya - Error loading wallet.dat Me-mali ya ing pamag-load king wallet.dat - Invalid -proxy address: '%s' Ali katanggap-tanggap a -proxy addresss: '%s' - Unknown network specified in -onlynet: '%s' E kilalang network ing mepili king -onlynet: '%s' - Unknown -socks proxy version requested: %i E kilalang -socks proxy version requested: %i - Cannot resolve -bind address: '%s' Eya me-resolve ing -bind address: '%s' - Cannot resolve -externalip address: '%s' Eya me-resolve ing -externalip address: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Eya maliari ing alaga keng -paytxfee=<amount>: '%s' - Invalid amount Ing alaga e ya katanggap-tanggap - Insufficient funds Kulang a pondo - Loading block index... Lo-load dane ing block index... - Add a node to connect to and attempt to keep the connection open Magdagdag a node ban kumunekta at subuknan apanatili yang makabuklat ing koneksion - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Eya megsilbing idikit king %s na ning kompyuter a ini. Mapaliaring mamandar ne ing Dogecoin. - - - Loading wallet... Lo-load dane ing wallet... - Cannot downgrade wallet Ali ya magsilbing i-downgrade ing wallet - Cannot write default address Eya misulat ing default address - Rescanning... I-scan deng pasibayu... - Done loading Yari ne ing pamag-load - To use the %s option Para agamit ing %s a pimamilian - Error Mali - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4026,4 +3366,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Nung ing file ala ya, gawa ka gamit ing owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_pl.ts b/src/qt/locale/bitcoin_pl.ts index 1c1e1b92b..4a277620c 100644 --- a/src/qt/locale/bitcoin_pl.ts +++ b/src/qt/locale/bitcoin_pl.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core O Dogecoin Core - <b>Dogecoin Core</b> version Wersja <b>Dogecoin Core</b> - This is experimental software. @@ -27,141 +24,113 @@ Distributed under the MIT/X11 software license, see the accompanying file COPYIN This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - Copyright Prawo autorskie - The Dogecoin Core developers Deweloperzy Dogecoin Core - - - (%1-bit) + (%1-bit) AddressBookPage - Double-click to edit address or label Kliknij dwukrotnie, aby edytować adres lub etykietę - Create a new address Utwórz nowy adres - &New &Nowy - Copy the currently selected address to the system clipboard Skopiuj aktualnie wybrany adres do schowka - &Copy &Kopiuj - C&lose Z&amknij - &Copy Address &Kopiuj adres - Delete the currently selected address from the list Usuń zaznaczony adres z listy - Export the data in the current tab to a file Eksportuj dane z aktywnej karty do pliku - &Export &Eksportuj - &Delete &Usuń - Choose the address to send coins to - Wybierz adres żeby wysłać dogecoins + Wybierz adres żeby wysłać bitcoins - Choose the address to receive coins with Wybierz adres do otrzymania monet. - C&hoose W&ybierz - Very sending addresses Adres wysyłania - Much receiving addresses Adres odbiorczy - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Tutaj znajdują się Twoje adresy Dogecoin do wysyłania płatności. Zawsze sprawdzaj ilość i adres odbiorcy przed wysyłką monet. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - To twoje adresy dogecoin do odbierania płatności. Zaleca się używanie nowych adresów odbiorczych dla każdej tranzakcji. + To twoje adresy bitcoin do odbierania płatności. Zaleca się używanie nowych adresów odbiorczych dla każdej tranzakcji. - Copy &Label Kopiuj &Etykietę - &Edit - &Edytuj + &Modyfikuj - Export Address List Eksportuj listę adresową - Comma separated file (*.csv) Plik *.CSV (rozdzielany przecinkami) - Exporting Failed Błąd przy próbie eksportu - There was an error trying to save the address list to %1. @@ -169,17 +138,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Etykieta - Address Adres - (no label) (bez etykiety) @@ -187,140 +153,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog Okienko Hasła - Enter passphrase Wpisz hasło - New passphrase Nowe hasło - Repeat new passphrase Powtórz nowe hasło - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Wprowadź nowe hasło dla portfela.<br/>Proszę użyć hasła składającego się z <b>10 lub więcej losowych znaków</b> lub <b>ośmiu lub więcej słów</b>. - Encrypt wallet Zaszyfruj portfel - This operation needs your wallet passphrase to unlock the wallet. Ta operacja wymaga hasła do portfela ażeby odblokować portfel. - Unlock wallet Odblokuj portfel - This operation needs your wallet passphrase to decrypt the wallet. Ta operacja wymaga hasła do portfela ażeby odszyfrować portfel. - Decrypt wallet Odszyfruj portfel - Change passphrase Zmień hasło - Enter the old and new passphrase to the wallet. Podaj stare i nowe hasło do portfela. - Confirm wallet encryption Potwierdź szyfrowanie portfela - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Uwaga: Jeśli zaszyfrujesz swój portfel i zgubisz hasło to <b>STRACISZ WSZYSTKIE SWOJE DOGECOIN'Y</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Uwaga: Jeśli zaszyfrujesz swój portfel i zgubisz hasło to <b>STRACISZ WSZYSTKIE SWOJE Dogecoin'Y</b>! - Are you sure you wish to encrypt your wallet? Jesteś pewien, że chcesz zaszyfrować swój portfel? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. WAŻNE: Wszystkie wykonane wcześniej kopie pliku portfela powinny być zamienione na nowe, szyfrowane pliki. Z powodów bezpieczeństwa, poprzednie kopie nieszyfrowanych plików portfela staną się bezużyteczne jak tylko zaczniesz korzystać z nowego, szyfrowanego portfela. - - Warning: The Caps Lock key is on! Uwaga: Klawisz Caps Lock jest włączony - - Wallet encrypted Portfel zaszyfrowany - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Program Dogecoin zamknie się aby dokończyć proces szyfrowania. Pamiętaj, że szyfrowanie portfela nie zabezpiecza w pełni Twoich dogecoinów przed kradzieżą przez wirusy lub trojany mogące zainfekować Twój komputer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Program Dogecoin zamknie się aby dokończyć proces szyfrowania. Pamiętaj, że szyfrowanie portfela nie zabezpiecza w pełni Twoich bitcoinów przed kradzieżą przez wirusy lub trojany mogące zainfekować Twój komputer. - - - - Wallet encryption failed Szyfrowanie portfela nie powiodło się - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Szyfrowanie portfela nie powiodło się z powodu wewnętrznego błędu. Twój portfel nie został zaszyfrowany. - - The supplied passphrases do not match. Podane hasła nie są takie same. - Wallet unlock failed Odblokowanie portfela nie powiodło się - - - The passphrase entered for the wallet decryption was incorrect. Wprowadzone hasło do odszyfrowania portfela jest niepoprawne. - Wallet decryption failed Odszyfrowanie portfela nie powiodło się - Wallet passphrase was successfully changed. Hasło portfela zostało pomyślnie zmienione. @@ -328,352 +260,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... Podpisz wiado&mość... - Synchronizing with network... Synchronizacja z siecią... - &Overview P&odsumowanie - Node - Show general overview of wallet Pokazuje ogólny zarys portfela - &Transactions &Transakcje - Browse transaction history Przeglądaj historię transakcji - E&xit &Zakończ - Quit application Zamknij program - - Show information about Dogecoin Core + Show information about Dogecoin Pokaż informację o Dogecoin - - About &Qt O &Qt - Show information about Qt Pokazuje informacje o Qt - &Options... &Opcje... - &Encrypt Wallet... Zaszyfruj Portf&el - &Backup Wallet... Wykonaj kopię zapasową... - &Change Passphrase... &Zmień hasło... - Very &sending addresses... - + Adres wysyłania - Much &receiving addresses... - + Adres odbiorczy - Open &URI... - + Otwórz URI... - Importing blocks from disk... Importowanie bloków z dysku... - Reindexing blocks on disk... Ponowne indeksowanie bloków na dysku... - Send coins to a Dogecoin address Wyślij monety na adres Dogecoin - - Modify configuration options for Dogecoin Core - Zmienia opcje konfiguracji dogecoin. + Modify configuration options for Dogecoin + Zmienia opcje konfiguracji bitcoina - Backup wallet to another location Zapasowy portfel w innej lokalizacji - Change the passphrase used for wallet encryption Zmień hasło użyte do szyfrowania portfela - &Debug window &Okno debugowania - Open debugging and diagnostic console Otwórz konsolę debugowania i diagnostyki - &Verify message... &Zweryfikuj wiadomość... - Dogecoin Dogecoin - Wallet Portfel - &Send Wyślij - &Receive Odbie&rz - - &Show / Hide &Pokaż / Ukryj - Show or hide the main Window Pokazuje lub ukrywa główne okno - Encrypt the private keys that belong to your wallet Szyfruj klucze prywatne, które są powiązane z twoim portfelem - Sign messages with your Dogecoin addresses to prove you own them Podpisz wiadomości swoim adresem aby udowodnić jego posiadanie - Verify messages to ensure they were signed with specified Dogecoin addresses Zweryfikuj wiadomość, aby upewnić się, że została podpisana odpowiednim adresem Dogecoin. - &File &Plik - &Settings P&referencje - &Help Pomo&c - Tabs toolbar Pasek zakładek - - [testnet] [testnet] - Dogecoin Core - Rdzeń Dogecoin + Rdzeń BitCoin - - Request payments (generates QR codes and dogecoin: URIs) - Żądaj płatności (generuje kod QR oraz dogecoin URI) + Request payments (generates QR codes and bitcoin: URIs) + Żądaj płatności (generuje kod QR oraz bitcoin URI) - - &About Dogecoin Core &O Dogecoin Core - Show the list of used sending addresses and labels Pokaż listę użytych adresów wysyłających i etykiety - Show the list of used receiving addresses and labels Pokaż listę użytych adresów odbiorczych i etykiety - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Dogecoin klient - %n active connection(s) to Dogecoin network %n aktywne połączenie do sieci Dogecoin%n aktywne połączenia do sieci Dogecoin%n aktywnych połączeń do sieci Dogecoin - No block source available... Brak dostępnych źródeł bloków... - Processed %1 of %2 (estimated) blocks of transaction history. Przetworzono (w przybliżeniu) %1 z %2 bloków historii transakcji. - Processed %1 blocks of transaction history. Pobrano %1 bloków z historią transakcji. - %n hour(s) %n godzina%n godzin%n godzin - %n day(s) %n dzień%n dni%n dni - %n week(s) %n tydzień%n tygodni%n tygodni - - %1 behind - %1 do tyłu + %1 and %2 + %1 i %2 + + + %n year(s) + %n rok%n lata%n lat + + + %1 behind + %1 wstecz - 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. - Error Błąd - Warning Ostrzeżenie - Information Informacja - Up to date Aktualny - Catching up... Łapanie bloków... - Sent transaction Transakcja wysłana - Incoming transaction Transakcja przychodząca - Date: %1 Amount: %2 Type: %3 @@ -686,25 +552,21 @@ 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>locked</b> Portfel jest <b>zaszyfrowany</b> i obecnie <b>zablokowany</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Błąd krytyczny. Dogecoin nie może kontynuować bezpiecznie więc zostanie zamknięty. ClientModel - Network Alert Sieć Alert @@ -712,291 +574,230 @@ Adres: %4 CoinControlDialog - Coin Control Address Selection - Quantity: Ilość: - Bytes: Bajtów: - Amount: Kwota: - Priority: Priorytet: - Fee: Opłata: - Low Output: - After Fee: Po opłacie: - Change: Reszta: - (un)select all Zaznacz/Odznacz wszystko - Tree mode Widok drzewa - List mode Widok listy - Amount Kwota - Address Adres - Date Data - Confirmations Potwierdzenia - Confirmed Potwierdzony - Priority Priorytet - Copy address Kopiuj adres - Copy label Kopiuj etykietę - - Copy amount Kopiuj kwotę - Copy transaction ID Skopiuj ID transakcji - Lock unspent Zablokuj - Unlock unspent Odblokuj - Copy quantity Skopiuj ilość - Copy fee Skopiuj opłatę - Copy after fee Skopiuj ilość po opłacie - Copy bytes Skopiuj ilość bajtów - Copy priority Skopiuj priorytet - Copy low output - Copy change Skopiuj resztę - highest najwyższa - higher wyższa - high wysoka - medium-high średnio wysoki - medium średnia - low-medium średnio niski - low niski - lower niższy - lowest najniższy - (%1 locked) (%1 zablokowane) - none - Dust - yes tak - no nie - This label turns red, if the transaction size is greater than 1000 bytes. - + Etykieta staje się czerwona kiedy transakcja jest większa niż 1000 bajtów. - - This means a fee of at least %1 per kB is required. - + Oznacza to wymaganą opłatę minimum %1 na kB. - Can vary +/- 1 byte per input. - + Waha się +/- 1 bajt na wejście. - Transactions with higher priority are more likely to get included into a block. - + Transakcje o wyższym priorytecie zostają szybciej dołączone do bloku. - This label turns red, if the priority is smaller than "medium". - + Ta etykieta jest czerwona, jeżeli priorytet jest mniejszy niż "średni" - This label turns red, if any recipient receives an amount smaller than %1. - + Etykieta staje się czerwona kiedy którykolwiek odbiorca otrzymuje kwotę mniejszą niż %1. - - This means a fee of at least %1 is required. - + Oznacza to, że wymagana jest opłata przynajmniej %1. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - + Etykieta staje się czerwona kiedy reszta jest mniejsza niż %1. - - (no label) (bez etykiety) - change from %1 (%2) reszta z %1 (%2) - (change) (reszta) @@ -1004,67 +805,54 @@ Adres: %4 EditAddressDialog - Edit Address - Edytuj adres + Zmień adres - &Label &Etykieta - The label associated with this address list entry Etykieta skojarzona z tym wpisem na liście adresów - The address associated with this address list entry. This can only be modified for sending addresses. Ten adres jest skojarzony z wpisem na liście adresów. Może być zmodyfikowany jedynie dla adresów wysyłających. - &Address &Adres - New receiving address Nowy adres odbiorczy - New sending address Nowy adres wysyłania - Edit receiving address - Edytuj adres odbioru + Zmień adres odbioru - Edit sending address - Edytuj adres wysyłania + Zmień adres wysyłania - The entered address "%1" is already in the address book. Wprowadzony adres "%1" już istnieje w książce adresowej. - The entered address "%1" is not a valid Dogecoin address. Wprowadzony adres "%1" nie jest poprawnym adresem Dogecoin. - Could not unlock wallet. Nie można było odblokować portfela. - New key generation failed. Tworzenie nowego klucza nie powiodło się. @@ -1072,27 +860,22 @@ Adres: %4 FreespaceChecker - A new data directory will be created. Utworzono nowy folder danych. - name nazwa - Directory already exists. Add %1 if you intend to create a new directory here. Katalog już istnieje. Dodaj %1 jeśli masz zamiar utworzyć tutaj nowy katalog. - Path already exists, and is not a directory. Ścieżka już istnieje i nie wskazuje na folder. - Cannot create data directory here. Nie można było tutaj utworzyć folderu. @@ -1100,52 +883,46 @@ Adres: %4 HelpMessageDialog - Dogecoin Core - Command-line options - + Opcje konsoli - Dogecoin Core - Rdzeń Dogecoin + Rdzeń BitCoin - version wersja - Usage: Użycie: - command-line options opcje konsoli - UI options UI opcje - Set language, for example "de_DE" (default: system locale) Ustaw Język, na przykład "pl_PL" (domyślnie: systemowy) - Start minimized Uruchom zminimalizowany - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Pokazuj okno powitalne przy starcie (domyślnie: 1) - Choose data directory on startup (default: 0) Wybierz folder danych przy starcie (domyślnie: 0) @@ -1153,57 +930,46 @@ Adres: %4 Intro - Welcome Witaj - Welcome to Dogecoin Core. - + Witam w Dogecoin Core - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - + Ponieważ jest to pierwsze uruchomienie programu, możesz wybrać gdzie będą przechowywane informacje. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - + Program pobierze i będzie przechowywał kopię łańcucha bloków Dogecoin. W wybranym katalogu musi być przynajmniej %1GB miejsca, a z czasem wielkość danych będzie rosła. Portfel będzie przechowywany w tym samym katalogu. - Use the default data directory Użyj domyślnego folderu danych - Use a custom data directory: Użyj wybranego folderu dla danych - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. Błąd: Określony folder danych "%1" nie mógł zostać utworzony. - Error Błąd - GB of free space available GB dostępnego wolnego miejsca - (of %1GB needed) (z %1GB potrzebnego) @@ -1211,27 +977,22 @@ Adres: %4 OpenURIDialog - Open URI Otwórz URI: - Open payment request from URI or file Otwórz żądanie zapłaty z URI lub pliku - URI: URI: - Select payment request file - Select payment request file to open @@ -1239,253 +1000,206 @@ Adres: %4 OptionsDialog - Options Opcje - &Main Główne - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Opcjonalna prowizja za transakcje za kB, wspomaga ona szybkość przebiegu transakcji. Większość transakcji jest 1 kB. - Pay transaction &fee Płać prowizję za transakcje - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Automatycznie uruchamia Dogecoin po zalogowaniu do systemu. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login Uruchamiaj Dogecoin wraz z zalogowaniem do &systemu - Size of &database cache - MB - + MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Ustaw liczbę wątków skryptu weryfikacji (do 16, 0 = auto, <0 = zostawia taką ilość rdzenie wolnych, domyślnie: 0) - - - - &Spend unconfirmed change (experts only) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) Adres IP serwera proxy (np. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. Przywróć domyślne wszystkie ustawienia klienta. - &Reset Options Z&resetuj Ustawienia - &Network &Sieć - - W&allet + (0 = auto, <0 = leave that many cores free) + + + + W&allet + Portfel + + + Expert + Ekspert + + + Enable coin &control features - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Automatycznie otwiera port klienta Dogecoin na routerze. Ta opcja dzieła tylko jeśli twój router wspiera UPnP i jest ono włączone. - Map port using &UPnP Mapuj port używając &UPnP - Proxy &IP: Proxy &IP: - &Port: &Port: - Port of the proxy (e.g. 9050) Port proxy (np. 9050) - SOCKS &Version: Wersja &SOCKS - SOCKS version of the proxy (e.g. 5) SOCKS wersja serwera proxy (np. 5) - &Window &Okno - Show only a tray icon after minimizing the window. Pokazuj tylko ikonę przy zegarku po zminimalizowaniu okna. - &Minimize to the tray instead of the taskbar &Minimalizuj do paska przy zegarku zamiast do paska zadań - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimalizuje zamiast zakończyć działanie programu przy zamykaniu okna. Kiedy ta opcja jest włączona, program zakończy działanie po wybieraniu Zamknij w menu. - M&inimize on close M&inimalizuj przy zamknięciu - &Display &Wyświetlanie - User Interface &language: Język &Użytkownika: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Można tu ustawić język interfejsu uzytkownika. Żeby ustawienie przyniosło skutek trzeba uruchomić ponownie Dogecoin. - &Unit to show amounts in: &Jednostka pokazywana przy kwocie: - Choose the default subdivision unit to show in the interface and when sending coins. Wybierz podział jednostki pokazywany w interfejsie oraz podczas wysyłania monet - Whether to show Dogecoin addresses in the transaction list or not. Pokazuj adresy Dogecoin na liście transakcji. - &Display addresses in transaction list &Wyświetlaj adresy w liście transakcji - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &OK - &Cancel &Anuluj - default domyślny - none - Confirm options reset Potwierdź reset ustawień - - Client restart required to activate changes. Wymagany restart programu, aby uaktywnić zmiany. - Client will be shutdown, do you want to proceed? Program zostanie wyłączony. Czy chcesz kontynuować? - This change would require a client restart. - + Ta zmiana może wymagać ponownego uruchomienia klienta. - The supplied proxy address is invalid. Adres podanego proxy jest nieprawidłowy @@ -1493,69 +1207,54 @@ Adres: %4 OverviewPage - Form Formularz - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - Wyświetlana informacja może być nieaktualna. Twój portfel synchronizuje się automatycznie z siecią dogecoin, zaraz po tym jak uzyskano połączenie, ale proces ten nie został jeszcze ukończony. + Wyświetlana informacja może być nieaktualna. Twój portfel synchronizuje się automatycznie z siecią bitcoin, zaraz po tym jak uzyskano połączenie, ale proces ten nie został jeszcze ukończony. - Wallet Portfel - Available: Dostępne: - Your current spendable balance Twoje obecne saldo - Pending: - + W toku: - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Suma transakcji, które nie zostały jeszcze potwierdzone, a które nie zostały wliczone do twojego obecnego salda - Immature: Niedojrzały: - Mined balance that has not yet matured Balans wydobycia, który jeszcze nie dojrzał - Total: Wynosi ogółem: - Your current total balance Twoje obecne saldo - <b>Recent transactions</b> <b>Ostatnie transakcje</b> - - out of sync desynchronizacja @@ -1563,93 +1262,70 @@ Adres: %4 PaymentServer - - URI handling Obsługa URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. URI nie może zostać przetworzony! Prawdopodobnie błędny adres Dogecoin bądź nieprawidłowe parametry URI. - Requested payment amount of %1 is too small (considered dust). Żądana kwota %1 jest za niska (uznano za kurz). - - - - - - Payment request error Błąd żądania płatności - - Cannot start dogecoin: click-to-pay handler - Nie można rozpocząć dogecoin: kliknij-by-zapłacić opiekunowi + Cannot start bitcoin: click-to-pay handler + Nie można rozpocząć bitcoin: kliknij-by-zapłacić opiekunowi - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 Zwrot z %1 - Error communicating with %1: %2 Błąd komunikacji z %1 : %2 - Payment request can not be parsed or processed! - Bad response from server %1 Błędna odpowiedź z serwera %1 - Payment acknowledged Płatność potwierdzona - Network request error Błąd żądania sieci @@ -1657,23 +1333,26 @@ Adres: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Błąd: Określony folder danych "%1" nie istnieje. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Błąd: Nie można przetworzyć pliku konfiguracyjnego: %1. Używaj tylko składni klucz=wartość. + + Error: Invalid combination of -regtest and -testnet. Błąd: Niepoprawna kombinacja -regtest i -testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Wprowadź adres Dogecoin (np. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1681,22 +1360,18 @@ Adres: %4 QRImageWidget - &Save Image... &Zapisz obraz... - &Copy Image &Kopiuj obraz - Save QR Code Zapisz Kod QR - PNG Image (*.png) Obraz PNG (*.png) @@ -1704,192 +1379,146 @@ Adres: %4 RPCConsole - Client name Nazwa klienta - - - - - - - - - - - N/A NIEDOSTĘPNE - Client version Wersja klienta - &Information &Informacje - Debug window Okno debugowania - General Ogólne - Using OpenSSL version Używana wersja OpenSSL - Startup time Czas uruchomienia - Network Sieć - Name Nazwa - Number of connections Liczba połączeń - Block chain Ciąg bloków - Current number of blocks Aktualna liczba bloków - Estimated total blocks Szacowana ilość bloków - Last block time Czas ostatniego bloku - &Open &Otwórz - &Console &Konsola - &Network Traffic $Ruch sieci - &Clear &Wyczyść - Totals Kwota ogólna - In: Wejście: - Out: Wyjście: - Build date Data kompilacji - Debug log file Plik logowania debugowania - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Otwórz plik logowania debugowania Dogecoin z obecnego katalogu z danymi. Może to potrwać kilka sekund przy większych plikach. - Clear console Wyczyść konsolę - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Witam w konsoli Dogecoin RPC - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Użyj strzałek do przewijania historii i <b>Ctrl-L</b> aby wyczyścić ekran - Type <b>help</b> for an overview of available commands. Wpisz <b>help</b> aby uzyskać listę dostępnych komend - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 m - %1 h %1 h - %1 h %2 m %1 h %2 m @@ -1897,105 +1526,82 @@ Adres: %4 ReceiveCoinsDialog - &Amount: &Ilość: - &Label: &Etykieta: - &Message: &Wiadomość: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. Użyj jeden z poprzednio użytych adresów odbiorczych. Podczas ponownego używania adresów występują problemy z bezpieczeństwem i prywatnością. Nie korzystaj z tej opcji, chyba że odtwarzasz żądanie płatności wykonane już wcześniej. - R&euse an existing receiving address (not recommended) U%żyj ponownie istniejący adres odbiorczy (niepolecane) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - - An optional label to associate with the new receiving address. Opcjonalna etykieta do skojarzenia z nowym adresem odbiorczym. - Use this form to request payments. All fields are <b>optional</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. Wyczyść pola formularza - Clear Wyczyść - Requested payments history - + Żądanie historii płatności - &Request payment &Żądaj płatności - Show the selected request (does the same as double clicking an entry) - Show Pokaż - Remove the selected entries from the list Usuń zaznaczone z listy - Remove Usuń - Copy label Kopiuj etykietę - Copy message Kopiuj wiadomość - Copy amount Kopiuj kwotę @@ -2003,67 +1609,54 @@ Adres: %4 ReceiveRequestDialog - QR Code Kod QR - Copy &URI Kopiuj &URI - Copy &Address Kopiuj &adres - &Save Image... &Zapisz obraz... - Request payment to %1 Żądaj płatności do %1 - Payment information Informacje o płatności - URI URI - Address Adres - Amount Kwota - Label Etykieta - Message Wiadomość - Resulting URI too long, try to reduce the text for label / message. Wynikowy URI jest zbyt długi, spróbuj zmniejszyć tekst etykiety / wiadomości - Error encoding URI into QR Code. Błąd kodowania URI w Kodzie QR. @@ -2071,37 +1664,30 @@ Adres: %4 RecentRequestsTableModel - Date Data - Label Etykieta - Message Wiadomość - Amount Kwota - (no label) (bez etykiety) - (no message) - + (brak wiadomości) - (no amount) (brak kwoty) @@ -2109,247 +1695,194 @@ Adres: %4 SendCoinsDialog - - - Send Coins Wyślij Monety - Coin Control Features - Inputs... - + Wejścia... - automatically selected - + zaznaczone automatycznie - Insufficient funds! - + Niewystarczające środki - Quantity: Ilość: - Bytes: Bajtów: - Amount: Kwota: - Priority: Priorytet: - Fee: Opłata: - Low Output: - After Fee: Po opłacie: - Change: Reszta: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - + Kiedy ta opcja jest wybrana, ale adres reszty jest pusty lub nieprawidłowy to reszta będzie wysyłana na adres nowo-wygenerowany. - Custom change address - Send to multiple recipients at once Wyślij do wielu odbiorców na raz - Add &Recipient Dodaj Odbio&rce - Clear all fields of the form. Wyczyść wszystkie pola formularza - Clear &All Wyczyść &wszystko - Balance: Saldo: - Confirm the send action Potwierdź akcję wysyłania - S&end Wy&syłka - Confirm send coins Potwierdź wysyłanie monet - - - - %1 to %2 %1 do %2 - Copy quantity Skopiuj ilość - Copy amount Kopiuj kwotę - Copy fee Skopiuj opłatę - Copy after fee Skopiuj ilość po opłacie - Copy bytes Skopiuj ilość bajtów - Copy priority Skopiuj priorytet - Copy low output - Copy change Skopiuj resztę - Total Amount %1 (= %2) - + Łączna kwota %1 (= %2) - or lub - The recipient address is not valid, please recheck. Adres odbiorcy jest nieprawidłowy, proszę poprawić - The amount to pay must be larger than 0. Kwota do zapłacenia musi być większa od 0. - The amount exceeds your balance. Kwota przekracza twoje saldo. - The total exceeds your balance when the %1 transaction fee is included. Suma przekracza twoje saldo, gdy doliczymy %1 prowizji transakcyjnej. - Duplicate address found, can only send to each address once per send operation. Znaleziono powtórzony adres, można wysłać tylko raz na każdy adres podczas operacji wysyłania. - Transaction creation failed! Utworzenie transakcji nie powiodło się! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - + Transakcja została odrzucona! Może się to zdarzyć jeśli część monet z portfela została już wydana używając kopii pliku wallet.dat i nie zostało to tutaj uwzględnione. - Warning: Invalid Dogecoin address Ostrzeżenie: nieprawidłowy adres Dogecoin - (no label) (bez etykiety) - Warning: Unknown change address Ostrzeżenie: Nieznany adres - Are you sure you want to send? Czy na pewno chcesz wysłać? - added as transaction fee dodano jako opłata transakcyjna - Payment request expired Zażądanie płatności upłynęło - Invalid payment address %1 błędny adres płatności %1 @@ -2357,98 +1890,74 @@ Adres: %4 SendCoinsEntry - - - A&mount: Su&ma: - Pay &To: Zapłać &dla: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Adres, na który wysłasz płatności (np. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Wprowadź etykietę dla tego adresu by dodać go do książki adresowej - &Label: &Etykieta: - Choose previously used address Wybierz wcześniej użyty adres - This is a normal payment. To jest standardowa płatność - Alt+A Alt+A - Paste address from clipboard Wklej adres ze schowka - Alt+P Alt+P - - - Remove this entry Usuń ten wpis - Message: Wiadomość: - This is a verified payment request. Zweryfikowano żądanie zapłaty. - Enter a label for this address to add it to the list of used addresses Wprowadź etykietę dla tego adresu by dodać go do listy użytych adresów - - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. To żądanie zapłaty nie zostało zweryfikowane. - - Pay To: Wpłać do: - - Memo: Notatka: @@ -2456,12 +1965,10 @@ Adres: %4 ShutdownWindow - Dogecoin Core is shutting down... - + Dogecoin Core się zamyka... - Do not shut down the computer until this window disappears. Nie wyłączaj komputera dopóki to okno nie zniknie. @@ -2469,186 +1976,142 @@ Adres: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Podpisy - Podpisz / zweryfikuj wiadomość - &Sign Message Podpi&sz Wiadomość - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Możesz podpisywać wiadomości swoimi adresami aby udowodnić, że jesteś ich właścicielem. Uważaj, aby nie podpisywać niczego co wzbudza Twoje podejrzenia, ponieważ ktoś może stosować phishing próbując nakłonić Cię do ich podpisania. Akceptuj i podpisuj tylko w pełni zrozumiałe komunikaty i wiadomości. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Wprowadź adres Dogecoin (np. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Wybierz wcześniej użyty adres - - Alt+A Alt+A - Paste address from clipboard Wklej adres ze schowka - Alt+P Alt+P - Enter the message you want to sign here Wprowadź wiadomość, którą chcesz podpisać, tutaj - Signature Podpis - Copy the current signature to the system clipboard Kopiuje aktualny podpis do schowka systemowego - Sign the message to prove you own this Dogecoin address Podpisz wiadomość aby dowieść, że ten adres jest twój - Sign &Message Podpisz Wiado&mość - Reset all sign message fields Zresetuj wszystkie pola podpisanej wiadomości - - Clear &All Wyczyść &wszystko - &Verify Message &Zweryfikuj wiadomość - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Wpisz adres podpisu, wiadomość (upewnij się, że dokładnie skopiujesz wszystkie zakończenia linii, spacje, tabulacje itp.) oraz podpis poniżej by sprawdzić wiadomość. Uważaj by nie dodać więcej do podpisu niż do samej podpisywanej wiadomości by uniknąć ataku man-in-the-middle (człowiek pośrodku) - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Wprowadź adres Dogecoin (np. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Zweryfikuj wiadomość, aby upewnić się, że została podpisana odpowiednim adresem Dogecoin. - Verify &Message Zweryfikuj Wiado&mość - Reset all verify message fields Resetuje wszystkie pola weryfikacji wiadomości - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Wprowadź adres Dogecoin (np. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Kliknij "Podpisz Wiadomość" żeby uzyskać podpis - - The entered address is invalid. Podany adres jest nieprawidłowy. - - - - Please check the address and try again. Proszę sprawdzić adres i spróbować ponownie. - - The entered address does not refer to a key. Wprowadzony adres nie odnosi się do klucza. - Wallet unlock was cancelled. Odblokowanie portfela zostało anulowane. - Private key for the entered address is not available. Klucz prywatny dla podanego adresu nie jest dostępny - Message signing failed. Podpisanie wiadomości nie powiodło się - Message signed. Wiadomość podpisana. - The signature could not be decoded. Podpis nie może zostać zdekodowany. - - Please check the signature and try again. Sprawdź podpis i spróbuj ponownie. - The signature did not match the message digest. Podpis nie odpowiadał streszczeniu wiadomości - Message verification failed. Weryfikacja wiadomości nie powiodła się. - Message verified. Wiadomość zweryfikowana. @@ -2656,17 +2119,14 @@ Adres: %4 SplashScreen - Dogecoin Core - Rdzeń Dogecoin + Rdzeń BitCoin - The Dogecoin Core developers Deweloperzy Dogecoin Core - [testnet] [testnet] @@ -2674,7 +2134,6 @@ Adres: %4 TrafficGraphWidget - KB/s KB/s @@ -2682,184 +2141,138 @@ Adres: %4 TransactionDesc - Open until %1 Otwórz do %1 - conflicted - %1/offline %1/offline - %1/unconfirmed %1/niezatwierdzone - %1 confirmations %1 potwierdzeń - Status Status - , broadcast through %n node(s) , emitowany przez %n węzeł, emitowany przez %n węzły, emitowany przez %n węzłów - Date Data - Source Źródło - Generated Wygenerowano - - From Od - - - To Do - - own address własny adres - label etykieta - - - - - Credit Przypisy - matures in %n more block(s) potwierdzona przy %n bloku więcejpotwierdzona przy %n blokach więcejpotwierdzona przy %n blokach więcej - not accepted niezaakceptowane - - - - Debit Debet - Transaction fee Prowizja transakcji - Net amount Kwota netto - - Message Wiadomość - Comment Komentarz - Transaction ID ID transakcji - Merchant Kupiec - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Wygenerowane monety muszą dojrzeć przez %1 bloków zanim będzie można je wysłać. Gdy wygenerowałeś ten blok został on ogłoszony w sieci i dodany do łańcucha bloków. Jeżeli nie uda mu się wejść do łańcucha jego status zostanie zmieniony na "nie zaakceptowano" i nie będzie można go wydać. To czasem zdarza się gdy inny węzeł wygeneruje blok w kilka sekund od twojego. - Debug information Informacje debugowania - Transaction Transakcja - Inputs Wejścia - Amount Kwota - true prawda - false fałsz - , has not been successfully broadcast yet , nie został jeszcze pomyślnie wyemitowany - Open for %n more block(s) Otwórz dla %n blokuOtwórz dla %n następnych blokówOtwórz dla %n następnych bloków - unknown nieznany @@ -2867,12 +2280,10 @@ Adres: %4 TransactionDescDialog - Transaction details Szczegóły transakcji - This pane shows a detailed description of the transaction Ten panel pokazuje szczegółowy opis transakcji @@ -2880,127 +2291,102 @@ Adres: %4 TransactionTableModel - Date Data - Type Typ - Address Adres - Amount Kwota - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) Otwórz dla %n następnych bloków - Open until %1 Otwórz do %1 - Confirmed (%1 confirmations) Zatwierdzony (%1 potwierdzeń) - This block was not received by any other nodes and will probably not be accepted! Ten blok nie został odebrany przez jakikolwiek inny węzeł i prawdopodobnie nie zostanie zaakceptowany! - Generated but not accepted Wygenerowano ale nie zaakceptowano - Offline - Unconfirmed Niepotwierdzone: - Confirming (%1 of %2 recommended confirmations) Potwierdzanie (%1 z %2 rekomendowanych potwierdzeń) - Conflicted - Received with Otrzymane przez - Received from Odebrano od - Sent to Wysłano do - Payment to yourself Płatność do siebie - Mined Wydobyto - (n/a) (brak) - Transaction status. Hover over this field to show number of confirmations. Status transakcji. Najedź na pole, aby zobaczyć liczbę potwierdzeń. - Date and time that the transaction was received. Data i czas odebrania transakcji. - Type of transaction. Rodzaj transakcji. - Destination address of transaction. Adres docelowy transakcji. - Amount removed from or added to balance. Kwota usunięta z lub dodana do konta. @@ -3008,178 +2394,142 @@ Adres: %4 TransactionView - - All Wszystko - Today Dzisiaj - This week W tym tygodniu - This month W tym miesiącu - Last month W zeszłym miesiącu - This year W tym roku - Range... Zakres... - Received with Otrzymane przez - Sent to Wysłano do - To yourself Do siebie - Mined Wydobyto - Other Inne - Enter address or label to search Wprowadź adres albo etykietę żeby wyszukać - Min amount Min suma - Copy address Kopiuj adres - Copy label Kopiuj etykietę - Copy amount Kopiuj kwotę - Copy transaction ID Skopiuj ID transakcji - Edit label - Edytuj etykietę + Zmień etykietę - Show transaction details Pokaż szczegóły transakcji - Export Transaction History Eksport historii transakcji - Exporting Failed Błąd przy próbie eksportu - There was an error trying to save the transaction history to %1. Wystąpił błąd przy próbie zapisu historii transakcji do %1. - Exporting Successful Eksport powiódł się - The transaction history was successfully saved to %1. Historia transakcji została zapisana do %1. - Comma separated file (*.csv) CSV (rozdzielany przecinkami) - Confirmed Potwierdzony - Date Data - Type Typ - Label Etykieta - Address Adres - Amount Kwota - ID ID - Range: Zakres: - to do @@ -3187,7 +2537,6 @@ Adres: %4 WalletFrame - No wallet has been loaded. Nie załadowano żadnego portfela. @@ -3195,7 +2544,6 @@ Adres: %4 WalletModel - Send Coins Wyślij płatność @@ -3203,154 +2551,125 @@ Adres: %4 WalletView - &Export &Eksportuj - Export the data in the current tab to a file Eksportuj dane z aktywnej karty do pliku - Backup Wallet Kopia Zapasowa Portfela - Wallet Data (*.dat) Dane Portfela (*.dat) - Backup Failed Nie udało się wykonać kopii zapasowej - There was an error trying to save the wallet data to %1. - + Wystąpił błąd przy próbie zapisu pliku portfela do %1. - The wallet data was successfully saved to %1. - + Plik portfela został zapisany do %1. - Backup Successful Wykonano Kopię Zapasową - dogecoin-core + bitcoin-core - Usage: Użycie: - List commands Lista poleceń - Get help for a command Uzyskaj pomoc do polecenia - Options: Opcje: - - Specify configuration file (default: dogecoin.conf) - Wskaż plik konfiguracyjny (domyślnie: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Wskaż plik konfiguracyjny (domyślnie: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Wskaż plik pid (domyślnie: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Wskaż plik pid (domyślnie: bitcoin.pid) - Specify data directory Wskaż folder danych - - Set database cache size in megabytes (default: 25) - Ustaw rozmiar w megabajtach cache-u bazy danych (domyślnie: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Nasłuchuj połączeń na <port> (domyślnie: 8333 lub testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Nasłuchuj połączeń na <port> (domyślnie: 22556 lub testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Utrzymuj maksymalnie <n> połączeń z peerami (domyślnie: 125) - Connect to a node to retrieve peer addresses, and disconnect Podłącz się do węzła aby otrzymać adresy peerów i rozłącz - Specify your own public address Podaj swój publiczny adres - Threshold for disconnecting misbehaving peers (default: 100) Próg po którym nastąpi rozłączenie nietrzymających się zasad peerów (domyślnie: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Czas w sekundach, przez jaki nietrzymający się zasad peerzy nie będą mogli ponownie się podłączyć (domyślnie: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s Wystąpił błąd podczas ustawiania portu RPC %u w tryb nasłuchu: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Nasłuchuj połączeń JSON-RPC na <port> (domyślnie: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Nasłuchuj połączeń JSON-RPC na <port> (domyślnie: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands Akceptuj linię poleceń oraz polecenia JSON-RPC - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Uruchom w tle jako daemon i przyjmuj polecenia - Use the test network Użyj sieci testowej - Accept connections from outside (default: 1 if no -proxy or -connect) Akceptuj połączenia z zewnątrz (domyślnie: 1 jeśli nie ustawiono -proxy lub -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3361,7 +2680,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, musisz ustawić rpcpassword w pliku konfiguracyjnym:⏎ %s⏎ Zalecane jest użycie losowego hasła:⏎ -rpcuser=dogecoinrpc⏎ +rpcuser=bitcoinrpc⏎ rpcpassword=%s⏎ (nie musisz pamiętać tego hasła)⏎ Użytkownik i hasło nie mogą być takie same.⏎ @@ -3370,722 +2689,686 @@ Zalecane jest ustawienie alertnotify aby poinformować o problemach:⏎ na przykład: alertnotify=echo %%s | mail -s "Alarm Dogecoin" admin@foo.com⏎ - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Dopuszczalne szyfry (domyślnie: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - 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 RPC %u w tryb nasłuchu dla IPv6, korzystam z IPv4: %s - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Skojarz z podanym adresem. Użyj formatu [host]:port dla IPv6 - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - Nie można zablokować folderu danych %s. Dogecoin prawdopodobnie już działa. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + - 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. Wejście w tryb testów regresji, który wykorzystuje specjalny łańcuch, w którym bloki można rozwiązać natychmiast. To jest przeznaczone dla narzędzi testowania regresji i rozwoju aplikacji. - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - - 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. - Błąd: transakcja została odrzucona. Może się to zdarzyć, gdy monety z Twojego portfela zostały już wydane, na przykład gdy używałeś kopii wallet.dat i dogecoiny które tam wydałeś nie zostały jeszcze odjęte z portfela z którego teraz korzystasz. + Error: Listening for incoming connections failed (listen returned error %d) + + + + 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. + Błąd: transakcja została odrzucona. Może się to zdarzyć, gdy monety z Twojego portfela zostały już wydane, na przykład gdy używałeś kopii wallet.dat i bitcoiny które tam wydałeś nie zostały jeszcze odjęte z portfela z którego teraz korzystasz. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Transakcja przekracza limit. Możesz wysłać ją płacąc prowizję %s, która zostaje przekazana do węzłów, które ją prześlą i pomoże wspierać sieć Dogecoin. Czy chcesz zapłacić prowizję? - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Wykonaj polecenie, kiedy transakcja portfela ulegnie zmianie (%s w poleceniu zostanie zastąpione przez TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications To jest testowa wersja - używaj na własne ryzyko - nie używaj do wykopywania oraz przy aplikacjach kupieckich - + Unable to bind to %s on this computer. Dogecoin Core is probably already running. + + + 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. Ostrzeżenie: -paytxfee jest bardzo duży. To jest prowizja za transakcje, którą płacisz, gdy wysyłasz monety. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Uwaga: Sprawdź czy data i czas na Twoim komputerze są prawidłowe! Jeśli nie to Dogecoin nie będzie działał prawidłowo. - Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Ostrzeżenie: Sieć nie wydaje się w pełni zgodna! Niektórzy górnicy wydają się doświadczać problemów. - Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Uwaga: Wygląda na to, że nie ma pełnej zgodności z naszymi peerami! Możliwe, że potrzebujesz aktualizacji bądź inne węzły jej potrzebują - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Ostrzeżenie: błąd odczytu wallet.dat! Wszystkie klucze zostały odczytane, ale może brakować pewnych danych transakcji lub wpisów w książce adresowej lub mogą one być nieprawidłowe. - 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. Ostrzeżenie: Odtworzono dane z uszkodzonego pliku wallet.dat! Oryginalny wallet.dat został zapisany jako wallet.{timestamp}.bak w %s; jeśli twoje saldo lub transakcje są niepoprawne powinieneś odtworzyć kopię zapasową. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: - Attempt to recover private keys from a corrupt wallet.dat Próbuj odzyskać klucze prywatne z uszkodzonego wallet.dat - Dogecoin Core Daemon - - Dogecoin Core RPC client version - wersja klienta RPC dogecoin - - - Block creation options: Opcje tworzenia bloku: - Clear list of wallet transactions (diagnostic tool; implies -rescan) Wyczyść listę transakcji portfela (narzędzie diagnostyczne; implikuje -rescan) - Connect only to the specified node(s) Łącz tylko do wskazanego węzła - Connect through SOCKS proxy Połącz przez SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - podłącz do JSON-RPC na <port> (domyślnie: 22555 lub sieć testowa: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + podłącz do JSON-RPC na <port> (domyślnie: 8332 lub sieć testowa: 18332) + + + Connection options: + Opcje połączenia: - Corrupted block database detected Wykryto uszkodzoną bazę bloków - + Debugging/Testing options: + Opcje debugowania/testowania: + + + Disable safemode, override a real safe mode event (default: 0) + + + Discover own IP address (default: 1 when listening and no -externalip) Odkryj własny adres IP (domyślnie: 1 kiedy w trybie nasłuchu i brak -externalip ) - Do not load the wallet and disable wallet RPC calls Nie ładuj portfela i wyłącz odwołania RPC - Do you want to rebuild the block database now? Czy chcesz teraz przebudować bazę bloków? - Error initializing block database Błąd inicjowania bloku bazy danych - Error initializing wallet database environment %s! Błąd inicjowania środowiska bazy portfela %s! - Error loading block database Błąd ładowania bazy bloków - Error opening block database Błąd ładowania bazy bloków - Error: Disk space is low! Błąd: Mało miejsca na dysku! - Error: Wallet locked, unable to create transaction! Błąd: Zablokowany portfel, nie można utworzyć transakcji! - Error: system error: Błąd: błąd systemu: - Failed to listen on any port. Use -listen=0 if you want this. Próba otwarcia jakiegokolwiek portu nie powiodła się. Użyj -listen=0 jeśli tego chcesz. - Failed to read block info Nie udało się odczytać informacji bloku - Failed to read block Nie udało się odczytać bloku. - Failed to sync block index Nie udało się zsynchronizować indeksu bloków. - Failed to write block index Nie udało się zapisać indeksu bloków. - Failed to write block info Nie udało się zapisać informacji bloku - Failed to write block Nie udało się zapisać bloku - Failed to write file info Nie udało się zapisać informacji o pliku - Failed to write to coin database Nie udało się zapisać do bazy monet - Failed to write transaction index Nie udało się zapisać indeksu transakcji - Failed to write undo data Nie udało się zapisać danych odtwarzających - Fee per kB to add to transactions you send Prowizja za kB dodawana do wysyłanej transakcji - + Fees smaller than this are considered zero fee (for relaying) (default: + + + Find peers using DNS lookup (default: 1 unless -connect) Wyszukaj połączenia wykorzystując zapytanie DNS (domyślnie 1 jeśli nie użyto -connect) - + Force safe mode (default: 0) + + + Generate coins (default: 0) Generuj monety (domyślnie: 0) - How many blocks to check at startup (default: 288, 0 = all) Ile bloków sprawdzić przy starcie (domyślnie: 288, 0 = wszystkie) - - How thorough the block verification is (0-4, default: 3) - Jak dokładna jest weryfikacja bloku (0-4, domyślnie: 3) - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? Nieprawidłowy lub brak bloku genezy. Błędny folder_danych dla sieci? - Invalid -onion address: '%s' Nieprawidłowy adres -onion: '%s' - Not enough file descriptors available. Brak wystarczającej liczby deskryptorów plików. - Prepend debug output with timestamp (default: 1) - RPC client options: Opcje klienta RPC: - Rebuild block chain index from current blk000??.dat files Odbuduj indeks łańcucha bloków z obecnych plików blk000??.dat - Select SOCKS version for -proxy (4 or 5, default: 5) Wybierz wersję proxy SOCKS (4 lub 5, domyślnie 5) - - Send command to Dogecoin Core server - Wyślij polecenie do serwera Dogecoin + Set database cache size in megabytes (%d to %d, default: %d) + Ustaw wielkość pamięci podręcznej w megabajtach (%d do %d, domyślnie: %d) - Set maximum block size in bytes (default: %d) Ustaw maksymalną wielkość bloku w bajtach (domyślnie: %d) - Set the number of threads to service RPC calls (default: 4) Ustaw liczbę wątków do odwołań RPC (domyślnie: 4) - Specify wallet file (within data directory) Określ plik portfela (w obrębie folderu danych) - Spend unconfirmed change when sending transactions (default: 1) Wydawaj niepotwierdzoną resztę podczas wysyłania transakcji (domyślnie: 1) - - Start Dogecoin Core server - Startowanie serwera Dogecoin - - - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): - Użycie (przestarzałe, użyj dogecoin-cli): + Usage (deprecated, use bitcoin-cli): + Użycie (przestarzałe, użyj bitcoin-cli): - Verifying blocks... Weryfikacja bloków... - Verifying wallet... Weryfikacja portfela... - Wait for RPC server to start - Wallet %s resides outside data directory %s Portfel %s znajduje się poza folderem danych %s - Wallet options: Opcje portfela: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex Musisz przebudować bazę używając parametru -reindex aby zmienić -txindex - Imports blocks from external blk000??.dat file Importuj bloki z zewnętrznego pliku blk000??.dat - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Uruchom polecenie przy otrzymaniu odpowiedniego powiadomienia lub gdy zobaczymy naprawdę długie rozgałęzienie (%s w poleceniu jest podstawiane za komunikat) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + Ustaw maksymalny rozmiar transakcji o wysokim priorytecie/niskiej prowizji w bajtach (domyślnie: 27000) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Ustaw liczbę wątków skryptu weryfikacji (do 16, 0 = auto, <0 = zostawia taką ilość rdzenie wolnych, domyślnie: 0) - - - Information Informacja - Invalid amount for -minrelaytxfee=<amount>: '%s' Nieprawidłowa kwota dla -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' Nieprawidłowa kwota dla -mintxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) Utrzymuj pełen indeks transakcji (domyślnie: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Maksymalny bufor odbioru na połączenie, <n>*1000 bajtów (domyślnie: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Maksymalny bufor wysyłu na połączenie, <n>*1000 bajtów (domyślnie: 1000) - Only accept block chain matching built-in checkpoints (default: 1) Akceptuj tylko łańcuch bloków zgodny z wbudowanymi punktami kontrolnymi (domyślnie: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Łącz z węzłami tylko w sieci <net> (IPv4, IPv6 lub Tor) - + 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 server options: + Opcje serwera RPC: + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opcje SSL: (odwiedź Bitcoin Wiki w celu uzyskania instrukcji) - + Send command to Dogecoin Core + + + Send trace/debug info to console instead of debug.log file Wyślij informację/raport do konsoli zamiast do pliku debug.log. - Set minimum block size in bytes (default: 0) Ustaw minimalny rozmiar bloku w bajtach (domyślnie: 0) - + 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) Zmniejsz plik debug.log przy starcie programu (domyślnie: 1 jeśli nie użyto -debug) - Signing transaction failed Podpisywanie transakcji nie powiodło się - Specify connection timeout in milliseconds (default: 5000) Wskaż czas oczekiwania bezczynności połączenia w milisekundach (domyślnie: 5000) - + Start Dogecoin Core Daemon + + + System error: Błąd systemu: - Transaction amount too small Zbyt niska kwota transakcji - Transaction amounts must be positive Kwota transakcji musi być dodatnia - Transaction too large Transakcja zbyt duża - Use UPnP to map the listening port (default: 0) Używaj UPnP do mapowania portu nasłuchu (domyślnie: 0) - Use UPnP to map the listening port (default: 1 when listening) Używaj UPnP do mapowania portu nasłuchu (domyślnie: 1 gdy nasłuchuje) - Username for JSON-RPC connections Nazwa użytkownika dla połączeń JSON-RPC - Warning Ostrzeżenie - Warning: This version is obsolete, upgrade required! Uwaga: Ta wersja jest przestarzała, aktualizacja wymagana! - Zapping all transactions from wallet... - + on startup + + + version wersja - wallet.dat corrupt, salvage failed wallet.dat uszkodzony, odtworzenie się nie powiodło - Password for JSON-RPC connections Hasło do połączeń JSON-RPC - Allow JSON-RPC connections from specified IP address Przyjmuj połączenia JSON-RPC ze wskazanego adresu IP - Send commands to node running on <ip> (default: 127.0.0.1) Wysyłaj polecenia do węzła działającego na <ip> (domyślnie: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) Wykonaj polecenie kiedy najlepszy blok ulegnie zmianie (%s w komendzie zastanie zastąpione przez hash bloku) - Upgrade wallet to latest format Zaktualizuj portfel do najnowszego formatu. - Set key pool size to <n> (default: 100) Ustaw rozmiar puli kluczy na <n> (domyślnie: 100) - Rescan the block chain for missing wallet transactions Przeskanuj blok łańcuchów żeby znaleźć zaginione transakcje portfela - Use OpenSSL (https) for JSON-RPC connections Użyj OpenSSL (https) do połączeń JSON-RPC - Server certificate file (default: server.cert) Plik certyfikatu serwera (domyślnie: server.cert) - Server private key (default: server.pem) Klucz prywatny serwera (domyślnie: server.pem) - This help message Ta wiadomość pomocy - Unable to bind to %s on this computer (bind returned error %d, %s) Nie można przywiązać %s na tym komputerze (bind returned error %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Zezwól -addnode, -seednode i -connect na łączenie się z serwerem DNS - Loading addresses... Wczytywanie adresów... - Error loading wallet.dat: Wallet corrupted Błąd ładowania wallet.dat: Uszkodzony portfel - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Błąd ładowania wallet.dat: Portfel wymaga nowszej wersji Dogecoin - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Portfel wymaga przepisania: zrestartuj Dogecoina żeby ukończyć - Error loading wallet.dat Błąd ładowania wallet.dat - Invalid -proxy address: '%s' Nieprawidłowy adres -proxy: '%s' - Unknown network specified in -onlynet: '%s' Nieznana sieć w -onlynet: '%s' - Unknown -socks proxy version requested: %i Nieznana wersja proxy w -socks: %i - Cannot resolve -bind address: '%s' Nie można uzyskać adresu -bind: '%s' - Cannot resolve -externalip address: '%s' Nie można uzyskać adresu -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Nieprawidłowa kwota dla -paytxfee=<amount>: '%s' - Invalid amount Nieprawidłowa kwota - Insufficient funds Niewystarczające środki - Loading block index... Ładowanie indeksu bloku... - Add a node to connect to and attempt to keep the connection open Dodaj węzeł do łączenia się and attempt to keep the connection open - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Nie można przywiązać %s na tym komputerze. Dogecoin prawdopodobnie już działa. - - - Loading wallet... Wczytywanie portfela... - Cannot downgrade wallet Nie można dezaktualizować portfela - Cannot write default address Nie można zapisać domyślnego adresu - Rescanning... Ponowne skanowanie... - Done loading Wczytywanie zakończone - To use the %s option Aby użyć opcji %s - Error Błąd - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4094,4 +3377,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Jeżeli plik nie istnieje, utwórz go z uprawnieniami właściciela-tylko-do-odczytu. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index acddad9a5..21a1bf8f1 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - + Sobre o Dogecoin Core - <b>Dogecoin Core</b> version - + versão do <b>Dogecoin Core</b> - This is experimental software. @@ -27,153 +24,128 @@ Distribuido sob a licença de software MIT/X11, veja o arquivo anexo COPYING ou Este produto inclui software desenvolvido pelo Projeto OpenSSL para uso no OpenSSL Toolkit (http://www.openssl.org/), software de criptografia escrito por Eric Young (eay@cryptsoft.com) e sofware UPnP escrito por Thomas Bernard. - Copyright Copyright - The Dogecoin Core developers - + Programadores do Dogecoin Core + + + (%1-bit) + (%1-bit) AddressBookPage - Double-click to edit address or label - Clique duas vezes para editar o endereço ou a etiqueta + Duplo-clique para editar o endereço ou o rótulo - Create a new address Criar um novo endereço - &New &Novo - Copy the currently selected address to the system clipboard Copie o endereço selecionado para a área de transferência do sistema - &Copy &Copiar - C&lose &Fechar - &Copy Address &Copiar Endereço - Delete the currently selected address from the list Excluir os endereços selecionados da lista - Export the data in the current tab to a file Exportar os dados na aba atual para um arquivo - &Export &Exportar - &Delete &Excluir - Choose the address to send coins to Escolha o endereço para enviar moedas - Choose the address to receive coins with - + Escolha o endereço para receber moedas - C&hoose Escol&ha - Very sending addresses Enviando endereços - Much receiving addresses Recebendo endereços - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Estes são os seus endereços Dogecoin para receber pagamentos. Você pode querer enviar um endereço diferente para cada remetente, para acompanhar quem está pagando. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - + Estes são os seus endereços Dogecoin para receber pagamentos. Recomenda-se a utilização de um novo endereço de recebimento para cada transação. - Copy &Label - Copiar &Etiqueta + Copiar &Rótulo - &Edit &Editar - Export Address List Exportar lista de endereços - Comma separated file (*.csv) Arquivo separado por vírgulas (*. csv) - Exporting Failed Exportação Falhou - There was an error trying to save the address list to %1. - + Ocorreu um erro ao tentar salvar a lista de endereço em %1. AddressTableModel - Label Rótulo - Address Endereço - (no label) (Sem rótulo) @@ -181,140 +153,106 @@ Este produto inclui software desenvolvido pelo Projeto OpenSSL para uso no OpenS AskPassphraseDialog - Passphrase Dialog Janela da Frase de Segurança - Enter passphrase Digite a frase de segurança - New passphrase Nova frase de segurança - Repeat new passphrase Repita a nova frase de segurança - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Digite a nova frase de seguraça da sua carteira. <br/> Por favor, use uma frase de <b>10 ou mais caracteres aleatórios,</b> ou <b>oito ou mais palavras.</b> - Encrypt wallet Criptografar carteira - This operation needs your wallet passphrase to unlock the wallet. Esta operação precisa de sua frase de segurança para desbloquear a carteira. - Unlock wallet Desbloquear carteira - This operation needs your wallet passphrase to decrypt the wallet. Esta operação precisa de sua frase de segurança para descriptografar a carteira. - Decrypt wallet Descriptografar carteira - Change passphrase Alterar frase de segurança - Enter the old and new passphrase to the wallet. Digite a frase de segurança antiga e nova para a carteira. - Confirm wallet encryption Confirmar criptografia da carteira - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Aviso: Se você criptografar sua carteira e perder sua senha, você vai <b>perder todos os seus DOGECOINS!</b> + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Atenção: Se você criptografar sua carteira e perder sua senha, você vai <b>perder todos os seus DogecoinS!</b> - Are you sure you wish to encrypt your wallet? Tem certeza de que deseja criptografar sua carteira? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANTE: Qualquer backup prévio que você tenha feito do seu arquivo wallet deve ser substituído pelo novo e encriptado arquivo wallet gerado. Por razões de segurança, qualquer backup do arquivo wallet não criptografado se tornará inútil assim que você começar a usar uma nova carteira criptografada. - - Warning: The Caps Lock key is on! - Cuidado: A tecla Caps Lock está ligada! + Atenção: A tecla Caps Lock está ligada! - - Wallet encrypted Carteira criptografada - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - O Dogecoin irá fechar agora para finalizar o processo de encriptação. Lembre-se de que encriptar sua carteira não protege totalmente suas dogecoins de serem roubadas por malwares que tenham infectado o seu computador. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + O Dogecoin irá fechar agora para finalizar o processo de encriptação. Lembre-se de que encriptar sua carteira não protege totalmente suas bitcoins de serem roubadas por malwares que tenham infectado o seu computador. - - - - Wallet encryption failed A criptografia da carteira falhou - Wallet encryption failed due to an internal error. Your wallet was not encrypted. A criptografia da carteira falhou devido a um erro interno. Sua carteira não estava criptografada. - - The supplied passphrases do not match. A frase de segurança fornecida não confere. - Wallet unlock failed - A abertura da carteira falhou + O desbloqueio da carteira falhou - - - The passphrase entered for the wallet decryption was incorrect. A frase de segurança digitada para a descriptografia da carteira estava incorreta. - Wallet decryption failed A descriptografia da carteira falhou - Wallet passphrase was successfully changed. A frase de segurança da carteira foi alterada com êxito. @@ -322,352 +260,286 @@ Este produto inclui software desenvolvido pelo Projeto OpenSSL para uso no OpenS BitcoinGUI - Sign &message... &Assinar Mensagem... - Synchronizing with network... Sincronizando com a rede... - &Overview &Visão geral - Node - + - Show general overview of wallet Mostrar visão geral da carteira - &Transactions &Transações - Browse transaction history Navegar pelo histórico de transações - E&xit S&air - Quit application Sair da aplicação - - Show information about Dogecoin Core + Show information about Dogecoin Mostrar informação sobre Dogecoin - - About &Qt Sobre &Qt - Show information about Qt Mostrar informações sobre o Qt - &Options... &Opções... - &Encrypt Wallet... &Criptografar Carteira... - &Backup Wallet... &Backup Carteira... - &Change Passphrase... &Mudar frase de segurança... - Very &sending addresses... Enviando endereço&s... - Much &receiving addresses... &Receber endereços... - Open &URI... Abrir &URI... - Importing blocks from disk... Importando blocos do disco... - Reindexing blocks on disk... Reindexando blocos no disco... - Send coins to a Dogecoin address - Enviar moedas para um endereço dogecoin + Enviar moedas para um endereço bitcoin - - Modify configuration options for Dogecoin Core - Modificar opções de configuração para dogecoin + Modify configuration options for Dogecoin + Modificar opções de configuração para bitcoin - Backup wallet to another location Fazer cópia de segurança da carteira para uma outra localização - Change the passphrase used for wallet encryption Mudar a frase de segurança utilizada na criptografia da carteira - &Debug window Janela de &Depuração - Open debugging and diagnostic console Abrir console de depuração e diagnóstico - &Verify message... &Verificar mensagem... - Dogecoin Dogecoin - Wallet Carteira - &Send &Enviar - &Receive &Receber - - &Show / Hide &Exibir/Ocultar - Show or hide the main Window Mostrar ou esconder a Janela Principal. - Encrypt the private keys that belong to your wallet Criptografar as chaves privadas que pertencem à sua carteira - Sign messages with your Dogecoin addresses to prove you own them Assine mensagems com seus endereços Dogecoin para provar que você é dono deles - Verify messages to ensure they were signed with specified Dogecoin addresses Verificar mensagens para se assegurar que elas foram assinadas pelo dono de Endereços Dogecoin específicos - &File &Arquivo - &Settings &Configurações - &Help &Ajuda - Tabs toolbar Barra de ferramentas - - [testnet] [testnet] - Dogecoin Core Núcleo Dogecoin - - Request payments (generates QR codes and dogecoin: URIs) - + Request payments (generates QR codes and bitcoin: URIs) + Solicitações de pagamentos (gera códigos QR e bitcoin: URIs) - - &About Dogecoin Core - + &A respeito do Dogecoin Core - Show the list of used sending addresses and labels - + Mostrar a lista de endereços de envio e rótulos usados - Show the list of used receiving addresses and labels - + Mostrar a lista de endereços de recebimento usados ​​e rótulos - - Open a dogecoin: URI or payment request - + Open a bitcoin: URI or payment request + Abrir um bitcoin: URI ou cobrança - &Command-line options - + Opções de linha de &comando - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options - + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options + Mostra a mensagem de ajuda do Dogecoin Core para pegar a lista com os comandos possíveis - - Dogecoin client Cliente Dogecoin - %n active connection(s) to Dogecoin network %n conexão ativa na rede Dogecoin%n conexões ativas na rede Dogecoin - No block source available... Nenhum servidor disponível... - Processed %1 of %2 (estimated) blocks of transaction history. Processado %1 de %2 blocos (estimado) de histórico de transações. - Processed %1 blocks of transaction history. Processado %1 blocos do histórico de transações. - %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 atrás - 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. - Error Erro - Warning - Cuidado + Atenção - Information Informação - Up to date Atualizado - Catching up... Recuperando o atraso ... - Sent transaction Transação enviada - Incoming transaction Transação recebida - Date: %1 Amount: %2 Type: %3 @@ -679,25 +551,21 @@ 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>locked</b> Carteira está <b>criptografada</b> e atualmente <b>bloqueada</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Um erro fatal ocorreu. Dogecoin não pode continuar em segurança e irá fechar. ClientModel - Network Alert Alerta da Rede @@ -705,359 +573,285 @@ Endereço: %4 CoinControlDialog - Coin Control Address Selection - + Coin Control Address Selection - Quantity: Quantidade: - Bytes: - + Bytes: - Amount: Quantia: - Priority: Prioridade: - Fee: Taxa: - Low Output: Rendimento baixo: - After Fee: Depois da taxa: - Change: trocar - (un)select all - + (de)selecionar tudo - Tree mode - + Modo árvore - List mode - + Modo lista - Amount Quantidade - Address Endereço - Date Data - Confirmations Confirmações - Confirmed Confirmado - Priority Prioridade - Copy address Copiar endereço - Copy label - Copiar etiqueta + Copiar rótulo - - Copy amount Copiar quantia - Copy transaction ID Copiar ID da transação - Lock unspent - + Travar não gasto - Unlock unspent - + Destravar não gasto - Copy quantity Copiar quantidade - Copy fee Copiar taxa - Copy after fee - + Copia pós-taxa - Copy bytes Copiar bytes - Copy priority - + Copia prioridade - Copy low output - + Copia saída de pouco valor - Copy change - + Copia alteração - highest - + mais alta possível - higher - + muito alta - high - + alta - medium-high - + média-alta - medium - + média - low-medium - + média-baixa - low - + baixa - lower - + muito baixa - lowest - + a mais baixa possível - (%1 locked) - + (%1 travado) - none nenhum - Dust - + Sujeira - yes - + sim - no - + não - This label turns red, if the transaction size is greater than 1000 bytes. - + Esse marcador fica vermelho se a transação ultrapassar 1000 bytes. - - This means a fee of at least %1 per kB is required. - + Isso significa que uma taxa de pelo menos %1 por kB é necessária. - Can vary +/- 1 byte per input. - + Pode variar +/- 1 byte por entrada. - Transactions with higher priority are more likely to get included into a block. - + Transações de alta prioridade são mais propensas a serem incluídas em um bloco. - This label turns red, if the priority is smaller than "medium". - + Esse marcador fica vermelho se a prioridade for menor que "média". - This label turns red, if any recipient receives an amount smaller than %1. - + Esse marcador fica vermelho se qualquer destinatário receber uma quantia menor que %1 - - This means a fee of at least %1 is required. - + Isso significa que uma taxa de pelo menos %1 é necessária. - Amounts below 0.546 times the minimum relay fee are shown as dust. - + Quantias abaixo de 0,546 multiplicado pela taxa mínima é mostrada como sujeira. - This label turns red, if the change is smaller than %1. - + Esse marcador fica vermelho se o troco for menor que %1. - - (no label) (Sem rótulo) - change from %1 (%2) - + troco de %1 (%2) - (change) - + (troco) EditAddressDialog - Edit Address Editar Endereço - &Label - &Etiqueta + &Rótulo - The label associated with this address list entry - + O rótulo associado a esta entrada na lista de endereços - The address associated with this address list entry. This can only be modified for sending addresses. - + O endereço associado a esta lista de endereços de entrada. Isso só pode ser modificado para o envio de endereços. - &Address &Endereço - New receiving address Novo endereço de recebimento - New sending address Novo endereço de envio - Edit receiving address Editar endereço de recebimento - Edit sending address Editar endereço de envio - The entered address "%1" is already in the address book. O endereço digitado "%1" já se encontra no catálogo de endereços. - The entered address "%1" is not a valid Dogecoin address. O endereço digitado "%1" não é um endereço Dogecoin válido. - Could not unlock wallet. - Não foi possível destravar a carteira. + Não foi possível desbloquear a carteira. - New key generation failed. A geração de nova chave falhou. @@ -1065,27 +859,22 @@ Endereço: %4 FreespaceChecker - A new data directory will be created. Um novo diretório de dados será criado. - name nome - Directory already exists. Add %1 if you intend to create a new directory here. O diretório já existe. Adicione %1 se você pretende criar um novo diretório aqui. - Path already exists, and is not a directory. Esta pasta já existe, e não é um diretório. - Cannot create data directory here. Não é possível criar um diretório de dados aqui. @@ -1093,52 +882,46 @@ Endereço: %4 HelpMessageDialog - Dogecoin Core - Command-line options - + Dogecoin Core - Opções de linha de comando - Dogecoin Core Núcleo Dogecoin - version versão - Usage: Uso: - command-line options opções da linha de comando - UI options opções da UI - Set language, for example "de_DE" (default: system locale) Escolher língua, por exemplo "de_DE" (padrão: localização do sistema) - Start minimized Inicializar minimizado - + Set SSL root certificates for payment request (default: -system-) + Define certificados SSL root para requisição de pagamento (padrão: -system-) + + Show splash screen on startup (default: 1) Mostrar tela inicial ao ligar (padrão: 1) - Choose data directory on startup (default: 0) Escolha o diretório de dados na inicialização (padrão: 0) @@ -1146,57 +929,46 @@ Endereço: %4 Intro - Welcome Bem-vindo - Welcome to Dogecoin Core. - + Bem vindo ao Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - + A primeira vez que o programa é aberto você pode escolher onde o Dogecoin Core vai guardar os dados. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - + Dogecoin Core vai fazer download e guardar uma cópia da longa e única cadeia de blocos do Dogecoin: Blockchain. Pelo menos %1 GB de dados serão armazenados nesse diretório e isso aumentará ao longo do tempo. Sua carteira também será armazenada nesse diretório. - Use the default data directory Use o diretório de dados padrão - Use a custom data directory: Use um diretório de dados personalizado: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. Erro: dados especificados diretório "% 1" não pode ser criado. - Error Erro - GB of free space available GB de espaço disponível - (of %1GB needed) (Mais de 1GB necessário) @@ -1204,271 +976,229 @@ Endereço: %4 OpenURIDialog - Open URI - + Abrir URI - Open payment request from URI or file - + Cobrança aberta de URI ou arquivo - URI: - + URI: - Select payment request file - + Selecione o arquivo de cobrança - Select payment request file to open - + Selecione o arquivo de cobrança para ser aberto OptionsDialog - Options Opções - &Main Principal - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Taxa de transação opcional por kB que ajuda a garantir que suas transações sejam processadas rapidamente. A maioria das transações são de 1 kB. - Pay transaction &fee Pagar taxa de &transação - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Iniciar Dogecoin automaticamente após se logar no sistema. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login Iniciar Dogecoin no login do sistema - Size of &database cache - + Tamanho do banco de &dados do cache - - Set database cache size in megabytes (default: 25) - Definir o tamanho do cache do banco de dados em megabytes (padrão: 25) - - - MB MB - Number of script &verification threads - + Número de threads do script de &verificação - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Defina o número de linhas de verificação (até 16, 0 = auto, <0 = deixar muitos núcleos livres, padrão: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - + Conectado na rede do Dogecoin através de proxy SOCKS. - &Connect through SOCKS proxy (default proxy): - + &Conectado via proxy SOCKS (padrão proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - + Endereço de IP do proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - + Ativa as opções de linha de comando que sobrescreve as opções acima: - Reset all client options to default. Redefinir todas as opções do cliente para opções padrão. - &Reset Options &Redefinir opções - &Network Rede - + (0 = auto, <0 = leave that many cores free) + (0 = automático, <0 = número de cores deixados livres) + + + W&allet + C&arteira + + + Expert + Avançado + + + Enable coin &control features + Habilitar opções de &controle de moedas + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Se você desabilitar o gasto de um troco não confirmado, o troco da transação não poderá ser utilizado até a transação ter pelo menos uma confirmação. Isso também afeta seu saldo computado. + + + &Spend unconfirmed change + Ga&star mudança não confirmada + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Abrir as portas do cliente Dogecoin automaticamente no roteador. Isto só funcionará se seu roteador suportar UPnP e esta função estiver habilitada. - Map port using &UPnP Mapear porta usando &UPnP - Proxy &IP: &IP do proxy: - &Port: &Porta: - Port of the proxy (e.g. 9050) Porta do serviço de proxy (ex. 9050) - SOCKS &Version: &Versão do SOCKS: - SOCKS version of the proxy (e.g. 5) Versão do proxy SOCKS (ex. 5) - &Window &Janela - Show only a tray icon after minimizing the window. Mostrar apenas um ícone na bandeja ao minimizar a janela. - &Minimize to the tray instead of the taskbar &Minimizar para a bandeja em vez da barra de tarefas. - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimizar em vez de sair do aplicativo quando a janela for fechada. Quando esta opção é escolhida, o aplicativo só será fechado selecionando Sair no menu Arquivo. - M&inimize on close M&inimizar ao sair - &Display &Mostrar - User Interface &language: &Língua da interface com usuário: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. A língua da interface com usuário pode ser escolhida aqui. Esta configuração só surtirá efeito após reiniciar o Dogecoin. - &Unit to show amounts in: &Unidade usada para mostrar quantidades: - Choose the default subdivision unit to show in the interface and when sending coins. - Escolha a unidade padrão de subdivisão para interface mostrar quando enviar dogecoins. + Escolha a unidade padrão de subdivisão para interface mostrar quando enviar bitcoins. - Whether to show Dogecoin addresses in the transaction list or not. Mostrar ou não endereços Dogecoin na lista de transações. - &Display addresses in transaction list Mostrar en&dereços na lista de transações - Whether to show coin control features or not. - + Mostrar ou não opções de controle da moeda. - - Display coin &control features (experts only) - - - - &OK &OK - &Cancel &Cancelar - default padrão - none nenhum - Confirm options reset Confirmar redefinição de opções - - Client restart required to activate changes. - + Reinicialização do aplicativo necessária para efetivar alterações. - Client will be shutdown, do you want to proceed? - + O aplicativo vai desligar, deseja continuar? - This change would require a client restart. - + Essa mudança requer uma reinicialização do aplicativo. - The supplied proxy address is invalid. O endereço proxy fornecido é inválido. @@ -1476,69 +1206,54 @@ Endereço: %4 OverviewPage - Form Formulário - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. A informação mostrada pode estar desatualizada. Sua carteira sincroniza automaticamente com a rede Dogecoin depois que a conexão é estabelecida, mas este processo pode não estar completo ainda. - - Unconfirmed: - Não confirmadas: - - - Wallet Carteira - - Confirmed: - Confirmado: + Available: + Disponível: - Your current spendable balance Seu saldo atual spendable - + Pending: + Pendente: + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Total de transações que ainda têm de ser confirmados, e ainda não contam para o equilíbrio spendable - Immature: Imaturo: - Mined balance that has not yet matured Saldo minerado que ainda não maturou - Total: Total: - Your current total balance Seu saldo total atual - <b>Recent transactions</b> <b>Transações recentes</b> - - out of sync fora de sincronia @@ -1546,93 +1261,70 @@ Endereço: %4 PaymentServer - - URI handling Manipulação de URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. URI não pode ser decodificado! Isso pode ter sido causado por um endereço Dogecoin inválido ou por parâmetros URI malformados. - Requested payment amount of %1 is too small (considered dust). - + Valor do pagamento solicitado de 1% é muito pequeno (Considerado poeira). - - - - - - Payment request error Erro no pedido de pagamento - - Cannot start dogecoin: click-to-pay handler - Não foi possível iniciar dogecoin: manipulador clique-para-pagar + Cannot start bitcoin: click-to-pay handler + Não foi possível iniciar bitcoin: manipulador clique-para-pagar - Net manager warning - + Gerenciador de rede problemático - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - + Seu proxy ativo não suporta SOCKS5, que é obrigatório para cobranças via proxy. - Payment request fetch URL is invalid: %1 - + URL de cobrança é inválida: %1 - Payment request file handling - + Manipulação de arquivo de cobrança - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - + Arquivo de cobrança não pôde ser lido ou processado! Isso pode ter sido causado por um arquivo de cobrança inválido. - Unverified payment requests to custom payment scripts are unsupported. - + Cobrança não verificada para scripts de pagamento personalizados não é suportado. - Refund from %1 - + Reembolso de 1% - Error communicating with %1: %2 Erro na comunicação com% 1:% 2 - Payment request can not be parsed or processed! - + Cobrança não pôde ser processada! - Bad response from server %1 Resposta ruim do servidor% 1 - Payment acknowledged Pagamento reconhecido - Network request error Erro de solicitação de rede @@ -1640,23 +1332,26 @@ Endereço: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Erro: diretório de dados especificado "% 1" não existe. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Erro: Não foi possível interpretar arquivo de configuração: %1. Utilize apenas a sintaxe chave=valor. + + Error: Invalid combination of -regtest and -testnet. Erro: Combinação inválida de-regtest e testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Digite um endereço Dogecoin (exemplo: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1664,321 +1359,248 @@ Endereço: %4 QRImageWidget - &Save Image... &Salvar imagem - &Copy Image &Copiar Imagem - Save QR Code Salvar código QR - PNG Image (*.png) - + PNG Imagem (*.png) RPCConsole - Client name Nome do cliente - - - - - - - - - - - N/A N/A - Client version Versão do cliente - &Information &Informação - Debug window - + Janela de debug - General Geral - Using OpenSSL version Usando OpenSSL versão - Startup time Horário de inicialização - Network Rede - Name Nome - Number of connections Número de conexões - Block chain Corrente de blocos - Current number of blocks Quantidade atual de blocos - Estimated total blocks Total estimado de blocos - Last block time Horário do último bloco - &Open &Abrir - &Console &Console - &Network Traffic Tráfico de Rede - &Clear &Limpar - Totals Totais - In: Entrada: - Out: Saída: - Build date Data do 'build' - Debug log file Arquivo de log de Depuração - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Abrir o arquivo de log de depuração do Dogecoin do diretório atual de dados. Isso pode levar alguns segundos para arquivos de log grandes. - Clear console Limpar console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Bem-vindo ao console Dogecoin RPC. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Use as setas para cima e para baixo para navegar pelo histórico, e <b>Ctrl-L</b> para limpar a tela. - Type <b>help</b> for an overview of available commands. Digite <b>help</b> para uma visão geral dos comandos disponíveis. - %1 B - + 1% B - %1 KB - + 1% KB - %1 MB - + %1 MB - %1 GB - + %1 GB - %1 m - + %1 m - %1 h - + %1 h - %1 h %2 m - + %1 h %2 m ReceiveCoinsDialog - &Amount: Qu&antia: - &Label: - &Etiqueta: + &Rótulo: - &Message: &Mensagem - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - + Reutilize um dos endereços de recebimento anteriormente utilizados. Reutilizar um endereço implica em problemas com segurança e privacidade. Não reutilize a menos que esteja refazendo uma cobrança já feita anteriormente. - R&euse an existing receiving address (not recommended) - + R&eutilize um endereço de recebimento (não recomendado) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + Uma mensagem opcional que será anexada na cobrança e será mostrada quando ela for aberta. Nota: A mensagem não será enviada com o pagamento pela rede Dogecoin. - - An optional label to associate with the new receiving address. - + Um marcador opcional para associar ao novo endereço de recebimento. - Use this form to request payments. All fields are <b>optional</b>. - + Use esse formulário para fazer cobranças. Todos os campos são <b>opcionais</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - + Uma quantia opcional para cobrar. Deixe vazio ou em branco se o pagador puder especificar a quantia. - Clear all fields of the form. - + Limpa todos os campos do formulário. - Clear Limpar - Requested payments history - + Histórico de cobranças - &Request payment &Requisitar Pagamento - Show the selected request (does the same as double clicking an entry) - + Mostra a cobrança selecionada (o mesmo que clicar duas vezes em um registro) - Show - + Mostrar - Remove the selected entries from the list - + Remove o registro selecionado da lista - Remove - + Remover - Copy label - Copiar etiqueta + Copiar rótulo - Copy message - + Copiar mensagem - Copy amount Copiar quantia @@ -1986,67 +1608,54 @@ Endereço: %4 ReceiveRequestDialog - QR Code Código QR - Copy &URI Copiar &URI - Copy &Address &Copiar Endereço - &Save Image... &Salvar Imagem... - Request payment to %1 Requisitar pagamento para %1 - Payment information Informação de pagamento - URI URI - Address Endereço - Amount Quantidade - Label - Etiqueta + Rótulo - Message Mensagem - Resulting URI too long, try to reduce the text for label / message. URI resultante muito longa. Tente reduzir o texto do rótulo ou da mensagem. - Error encoding URI into QR Code. Erro ao codigicar o URI em código QR @@ -2054,285 +1663,225 @@ Endereço: %4 RecentRequestsTableModel - Date Data - Label - Etiqueta + Rótulo - Message Mensagem - Amount Quantidade - (no label) (Sem rótulo) - (no message) - + (sem mensagem) - (no amount) - + (sem quantia especificada) SendCoinsDialog - - - Send Coins Enviar dinheiro - Coin Control Features - + Opções de Controle da Moeda - Inputs... - + Entradas... - automatically selected - + automaticamente selecionado - Insufficient funds! - + Saldo insuficiente! - Quantity: Quantidade: - Bytes: - + Bytes: - Amount: Quantia: - Priority: Prioridade: - Fee: Taxa: - Low Output: Rendimento baixo: - After Fee: Depois da taxa: - Change: trocar - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - + Se isso estiver ativo e o endereço de troco estiver vazio ou inválido, o troco será enviado a um novo endereço gerado na hora. - Custom change address - + Endereço específico de troco - Send to multiple recipients at once Enviar para vários destinatários de uma só vez - Add &Recipient Adicionar destinatário - Clear all fields of the form. - + Limpar todos os campos do formulário. - Clear &All Limpar Tudo - Balance: Saldo: - Confirm the send action Confirmar o envio - S&end Enviar - Confirm send coins Confirmar envio de dinheiro - - - - %1 to %2 %1 para %2 - Copy quantity Copiar quantidade - Copy amount Copiar quantia - Copy fee Copiar taxa - Copy after fee - + Copia pós-taxa - Copy bytes Copiar bytes - Copy priority - + Copia prioridade - Copy low output - + Copia saída de pouco valor - Copy change - + Copia alteração - Total Amount %1 (= %2) - + Quantidade Total %1 (= %2) - or ou - The recipient address is not valid, please recheck. O endereço do destinatário não é válido, favor verificar. - The amount to pay must be larger than 0. A quantidade a ser paga precisa ser maior que 0. - The amount exceeds your balance. A quantidade excede seu saldo. - The total exceeds your balance when the %1 transaction fee is included. O total excede seu saldo quando uma taxa de transação de %1 é incluída. - Duplicate address found, can only send to each address once per send operation. Endereço duplicado: pode-se enviar para cada endereço apenas uma vez por transação. - Transaction creation failed! - + A criação de transação falhou! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - + A transação foi rejeitada! Isso pode acontecer se alguns bitcoins na sua carteira já foram gastos em outro local, por exemplo se você tiver uma cópia do wallet.dat e os bitcoins tiverem sido gastos na cópia mas não marcados como gastos aqui ainda. - Warning: Invalid Dogecoin address - + Atenção: endereço de Dogecoin inválido - (no label) (Sem rótulo) - Warning: Unknown change address - + Atenção: endereço de troco desconhecido - Are you sure you want to send? Tem certeza que quer enviar? - added as transaction fee Adicionado como taxa de transação - Payment request expired Pedido de pagamento expirado - Invalid payment address %1 Endereço de pagamento inválido %1 @@ -2340,98 +1889,74 @@ Endereço: %4 SendCoinsEntry - - - A&mount: Q&uantidade: - Pay &To: Pagar &Para: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) O endereço para onde enviar o pagamento (ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - Digite uma etiqueta para este endereço para adicioná-lo ao catálogo de endereços + Digite um rótulo para este endereço para adicioná-lo ao catálogo de endereços - &Label: - &Etiqueta: + &Rótulo: - Choose previously used address - + Escolher endereço usado anteriormente - This is a normal payment. - + Este é um pagamento normal. - Alt+A Alt+A - Paste address from clipboard Colar o endereço da área de transferência - Alt+P Alt+P - - - Remove this entry Remover esta entrada - Message: Mensagem: - This is a verified payment request. - + Essa é cobrança verificada. - Enter a label for this address to add it to the list of used addresses - + Digite um rótulo para este endereço para adicioná-lo no catálogo - - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + A mensagem que foi anexada ao bitcoin: URI na qual será gravada na transação para sua referência. Nota: Essa mensagem não será gravada publicamente na rede Dogecoin. - This is an unverified payment request. - + Essa é uma cobrança não verificada. - - Pay To: Pague Para: - - Memo: Memorizar: @@ -2439,12 +1964,10 @@ Endereço: %4 ShutdownWindow - Dogecoin Core is shutting down... - + Dogecoin Core está desligando... - Do not shut down the computer until this window disappears. Não desligue o computador até esta janela desaparece. @@ -2452,186 +1975,142 @@ Endereço: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Assinaturas - Assinar / Verificar uma mensagem - &Sign Message &Assinar Mensagem - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Você pode assinar mensagens com seus endereços para provar que você é o dono deles. Seja cuidadoso para não assinar algo vago, pois ataques de pishing podem tentar te enganar para dar sua assinatura de identidade para eles. Apenas assine afirmações completamente detalhadas com as quais você concorda. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Endereço a ser usado para assinar a mensagem (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - + Escolha um endereço usado anteriormente - - Alt+A Alt+A - Paste address from clipboard Colar o endereço da área de transferência - Alt+P Alt+P - Enter the message you want to sign here Entre a mensagem que você quer assinar aqui - Signature Assinatura - Copy the current signature to the system clipboard Copiar a assinatura para a área de transferência do sistema - Sign the message to prove you own this Dogecoin address Assinar mensagem para provar que você é dono deste endereço Dogecoin - Sign &Message Assinar &Mensagem - Reset all sign message fields Limpar todos os campos de assinatura da mensagem - - Clear &All Limpar Tudo - &Verify Message &Verificar Mensagem - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Forneça o endereço da assinatura, a mensagem (se assegure que você copiou quebras de linha, espaços, tabs, etc. exatamente) e a assinatura abaixo para verificar a mensagem. Cuidado para não ler mais na assinatura do que está escrito na mensagem propriamente, para evitar ser vítima de uma ataque do tipo "man-in-the-middle". - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) O endereço usado para assinar a mensagem (ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Verificar mensagem para se assegurar que ela foi assinada pelo dono de um endereço Dogecoin específico. - Verify &Message Verificar %Mensagem - Reset all verify message fields Limpar todos os campos de assinatura da mensagem - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Digite um endereço Dogecoin (exemplo: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Clique em "Assinar Mensagem" para gerar a assinatura - - The entered address is invalid. O endereço fornecido é inválido. - - - - Please check the address and try again. Por favor, verifique o endereço e tente novamente. - - The entered address does not refer to a key. O endereço fornecido não se refere a uma chave. - Wallet unlock was cancelled. - Destravamento da Carteira foi cancelado. + Desbloqueamento da Carteira foi cancelado. - Private key for the entered address is not available. A chave privada para o endereço fornecido não está disponível. - Message signing failed. Assinatura da mensagem falhou. - Message signed. Mensagem assinada. - The signature could not be decoded. A assinatura não pode ser decodificada. - - Please check the signature and try again. Por favor, verifique a assinatura e tente novamente. - The signature did not match the message digest. A assinatura não corresponde ao "resumo da mensagem". - Message verification failed. Verificação da mensagem falhou. - Message verified. Mensagem verificada. @@ -2639,17 +2118,14 @@ Endereço: %4 SplashScreen - Dogecoin Core Núcleo Dogecoin - The Dogecoin Core developers - + Programadores do Dogecoin Core - [testnet] [testnet] @@ -2657,187 +2133,145 @@ Endereço: %4 TrafficGraphWidget - KB/s - + KB/s TransactionDesc - Open until %1 Aberto até %1 - + conflicted + em conflito + + %1/offline %1/offline - %1/unconfirmed %1/não confirmadas - %1 confirmations %1 confirmações - Status Status - , broadcast through %n node(s) , difundir atráves de %n nó, difundir atráves de %n nós - Date Data - Source Fonte - Generated Gerados - - From De - - - To Para - - own address seu próprio endereço - label - etiqueta + rótulo - - - - - Credit Crédito - matures in %n more block(s) matura em mais %n blocomatura em mais %n blocos - not accepted não aceito - - - - Debit Débito - Transaction fee Taxa de transação - Net amount Valor líquido - - Message Mensagem - Comment Comentário - Transaction ID ID da transação - Merchant Mercador - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + Dogecoins recém minerados precisam aguardar %1 blocos antes de serem gastos. Quando o bloco foi gerado, ele foi disseminado pela rede para ser adicionado à cadeia de blocos: blockchain. Se ele falhar em ser inserido na cadeia, seu estado será modificado para "não aceito" e ele não poderá ser gasto. Isso pode acontecer eventualmente quando blocos são gerados quase que simultaneamente. - Debug information Informação de depuração - Transaction Transação - Inputs Entradas - Amount Quantidade - true verdadeiro - false falso - , has not been successfully broadcast yet , ainda não foi propagada na rede com sucesso. - Open for %n more block(s) Abrir para mais %n blocoAbrir para mais %n blocos - unknown desconhecido @@ -2845,12 +2279,10 @@ Endereço: %4 TransactionDescDialog - Transaction details Detalhes da transação - This pane shows a detailed description of the transaction Este painel mostra uma descrição detalhada da transação @@ -2858,118 +2290,102 @@ Endereço: %4 TransactionTableModel - Date Data - Type Tipo - Address Endereço - Amount Quantidade - Immature (%1 confirmations, will be available after %2) - + Recém-criado (%1 confirmações, disponível somente após %2) - Open for %n more block(s) Abrir para mais %n blocoAbrir para mais %n blocos - Open until %1 Aberto até %1 - - Offline (%1 confirmations) - Offline (%1 confirmações) - - - - Unconfirmed (%1 of %2 confirmations) - Não confirmado (%1 of %2 confirmações) - - - - Confirmed (%1 confirmations) Confirmado (%1 confirmações) - This block was not received by any other nodes and will probably not be accepted! Este bloco não foi recebido por nenhum outro participante da rede e provavelmente não será aceito! - Generated but not accepted Gerado mas não aceito - + Offline + Offline + + + Unconfirmed + Não confirmado + + + Confirming (%1 of %2 recommended confirmations) + Confirmando (%1 de %2 confirmações recomendadas) + + + Conflicted + Conflitou + + Received with Recebido por - Received from Recebido de - Sent to Enviado para - Payment to yourself Pagamento para você mesmo - Mined Minerado - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. Status da transação. Passe o mouse sobre este campo para mostrar o número de confirmações. - Date and time that the transaction was received. Data e hora em que a transação foi recebida. - Type of transaction. Tipo de transação. - Destination address of transaction. Endereço de destino da transação. - Amount removed from or added to balance. Quantidade debitada ou creditada ao saldo. @@ -2977,178 +2393,142 @@ Endereço: %4 TransactionView - - All Todos - Today Hoje - This week Esta semana - This month Este mês - Last month Mês passado - This year Este ano - Range... Intervalo... - Received with Recebido por - Sent to Enviado para - To yourself Para você mesmo - Mined Minerado - Other Outro - Enter address or label to search - Procure um endereço ou etiqueta + Procure um endereço ou rótulo - Min amount Quantidade mínima - Copy address Copiar endereço - Copy label - Copiar etiqueta + Copiar rótulo - Copy amount Copiar quantia - Copy transaction ID Copiar ID da transação - Edit label - Editar etiqueta + Editar rótulo - Show transaction details Mostrar detalhes da transação - Export Transaction History - + Exportar Histórico de Transação - Exporting Failed Exportação Falhou - There was an error trying to save the transaction history to %1. - + Ocorreu um erro ao tentar salvar o histórico de transação em %1. - Exporting Successful Exportação feita com sucesso - The transaction history was successfully saved to %1. - + O histórico de transação foi gravado com sucesso em %1. - Comma separated file (*.csv) Arquivo separado por vírgulas (*. csv) - Confirmed Confirmado - Date Data - Type Tipo - Label - Etiqueta + Rótulo - Address Endereço - Amount Quantidade - ID ID - Range: Intervalo: - to para @@ -3156,15 +2536,13 @@ Endereço: %4 WalletFrame - No wallet has been loaded. - + Nenhuma carteira foi carregada. WalletModel - Send Coins Send Coins @@ -3172,154 +2550,125 @@ Endereço: %4 WalletView - &Export &Exportar - Export the data in the current tab to a file Exportar os dados na aba atual para um arquivo - Backup Wallet Fazer cópia de segurança da Carteira - Wallet Data (*.dat) Dados da Carteira (*.dat) - Backup Failed Cópia de segurança Falhou - There was an error trying to save the wallet data to %1. - + Ocorreu um erro ao tentar salvar os dados da carteira em %1. - The wallet data was successfully saved to %1. - + Os dados da carteira foram salvos com sucesso em %1. - Backup Successful Backup feito com sucesso - dogecoin-core + bitcoin-core - Usage: Uso: - List commands Lista de comandos - Get help for a command Obtenha ajuda sobre um comando - Options: Opções: - - Specify configuration file (default: dogecoin.conf) - Especifique um arquivo de configurações (padrão: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Especifique um arquivo de configurações (padrão: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Especifique um arquivo de pid (padrão: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Especifique um arquivo de pid (padrão: bitcoind.pid) - Specify data directory Especificar diretório de dados - - Set database cache size in megabytes (default: 25) - Definir o tamanho do cache do banco de dados em megabytes (padrão: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Procurar por conexões em <port> (padrão: 8333 ou testnet:18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Procurar por conexões em <port> (padrão: 22556 ou testnet:44556) - - - Maintain at most <n> connections to peers (default: 125) Manter no máximo <n> conexões aos peers (padrão: 125) - Connect to a node to retrieve peer addresses, and disconnect Conectar a um nó para receber endereços de participantes, e desconectar. - Specify your own public address Especificar seu próprio endereço público - Threshold for disconnecting misbehaving peers (default: 100) Limite para desconectar peers mal comportados (padrão: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Número de segundos para impedir que peers mal comportados reconectem (padrão: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s Um erro ocorreu ao configurar a porta RPC %u para escuta em IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Escutar conexões JSON-RPC na porta <porta> (padrão: 22555 ou testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Escutar conexões JSON-RPC na porta <porta> (padrão: 8332 ou testnet: 18332) - Accept command line and JSON-RPC commands Aceitar linha de comando e comandos JSON-RPC - + Dogecoin Core RPC client version + Versão do cliente Dogecoin Core RPC + + Run in the background as a daemon and accept commands Rodar em segundo plano como serviço e aceitar comandos - Use the test network Usar rede de teste - Accept connections from outside (default: 1 if no -proxy or -connect) Aceitar conexões externas (padrão: 1 se opções -proxy ou -connect não estiverem presentes) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3330,7 +2679,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, você deve especificar uma senha rpcpassword no arquivo de configuração:⏎ %s⏎ É recomendado que você use a seguinte senha aleatória:⏎ -rpcuser=dogecoinrpc⏎ +rpcuser=bitcoinrpc⏎ rpcpassword=%s⏎ (você não precisa lembrar esta senha)⏎ O nome de usuário e a senha NÃO PODEM ser os mesmos.⏎ @@ -3340,707 +2689,686 @@ por exemplo: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + Codificadores aceitos (padrão: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Um erro ocorreu ao configurar a porta RPC %u para escuta em IPv6, voltando ao IPv4: %s - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Vincular ao endereço fornecido e sempre escutar nele. Use a notação [host]:port para IPv6 - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - Não foi possível obter exclusividade de escrita no endereço %s. O Dogecoin provavelmente já está rodando. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + Restringe a taxa de transações gratuitas para <n>*1000 bytes por minuto (padrão:15) - 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. Entre em modo de teste de regressão, que utiliza uma cadeia especial em que os blocos podem ser resolvido imediatamente. Este destina-se a ferramentas de teste de regressão e de desenvolvimento de aplicativos. - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + Entra no modo de teste de regressão, que usa uma cadeia especial onde os blocos podem ser resolvidos instantaneamente. + + + Error: Listening for incoming connections failed (listen returned error %d) + Erro: Falha ao tentar aguardar conexões de entrada (erro retornado %d) - 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 transação foi rejeitada. Isso pode acontecer se alguns dos dogecoins de sua carteira já haviam sido gastos, por exemplo se você usou uma cópia do arquivo wallet.dat e alguns dogecoins foram gastos na cópia mas não foram marcados como gastos aqui. + Erro: A transação foi rejeitada. Isso pode acontecer se alguns dos bitcoins de sua carteira já haviam sido gastos, por exemplo se você usou uma cópia do arquivo wallet.dat e alguns bitcoins foram gastos na cópia mas não foram marcados como gastos 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 transação requer uma taxa de transação de pelo menos %s, por causa sua quantidade, complexidade ou uso de dinheiro recebido recentemente. - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Executar comando quando uma transação da carteira mudar (%s no comando será substituído por TxID) - + Fees smaller than this are considered zero fee (for transaction creation) (default: + Taxas menores que esta são consideradas taxa zero (para criação da transação) (padrão: + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + Descarrega a atividade do banco de dados da memória para log em disco a cada <n> megabytes (padrão: 100) + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + Quão completa a verificação de blocos do -checkblocks é (0-4, padrão: 3) + + + In this mode -genproclimit controls how many blocks are generated immediately. + Neste modo -genproclimit controla quantos blocos são gerados imediatamente. + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Define o número de threads de verificação de script (%u a %d, 0 = automático, <0 = número de cores deixados livres, padrão: %d) + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + Define o limite de processador para quando geração está ativa (-1 = ilimitada, padrão: -1) + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Este pode ser um build de teste pré-lançamento - use por sua conta e risco - não use para mineração ou aplicações de comércio. - + Unable to bind to %s on this computer. Dogecoin Core is probably already running. + Impossível ouvir em %s neste computador. Dogecoin Core já está sendo executado provavelmente. + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Use proxy SOCKS5 separado para alcançar nós via Tor hidden services (padrão: -proxy) - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - Cuidado: valor de -paytxfee escolhido é muito alto! Este é o valor da taxa de transação que você irá pagar se enviar a transação. + Atenção: valor de -paytxfee escolhido é muito alto! Este é o valor da taxa de transação que você irá pagar se enviar a transação. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. - Cuidado: Por favor, verifique que a data e hora do seu computador estão corretas! If o seu relógio estiver errado, o Dogecoin não irá funcionar corretamente. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. + Atenção: Por favor, verifique que a data e hora do seu computador estão corretas! Se o seu relógio estiver errado, o Dogecoin não irá funcionar corretamente. - Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - Aviso: A rede não parecem concordar plenamente! Alguns mineiros parecem estar enfrentando problemas. + Atenção: A rede não parecem concordar plenamente! Alguns mineiros parecem estar enfrentando 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: Nós não parecem concordar plenamente com nossos colegas! Você pode precisar atualizar ou outros nós pode precisar atualizar. + Atenção: Nós não parecemos concordar plenamente com nossos colegas! Você pode precisar atualizar ou outros nós podem precisar atualizar. - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - Cuidado: erro ao ler arquivo wallet.dat! Todas as chaves foram lidas corretamente, mas dados transações e do catálogo de endereços podem estar faltando ou estar incorretas. + Atenção: erro ao ler arquivo wallet.dat! Todas as chaves foram lidas corretamente, mas dados de transações e do catálogo de endereços podem estar faltando ou incorretos. - 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.dat corrompido, dados recuperados! Arquivo wallet.dat original salvo como wallet.{timestamp}.bak em %s; se seu saldo ou transações estiverem incorretos, você deve restauras o backup. + Atenção: wallet.dat corrompido, dados recuperados! Arquivo wallet.dat original salvo como wallet.{timestamp}.bak em %s; se seu saldo ou transações estiverem incorretos, você deve restaurar o backup. + + + (default: 1) + (padrão: 1) + + + (default: wallet.dat) + (padrão: wallet.dat) - <category> can be: - + <category> pode ser: - Attempt to recover private keys from a corrupt wallet.dat Tentar recuperar chaves privadas de um arquivo wallet.dat corrompido - Dogecoin Core Daemon - + Dogecoin Core Daemon - - Dogecoin Core RPC client version - - - - Block creation options: Opções de criação de blocos: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Limpa a lista de transações da carteira (ferramenta de diagnóstico; implica -rescan) + + Connect only to the specified node(s) Conectar apenas a nó(s) específico(s) - Connect through SOCKS proxy - + Conecta através de proxy SOCKS - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + Conectar-se ao JSON-RPC em <port> (padrão: 8332 or testnet: 18332) + + + Connection options: + Opções de conexão: - Corrupted block database detected Detectado Banco de dados de blocos corrompido - + Debugging/Testing options: + Opções de Debug/Teste: + + + Disable safemode, override a real safe mode event (default: 0) + Desabilita modo seguro, sobrepõe um evento de modo seguro real (padrão: 0) + + Discover own IP address (default: 1 when listening and no -externalip) Descobrir os próprios endereços IP (padrão: 1 quando no modo listening e opção -externalip não estiver presente) - Do not load the wallet and disable wallet RPC calls - + Não carrega a carteira e desabilita as chamadas RPC para a carteira - Do you want to rebuild the block database now? Você quer reconstruir o banco de dados de blocos agora? - Error initializing block database Erro ao inicializar banco de dados de blocos - Error initializing wallet database environment %s! Erro ao inicializar ambiente de banco de dados de carteira %s! - Error loading block database Erro ao carregar banco de dados de blocos - Error opening block database Erro ao abrir banco de dados de blocos - Error: Disk space is low! Erro: Espaço em disco insuficiente! - Error: Wallet locked, unable to create transaction! - Erro: Carteira travada, impossível criar transação! + Erro: Carteira bloqueada, impossível criar transação! - Error: system error: Erro: erro de sistema - Failed to listen on any port. Use -listen=0 if you want this. Falha ao escutar em qualquer porta. Use -listen=0 se você quiser isso. - 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 índice de blocos - Failed to write block index Falha ao escrever índice de blocos - Failed to write block info Falha ao escrever informações de bloco - Failed to write block Falha ao escrever bloco - Failed to write file info Falha ao escrever informções de arquivo - Failed to write to coin database Falha ao escrever banco de dados de moedas - Failed to write transaction index Falha ao escrever índice de transações - Failed to write undo data Falha ao escrever dados para desfazer ações - Fee per kB to add to transactions you send - + Taxa por kB para adicionar às transações que você envia + + + Fees smaller than this are considered zero fee (for relaying) (default: + Taxas menores que esta são consideradas taxa zero (para relay) (padrão: - Find peers using DNS lookup (default: 1 unless -connect) Procurar pares usando consulta de DNS (padrão: 1 a menos que a opção -connect esteja presente) - + Force safe mode (default: 0) + Força modo seguro (padrão: 0) + + Generate coins (default: 0) Gerar moedas (padrão: 0) - How many blocks to check at startup (default: 288, 0 = all) Quantos blocos checar ao inicializar (padrão: 288, 0 = todos) - - How thorough the block verification is (0-4, default: 3) - Quão minuciosa é a verificação dos blocos (0-4, padrão: 3) - - - If <category> is not supplied, output all debugging information. - + Se <category> não for informada, logar toda informação de debug. + + + Importing... + Importando... - Incorrect or no genesis block found. Wrong datadir for network? Bloco gênese incorreto ou não encontrado. Datadir errado para a rede? - Invalid -onion address: '%s' - + Endereço -onion inválido: '%s' - Not enough file descriptors available. Decriptadores de arquivos disponíveis insuficientes. - Prepend debug output with timestamp (default: 1) - + Adiciona timestamp como prefixo no debug (padrão: 1) - RPC client options: Opções de cliente RPC: - Rebuild block chain index from current blk000??.dat files Reconstruir índice de blockchain a partir dos arquivos atuais blk000??.dat - Select SOCKS version for -proxy (4 or 5, default: 5) - + Seleciona versão SOCKS para -proxy (4 ou 5, padrão: 5) - - Send command to Dogecoin Core server - + Set database cache size in megabytes (%d to %d, default: %d) + Define o tamanho do cache do banco de dados em megabytes (%d para %d, padrão: %d) - Set maximum block size in bytes (default: %d) - + Define o tamanho máximo de cada bloco em bytes (padrão: %d) - Set the number of threads to service RPC calls (default: 4) - Defina o número de threads de script de verificação. (Padrão: 4) + Defina o número de threads de chamadas RPC (padrão: 4) - Specify wallet file (within data directory) Especifique o arquivo da carteira (dentro do diretório de dados) - - Start Dogecoin Core server - Iniciar servidor Dogecoin + Spend unconfirmed change when sending transactions (default: 1) + Permite gastar troco não confirmado ao criar transações (padrão: 1) - This is intended for regression testing tools and app development. - + Isso é usado para testes de regressão e ferramentas de desenvolvimento. - - Usage (deprecated, use dogecoin-cli): - + Usage (deprecated, use bitcoin-cli): + Exemplo de uso (obsoleto, use bitcoin-cli): - Verifying blocks... Verificando blocos... - Verifying wallet... Verificando carteira... - Wait for RPC server to start Aguarde um servidor RPC para iniciar - Wallet %s resides outside data directory %s Carteira de% s reside fora de dados do diretório% s - Wallet options: Opções da Carteira: - Warning: Deprecated argument -debugnet ignored, use -debug=net - + Atenção: Parâmetro obsoleto -debugnet foi ignorado, use -debug=net - You need to rebuild the database using -reindex to change -txindex Você precisa reconstruir o banco de dados utilizando-reindexar a mudar-txindex - Imports blocks from external blk000??.dat file Importar blocos de um arquivo externo blk000??.dat - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + Não foi possível obter proteção exclusiva ao diretório de dados %s. Dogecoin Core já está sendo executado provavelmente. + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Executa o comando quando um alerta relevante é recebido ou vemos um longo garfo (% s em cmd é substituída pela mensagem) - Output debugging information (default: 0, supplying <category> is optional) - + Informação de saída de debug (padrão: 0, definir <category> é opcional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + Define o tamanho máximo de alta-prioridade por taxa baixa nas transações em bytes (padrão: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Defina o número de linhas de verificação (até 16, 0 = auto, <0 = deixar muitos núcleos livres, padrão: 0) - - - Information Informação - Invalid amount for -minrelaytxfee=<amount>: '%s' Quantidade inválida para -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' Inválido montante for-mintxfee = <amount>: '% s' - + Limit size of signature cache to <n> entries (default: 50000) + Limita tamanho do cache de assinaturas em <n> entradas (padrão: 50000) + + + Log transaction priority and fee per kB when mining blocks (default: 0) + Registra log da prioridade de transação e taxa por kB quando minerando blocos (padrão: 0) + + Maintain a full transaction index (default: 0) Manter índice completo de transações (padrão: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Buffer máximo de recebimento por conexão, <n>*1000 bytes (padrão: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Buffer máximo de envio por conexão, <n>*1000 bytes (padrão: 1000) - Only accept block chain matching built-in checkpoints (default: 1) Apenas aceitar cadeia de blocos correspondente a marcas de verificação internas (padrão: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Apenas conectar em nós na rede <net> (IPv4, IPv6, ou Tor) - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opções SSL: (veja a Wiki do Bitcoin para instruções de configuração SSL) + Print block on startup, if found in block index + Imprime bloco ao iniciar, se encontrado no índice de blocos + + + Print block tree on startup (default: 0) + Imprime árvore de blocos ao iniciar (padrão: 0) + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opções RPC SSL: (veja o Bitcoin Wiki para instruções de configuração SSL) + + + RPC server options: + Opções do servidor RPC: + + + Randomly drop 1 of every <n> network messages + Aleatoriamente descarta 1 em cada <n> mensagens da rede + + + Randomly fuzz 1 of every <n> network messages + Aleatoriamente embaralha 1 em cada <n> mensagens da rede + + + Run a thread to flush wallet periodically (default: 1) + Executa uma thread para limpar a carteira periodicamente (padrão: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opções SSL: (veja a Wiki do Dogecoin para instruções de configuração SSL) + + + Send command to Dogecoin Core + Enviar comando ao Dogecoin Core - Send trace/debug info to console instead of debug.log file Mandar informação de trace/debug para o console em vez de para o arquivo debug.log - Set minimum block size in bytes (default: 0) Determinar tamanho mínimo de bloco em bytes (padrão: 0) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + Define a flag DB_PRIVATE no ambiente de banco de dados da carteira (padrão: 1) + + + Show all debugging options (usage: --help -help-debug) + Exibir todas opções de debug (uso: --help -help-debug) + + + Show benchmark information (default: 0) + Exibir informação de benchmark (padrão: 0) + + Shrink debug.log file on client startup (default: 1 when no -debug) Encolher arquivo debug.log ao iniciar o cliente (padrão 1 se opção -debug não estiver presente) - Signing transaction failed Assinatura de transação falhou - Specify connection timeout in milliseconds (default: 5000) Especifique o tempo limite (timeout) da conexão em milissegundos (padrão: 5000) - + Start Dogecoin Core Daemon + Inicializar serviço Dogecoin Core + + System error: Erro de sistema: - Transaction amount too small Quantidade da transação muito pequena. - Transaction amounts must be positive As quantidades das transações devem ser positivas. - Transaction too large Transação muito larga - Use UPnP to map the listening port (default: 0) Usar UPnP para mapear porta de escuta (padrão: 0) - Use UPnP to map the listening port (default: 1 when listening) Usar UPnP para mapear porta de escuta (padrão: 1 quando estiver escutando) - Username for JSON-RPC connections Nome de usuário para conexões JSON-RPC - Warning - Cuidado + Atenção - Warning: This version is obsolete, upgrade required! - Cuidado: Esta versão está obsoleta, atualização exigida! + Atenção: Esta versão está obsoleta, atualização exigida! + + + Zapping all transactions from wallet... + Aniquilando todas as transações da carteira... + + + on startup + ao iniciar - version versão - wallet.dat corrupt, salvage failed wallet.dat corrompido, recuperação falhou - Password for JSON-RPC connections Senha para conexões JSON-RPC - Allow JSON-RPC connections from specified IP address Permitir conexões JSON-RPC de endereços IP específicos - Send commands to node running on <ip> (default: 127.0.0.1) - Enviar comando para nó rodando em <ip> (pardão: 127.0.0.1) + Enviar comando para nó rodando em <ip> (padrão: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) Executar comando quando o melhor bloco mudar (%s no comando será substituído pelo hash do bloco) - Upgrade wallet to latest format Atualizar carteira para o formato mais recente - Set key pool size to <n> (default: 100) Determinar tamanho do pool de endereços para <n> (padrão: 100) - Rescan the block chain for missing wallet transactions Re-escanear blocos procurando por transações perdidas da carteira - Use OpenSSL (https) for JSON-RPC connections Usar OpenSSL (https) para conexões JSON-RPC - Server certificate file (default: server.cert) Arquivo de certificado do servidor (padrão: server.cert) - Server private key (default: server.pem) Chave privada do servidor (padrão: server.pem) - This help message Esta mensagem de ajuda - Unable to bind to %s on this computer (bind returned error %d, %s) Impossível vincular a %s neste computador (bind retornou erro %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Permitir consultas DNS para -addnode, -seednode e -connect - Loading addresses... Carregando endereços... - Error loading wallet.dat: Wallet corrupted Erro ao carregar wallet.dat: Carteira corrompida - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Erro ao carregar wallet.dat: Carteira requer uma versão mais nova do Dogecoin - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete A Carteira precisou ser reescrita: reinicie o Dogecoin para completar - Error loading wallet.dat Erro ao carregar wallet.dat - Invalid -proxy address: '%s' Endereço -proxy inválido: '%s' - Unknown network specified in -onlynet: '%s' Rede desconhecida especificada em -onlynet: '%s' - Unknown -socks proxy version requested: %i Versão desconhecida do proxy -socks requisitada: %i - Cannot resolve -bind address: '%s' Impossível encontrar o endereço -bind: '%s' - Cannot resolve -externalip address: '%s' Impossível encontrar endereço -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Quantidade inválida para -paytxfee=<quantidade>: '%s' - Invalid amount Quantidade inválida - Insufficient funds Saldo insuficiente - Loading block index... Carregando índice de blocos... - Add a node to connect to and attempt to keep the connection open Adicionar um nó com o qual se conectar e tentar manter a conexão ativa - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Impossível vincular a %s neste computador. O Dogecoin provavelmente já está rodando. - - - Loading wallet... Carregando carteira... - Cannot downgrade wallet Não é possível fazer downgrade da carteira - Cannot write default address Não foi possível escrever no endereço padrão - Rescanning... Re-escaneando... - Done loading Carregamento terminado - To use the %s option Para usar a opção %s - Error Erro - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4049,4 +3377,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Se o arquivo não existir, crie um com permissão de leitura apenas pelo dono - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_pt_PT.ts b/src/qt/locale/bitcoin_pt_PT.ts index 6ea13c334..55c49fa54 100644 --- a/src/qt/locale/bitcoin_pt_PT.ts +++ b/src/qt/locale/bitcoin_pt_PT.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - Sobre o Núcleo Dogecoin + Sobre o Dogecoin Core - <b>Dogecoin Core</b> version - <b>Dogecoin Core</b> versão + versão do <b>Dogecoin Core</b> - This is experimental software. @@ -27,294 +24,235 @@ Distribuído sob uma licença de software MIT/X11, por favor verifique o ficheir Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no OpenSSL Toolkit (http://www.openssl.org/), software criptográfico escrito por Eric Young (eay@cryptsoft.com) e software UPnP escrito por Thomas Bernard. - Copyright Copyright - The Dogecoin Core developers - Os programadores Dogecoin + Os programadores Dogecoin Core + + + (%1-bit) + AddressBookPage - Double-click to edit address or label Clique duas vezes para editar o endereço ou o rótulo - Create a new address Criar um novo endereço - &New &Novo - Copy the currently selected address to the system clipboard - Copie o endereço selecionado para a área de transferência + Copiar o endereço selecionado para a área de transferência - &Copy &Copiar - C&lose F&echar - &Copy Address &Copiar Endereço - Delete the currently selected address from the list Apagar o endereço selecionado da lista - Export the data in the current tab to a file Exportar os dados no separador actual para um ficheiro - &Export &Exportar - &Delete - E&liminar + E&liminar\ - Choose the address to send coins to - Escolha o endereço com que pretende enviar + Escolha o endereço para o qual pretende enviar moedas - Choose the address to receive coins with - Escolha o endereço com que pretende receber + Escolha o endereço com o qual pretende receber moedas - C&hoose Escol&her - Very sending addresses Endereços de envio - Much receiving addresses Endereços de depósito - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Estes são os seus endereços Dogecoin para enviar pagamentos. Verifique sempre o valor e a morada de envio antes de enviar moedas. + Estes são os seus endereços Dogecoin para enviar pagamentos. Verifique sempre o valor e o endereço de envio antes de enviar moedas. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Estes são os seus endereços Dogecoin para receber pagamentos. É recomendado que utilize um endereço novo para cada transacção. - Copy &Label Copiar &Rótulo - &Edit &Editar - Export Address List Exportar Lista de Endereços - Comma separated file (*.csv) Ficheiro separado por vírgulas (*.csv) - Exporting Failed - Exportação falhada + A Exportação Falhou - There was an error trying to save the address list to %1. - + Ocorreu um erro ao tentar guardar a lista de endereços em %1. AddressTableModel - Label Rótulo - Address Endereço - (no label) - (Sem rótulo) + (sem rótulo) AskPassphraseDialog - Passphrase Dialog - Diálogo de Frase-Passe + Diálogo de frase de segurança - Enter passphrase - Escreva a frase de segurança + Insira a frase de segurança - New passphrase Nova frase de segurança - Repeat new passphrase Repita a nova frase de segurança - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Escreva a nova frase de seguraça da sua carteira. <br/> Por favor, use uma frase de <b>10 ou mais caracteres aleatórios,</b> ou <b>oito ou mais palavras</b>. + Insira a nova frase de segurança da sua carteira.<br/>Por favor, use uma frase de <b>10 ou mais caracteres aleatórios,</b> ou <b>oito ou mais palavras</b>. - Encrypt wallet Encriptar carteira - This operation needs your wallet passphrase to unlock the wallet. A sua frase de segurança é necessária para desbloquear a carteira. - Unlock wallet Desbloquear carteira - This operation needs your wallet passphrase to decrypt the wallet. A sua frase de segurança é necessária para desencriptar a carteira. - Decrypt wallet Desencriptar carteira - Change passphrase Alterar frase de segurança - Enter the old and new passphrase to the wallet. - Escreva a frase de segurança antiga seguida da nova para a carteira. + Escreva a antiga frase de segurança da carteira, seguida da nova. - Confirm wallet encryption Confirmar encriptação da carteira - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Atenção: Se encriptar a carteira e perder a sua senha irá <b>PERDER TODOS OS SEUS DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Atenção: Se encriptar a carteira e perder a sua senha irá <b>PERDER TODOS OS SEUS DogecoinS</b>! - Are you sure you wish to encrypt your wallet? Tem a certeza que deseja encriptar a carteira? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - IMPORTANTE: Qualquer cópia de segurança anterior da carteira deverá ser substituída com o novo, actualmente encriptado, ficheiro de carteira. Por razões de segurança, cópias de segurança não encriptadas efectuadas anteriormente do ficheiro da carteira tornar-se-ão inúteis assim que começar a usar a nova carteira encriptada. + IMPORTANTE: Qualquer cópia de segurança da carteira anterior deverá ser substituída com o novo ficheiro de carteira, agora encriptado. Por razões de segurança, cópias de segurança não encriptadas tornar-se-ão inúteis assim que começar a usar a nova carteira encriptada. - - Warning: The Caps Lock key is on! Atenção: A tecla Caps Lock está activa! - - Wallet encrypted Carteira encriptada - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - O cliente Dogecoin irá agora ser fechado para terminar o processo de encriptação. Recorde que a encriptação da sua carteira não protegerá totalmente os seus dogecoins de serem roubados por programas maliciosos que infectem o seu computador. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + O cliente Dogecoin irá agora ser fechado para terminar o processo de encriptação. Recorde que a encriptação da sua carteira não protegerá totalmente os seus bitcoins de serem roubados por programas maliciosos que infectem o seu computador. - - - - Wallet encryption failed A encriptação da carteira falhou - Wallet encryption failed due to an internal error. Your wallet was not encrypted. A encriptação da carteira falhou devido a um erro interno. A carteira não foi encriptada. - - The supplied passphrases do not match. As frases de segurança fornecidas não coincidem. - Wallet unlock failed O desbloqueio da carteira falhou - - - The passphrase entered for the wallet decryption was incorrect. A frase de segurança introduzida para a desencriptação da carteira estava incorreta. - Wallet decryption failed A desencriptação da carteira falhou - Wallet passphrase was successfully changed. A frase de segurança da carteira foi alterada com êxito. @@ -322,352 +260,286 @@ Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no Open BitcoinGUI - Sign &message... Assinar &mensagem... - Synchronizing with network... - Sincronizando com a rede... + A sincronizar com a rede... - &Overview Visã&o geral - Node - Show general overview of wallet Mostrar visão geral da carteira - &Transactions &Transações - Browse transaction history Navegar pelo histórico de transações - E&xit Fec&har - Quit application Sair da aplicação - - Show information about Dogecoin Core - Mostrar informação sobre Dogecoin + Show information about Dogecoin + Mostrar informação sobre o Dogecoin - - About &Qt Sobre &Qt - Show information about Qt Mostrar informação sobre Qt - &Options... &Opções... - &Encrypt Wallet... E&ncriptar Carteira... - &Backup Wallet... &Guardar Carteira... - &Change Passphrase... Mudar &Palavra-passe... - Very &sending addresses... A &enviar endereços... - Much &receiving addresses... A &receber endereços... - Open &URI... Abrir &URI... - Importing blocks from disk... - Importando blocos do disco... + A importar blocos do disco... - Reindexing blocks on disk... - Reindexando blocos no disco... + A reindexar blocos no disco... - Send coins to a Dogecoin address - Enviar moedas para um endereço dogecoin + Enviar moedas para um endereço bitcoin - - Modify configuration options for Dogecoin Core - Modificar opções de configuração para dogecoin + Modify configuration options for Dogecoin + Modificar opções de configuração para bitcoin - Backup wallet to another location Faça uma cópia de segurança da carteira para outra localização - Change the passphrase used for wallet encryption Mudar a frase de segurança utilizada na encriptação da carteira - &Debug window Janela de &depuração - Open debugging and diagnostic console Abrir consola de diagnóstico e depuração - &Verify message... &Verificar mensagem... - Dogecoin Dogecoin - Wallet Carteira - &Send &Enviar - &Receive &Receber - - &Show / Hide Mo&strar / Ocultar - Show or hide the main Window - Mostrar ou esconder a Janela principal + Mostrar ou esconder a janela principal - Encrypt the private keys that belong to your wallet Encriptar as chaves privadas que pertencem à sua carteira - Sign messages with your Dogecoin addresses to prove you own them Assine mensagens com os seus endereços Dogecoin para provar que os controla - Verify messages to ensure they were signed with specified Dogecoin addresses Verifique mensagens para assegurar que foram assinadas com o endereço Dogecoin especificado - &File &Ficheiro - &Settings Con&figurações - &Help A&juda - Tabs toolbar Barra de separadores - - [testnet] [rede de testes] - Dogecoin Core - Núcleo Dogecoin + Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) - Solicitar pagamentos (gera códigos QR) + Request payments (generates QR codes and bitcoin: URIs) + Solicitar pagamentos (gera códigos QR e URIs bitcoin:) - - &About Dogecoin Core - &Sobre o Núcleo Dogecoin + &Sobre o Dogecoin Core - Show the list of used sending addresses and labels - Mostrar a lista de endereços de envio e rótulos usados + Mostrar a lista de rótulos e endereços de envio usados - Show the list of used receiving addresses and labels - Mostrar a lista de endereços para receber pagamentos e rótulos usados + Mostrar a lista de rótulos e endereços de receção usados - - Open a dogecoin: URI or payment request - Abrir dogecoin: link ou pedido de pagamento + Open a bitcoin: URI or payment request + Abrir URI bitcoin: ou pedido de pagamento - &Command-line options - + Opções da linha de &comandos - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options - + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options + Mostrar a mensagem de ajuda do Dogecoin Core para obter uma lista com possíveis opções de linha de comandos - - Dogecoin client Cliente Dogecoin - %n active connection(s) to Dogecoin network %n ligação ativa à rede Dogecoin%n ligações ativas à rede Dogecoin - No block source available... - Nenhum bloco fonto disponível + Nenhuma fonte de blocos disponível... - Processed %1 of %2 (estimated) blocks of transaction history. - Processados %1 dos %2 blocos (estimados) do histórico de transacções. + Processados %1 de %2 blocos (estimados) do histórico de transacções. - Processed %1 blocks of transaction history. Processados %1 blocos do histórico de transações. - %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 em atraso - Last received block was generated %1 ago. - Último bloco recebido foi gerado há %1 atrás. + O último bloco recebido foi gerado %1 atrás. - Transactions after this will not yet be visible. - Transações posteriores poderão não ser imediatamente visíveis. + Transações posteriores não serão visíveis por enquanto. - Error Erro - Warning Aviso - Information Informação - Up to date Atualizado - Catching up... - Recuperando... + Recuperando o atraso... - Sent transaction Transação enviada - Incoming transaction Transação recebida - Date: %1 Amount: %2 Type: %3 @@ -676,29 +548,24 @@ Address: %4 Data: %1 Quantia: %2 Tipo: %3 -Endereço: %4 - +Endereço: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> A carteira está <b>encriptada</b> e atualmente <b>desbloqueada</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> A carteira está <b>encriptada</b> e atualmente <b>bloqueada</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Ocorreu um erro fatal. O Dogecoin não pode continuar com segurança e irá fechar. ClientModel - Network Alert Alerta da Rede @@ -706,359 +573,285 @@ Endereço: %4 CoinControlDialog - Coin Control Address Selection - Controlo de selecção de endereço "Coin". + Seleção de Endereço Coin Control - Quantity: Quantidade: - Bytes: Bytes: - Amount: Quantia: - Priority: Prioridade: - Fee: Taxa: - Low Output: - Output Baixo: + Saída Baixa: - After Fee: - Depois de taxas: + Depois da Taxa: - Change: - Alteração: + Troco: - (un)select all - (não)seleccionar todos + (des)seleccionar todos - Tree mode - Modo de árvore + Modo árvore - List mode Modo lista - Amount Quantia - Address Endereço - Date Data - Confirmations Confirmados - Confirmed Confirmada - Priority Prioridade - Copy address Copiar endereço - Copy label Copiar rótulo - - Copy amount Copiar quantia - Copy transaction ID - Copiar ID da Transação + Copiar ID da transação - Lock unspent - Bloquear não-utilizados + Bloquear não gastos - Unlock unspent - Desbloquear não-utilizados + Desbloquear não gastos - Copy quantity Copiar quantidade - Copy fee - Taxa de cópia + Copiar taxa - Copy after fee - Taxa depois de cópia + Copiar valor após taxa - Copy bytes Copiar bytes - Copy priority - Prioridade de Cópia + Copiar prioridade - Copy low output Copiar output baixo - Copy change Copiar alteração - highest - o maior + muito alta - higher - maior + mais alta - high - alto + alta - medium-high - médio-alto + média-alta - medium - médio + média - low-medium - baixo-médio + média-baixa - low - baixo + baixa - lower - mais baixo + mais baixa - lowest - O mais baixo + muito alta - (%1 locked) - (%1 bloqueado) + (%1 bloqueados) - none nenhum - Dust - Lixo + - yes sim - no não - This label turns red, if the transaction size is greater than 1000 bytes. - Esta legenda fica vermelha se o tamanho de transacção exceder os 1000 bytes. + Este rótulo fica vermelha se o tamanho da transacção exceder os 1000 bytes. - - This means a fee of at least %1 per kB is required. Isto significa que uma taxa de pelo menos %1 por kB é necessária. - Can vary +/- 1 byte per input. Pode variar +/- 1 byte por input. - Transactions with higher priority are more likely to get included into a block. - Transacções com prioridade mais alta estão mais sujeitas a serem incluídas num "bloco". + Transacções com uma prioridade mais alta têm uma maior probabilidade de serem incluídas num bloco. - This label turns red, if the priority is smaller than "medium". - + Esta legenda fica vermelha, se a prioridade for menor que "média". - This label turns red, if any recipient receives an amount smaller than %1. - Esta legenda fica vermelho se algum recipiente receber uma quantidade menor que %1. + Este rótulo fica vermelho se algum recipiente receber uma quantia menor que %1. - - This means a fee of at least %1 is required. Isto significa que uma taxa de pelo menos %1 é necessária. - Amounts below 0.546 times the minimum relay fee are shown as dust. - Quantias menores que 0.546 vezes a mínima taxa de retransmissão são mostradas como "lixo". + Quantias abaixo de 0.546 vezes a taxa mínima de retransmissão são mostradas como "pó". - This label turns red, if the change is smaller than %1. - Esta legenda fica vermelha, se a mudança for menor do que %1. + Esta legenda fica vermelha, se o troco for menor do que %1. - - (no label) - (Sem rótulo) + (sem rótulo) - change from %1 (%2) - Alteração de %1 (%2) + troco de %1 (%2) - (change) - (Alteração) + (troco) EditAddressDialog - Edit Address Editar Endereço - &Label &Rótulo - The label associated with this address list entry O rótulo associado com esta entrada no livro de endereços - The address associated with this address list entry. This can only be modified for sending addresses. - O endereço associado com a entrada do registo desta lista. Isto só pode ser modificado para os endereços de envio. + O endereço associado com o esta entrada no livro de endereços. Isto só pode ser modificado para endereços de saída. - &Address E&ndereço - New receiving address Novo endereço de entrada - New sending address Novo endereço de saída - Edit receiving address Editar endereço de entrada - Edit sending address Editar endereço de saída - The entered address "%1" is already in the address book. O endereço introduzido "%1" já se encontra no livro de endereços. - The entered address "%1" is not a valid Dogecoin address. - O endereço introduzido "%1" não é um endereço dogecoin válido. + O endereço introduzido "%1" não é um endereço bitcoin válido. - Could not unlock wallet. Impossível desbloquear carteira. - New key generation failed. Falha ao gerar nova chave. @@ -1066,80 +859,69 @@ Endereço: %4 FreespaceChecker - A new data directory will be created. Uma nova pasta de dados será criada. - name nome - Directory already exists. Add %1 if you intend to create a new directory here. - O directório já existe. Adicione %1 se pretender criar um novo directório aqui. + A pasta já existe. Adicione %1 se pretender criar aqui uma nova pasta. - Path already exists, and is not a directory. Caminho já existe, e não é uma pasta. - Cannot create data directory here. - Não pode criar pasta de dados aqui. + Não pode ser criada uma pasta de dados aqui. HelpMessageDialog - Dogecoin Core - Command-line options - + Dogecoin Core - Opções de linha de comandos - Dogecoin Core - Núcleo Dogecoin + Dogecoin Core - version versão - Usage: Utilização: - command-line options opções da linha de comandos - UI options - Opções de UI + Opções de Interface - Set language, for example "de_DE" (default: system locale) Definir linguagem, por exemplo "pt_PT" (por defeito: linguagem do sistema) - Start minimized Iniciar minimizado - - Show splash screen on startup (default: 1) - Mostrar animação ao iniciar (por defeito: 1) + Set SSL root certificates for payment request (default: -system-) + + + + Show splash screen on startup (default: 1) + Mostrar imagem ao iniciar (por defeito: 1) - Choose data directory on startup (default: 0) Escolha a pasta de dados ao iniciar (por defeito: 0) @@ -1147,58 +929,46 @@ Endereço: %4 Intro - Welcome Bem-vindo - Welcome to Dogecoin Core. Bem-vindo ao Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Sendo isto a primeira vez que o programa é iniciado, você pode escolher onde Dogecoin Core vai guardar os seus dados. + Sendo esta a primeira vez que o programa é iniciado, poderá escolher onde o Dogecoin Core irá guardar os seus dados. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Dogecoin Core vai transferir e guardar uma cópia do Dogecoin "block chain" (cadeia de bloco). Pelo menos %1GB de dados será guardado neste directório, e vai crescer consoante o tempo. -A sua "carteira" também irá ser guardada neste directório. + O Dogecoin Core vai transferir e armazenar uma cópia do "block chain" (cadeia de blocos). Pelo menos %1GB de dados serão armazenados nesta pasta, e vão crescer ao longo do tempo. A sua carteira também irá ser armazenada nesta pasta. - Use the default data directory - Use a pasta de dados por defeito + Utilizar a pasta de dados padrão - Use a custom data directory: - Use uma pasta de dados personalizada + Utilizar uma pasta de dados personalizada: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Erro: Pasta de dados especificada "%1" não pode ser criada. + Erro: Pasta de dados especificada "%1" não pôde ser criada. - Error Erro - GB of free space available - GB de espaço livre + GB de espaço livre disponível - (of %1GB needed) (de %1GB necessários) @@ -1206,271 +976,229 @@ A sua "carteira" também irá ser guardada neste directório. OpenURIDialog - Open URI - URI Aberto + Abir URI - Open payment request from URI or file - Pedido de pagamento aberto de um URI or file + Abrir pedido de pagamento de um URI ou ficheiro - URI: URI: - Select payment request file - Seleccione o ficheiro do pedido de pagamento + Seleccione o ficheiro de pedido de pagamento - Select payment request file to open - Seleccione o ficheiro de pedido de pagamento para abrir + Seleccione o ficheiro de pedido de pagamento a abrir OptionsDialog - Options Opções - &Main &Principal - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Taxa de transação opcional por KB que ajuda a assegurar que as suas transações serão processadas rapidamente. A maioria das transações tem 1 kB. - Pay transaction &fee Pagar &taxa de transação - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Começar o Dogecoin automaticamente ao iniciar sessão no sistema. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Começar o Dogecoin ao iniciar o sistema - Size of &database cache - Tamanho dos temporários da &base de dados + Tamanho da cache da base de &dados - - Set database cache size in megabytes (default: 25) - Definir o tamanho da cache de base de dados em megabytes (por defeito: 25) - - - MB MB - Number of script &verification threads - + Número de processos de &verificação de scripts - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Defina o número de processos de verificação (até 16, 0 = automático, <0 = disponibiliza esse número de núcleos livres, por defeito: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - + Ligar à rede Dogecoin através de um proxy SOCKS. - &Connect through SOCKS proxy (default proxy): - + Ligar através de um proxy SO&CKS (proxy por defeito): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - + Endereço IP do proxy (p.ex. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - + Opções de linha de comandos ativas que se sobrepõem ás opções anteriores: - Reset all client options to default. - Repôr todas as opções. + Repor todas as opções do cliente. - &Reset Options - &Repôr Opções + &Repor Opções - &Network &Rede - - Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Abrir a porta do cliente dogecoin automaticamente no seu router. Isto penas funciona se o seu router suportar UPnP e este se encontrar ligado. + (0 = auto, <0 = leave that many cores free) + + + + W&allet + C&arteira + + + Expert + Especialista + + + Enable coin &control features + Ativar funcionalidades de controlo de transação. + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + No caso de desativar o gasto de troco não confirmado, o troco de uma transação não poderá ser utilizado até que essa transação tenha pelo menos uma confirmação. Isto também afeta o cálculo do seu saldo. + + + &Spend unconfirmed change + &Gastar troco não confirmado + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. + Abrir a porta do cliente bitcoin automaticamente no seu router. Isto apenas funciona se o seu router suportar UPnP e este se encontrar ligado. - Map port using &UPnP Mapear porta usando &UPnP - Proxy &IP: &IP do proxy: - &Port: &Porta: - Port of the proxy (e.g. 9050) Porta do proxy (p.ex. 9050) - SOCKS &Version: &Versão SOCKS: - SOCKS version of the proxy (e.g. 5) Versão do proxy SOCKS (p.ex. 5) - &Window &Janela - Show only a tray icon after minimizing the window. - Apenas mostrar o ícone da bandeja após minimizar a janela. + Apenas mostrar o ícone da bandeja de sistema após minimizar a janela. - &Minimize to the tray instead of the taskbar - &Minimizar para a bandeja e não para a barra de ferramentas + &Minimizar para a bandeja de sistema e não para a barra de ferramentas - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Minimize ao invés de sair da aplicação quando a janela é fechada. Com esta opção selecionada, a aplicação apenas será encerrada quando escolher Sair da aplicação no menú. + Minimize ao invés de sair da aplicação quando a janela é fechada. Com esta opção selecionada, a aplicação apenas será encerrada só quando escolher Sair da aplicação no menu. - M&inimize on close M&inimizar ao fechar - &Display Vis&ualização - User Interface &language: &Linguagem da interface de utilizador: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. A linguagem da interface do utilizador pode ser definida aqui. Esta definição entrará em efeito após reiniciar o Dogecoin. - &Unit to show amounts in: - &Unidade a usar em quantias: + &Unidade para mostrar quantias: - Choose the default subdivision unit to show in the interface and when sending coins. Escolha a subdivisão unitária a ser mostrada por defeito na aplicação e ao enviar moedas. - Whether to show Dogecoin addresses in the transaction list or not. Se mostrar, ou não, os endereços Dogecoin na lista de transações. - &Display addresses in transaction list Mostrar en&dereços na lista de transações - Whether to show coin control features or not. - Escolha para mostrar funcionalidades de controlo "coin" ou não. + Escolha para mostrar funcionalidades de Coin Control ou não. - - Display coin &control features (experts only) - Mostrar coin & funcionalidades de controlo (apenas para utilizadores experientes) - - - &OK &OK - &Cancel &Cancelar - default padrão - none nenhum - Confirm options reset Confirme a reposição de opções - - Client restart required to activate changes. - + É necessário reiniciar o cliente para ativar as alterações. - Client will be shutdown, do you want to proceed? - + O cliente será desligado, deseja continuar? - This change would require a client restart. - + Esta alteração requer um reinício do cliente. - The supplied proxy address is invalid. O endereço de proxy introduzido é inválido. @@ -1478,69 +1206,54 @@ A sua "carteira" também irá ser guardada neste directório. OverviewPage - Form Formulário - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. A informação mostrada poderá estar desatualizada. A sua carteira sincroniza automaticamente com a rede Dogecoin depois de estabelecer ligação, mas este processo ainda não está completo. - - Unconfirmed: - Não confirmado: - - - Wallet Carteira - - Confirmed: - Confirmado: + Available: + Disponível: - Your current spendable balance - O seu saldo disponível para gastar + O seu saldo (gastável) disponível + + + Pending: + Pendente: - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Total de transações ainda não confirmadas, e que não estão contabilizadas ainda no seu saldo actual + Total de transações por confirmar, que ainda não estão contabilizadas no seu saldo gastável - Immature: Imaturo: - Mined balance that has not yet matured - O saldo minado ainda não maturou + O saldo minado ainda não amadureceu - Total: Total: - Your current total balance O seu saldo total actual - <b>Recent transactions</b> <b>Transações recentes</b> - - out of sync fora de sincronia @@ -1548,93 +1261,70 @@ A sua "carteira" também irá ser guardada neste directório. PaymentServer - - URI handling - Manuseamento URI + Manuseamento de URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - URI não foi lido correctamente! Isto pode ser causado por um endereço Dogecoin inválido ou por parâmetros URI malformados. + O URI não foi lido correctamente! Isto pode ser causado por um endereço Dogecoin inválido ou por parâmetros URI malformados. - Requested payment amount of %1 is too small (considered dust). - Quantia requisitada para pagamento de %1 é muito pequena (considerada pó). + Quantia solicitada para pagamento de %1 é muito pequena (considerada "pó"). - - - - - - Payment request error - Erro no pedido de pagamento + Erro de pedido de pagamento - - Cannot start dogecoin: click-to-pay handler - Impossível começar o modo clicar-para-pagar com dogecoin: + Cannot start bitcoin: click-to-pay handler + Impossível iniciar o controlador de bitcoin: click-to-pay - Net manager warning - + Aviso do gestor de rede - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - + O seu proxy ativo não suporta SOCKS5, que é necessário para efectuar pedidos de pagemento via proxy. - Payment request fetch URL is invalid: %1 - + O URL de pedido de pagamento é inválido: %1 - Payment request file handling - + Controlo de pedidos de pagamento. - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - + O ficheiro de pedido de pagamento não pôde ser lido ou processado! Isto pode ter sido causado por um ficheiro de pedido de pagamento inválido. - Unverified payment requests to custom payment scripts are unsupported. - Pedidos de pagamento não-verificados para scripts de pagamento personalizadas não é suportado. + Pedidos de pagamento não-verificados para scripts de pagamento personalizados não são suportados. - Refund from %1 Reembolsar de %1 - Error communicating with %1: %2 Erro ao comunicar com %1: %2 - Payment request can not be parsed or processed! - + O pedido de pagamento não pode ser lido ou processado! - Bad response from server %1 Má resposta do servidor %1 - Payment acknowledged Pagamento confirmado - Network request error Erro de pedido de rede @@ -1642,41 +1332,45 @@ A sua "carteira" também irá ser guardada neste directório. QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Erro: Pasta de dados especificada "%1" não existe. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. Erro: Combinação inválida de -regtest e -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Introduza um endereço Dogecoin (p.ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... &Salvar Imagem... - &Copy Image &Copiar Imagem - Save QR Code Guardar Código QR - PNG Image (*.png) Imagem PNG (*.png) @@ -1684,192 +1378,146 @@ A sua "carteira" também irá ser guardada neste directório. RPCConsole - Client name Nome do Cliente - - - - - - - - - - - N/A N/D - Client version Versão do Cliente - &Information &Informação - Debug window Janela de depuração - General - + Geral - Using OpenSSL version Usando versão OpenSSL - Startup time - Tempo de início + Hora de inicialização - Network Rede - Name - + Nome - Number of connections Número de ligações - Block chain Cadeia de blocos - Current number of blocks Número actual de blocos - Estimated total blocks Total estimado de blocos - Last block time - Tempo do último bloco + Data do último bloco - &Open &Abrir - &Console &Consola - &Network Traffic &Tráfego de Rede - &Clear &Limpar - Totals Totais - In: Entrada: - Out: - Saída + Saída: - Build date - Data de construção + Data de compilação - Debug log file Ficheiro de registo de depuração - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Abrir o ficheiro de registo de depuração da pasta de dados actual. Isto pode demorar alguns segundos para ficheiros de registo maiores. - Clear console Limpar consola - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Bem-vindo à consola RPC Dogecoin. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Use as setas para cima e para baixo para navegar no histórico e <b>Ctrl-L</b> para limpar o ecrã. - Type <b>help</b> for an overview of available commands. - Digite <b>help</b> para visualizar os comandos disponíveis. + Insira <b>help</b> para visualizar os comandos disponíveis. - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 m - %1 h %1 h - %1 h %2 m %1 h %2 m @@ -1877,155 +1525,137 @@ A sua "carteira" também irá ser guardada neste directório. ReceiveCoinsDialog - &Amount: &Quantia: - &Label: Rótu&lo: - &Message: &Mensagem: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Re-utilize uns dos anteriores endereços de recebimento. Reutilizar endereços pode levar a um risco de segurança e de privacidade. Não use isto a não ser que esteja a re-pedir uma solicitação de pagamento feito anteriormente. + Reutilize um dos endereços de entrada usados anteriormente. Reutilizar endereços pode levar a riscos de segurança e de privacidade. Não use esta função a não ser que esteja a gerar novamente uma requisição de pagamento feita anteriormente. - R&euse an existing receiving address (not recommended) - Reutilizar um endereço de recebimento existente (não recomendado) + Reutilizar um endereço de receção existente (não recomendado) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + Uma mensagem opcional para anexar ao pedido de pagamento, que será exibida quando o pedido for aberto. Nota: A mensagem não será enviada com o pagamento através da rede Dogecoin. + + + An optional label to associate with the new receiving address. + Um rótulo opcional a associar ao novo endereço de receção. - Use this form to request payments. All fields are <b>optional</b>. - + Utilize este formulário para solicitar pagamentos. Todos os campos são <b>opcionais</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - + Uma quantia opcional a solicitar. Deixe em branco ou zero para não solicitar uma quantidade específica. - Clear all fields of the form. Limpar todos os campos do formulário. - Clear Limpar - + Requested payments history + Histórico de pagamentos solicitados + + &Request payment &Requisitar Pagamento - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Mostrar o pedido seleccionado (Faz o mesmo que clicar 2 vezes numa entrada) + Mostrar o pedido seleccionado (faz o mesmo que clicar 2 vezes numa entrada) - Show Mostrar - Remove the selected entries from the list - Remover a entrada seleccionada da lista + Remover as entradas seleccionadas da lista - Remove Remover + + Copy label + Copiar rótulo + + + Copy message + Copiar mensagem + + + Copy amount + Copiar quantia + ReceiveRequestDialog - QR Code Código QR - Copy &URI Copiar &URI - Copy &Address Copi&ar Endereço - &Save Image... &Salvar Imagem... - Request payment to %1 Requisitar Pagamento para %1 - Payment information Informação de Pagamento - URI URI - Address Endereço - Amount Quantia - Label Rótulo - Message Mensagem - Resulting URI too long, try to reduce the text for label / message. URI resultante muito longo. Tente reduzir o texto do rótulo / mensagem. - Error encoding URI into QR Code. Erro ao codificar URI em Código QR. @@ -2033,285 +1663,225 @@ A sua "carteira" também irá ser guardada neste directório. RecentRequestsTableModel - Date Data - Label Rótulo - Message Mensagem - Amount Quantia - (no label) - (Sem rótulo) + (sem rótulo) - (no message) - (Sem mensagem) + (sem mensagem) + + + (no amount) + (sem quantia) SendCoinsDialog - - - Send Coins Enviar Moedas - Coin Control Features - Funcionalidades de Coin Controlo: + Funcionalidades de Coin Control: - Inputs... - Entradas + Entradas... - automatically selected - Selecção automática + selecionadas automáticamente - Insufficient funds! Fundos insuficientes! - Quantity: Quantidade: - Bytes: Bytes: - Amount: Quantia: - Priority: Prioridade: - Fee: Taxa: - Low Output: Output Baixo: - After Fee: - Depois de taxas: + Depois da taxa: - Change: - Alteração: + Troco: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Se activar isto, mas o endereço de alteração estiver vazio ou for inválido, a alteração irá ser enviada para um novo endereço gerado. + Se isto estiver ativo, mas o endereço de troco estiver vazio ou for inválido, o troco irá ser enviado para um novo endereço. - Custom change address - Personalização de endereço de alteração + Endereço de troco personalizado - Send to multiple recipients at once Enviar para múltiplos destinatários de uma vez - Add &Recipient Adicionar &Destinatário - Clear all fields of the form. Limpar todos os campos do formulário. - Clear &All &Limpar Tudo - Balance: Saldo: - Confirm the send action Confirme ação de envio - S&end &Enviar - Confirm send coins Confirme envio de moedas - - - - %1 to %2 %1 para %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Introduza um endereço Dogecoin (p.ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity Copiar quantidade - Copy amount Copiar quantia - Copy fee - Taxa de cópia + Copiar taxa - Copy after fee - Taxa depois de cópia + Copiar valor após taxa - Copy bytes Copiar bytes - Copy priority - Prioridade de Cópia + Copiar prioridade - Copy low output Copiar output baixo - Copy change Copiar alteração - Total Amount %1 (= %2) Quantia Total %1 (= %2) - or ou - The recipient address is not valid, please recheck. O endereço de destino não é válido, por favor verifique. - The amount to pay must be larger than 0. A quantia a pagar deverá ser maior que 0. - The amount exceeds your balance. A quantia excede o seu saldo. - The total exceeds your balance when the %1 transaction fee is included. O total excede o seu saldo quando a taxa de transação de %1 for incluída. - Duplicate address found, can only send to each address once per send operation. Endereço duplicado encontrado, apenas poderá enviar uma vez para cada endereço por cada operação de envio. - Transaction creation failed! - Erro: A criação da transacção falhou! + Erro: A criação da transação falhou! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Erro: A transação foi rejeitada. Isso poderá acontecer se algumas das moedas na sua carteira já tiverem sido gastas, se por exemplo tiver usado uma cópia do ficheiro wallet.dat e as moedas foram gastas na cópia mas não foram marcadas como gastas aqui. + A transação foi rejeitada! Isto poderá acontecer se algumas das moedas na sua carteira já tiverem sido gastas, se por exemplo tiver usado uma cópia do ficheiro wallet.dat e as moedas tiverem sido gastas na cópia mas não tiverem sido marcadas como gastas aqui. - Warning: Invalid Dogecoin address Aviso: Endereço Dogecoin inválido - (no label) - (Sem rótulo) + (sem rótulo) - Warning: Unknown change address - Aviso: Endereço de alteração desconhecido + Aviso: Endereço de troco desconhecido - Are you sure you want to send? Tem a certeza que deseja enviar? - added as transaction fee adicionados como taxa de transação - Payment request expired Pedido de pagamento expirou - Invalid payment address %1 Endereço de pagamento inválido %1 @@ -2319,116 +1889,85 @@ A sua "carteira" também irá ser guardada neste directório. SendCoinsEntry - - - A&mount: Qu&antia: - Pay &To: &Pagar A: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) O endereço para onde enviar o pagamento (p.ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Escreva um rótulo para este endereço para o adicionar ao seu livro de endereços - &Label: Rótu&lo: - Choose previously used address Escolher endereço usado previamente - This is a normal payment. Este é um pagamento normal. - Alt+A Alt+A - Paste address from clipboard Cole endereço da área de transferência - Alt+P Alt+P - - - Remove this entry - Remover esta inscrição + Remover esta entrada - Message: Mensagem: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Este é um pedido de verificação de pagamento. + Este é um pedido de pagamento verificado. - Enter a label for this address to add it to the list of used addresses - Escreva um rótulo para este endereço para o adicionar à sua lista de endereços usados + Introduza um rótulo para este endereço para o adicionar à sua lista de endereços usados + + + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + Uma mensagem que estava anexada ao URI bitcoin: que será armazenada com a transação para sua referência. Nota: Esta mensagem não será enviada através da rede Dogecoin. - This is an unverified payment request. Este é um pedido de pagamento não-verificado. - - Pay To: - &Pagar A: + Pagar A: - - Memo: - Memo: - - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Introduza um endereço Dogecoin (p.ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Memorando: ShutdownWindow - Dogecoin Core is shutting down... - + O Dogecoin Core está a encerrar... - Do not shut down the computer until this window disappears. Não desligue o computador enquanto esta janela não desaparecer. @@ -2436,192 +1975,142 @@ A sua "carteira" também irá ser guardada neste directório. SignVerifyMessageDialog - Signatures - Sign / Verify a Message Assinaturas - Assinar / Verificar uma Mensagem - &Sign Message A&ssinar Mensagem - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Pode assinar mensagens com os seus endereços para provar que são seus. Tenha atenção ao assinar mensagens ambíguas, pois ataques de phishing podem tentar enganá-lo, de modo a assinar a sua identidade para os atacantes. Apenas assine declarações completamente detalhadas com as quais concorde. + Pode assinar mensagens com os seus endereços para provar que são seus. Tenha atenção ao assinar mensagens ambíguas, pois ataques de phishing podem tentar enganá-lo de modo a assinar a sua identidade para os atacantes. Apenas assine declarações detalhadas com as quais concorde. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) O endereço a utilizar para assinar a mensagem (p.ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Escolher endereço usado previamente - - Alt+A Alt+A - Paste address from clipboard - Cole endereço da área de transferência + Colar endereço da área de transferência - Alt+P Alt+P - Enter the message you want to sign here Escreva aqui a mensagem que deseja assinar - Signature Assinatura - Copy the current signature to the system clipboard Copiar a assinatura actual para a área de transferência - Sign the message to prove you own this Dogecoin address Assine uma mensagem para provar que é dono deste endereço Dogecoin - Sign &Message Assinar &Mensagem - Reset all sign message fields - Repôr todos os campos de assinatura de mensagem + Repor todos os campos de assinatura de mensagem - - Clear &All Limpar &Tudo - &Verify Message &Verificar Mensagem - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - Introduza o endereço de assinatura, mensagem (assegure-se de copiar quebras de linha, espaços, tabuladores, etc. exactamente) e assinatura abaixo para verificar a mensagem. Tenha atenção para não ler mais na assinatura do que o que estiver na mensagem assinada, para evitar ser enganado por um atacante que se encontre entre si e quem assinou a mensagem. + Introduza o endereço de assinatura, mensagem (assegure-se que copia quebras de linha, espaços, tabulações, etc. exactamente) e assinatura abaixo para verificar a mensagem. Tenha atenção para não ler mais na assinatura do que o que estiver na mensagem assinada, para evitar ser enganado por um atacante que se encontre entre si e quem assinou a mensagem. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) O endereço utilizado para assinar a mensagem (p.ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Verifique a mensagem para assegurar que foi assinada com o endereço Dogecoin especificado - Verify &Message Verificar &Mensagem - Reset all verify message fields - Repôr todos os campos de verificação de mensagem + Repor todos os campos de verificação de mensagem - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Introduza um endereço Dogecoin (p.ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Clique "Assinar mensagem" para gerar a assinatura - - Enter Dogecoin signature - Introduza assinatura Dogecoin - - - - The entered address is invalid. - O endereço introduzido é inválido. + O endereço introduzido é inválido. - - - - Please check the address and try again. Por favor verifique o endereço e tente de novo. - - The entered address does not refer to a key. - O endereço introduzido não refere a chave alguma. + O endereço introduzido não refere a nenhuma chave. - Wallet unlock was cancelled. O desbloqueio da carteira foi cancelado. - Private key for the entered address is not available. A chave privada para o endereço introduzido não está disponível. - Message signing failed. Assinatura de mensagem falhou. - Message signed. Mensagem assinada. - The signature could not be decoded. A assinatura não pôde ser descodificada. - - Please check the signature and try again. Por favor verifique a assinatura e tente de novo. - The signature did not match the message digest. A assinatura não condiz com o conteúdo da mensagem. - Message verification failed. Verificação da mensagem falhou. - Message verified. Mensagem verificada. @@ -2629,17 +2118,14 @@ A sua "carteira" também irá ser guardada neste directório. SplashScreen - Dogecoin Core - Núcleo Dogecoin + Dogecoin Core - The Dogecoin Core developers - Os programadores Dogecoin + Os programadores do Dogecoin Core - [testnet] [rede de testes] @@ -2647,7 +2133,6 @@ A sua "carteira" também irá ser guardada neste directório. TrafficGraphWidget - KB/s KB/s @@ -2655,179 +2140,138 @@ A sua "carteira" também irá ser guardada neste directório. TransactionDesc - Open until %1 Aberto até %1 - + conflicted + em conflito: + + %1/offline %1/desligado - %1/unconfirmed %1/não confirmada - %1 confirmations %1 confirmações - Status Estado - , broadcast through %n node(s) , transmitida através de %n nó, transmitida através de %n nós - Date Data - Source Origem - Generated Gerado - - From De - - - To Para - - own address endereço próprio - label rótulo - - - - - Credit Crédito - matures in %n more block(s) - matura daqui por %n blocomatura daqui por %n blocos + matura em %n blocomatura em %n blocos - not accepted não aceite - - - - Debit Débito - Transaction fee Taxa de transação - Net amount Valor líquido - - Message Mensagem - Comment Comentário - Transaction ID ID da Transação - Merchant Comerciante - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Moedas geradas deverão maturar por %1 blocos antes de poderem ser gastas. Quando gerou este bloco, ele foi transmitido para a rede para ser incluído na cadeia de blocos. Se a inclusão na cadeia de blocos falhar, irá mudar o estado para "não aceite" e as moedas não poderão ser gastas. Isto poderá acontecer ocasionalmente se outro nó da rede gerar um bloco a poucos segundos de diferença do seu. + Moedas geradas deverão maturar por %1 blocos antes de poderem ser gastas. Quando gerou este bloco, ele foi transmitido para a rede para ser incluído na cadeia de blocos. Se a inclusão na cadeia de blocos falhar, o seu estado irá ser alterado para "não aceite" e as moedas não poderão ser gastas. Isto poderá acontecer ocasionalmente se outro nó da rede gerar um bloco a poucos segundos de diferença do seu. - Debug information Informação de depuração - Transaction Transação - Inputs Entradas - Amount Quantia - true verdadeiro - false falso - , has not been successfully broadcast yet , ainda não foi transmitida com sucesso - Open for %n more block(s) Aberta por mais %n blocoAberta por mais %n blocos - unknown desconhecido @@ -2835,12 +2279,10 @@ A sua "carteira" também irá ser guardada neste directório. TransactionDescDialog - Transaction details Detalhes da transação - This pane shows a detailed description of the transaction Esta janela mostra uma descrição detalhada da transação @@ -2848,118 +2290,102 @@ A sua "carteira" também irá ser guardada neste directório. TransactionTableModel - Date Data - Type Tipo - Address Endereço - Amount Quantia - Immature (%1 confirmations, will be available after %2) - + Imaturo (%1 confirmações, estará disponível após %2) - Open for %n more block(s) Aberta por mais %n blocoAberta por mais %n blocos - Open until %1 Aberto até %1 - - Offline (%1 confirmations) - Desligado (%1 confirmação) - - - - Unconfirmed (%1 of %2 confirmations) - Não confirmada (%1 de %2 confirmações) - - - - Confirmed (%1 confirmations) - Confirmada (%1 confirmação) + Confirmada (%1 confirmações) - This block was not received by any other nodes and will probably not be accepted! Este bloco não foi recebido por outros nós e provavelmente não será aceite pela rede! - Generated but not accepted Gerado mas não aceite - + Offline + Offline + + + Unconfirmed + Não confirmado: + + + Confirming (%1 of %2 recommended confirmations) + A confirmar (%1 de %2 confirmações recomendadas) + + + Conflicted + Em Conflito: + + Received with Recebido com - Received from Recebido de - Sent to Enviado para - Payment to yourself - Pagamento ao próprio + Pagamento a si mesmo - Mined - Minado + Minadas - (n/a) (n/d) - Transaction status. Hover over this field to show number of confirmations. - Estado da transação. Pairar por cima deste campo para mostrar o número de confirmações. + Estado da transação. Passar o cursor por cima deste campo para mostrar o número de confirmações. - Date and time that the transaction was received. - Data e hora a que esta transação foi recebida. + Data e hora em que a transação foi recebida. - Type of transaction. Tipo de transação. - Destination address of transaction. Endereço de destino da transação. - Amount removed from or added to balance. Quantia retirada ou adicionada ao saldo. @@ -2967,178 +2393,142 @@ A sua "carteira" também irá ser guardada neste directório. TransactionView - - All Todas - Today Hoje - This week Esta semana - This month Este mês - Last month Mês passado - This year Este ano - Range... Período... - Received with Recebida com - Sent to Enviada para - To yourself - Para si + Para si mesmo - Mined Minadas - Other Outras - Enter address or label to search Escreva endereço ou rótulo a procurar - Min amount Quantia mínima - Copy address Copiar endereço - Copy label Copiar rótulo - Copy amount Copiar quantia - Copy transaction ID Copiar ID da Transação - Edit label Editar rótulo - Show transaction details Mostrar detalhes da transação - Export Transaction History - Exportar histórico de transacções + Exportar Histórico de Transacções - Exporting Failed - Exportação falhada + A Exportação Falhou - There was an error trying to save the transaction history to %1. - Ocorreu um erro ao tentar guardar o histórico de dados para %1. + Ocorreu um erro ao tentar guardar o histórico de transações em %1. - Exporting Successful - Exportação bem sucedida + Exportação Bem Sucedida - The transaction history was successfully saved to %1. - O histórico de transacções foi com sucesso salvo para %1. + O histórico de transacções foi com guardado com sucesso em %1. - Comma separated file (*.csv) - Ficheiro separado por vírgula (*.csv) + Ficheiro separado por vírgulas (*.csv) - Confirmed Confirmada - Date Data - Type Tipo - Label Rótulo - Address Endereço - Amount Quantia - ID ID - Range: Período: - to até @@ -3146,7 +2536,6 @@ A sua "carteira" também irá ser guardada neste directório. WalletFrame - No wallet has been loaded. Nenhuma carteira foi carregada. @@ -3154,7 +2543,6 @@ A sua "carteira" também irá ser guardada neste directório. WalletModel - Send Coins Enviar Moedas @@ -3162,154 +2550,125 @@ A sua "carteira" também irá ser guardada neste directório. WalletView - &Export &Exportar - Export the data in the current tab to a file Exportar os dados no separador actual para um ficheiro - Backup Wallet Cópia de Segurança da Carteira - Wallet Data (*.dat) Dados da Carteira (*.dat) - Backup Failed Cópia de Segurança Falhou - There was an error trying to save the wallet data to %1. - Ocorreu um erro ao tentar guardar os dados da carteira na nova localização. + Ocorreu um erro ao tentar guardar os dados da carteira em %1. - The wallet data was successfully saved to %1. - Os dados da carteira foram salvos com sucesso para %1. + Os dados da carteira foram guardados com sucesso em %1. - Backup Successful Cópia de Segurança Bem Sucedida - dogecoin-core + bitcoin-core - Usage: Utilização: - List commands Listar comandos - Get help for a command Obter ajuda para um comando - Options: Opções: - - Specify configuration file (default: dogecoin.conf) - Especificar ficheiro de configuração (por defeito: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Especificar ficheiro de configuração (por defeito: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Especificar ficheiro pid (por defeito: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Especificar ficheiro pid (por defeito: bitcoind.pid) - Specify data directory Especificar pasta de dados - - Set database cache size in megabytes (default: 25) - Definir o tamanho da cache de base de dados em megabytes (por defeito: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Escute ligações na porta <n> (por defeito: 8333 ou testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Escute por ligações em <port> (por defeito: 22556 ou testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Manter no máximo <n> ligações a outros nós da rede (por defeito: 125) - Connect to a node to retrieve peer addresses, and disconnect Ligar a um nó para recuperar endereços de pares, e desligar - Specify your own public address Especifique o seu endereço público - Threshold for disconnecting misbehaving peers (default: 100) - Tolerância para desligar nós mal-formados (por defeito: 100) + Tolerância para desligar nós com comportamento indesejável (por defeito: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Número de segundos a impedir que nós mal-formados se liguem de novo (por defeito: 86400) + Número de segundos a impedir que nós com comportamento indesejado se liguem de novo (por defeito: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s Ocorreu um erro ao definir a porta %u do serviço RPC a escutar em IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Escutar por ligações JSON-RPC em <port> (por defeito: 22555 ou rede de testes: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Escutar por ligações JSON-RPC na porta <n> (por defeito: 8332 ou rede de testes: 18332) - Accept command line and JSON-RPC commands - Aceitar comandos da consola e JSON-RPC + Aceitar comandos de linha de comandos e JSON-RPC + + + Dogecoin Core RPC client version + - Run in the background as a daemon and accept commands - Correr o processo como um daemon e aceitar comandos + Correr o processo em segundo plano e aceitar comandos - Use the test network - Utilizar a rede de testes - testnet + Utilizar a rede de testes - Accept connections from outside (default: 1 if no -proxy or -connect) Aceitar ligações externas (padrão: 1 sem -proxy ou -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3317,720 +2676,698 @@ If the file does not exist, create it with owner-readable-only file permissions. It is also recommended to set alertnotify so you are notified of problems; for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo.com - %s, deverá definir rpcpassword no ficheiro de configuração : - %s + %s, deverá definir uma rpcpassword no ficheiro de configuração: +%s É recomendado que use a seguinte palavra-passe aleatória: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s -(não precisa recordar esta palavra-passe) -O nome de utilizador e password NÃO DEVEM ser iguais. +(não é necessário lembrar esta palavra-passe) +O nome de utilizador e palavra-passe NÃO PODEM ser iguais. Se o ficheiro não existir, crie-o com permissões de leitura apenas para o dono. -Também é recomendado definir alertnotify para que seja alertado sobre problemas; -por exemplo: alertnotify=echo %%s | mail -s "Alerta Dogecoin" admin@foo.com - +Também é recomendado definir um alertnotify para que seja alertado sobre problemas; +por exemplo: alertnotify=echo %%s | mail -s "Alerta Dogecoin" admin@foo.com - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - Cifras aceitáveis (por defeito: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) + Cifras aceitáveis (por defeito: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Ocorreu um erro ao definir a porta %u do serviço RPC a escutar em IPv6, a usar IPv4: %s - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Trancar a endereço específio e sempre escutar nele. Use a notação [anfitrião]:porta para IPv6 + Associar a endereço específico e escutar sempre nele. Use a notação [anfitrião]:porta para IPv6 - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - Impossível trancar a pasta de dados %s. Provavelmente o Dogecoin já está a ser executado. - - - - 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. - Entre no modo de retrocesso, que usa uma cadeia especial cujos bloqueios podem ser resolvidos instantâneamente. Isto têm como fim para as ferramentas de retrocesso e desenvolvimento de aplicações. - - - - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - + 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. + Entre no modo de teste de regressão, que usa uma cadeia especial cujos blocos podem ser resolvidos instantaneamente. Isto têm como fim a realização de testes de regressão para pools e desenvolvimento de aplicações. + + + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Entre no modo de teste de regressão, que usa uma cadeia especial cujos blocos podem ser resolvidos instantaneamente. + + + Error: Listening for incoming connections failed (listen returned error %d) + Erro: A Escuta de ligações de entrada falhou (retornou erro %d) + + 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 transação foi rejeitada. Isso poderá acontecer se algumas das moedas na sua carteira já tiverem sido gastas, se por exemplo tiver usado uma cópia do ficheiro wallet.dat e as moedas foram gastas na cópia mas não foram marcadas como gastas aqui. + Erro: A transação foi rejeitada! Isso poderá acontecer se algumas das moedas na sua carteira já tiverem sido gastas, se por exemplo tiver usado uma cópia do ficheiro wallet.dat e as moedas tiverem sido gastas na cópia mas não tiverem sido marcadas como gastas 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 transação requer uma taxa de transação mínima de %s devido á sua quantia, complexidade, ou uso de fundos recebidos recentemente! + Erro: Esta transação requer uma taxa de transação mínima de %s devido á sua quantia, complexidade, ou uso de fundos recebidos recentemente! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Executar comando quando uma das transações na carteira mudar (no comando, %s é substituído pelo ID da Transaçã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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - Esta é uma versão de pré-lançamento - use à sua responsabilidade - não usar para minar ou aplicações comerciais + Esta é uma versão de testes pré-lançamento - use à sua responsabilidade - não usar para minar ou aplicações comerciais + + + Unable to bind to %s on this computer. Dogecoin Core is probably already running. + Incapaz de vincular à porta %s neste computador. O Dogecoin Core provavelmente já está a correr. - Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - Usar proxy SOCKS5 separado para aceder a pares P2P via rede Tor (Por defeito:-proxy) + Usar um proxy SOCKS5 separado para aceder a pares através de Tor hidden services (por defeito: -proxy) - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Atenção: -paytxfee está definida com um valor muito alto! Esta é a taxa que irá pagar se enviar uma transação. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Atenção: Por favor verifique que a data e hora do seu computador estão correctas! Se o seu relógio não estiver certo o Dogecoin não irá 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 completamente funcional! Parece que alguns dogecoiner's estão com dificuldades técnicas. + Aviso: A rede não parece estar completamente de acordo! Parece que alguns mineiros estão com dificuldades técnicas. - Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - Atenção: Parecemos não estar de acordo com os nossos pares! Poderá ter que atualizar ou outros nós poderão ter que atualizar. + Atenção: Parecemos não estar de acordo com os nossos pares! Poderá ter que atualizar o seu cliente, ou outros nós poderão ter que atualizar os seus clientes. - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Atenção: erro ao ler wallet.dat! Todas as chaves foram lidas correctamente, mas dados de transação ou do livro de endereços podem estar em falta ou incorrectos. - 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. - Atenção: wallet.dat corrupto, dados recuperados! wallet.dat original salvo como wallet.{timestamp}.bak em %s; se o seu saldo ou transações estiverem incorrectos deverá recuperar de uma cópia de segurança. + Atenção: wallet.dat corrompido, dados recuperados! wallet.dat original salvo como wallet.{timestamp}.bak em %s; se o seu saldo ou transações estiverem incorrectos deverá recuperar uma cópia de segurança. + + + (default: 1) + + + + (default: wallet.dat) + - <category> can be: - <category> pode ser: + <categoria> pode ser: - Attempt to recover private keys from a corrupt wallet.dat Tentar recuperar chaves privadas de um wallet.dat corrupto - Dogecoin Core Daemon - Dogecoin Core Daemon + Servidor Dogecoin Core - - Dogecoin Core RPC client version - Versão do cliente Dogecoin RPC - - - Block creation options: Opções de criação de bloco: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Limpar lista de transações (ferramenta de diagnóstico; implica -rescan) + + Connect only to the specified node(s) Apenas ligar ao(s) nó(s) especificado(s) - Connect through SOCKS proxy Ligar através de proxy SOCKS: - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - Ligar ao JSON-RPC em <port> (por defeito: 22555 ou rede de testes: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + Ligar ao JSON-RPC na porta <n> (por defeito: 8332 ou rede de testes: 18332) + + + Connection options: + - Corrupted block database detected Cadeia de blocos corrompida detectada - - Discover own IP address (default: 1 when listening and no -externalip) - Descobrir endereço IP próprio (padrão: 1 ao escutar e sem -externalip) - - - - Do not load the wallet and disable wallet RPC calls + Debugging/Testing options: - - Do you want to rebuild the block database now? - Deseja reconstruir agora a cadeia de blocos? + Disable safemode, override a real safe mode event (default: 0) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Descobrir endereço IP próprio (padrão: 1 ao escutar sem -externalip) + + + Do not load the wallet and disable wallet RPC calls + Não carregar a carteira e desativar chamadas RPC de carteira. + + + Do you want to rebuild the block database now? + Deseja reconstruir agora a base de dados de blocos. - Error initializing block database Erro ao inicializar a cadeia de blocos - Error initializing wallet database environment %s! - Erro ao inicializar o ambiente de base de dados da carteira %s! + Erro ao inicializar o ambiente %s da base de dados da carteira - Error loading block database - Erro ao carregar cadeia de blocos + Erro ao carregar base de dados de blocos - Error opening block database - Erro ao abrir a cadeia de blocos + Erro ao abrir a base de dados de blocos - Error: Disk space is low! Erro: Pouco espaço em disco! - Error: Wallet locked, unable to create transaction! Erro: Carteira bloqueada, incapaz de criar transação! - Error: system error: Erro: erro do sistema: - Failed to listen on any port. Use -listen=0 if you want this. - Falhou a escutar em qualquer porta. Use -listen=0 se quer isto. + Falhou a escutar em qualquer porta. Use -listen=0 se quiser isto. - Failed to read block info - Falha ao ler info do bloco + Falha ao ler informação do bloco - Failed to read block Falha ao ler bloco - Failed to sync block index - Falha ao sincronizar índice do bloco + Falha ao sincronizar índice de blocos - Failed to write block index - Falha ao escrever índice do bloco + Falha ao escrever índice de blocos - Failed to write block info - Falha ao escrever info do bloco + Falha ao escrever informação do bloco - Failed to write block - Falha ao escrever o bloco + Falha ao escrever bloco - Failed to write file info - Falha ao escrever info do ficheiro + Falha ao escrever informação do ficheiro - Failed to write to coin database Falha ao escrever na base de dados de moedas - Failed to write transaction index Falha ao escrever índice de transações - Failed to write undo data Falha ao escrever histórico de modificações - Fee per kB to add to transactions you send Taxa por KB a adicionar a transações enviadas - + Fees smaller than this are considered zero fee (for relaying) (default: + + + Find peers using DNS lookup (default: 1 unless -connect) Encontrar pares usando procura DNS (por defeito: 1 excepto -connect) - + Force safe mode (default: 0) + + + Generate coins (default: 0) Gerar moedas (por defeito: 0) - How many blocks to check at startup (default: 288, 0 = all) - Quantos blocos verificar ao começar (por defeito: 288, 0 = todos) + Quantos blocos verificar ao inicializar (por defeito: 288, 0 = todos) - - How thorough the block verification is (0-4, default: 3) - Qual a minúcia na verificação de blocos (0-4, por defeito: 3) - - - If <category> is not supplied, output all debugging information. - Se <category> não é fornecida, toda a informação debug é "output". + Se uma <categoria> não é fornecida, imprimir toda a informação de depuração. + + + Importing... + - Incorrect or no genesis block found. Wrong datadir for network? - Incorrecto ou nenhum bloco de origem encontrado. Directório de dados errado para a rede? + Bloco génese incorreto ou nenhum bloco génese encontrado. Pasta de dados errada para a rede? - Invalid -onion address: '%s' Endereço -onion inválido: '%s' - Not enough file descriptors available. - Descritores de ficheiros disponíveis são insuficientes. + Os descritores de ficheiros disponíveis são insuficientes. - Prepend debug output with timestamp (default: 1) - Preceder output de depuração com marca-de-tempo (default: 1) + Adicionar data e hora à informação de depuração (por defeito: 1) - RPC client options: - RPC opções de cliente: + Opções de cliente RPC: - Rebuild block chain index from current blk000??.dat files - Reconstruir a cadeia de blocos dos ficheiros blk000??.dat actuais + Reconstruir a cadeia de blocos a partir dos ficheiros blk000??.dat atuais - Select SOCKS version for -proxy (4 or 5, default: 5) - Selecione a versão do proxy socks a usar (4-5, padrão: 5) + Selecione a versão do proxy socks a usar (4 ou 5, por defeito: 5) - - Send command to Dogecoin Core server - Enviar comando para servidor Dogecoin + Set database cache size in megabytes (%d to %d, default: %d) + Definir o tamanho da cache de base de dados em megabytes (%d a %s, padrão: %d) - Set maximum block size in bytes (default: %d) - Definir tamanho máximo de um bloco em bytes (por defeito: 250000) + Definir tamanho máximo por bloco em bytes (por defeito: %d) - Set the number of threads to service RPC calls (default: 4) Defina o número de processos para servir as chamadas RPC (por defeito: 4) - Specify wallet file (within data directory) Especifique ficheiro de carteira (dentro da pasta de dados) - - Start Dogecoin Core server - Começar servidor Dogecoin + Spend unconfirmed change when sending transactions (default: 1) + Gastar saldo não confirmado ao enviar transações (padrão: 1) - This is intended for regression testing tools and app development. - + Isto têm como fim a realização de testes de regressão para pools e desenvolvimento de aplicações. - - Usage (deprecated, use dogecoin-cli): - Utilização (deprecado, use dogecoin-cli) + Usage (deprecated, use bitcoin-cli): + Utilização (obsoleto, usar bitcoin-cli): - Verifying blocks... - Verificando blocos... + A verificar blocos... - Verifying wallet... - Verificando a carteira... + A verificar carteira... - Wait for RPC server to start Esperar pelo ínicio do servidor RPC - Wallet %s resides outside data directory %s A carteira %s reside fora da pasta de dados %s - Wallet options: - + Opções da carteira: - Warning: Deprecated argument -debugnet ignored, use -debug=net - Aviso: Argumento obsolote -debugnet ignorado, usar -debug=net + Atenção: Argumento obsoleto -debugnet ignorado, usar -debug=net - You need to rebuild the database using -reindex to change -txindex - Necessita reconstruir as bases de dados usando -reindex para mudar -txindex + É necessário reconstruir as bases de dados usando -reindex para mudar o -txindex - Imports blocks from external blk000??.dat file Importar blocos de um ficheiro blk000??.dat externo - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + Impossível trancar a pasta de dados %s. Provavelmente o Dogecoin Core já está a ser executado. + + 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 um alerta relevante for recebido ou em caso de uma divisão longa da cadeia de blocos (no comando, %s é substituído pela mensagem) - Output debugging information (default: 0, supplying <category> is optional) - Informação de depuração (default: 0, fornecer <category> é opcional) + Informação de depuração (por defeito: 0, fornecer uma <categoria> é opcional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Definir tamanho máximo de transações de alta-/baixa-prioridade em bytes (por defeito: 27000) + Definir tamanho máximo de transações com alta-prioridade/baixa-taxa em bytes (por defeito: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Defina o número de processos de verificação (até 16, 0 = automático, <0 = disponibiliza esse número de núcleos livres, por defeito: 0) - - - Information Informação - Invalid amount for -minrelaytxfee=<amount>: '%s' - Quantia inválida para -minrelaytxfee=<amount>: '%s' + Quantia inválida para -minrelaytxfee=<quantidade>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' - Quantia inválida para -mintxfee=<amount>: '%s' + Quantia inválida para -mintxfee=<quantidade>: '%s' + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + - Maintain a full transaction index (default: 0) Manter índice de transações completo (por defeito: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Armazenamento intermédio de recepção por ligação, <n>*1000 bytes (por defeito: 5000) + Maximo armazenamento intermédio de recepção por ligação, <n>*1000 bytes (por defeito: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - Armazenamento intermédio de envio por ligação, <n>*1000 bytes (por defeito: 1000) + Maximo armazenamento intermédio de envio por ligação, <n>*1000 bytes (por defeito: 1000) - Only accept block chain matching built-in checkpoints (default: 1) - Apenas aceitar cadeia de blocos coincidente com marcas de verificação internas (por defeito: 1) + Apenas aceitar cadeia de blocos coincidente com pontos de controle internos (por defeito: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Apenas ligar a nós na rede <net> (IPv4, IPv6 ou Tor) - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opções SSL: (ver a Wiki Bitcoin para instruções de configuração SSL) + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opções SSL: (ver a Bitcoin Wiki para instruções de configuração SSL) + + + Send command to Dogecoin Core + - Send trace/debug info to console instead of debug.log file Enviar informação de rastreio/depuração para a consola e não para o ficheiro debug.log - Set minimum block size in bytes (default: 0) Definir tamanho minímo de um bloco em bytes (por defeito: 0) - + 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) Encolher ficheiro debug.log ao iniciar o cliente (por defeito: 1 sem -debug definido) - Signing transaction failed Falhou assinatura da transação - Specify connection timeout in milliseconds (default: 5000) Especificar tempo de espera da ligação em millisegundos (por defeito: 5000) - + Start Dogecoin Core Daemon + + + System error: Erro de sistema: - Transaction amount too small Quantia da transação é muito baixa - Transaction amounts must be positive Quantia da transação deverá ser positiva - Transaction too large Transação grande demais - Use UPnP to map the listening port (default: 0) Usar UPnP para mapear a porta de escuta (padrão: 0) - Use UPnP to map the listening port (default: 1 when listening) Usar UPnP para mapear a porta de escuta (padrão: 1 ao escutar) - Username for JSON-RPC connections Nome de utilizador para ligações JSON-RPC - Warning Aviso - Warning: This version is obsolete, upgrade required! Atenção: Esta versão está obsoleta, é necessário actualizar! - + Zapping all transactions from wallet... + A limpar todas as transações da carteira... + + + on startup + + + version versão - wallet.dat corrupt, salvage failed - wallet.dat corrupta, recuperação falhou + wallet.dat corrompido, recuperação falhou - Password for JSON-RPC connections Palavra-passe para ligações JSON-RPC - Allow JSON-RPC connections from specified IP address Permitir ligações JSON-RPC do endereço IP especificado - Send commands to node running on <ip> (default: 127.0.0.1) Enviar comandos para o nó a correr em <ip> (por defeito: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) - Executar comando quando mudar o melhor bloco (no comando, %s é substituído pela hash do bloco) + Executar comando quando o melhor bloco mudar (no comando, %s é substituído pela hash do bloco) - Upgrade wallet to latest format Atualize a carteira para o formato mais recente - Set key pool size to <n> (default: 100) Definir o tamanho da memória de chaves para <n> (por defeito: 100) - Rescan the block chain for missing wallet transactions - Reexaminar a cadeia de blocos para transações em falta na carteira + Procurar transações em falta na cadeia de blocos - Use OpenSSL (https) for JSON-RPC connections Usar OpenSSL (https) para ligações JSON-RPC - Server certificate file (default: server.cert) Ficheiro de certificado do servidor (por defeito: server.cert) - Server private key (default: server.pem) Chave privada do servidor (por defeito: server.pem) - This help message Esta mensagem de ajuda - Unable to bind to %s on this computer (bind returned error %d, %s) - Incapaz de vincular a %s neste computador (vínculo retornou erro %d, %s) + Incapaz de vincular à porta %s neste computador (vínculo retornou erro %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Permitir procuras DNS para -addnode, -seednode e -connect - Loading addresses... - Carregar endereços... + A carregar endereços... - Error loading wallet.dat: Wallet corrupted Erro ao carregar wallet.dat: Carteira danificada - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Erro ao carregar wallet.dat: A Carteira requer uma versão mais recente do Dogecoin - - Wallet needed to be rewritten: restart Dogecoin Core to complete - A Carteira precisou ser reescrita: reinicie o Dogecoin para completar + Wallet needed to be rewritten: restart Dogecoin to complete + A Carteira precisou de ser reescrita: reinicie o Dogecoin para completar o processo - Error loading wallet.dat Erro ao carregar wallet.dat - Invalid -proxy address: '%s' Endereço -proxy inválido: '%s' - Unknown network specified in -onlynet: '%s' Rede desconhecida especificada em -onlynet: '%s' - Unknown -socks proxy version requested: %i - Versão desconhecida de proxy -socks requisitada: %i + Versão de proxy -socks requisitada desconhecida: %i - Cannot resolve -bind address: '%s' - Não conseguiu resolver endereço -bind: '%s' + Não foi possível resolver o endereço -bind: '%s' - Cannot resolve -externalip address: '%s' - Não conseguiu resolver endereço -externalip: '%s' + Não foi possível resolver o endereço -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Quantia inválida para -paytxfee=<amount>: '%s' - Invalid amount Quantia inválida - Insufficient funds Fundos insuficientes - Loading block index... - Carregar índice de blocos... + A carregar índice de blocos... - Add a node to connect to and attempt to keep the connection open - Adicione um nó ao qual se ligar e tentar manter a ligação aberta + Adicionar um nó para se ligar e tentar manter a ligação aberta - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Incapaz de vincular à porta %s neste computador. Provavelmente o Dogecoin já está a funcionar. - - - Loading wallet... - Carregar carteira... + A carregar carteira... - Cannot downgrade wallet Impossível mudar a carteira para uma versão anterior - Cannot write default address Impossível escrever endereço por defeito - Rescanning... Reexaminando... - Done loading Carregamento completo - To use the %s option Para usar a opção %s - Error Erro - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4039,4 +3376,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Se o ficheiro não existir, crie-o com permissões de leitura apenas para o dono. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_ro_RO.ts b/src/qt/locale/bitcoin_ro_RO.ts index a9d59a4ea..547b7bff5 100644 --- a/src/qt/locale/bitcoin_ro_RO.ts +++ b/src/qt/locale/bitcoin_ro_RO.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core Despre Nucleul Dogecoin - <b>Dogecoin Core</b> version <b>Nucleul Dogecoin </b> versiune - This is experimental software. @@ -27,141 +24,113 @@ Distribuit sub licența de programe MIT/X11, vezi fișierul însoțitor COPYING Acest produs include programe dezvoltate de către OpenSSL Project pentru a fi folosite în OpenSSL Toolkit (http://www.openssl.org/) și programe criptografice scrise de către Eric Young (eay@cryptsoft.com) și programe UPnP scrise de către Thomas Bernard. - Copyright Drepturi de autor - The Dogecoin Core developers Dezvoltatorii Dogecoin Core - - - (%1-bit) + (%1-bit) AddressBookPage - Double-click to edit address or label Dublu-click pentru a edita adresa sau eticheta - Create a new address Creează o adresă nouă - &New &Nou - Copy the currently selected address to the system clipboard Copiază adresa selectată în clipboard - &Copy &Copiere - C&lose &Inchidere - &Copy Address &Copiază adresa - Delete the currently selected address from the list Sterge adresele curent selectate din lista - Export the data in the current tab to a file Exporta datele din tab-ul curent într-un fișier - &Export &Exportă - &Delete Ște&rge - Choose the address to send coins to Alegeti adresa unde vreti sa trimiteti monezile - Choose the address to receive coins with Alegeti adresa unde vreti sa primiti monezile - C&hoose &Alege - Very sending addresses Adresa Destinatarului - Much receiving addresses Adresa pe care primiti - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Acestea sunt adresele dumneavoastra Dogecoin care pot fi folosite la trimiterea platilor. Verificati totdeauna cantitatea si adresa de primire inainte de a trimite monezi. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Acestea sunt adresele dumneavoastra Dogecoin folosite pentru a primi plati. Este recomandat sa folositi cate o adresa noua de primire pentru fiecare tranzactie in parte. - Copy &Label Copiază &eticheta - &Edit &Editează - Export Address List Exportati Agenda - Comma separated file (*.csv) Valori separate prin virgulă (*.csv) - Exporting Failed Exportare esuata - There was an error trying to save the address list to %1. A apărut o eroare încercând să se salveze lista de adrese la %1. @@ -169,17 +138,14 @@ Acest produs include programe dezvoltate de către OpenSSL Project pentru a fi f AddressTableModel - Label Etichetă - Address Adresă - (no label) (fără etichetă) @@ -187,140 +153,106 @@ Acest produs include programe dezvoltate de către OpenSSL Project pentru a fi f AskPassphraseDialog - Passphrase Dialog Dialogul pentru fraza de acces - Enter passphrase Introdu fraza de acces - New passphrase Frază de acces nouă - Repeat new passphrase Repetă noua frază de acces - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Introdu noua parolă a portofelului electronic.<br/>Te rog folosește <b>minim 10 caractere aleatoare</b>, sau <b>minim 8 cuvinte</b>. - Encrypt wallet Criptează portofelul - This operation needs your wallet passphrase to unlock the wallet. Această acțiune necesită fraza ta de acces pentru deblocarea portofelului. - Unlock wallet Deblochează portofelul - This operation needs your wallet passphrase to decrypt the wallet. Această acțiune necesită fraza ta de acces pentru decriptarea portofelului. - Decrypt wallet Decriptează portofelul. - Change passphrase Schimbă fraza de acces - Enter the old and new passphrase to the wallet. Introdu vechea și noua parolă pentru portofel. - Confirm wallet encryption Confirmă criptarea portofelului - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Atenție: Dacă pierdeţi parola portofelului electronic dupa criptare, <b>VEŢI PIERDE ÎNTREAGA SUMĂ DE DOGECOIN ACUMULATĂ</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Atenție: Dacă pierdeţi parola portofelului electronic dupa criptare, <b>VEŢI PIERDE ÎNTREAGA SUMĂ DE Dogecoin ACUMULATĂ</b>! - Are you sure you wish to encrypt your wallet? Sunteţi sigur că doriţi să criptaţi portofelul electronic? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANT: Orice copie de siguranta facuta in prealabil portofelului dumneavoastra ar trebui inlocuita cu cea generata cel mai recent fisier criptat al portofelului. Pentru siguranta, copiile de siguranta vechi ale portofelului ne-criptat vor deveni inutile de indata ce veti incepe folosirea noului fisier criptat al portofelului. - - Warning: The Caps Lock key is on! Atentie! Caps Lock este pornit - - Wallet encrypted Portofel criptat - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Dogecoin se va închide acum pentru a termina procesul de criptare. Ține minte că criptarea portofelului nu te poate proteja în totalitate de furtul monedelor de către programe dăunătoare care îți infectează calculatorul. - - - - Wallet encryption failed Criptarea portofelului a eșuat - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Criptarea portofelului a eșuat din cauza unei erori interne. Portofelul tău nu a fost criptat. - - The supplied passphrases do not match. Frazele de acces introduse nu se potrivesc. - Wallet unlock failed Deblocarea portofelului a eșuat - - - The passphrase entered for the wallet decryption was incorrect. Fraza de acces introdusă pentru decriptarea portofelului a fost incorectă. - Wallet decryption failed Decriptarea portofelului a eșuat - Wallet passphrase was successfully changed. Parola portofelului electronic a fost schimbată. @@ -328,352 +260,286 @@ Acest produs include programe dezvoltate de către OpenSSL Project pentru a fi f BitcoinGUI - Sign &message... Semnează &mesaj... - Synchronizing with network... Se sincronizează cu rețeaua... - &Overview &Imagine de ansamblu - Node Nod - Show general overview of wallet Arată o stare generală de ansamblu a portofelului - &Transactions &Tranzacții - Browse transaction history Răsfoiește istoricul tranzacțiilor - E&xit &Ieșire - Quit application Închide aplicația - - Show information about Dogecoin Core + Show information about Dogecoin Arată informații despre Dogecoin - - About &Qt Despre &Qt - Show information about Qt Arată informații despre Qt - &Options... &Setări... - &Encrypt Wallet... Criptează portofelul electronic... - &Backup Wallet... &Fă o copie de siguranță a portofelului... - &Change Passphrase... S&chimbă parola... - Very &sending addresses... - Much &receiving addresses... - Open &URI... Vizitaţi &URI... - Importing blocks from disk... Importare blocks de pe disk... - Reindexing blocks on disk... Se reindexează blocurile pe disc... - Send coins to a Dogecoin address Trimite monede către o adresă Dogecoin - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Modifică opțiunile de configurare pentru Dogecoin - Backup wallet to another location Creează o copie de rezervă a portofelului într-o locație diferită - Change the passphrase used for wallet encryption Schimbă fraza de acces folosită pentru criptarea portofelului - &Debug window Fereastră &debug - Open debugging and diagnostic console Deschide consola de debug și diagnosticare - &Verify message... &Verifică mesajul... - Dogecoin Dogecoin - Wallet Portofelul - &Send &Trimite - &Receive &Primește - - &Show / Hide Arata/Ascunde - Show or hide the main Window Arată sau ascunde fereastra principală - Encrypt the private keys that belong to your wallet Criptează cheile private ale portofelului tău - Sign messages with your Dogecoin addresses to prove you own them Semnează mesaje cu adresa ta Dogecoin pentru a dovedi că îți aparțin - Verify messages to ensure they were signed with specified Dogecoin addresses Verifică mesaje pentru a te asigura că au fost semnate cu adresa Dogecoin specificată - &File &Fișier - &Settings &Setări - &Help A&jutor - Tabs toolbar Bara de file - - [testnet] [testnet] - Dogecoin Core Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) - Cereti plati (genereaza coduri QR si dogecoin-uri: URls) + Request payments (generates QR codes and bitcoin: URIs) + Cereti plati (genereaza coduri QR si bitcoin-uri: URls) - - &About Dogecoin Core &Despre Nucleul Dogecoin - Show the list of used sending addresses and labels Aratati lista de adrese trimise si etichete folosite. - Show the list of used receiving addresses and labels Aratati lista de adrese pentru primire si etichete - - Open a dogecoin: URI or payment request - Deschideti un dogecoin: o adresa URI sau o cerere de plata + Open a bitcoin: URI or payment request + Deschideti un bitcoin: o adresa URI sau o cerere de plata - &Command-line options Command-line setări - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Client Dogecoin - %n active connection(s) to Dogecoin network %n conexiune activă către rețeaua Dogecoin%n conexiuni active către rețeaua Dogecoin%n de conexiuni active către rețeaua Dogecoin - No block source available... Nici o sursă de bloc disponibil ... - Processed %1 of %2 (estimated) blocks of transaction history. S-a procesat %1 din %2 block-uri (estimate) din istoria tranzactiei. - Processed %1 blocks of transaction history. S-au procesat %1 blocuri din istoricul tranzacțiilor. - %n hour(s) %n oră%n ore%n ore - %n day(s) %n zi%n zile%n zile - %n week(s) %n săptămână%n săptămâni%n de săptămâni - + %1 and %2 + %1 si %2 + + + %n year(s) + + + %1 behind %1 în urmă - Last received block was generated %1 ago. Ultimul bloc recepționat a fost generat acum %1. - Transactions after this will not yet be visible. Tranzacții după aceasta nu va fi încă disponibile. - Error Eroare - Warning Avertizare - Information Informație - Up to date Actualizat - Catching up... Se actualizează... - Sent transaction Tranzacție expediată - Incoming transaction Tranzacție recepționată - Date: %1 Amount: %2 Type: %3 @@ -686,25 +552,21 @@ Adresa: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Portofelul este <b>criptat</b> iar în momentul de față este <b>deblocat</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Portofelul este <b>criptat</b> iar în momentul de față este <b>blocat</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. A survenit o eroare fatala. Dogecoin nu mai poate continua in siguranta si se va opri. ClientModel - Network Alert Alertă rețea @@ -712,291 +574,230 @@ Adresa: %4 CoinControlDialog - Coin Control Address Selection Selectare Adresă de Comandă Monedă - Quantity: Cantitate: - Bytes: Octeţi: - Amount: Sumă: - Priority: Prioritate: - Fee: Taxa: - Low Output: Ieşire minimă: - After Fee: După taxe: - Change: Schimb: - (un)select all (de)selectaţi tot - Tree mode Modul arborescent - List mode Modul lista - Amount Sumă - Address Adresă - Date Data - Confirmations Confirmări - Confirmed Confirmat - Priority Prioritate - Copy address Copiază adresa - Copy label Copiază eticheta - - Copy amount Copiază suma - Copy transaction ID Copiază ID tranzacție - Lock unspent Blocaţi necheltuite - Unlock unspent Deblocaţi necheltuite - Copy quantity Copiaţi quantitea - Copy fee Copiaţi taxele - Copy after fee Copiaţi după taxe - Copy bytes Copiaţi octeţi - Copy priority Copiaţi prioritatea - Copy low output Copiaţi ieşire minimă: - Copy change Copiaţi schimb - highest cel mai mare - higher mai mare - high mare - medium-high marime medie - medium mediu - low-medium mediu-scazut - low scazut - lower mai scazut - lowest cel mai scazut - (%1 locked) (1% blocat) - none - + nimic - Dust Praf - yes da - no nu - This label turns red, if the transaction size is greater than 1000 bytes. Această etichetă devine roşie, în cazul în care dimensiunea tranzacţiei este mai mare de 1000 de octeţi. - - This means a fee of at least %1 per kB is required. Aceasta înseamnă o taxă de cel puţin 1% pe kB necesar. - Can vary +/- 1 byte per input. Poate varia +/- 1 octet pentru fiecare intrare. - Transactions with higher priority are more likely to get included into a block. Tranzacţiile cu prioritate mai mare sunt mai susceptibile de fi incluse într-un bloc. - This label turns red, if the priority is smaller than "medium". - + Aceasta eticheta se face rosie daca prioritatea e mai mica decat media - This label turns red, if any recipient receives an amount smaller than %1. Această etichetă devine roşie, dacă orice beneficiar primeşte o sumă mai mică decât 1. - - This means a fee of at least %1 is required. Aceasta înseamnă că o taxă de cel puţin 1% este necesară. - Amounts below 0.546 times the minimum relay fee are shown as dust. Sume sub 0,546 ori taxa minima sunt indicate ca ignorate. - This label turns red, if the change is smaller than %1. Această etichetă devine roşie, dacă schimbul e mai mic de 1%. - - (no label) (fără etichetă) - change from %1 (%2) - (change) (schimb) @@ -1004,67 +805,54 @@ Adresa: %4 EditAddressDialog - Edit Address Editează adresa - &Label &Etichetă - The label associated with this address list entry Etichetele asociate cu aceasta intrare din lista. - The address associated with this address list entry. This can only be modified for sending addresses. Adresa asociata cu aceasta adresa din lista. Aceasta poate fi modificata doar pentru Destinatari. - &Address &Adresă - New receiving address Noua adresă de primire - New sending address Noua adresă de trimitere - Edit receiving address Editează adresa de primire - Edit sending address Editează adresa de trimitere - The entered address "%1" is already in the address book. Adresa introdusă "%1" se află deja în lista de adrese. - The entered address "%1" is not a valid Dogecoin address. - Adresa introdusă "%1" nu este o adresă dogecoin validă. + Adresa introdusă "%1" nu este o adresă bitcoin validă. - Could not unlock wallet. Portofelul nu a putut fi deblocat. - New key generation failed. Generarea noii chei a eșuat. @@ -1072,27 +860,22 @@ Adresa: %4 FreespaceChecker - A new data directory will be created. Va fi creat un nou dosar de date. - name nume - Directory already exists. Add %1 if you intend to create a new directory here. Dosarul deja există. Adaugă %1 dacă intenționezi să creezi un nou dosar aici. - Path already exists, and is not a directory. Calea deja există și nu este un dosar. - Cannot create data directory here. Nu se poate crea un dosar de date aici. @@ -1100,52 +883,46 @@ Adresa: %4 HelpMessageDialog - Dogecoin Core - Command-line options Dogecoin Core - Opţiuni Linie de comandă - Dogecoin Core Dogecoin Core - version versiunea - Usage: Uz: - command-line options command-line setări - UI options UI setări - Set language, for example "de_DE" (default: system locale) Seteaza limba, de exemplu: "de_DE" (initialt: system locale) - Start minimized Incepe miniaturizare - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Afișează pe ecran splash la pornire (implicit: 1) - Choose data directory on startup (default: 0) Alege dosarul de date la pornire (implicit: 0) @@ -1153,57 +930,46 @@ Adresa: %4 Intro - Welcome Bun venit - Welcome to Dogecoin Core. Bine Aţi Venit la Nucleul Dogecoin. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. Dacă aceasta este prima dată când programul este lansat, puteţi alege unde Nucleul Dogecoin va stoca datele. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. Nucleul Dogecoin Core se va descărca şi va stoca o copie a lanţului blocului Dogecoin. Cel puţin 1GB de date vor fi stocate in acest dosar şi se va dezvolta în timp. Portofelul va fi, de asemenea, stocat în acest dosar. - Use the default data directory Folosește dosarul de date implicit - Use a custom data directory: Folosește un dosar de date personalizat: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. Eroare: Directorul datelor specificate "%1" nu poate fi creat. - Error Eroare - GB of free space available GB de spațiu liber disponibil - (of %1GB needed) (din %1GB necesari) @@ -1211,27 +977,22 @@ Adresa: %4 OpenURIDialog - Open URI Deschideti adresa URI - Open payment request from URI or file Deschideţi cerere de plată prin intermediul adresei URI sau a fişierului - URI: adresa URI: - Select payment request file Selectaţi fişierul de cerere de plată - Select payment request file to open Selectaţi fişierul de cerere de plată de deschis @@ -1239,323 +1000,261 @@ Adresa: %4 OptionsDialog - Options Setări - &Main &Principal - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Taxa optionala de tranzactie per kB care ajuta ca tranzactiile dumneavoastra sa fie procesate rapid. Majoritatea tranzactiilor sunt 1 kB. - Pay transaction &fee Plăteşte comision pentru tranzacţie &f - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Porneşte automat programul Dogecoin la pornirea computerului. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &S Porneşte Dogecoin la pornirea sistemului - Size of &database cache - MB - + MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - &Spend unconfirmed change (experts only) - - - - Connect to the Dogecoin network through a SOCKS proxy. - + Conecteaza-te la reteaua Dogecoin printr-un proxy SOCKS - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. Resetează toate setările clientului la valorile implicite. - &Reset Options &Resetează opțiunile - &Network &Retea - + (0 = auto, <0 = leave that many cores free) + + + W&allet - + Expert + expert + + + Enable coin &control features + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Deschide automat în router portul aferent clientului Dogecoin. Funcţionează doar în cazul în care routerul e compatibil UPnP şi opţiunea e activată. - Map port using &UPnP Mapeaza portul folosind &UPnP - Proxy &IP: Proxy &IP: - &Port: &Port: - Port of the proxy (e.g. 9050) Portul pe care se concetează proxy serverul (de exemplu: 9050) - SOCKS &Version: SOCKS &Versiune: - SOCKS version of the proxy (e.g. 5) Versiunea SOCKS a proxiului (ex. 5) - &Window &Fereastra - Show only a tray icon after minimizing the window. Afişează doar un icon in tray la ascunderea ferestrei - &Minimize to the tray instead of the taskbar &M Ascunde în tray în loc de taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Ascunde fereastra în locul părăsirii programului în momentul închiderii ferestrei. Când acestă opţiune e activă, aplicaţia se va opri doar în momentul selectării comenzii Quit din menu. - M&inimize on close &i Ascunde fereastra în locul închiderii programului - &Display &Afişare - User Interface &language: Interfata & limba userului - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Limba interfeței utilizatorului poate fi setat aici. Această setare va avea efect după repornirea Dogecoin. - &Unit to show amounts in: &Unitatea de măsură pentru afişarea sumelor: - Choose the default subdivision unit to show in the interface and when sending coins. - Alege subdiviziunea folosită la afişarea interfeţei şi la trimiterea de dogecoin. + Alege subdiviziunea folosită la afişarea interfeţei şi la trimiterea de bitcoin. - Whether to show Dogecoin addresses in the transaction list or not. Vezi dacă adresele Dogecoin sunt în lista de tranzacție sau nu - &Display addresses in transaction list &Afişează adresele în lista de tranzacţii - Whether to show coin control features or not. Dacă să se afişeze controlul caracteristicilor monedei sau nu. - - Display coin &control features (experts only) - Afişeare controlul caracteristicilor monedei (doat pentru experţi) - - - &OK & OK - &Cancel & Renunta - default Initial - none - + nimic - Confirm options reset Confirmă resetarea opțiunilor - - Client restart required to activate changes. Este necesar un restart al clientului pentru a activa schimbările. - Client will be shutdown, do you want to proceed? Clientul va fi închis, doriţi să continuaţi? - This change would require a client restart. Această schimbare va necesita un restart al clientului. - The supplied proxy address is invalid. - Adresa dogecoin pe care a-ti specificat-o este invalida + Adresa bitcoin pe care a-ti specificat-o este invalida OverviewPage - Form Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Informațiile afișate pot neactualizate. Portofelul tău se sincronizează automat cu rețeaua Dogecoin după ce o conexiune este stabilită, dar acest proces nu a fost finalizat încă. - Wallet Portofel - Available: Disponibil: - Your current spendable balance Balanța ta curentă de cheltuieli - Pending: În aşteptare: - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Totalul tranzacțiilor care nu sunt confirmate încă și care nu sunt încă adunate la balanța de cheltuieli - Immature: Nematurizat: - Mined balance that has not yet matured Balanta minata care nu s-a maturizat inca - Total: Total: - Your current total balance Balanța totală curentă - <b>Recent transactions</b> <b>Tranzacții recente</b> - - out of sync Nu este sincronizat @@ -1563,93 +1262,70 @@ Adresa: %4 PaymentServer - - URI handling Gestionare URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. URI nu poate fi analizat! Acest lucru poate fi cauzat de o adresa Dogecoin invalida sau parametri deformati URI. - Requested payment amount of %1 is too small (considered dust). Cereti plata cu suma de %1 este prea mica (considerata praf) - - - - - - Payment request error Eroare la cererea de plată - - Cannot start dogecoin: click-to-pay handler - Nu poate porni dogecoin: regula clic-pentru-plata + Cannot start bitcoin: click-to-pay handler + Nu poate porni bitcoin: regula clic-pentru-plata - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. Cereri de plată neverificate prin script-uri personalizate de plată nu sunt suportate. - Refund from %1 rambursare de la %1 - Error communicating with %1: %2 Eroare la comunicarea cu %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 Răspuns greșit de la server %1 - Payment acknowledged Plată acceptată - Network request error Eroare în cererea de rețea @@ -1657,23 +1333,26 @@ Adresa: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Eroare: Directorul datelor specificate "%1" nu exista. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. Eroare: combinație nevalidă de -regtest și -testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Introdu o adresă Dogecoin (de exemplu: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1681,22 +1360,18 @@ Adresa: %4 QRImageWidget - &Save Image... Salvarea imaginii ... - &Copy Image Copierea imaginii - Save QR Code Salvează codul QR - PNG Image (*.png) Imagine de tip PNG (*.png) @@ -1704,192 +1379,146 @@ Adresa: %4 RPCConsole - Client name Nume client - - - - - - - - - - - N/A N/A - Client version Versiune client - &Information &Informație - Debug window Fereastra de depanare - General General - Using OpenSSL version Foloseste versiunea OpenSSL - Startup time Durata pornirii - Network Rețea - Name Numele - Number of connections Numărul de conexiuni - Block chain Lanț de blocuri - Current number of blocks Numărul curent de blocuri - Estimated total blocks Blocurile totale estimate - Last block time Data ultimului bloc - &Open &Deschide - &Console &Consolă - &Network Traffic Traficul in rețea - &Clear &Ştergeţi - Totals Totaluri - In: în: - Out: Ieșire. - Build date Construit la data - Debug log file Loguri debug - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Deschide logurile debug din directorul curent. Aceasta poate dura cateva secunde pentru fisierele mai mari - Clear console Curăță consola - - Welcome to the Dogecoin Core RPC console. - Bun venit la consola dogecoin RPC + Welcome to the Dogecoin RPC console. + Bun venit la consola bitcoin RPC - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Foloseste sagetile sus si jos pentru a naviga in istoric si <b>Ctrl-L</b> pentru a curata. - Type <b>help</b> for an overview of available commands. Scrie <b>help</b> pentru a vedea comenzile disponibile - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 m - %1 h %1 h - %1 h %2 m %1 ora %2 minute @@ -1897,105 +1526,82 @@ Adresa: %4 ReceiveCoinsDialog - &Amount: & suma: - &Label: &Etichetă: - &Message: & mesaj: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. Refolositi una din adresele de primire folosite in prealabil. Refolosirea adreselor poate crea probleme de securitate si confidentialitate. Nu folositi aceasta optiune decat daca o cerere de regenerare a platii a fost facuta in prealabil. - R&euse an existing receiving address (not recommended) &Refolosirea unei adrese de primire (nu este recomandat) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - - An optional label to associate with the new receiving address. - Use this form to request payments. All fields are <b>optional</b>. Folosește acest formular pentru a solicita plăți. Toate câmpurile sunt <b>opționale</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. Stergeti toate campurile formularului - Clear Stergeti - Requested payments history - + Istoricul platilor a fost cerut - &Request payment &Cereti plata - Show the selected request (does the same as double clicking an entry) - Show Arată - Remove the selected entries from the list - Remove Elimină - Copy label Copiază eticheta - Copy message Copiaţi mesajul - Copy amount Copiază suma @@ -2003,67 +1609,54 @@ Adresa: %4 ReceiveRequestDialog - QR Code Cod QR - Copy &URI Copiati &URl - Copy &Address Copiati &Adresa - &Save Image... Salvarea imaginii ... - Request payment to %1 Cereti plata pentru %1 - Payment information Informatiile platii - URI Identificator uniform de resurse - Address Adresă - Amount Sumă - Label Etichetă - Message Mesaj - Resulting URI too long, try to reduce the text for label / message. URI rezultat este prea lung, încearcă să reduci textul pentru etichetă / mesaj. - Error encoding URI into QR Code. Eroare la codarea URl-ului în cod QR. @@ -2071,285 +1664,225 @@ Adresa: %4 RecentRequestsTableModel - Date Data - Label Etichetă - Message Mesaj - Amount Sumă - (no label) (fără etichetă) - (no message) (nici un mesaj) - (no amount) - + (suma nulă) SendCoinsDialog - - - Send Coins Trimite monede - Coin Control Features - Inputs... Intrări - automatically selected Selectie automatică - Insufficient funds! Fonduri insuficiente! - Quantity: Cantitate: - Bytes: Octeţi: - Amount: Sumă: - Priority: Prioritate: - Fee: Taxa: - Low Output: Ieşire minimă: - After Fee: După taxe: - Change: Schimbaţi: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Trimite simultan către mai mulți destinatari - Add &Recipient &Adaugă destinatar - Clear all fields of the form. Stergeti toate campurile formularului - Clear &All Șterge &tot - Balance: Balanță: - Confirm the send action Confirmă operațiunea de trimitere - S&end &S Trimite - Confirm send coins Confirmă trimiterea de monede - - - - %1 to %2 %1 la %2 - Copy quantity Copiaţi quantitea - Copy amount Copiază suma - Copy fee Copiaţi taxele - Copy after fee Copiaţi după taxe - Copy bytes Copiaţi octeţi - Copy priority Copiaţi prioritatea - Copy low output Copiaţi ieşire minimă: - Copy change Copiaţi schimb - Total Amount %1 (= %2) Suma totală %1 (= %2) - or sau - The recipient address is not valid, please recheck. Adresa destinatarului nu este validă, vă rugăm să o verificaţi. - The amount to pay must be larger than 0. Suma de plată trebuie să fie mai mare decât 0. - The amount exceeds your balance. Suma depășește soldul contului. - The total exceeds your balance when the %1 transaction fee is included. Totalul depășește soldul contului dacă se include și plata comisionului de %1. - Duplicate address found, can only send to each address once per send operation. S-a descoperit o adresă care figurează de două ori. Expedierea se poate realiza către fiecare adresă doar o singură dată pe operațiune. - Transaction creation failed! - + Creare de tranzactie nereusita! - 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. - + Tranzactia a fost respinsa! Acest lucru se poate intampla daca o parte din monedele tale din portofel au fost deja cheltuite, la fel ca si cum ai fi folosit o copie a wallet.dat si monedele au fost cheltuite in copie, dar nu au fost marcate si si cheltuite si aici. - Warning: Invalid Dogecoin address - + Atentie: Adresa Dogecoin invalida! - (no label) (fără etichetă) - Warning: Unknown change address - + Atentie: Schimbare de adresa necunoscuta - Are you sure you want to send? Ești sigur că vrei să trimiți? - added as transaction fee adăugat ca taxă de tranzacție - Payment request expired Cererea de plată a expirat - Invalid payment address %1 Adresă pentru plată nevalidă %1 @@ -2357,98 +1890,74 @@ Adresa: %4 SendCoinsEntry - - - A&mount: Su&mă: - Pay &To: Plătește că&tre: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Adresa către care se va face plata (de exemplu: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Introdu o etichetă pentru această adresă pentru a fi adăugată în lista ta de adrese - &Label: &Etichetă: - Choose previously used address Alegeti adrese folosite in prealabil. - This is a normal payment. Aceasta este o tranzacţie normală. - Alt+A Alt+A - Paste address from clipboard Lipește adresa din clipboard - Alt+P Alt+P - - - Remove this entry - + Scoate aceasta introducere - Message: Mesaj: - This is a verified payment request. - + Aceasta este o cerere de plata verificata - Enter a label for this address to add it to the list of used addresses Introduceti eticheta pentru ca aceasta adresa sa fie introdusa in lista de adrese folosite - - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. - + Aceasta este o cerere de plata neverificata - - Pay To: - + Plateste catre: - - Memo: Memo: @@ -2456,12 +1965,10 @@ Adresa: %4 ShutdownWindow - Dogecoin Core is shutting down... Dogecoin Core se închide... - Do not shut down the computer until this window disappears. Nu închide calculatorul până ce această fereastră nu dispare. @@ -2469,186 +1976,142 @@ Adresa: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Semnatura- Semneaza/verifica un mesaj - &Sign Message Semneaza Mesajul - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Puteti semna mesaje cu adresa dumneavoastra pentru a demostra ca sunteti proprietarul lor. Aveti grija sa nu semnati nimic vag, deoarece atacurile de tip phishing va pot pacali sa le transferati identitatea. Semnati numai declaratiile detaliate cu care sunteti deacord. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Introduceţi o adresă Dogecoin (de exemplu: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Alegeti adrese folosite in prealabil - - Alt+A Alt+A - Paste address from clipboard Lipiţi adresa copiată in clipboard. - Alt+P Alt+P - Enter the message you want to sign here Introduce mesajul pe care vrei sa il semnezi, aici. - Signature Semnătură - Copy the current signature to the system clipboard Copiaza semnatura curenta in clipboard-ul sistemului - Sign the message to prove you own this Dogecoin address Semneaza mesajul pentru a dovedi ca detii acesta adresa Dogecoin - Sign &Message Semnează &Message - Reset all sign message fields Reseteaza toate spatiile mesajelor semnate. - - Clear &All Şterge &tot - &Verify Message Verifica mesajul - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Introduceti adresa de semnatura, mesajul (asigurati-va ca ati copiat spatiile, taburile etc. exact) si semnatura dedesubt pentru a verifica mesajul. Aveti grija sa nu cititi mai mult in semnatura decat mesajul in sine, pentru a evita sa fiti pacaliti de un atac de tip man-in-the-middle. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Introduceţi o adresă Dogecoin (de exemplu: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Verifica mesajul pentru a fi sigur ca a fost semnat cu adresa Dogecoin specifica - Verify &Message Verifică &Message - Reset all verify message fields Reseteaza toate spatiile mesajelor semnate. - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Introduceţi o adresă Dogecoin (de exemplu: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Click "Semneaza msajul" pentru a genera semnatura - - The entered address is invalid. Adresa introdusa nu este valida - - - - Please check the address and try again. Te rugam verifica adresa si introduce-o din nou - - The entered address does not refer to a key. Adresa introdusa nu se refera la o cheie. - Wallet unlock was cancelled. Blocarea portofelului a fost intrerupta - Private key for the entered address is not available. Cheia privata pentru adresa introdusa nu este valida. - Message signing failed. Semnarea mesajului a esuat - Message signed. Mesaj Semnat! - The signature could not be decoded. Aceasta semnatura nu a putut fi decodata - - Please check the signature and try again. Verifica semnatura si incearca din nou - The signature did not match the message digest. Semnatura nu seamana! - Message verification failed. Verificarea mesajului a esuat - Message verified. Mesaj verificat @@ -2656,17 +2119,14 @@ Adresa: %4 SplashScreen - Dogecoin Core Dogecoin Core - The Dogecoin Core developers Dezvoltatorii Dogecoin Core - [testnet] [testnet] @@ -2674,7 +2134,6 @@ Adresa: %4 TrafficGraphWidget - KB/s KB/s @@ -2682,184 +2141,138 @@ Adresa: %4 TransactionDesc - Open until %1 Deschis până la %1 - conflicted - %1/offline %1/deconectat - %1/unconfirmed %1/neconfirmat - %1 confirmations %1 confirmări - Status Stare - , broadcast through %n node(s) , distribuit prin %n nod, distribuit prin %n noduri, distribuit prin %n de noduri - Date Data - Source Sursa - Generated Generat - - From De la - - - To Către - - own address Adresa posedata - label etichetă - - - - - Credit Credit - matures in %n more block(s) se maturizează în încă %n blocse maturizează în încă %n blocurise maturizează în încă %n de blocuri - not accepted nu este acceptat - - - - Debit Debit - Transaction fee Comisionul tranzacţiei - Net amount Suma netă - - Message Mesaj - Comment Comentarii - Transaction ID ID-ul tranzactiei - Merchant Comerciant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Monezile generate trebuie sa creasca %1 block-uri inainte sa poata fi cheltuite. Cand ati generat acest block, a fost transmis retelei pentru a fi adaugat la lantul de block-uri. Aceasta se poate intampla ocazional daca alt nod genereaza un block la numai cateva secunde de al tau. - Debug information Informatii pentru debug - Transaction Tranzacţie - Inputs Intrari - Amount Sumă - true Adevarat! - false Fals! - , has not been successfully broadcast yet , nu s-a propagat încă - Open for %n more block(s) Deschis pentru încă %1 blocDeschis pentru încă %1 blocuriDeschis pentru încă %1 de blocuri - unknown necunoscut @@ -2867,12 +2280,10 @@ Adresa: %4 TransactionDescDialog - Transaction details Detaliile tranzacției - This pane shows a detailed description of the transaction Acest panou afișează o descriere detaliată a tranzacției @@ -2880,127 +2291,102 @@ Adresa: %4 TransactionTableModel - Date Data - Type Tipul - Address Adresa - Amount Cantitate - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) Deschis pentru încă %1 blocDeschis pentru încă %1 blocuriDeschis pentru încă %1 de blocuri - Open until %1 Deschis până la %1 - Confirmed (%1 confirmations) Confirmat (%1 confirmări) - This block was not received by any other nodes and will probably not be accepted! Acest bloc nu a fost recepționat de niciun alt nod și probabil nu va fi acceptat! - Generated but not accepted Generat dar neacceptat - Offline Deconectat - Unconfirmed Neconfirmat - Confirming (%1 of %2 recommended confirmations) Confirmare (%1 dintre %2 confirmări recomandate) - Conflicted - Received with Recepționat cu - Received from Primit de la - Sent to Trimis către - Payment to yourself Plată către tine - Mined Produs - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. Starea tranzacției. Treci cu mausul peste acest câmp pentru afișarea numărului de confirmări. - Date and time that the transaction was received. Data și ora la care a fost recepționată tranzacția. - Type of transaction. Tipul tranzacției. - Destination address of transaction. Adresa de destinație a tranzacției. - Amount removed from or added to balance. Suma extrasă sau adăugată la sold. @@ -3008,178 +2394,142 @@ Adresa: %4 TransactionView - - All Toate - Today Astăzi - This week Săptămâna aceasta - This month Luna aceasta - Last month Luna trecută - This year Anul acesta - Range... Între... - Received with Recepționat cu - Sent to Trimis către - To yourself Către tine - Mined Produs - Other Altele - Enter address or label to search Introdu adresa sau eticheta pentru căutare - Min amount Cantitatea minimă - Copy address Copiază adresa - Copy label Copiază eticheta - Copy amount Copiază suma - Copy transaction ID Copiază ID tranzacție - Edit label Editează eticheta - Show transaction details Arată detaliile tranzacției - Export Transaction History Exportare Istoric Tranzacţii - Exporting Failed Exportare Eşuată - There was an error trying to save the transaction history to %1. S-a produs o eroare încercând să se salveze istoricul tranzacţiilor la %1. - Exporting Successful Exportare Reuşită - The transaction history was successfully saved to %1. Istoricul tranzacţiilor a fost salvat cu succes la %1. - Comma separated file (*.csv) Fișier text cu valori separate prin virgulă (*.csv) - Confirmed Confirmat - Date Data - Type Tipul - Label Etichetă - Address Adresă - Amount Sumă - ID ID - Range: Interval: - to către @@ -3187,7 +2537,6 @@ Adresa: %4 WalletFrame - No wallet has been loaded. Nu a fost încărcat niciun portofel. @@ -3195,7 +2544,6 @@ Adresa: %4 WalletModel - Send Coins Trimite Dogecoin @@ -3203,154 +2551,125 @@ Adresa: %4 WalletView - &Export &Exportă - Export the data in the current tab to a file Exporta datele din tab-ul curent într-un fișier - Backup Wallet Fă o copie de siguranță a portofelului - Wallet Data (*.dat) Date portofel (*.dat) - Backup Failed Copia de rezerva a esuat - There was an error trying to save the wallet data to %1. S-a produs o eroare încercând să se salveze datele portofelului la %1. - The wallet data was successfully saved to %1. Datele portofelului s-au salvat cu succes la %1. - Backup Successful Copia de siguranță efectuată cu succes - dogecoin-core + bitcoin-core - Usage: Uz: - List commands Listă de comenzi - Get help for a command Ajutor pentru o comandă - Options: Setări: - - Specify configuration file (default: dogecoin.conf) - Specifică fișierul de configurare (implicit: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Specifică fișierul de configurare (implicit: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Specifică fișierul pid (implicit dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Specifică fișierul pid (implicit bitcoind.pid) - Specify data directory Specifică dosarul de date - - Set database cache size in megabytes (default: 25) - Setează mărimea cache a bazei de date în megabiți (implicit: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Ascultă pentru conectări pe <port> (implicit: 8333 sau testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Ascultă pentru conectări pe <port> (implicit: 22556 sau testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Menține cel mult <n> conexiuni cu partenerii (implicit: 125) - Connect to a node to retrieve peer addresses, and disconnect Conectează-te la nod pentru a obține adresele partenerilor, și apoi deconectează-te - Specify your own public address Specifică adresa ta publică - Threshold for disconnecting misbehaving peers (default: 100) Prag pentru deconectarea partenerilor care nu funcționează corect (implicit: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Numărul de secunde pentru a preveni reconectarea partenerilor care nu funcționează corect (implicit: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s A intervenit o eroare in timp ce se seta portul RPC %u pentru ascultare pe IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Ascultă pentru conexiuni JSON-RPC pe <port> (implicit:22555 sau testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Ascultă pentru conexiuni JSON-RPC pe <port> (implicit:8332 sau testnet: 18332) - Accept command line and JSON-RPC commands Se acceptă comenzi din linia de comandă și comenzi JSON-RPC - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Rulează în fundal ca un demon și acceptă comenzi - Use the test network Utilizează rețeaua de test - Accept connections from outside (default: 1 if no -proxy or -connect) Acceptă conexiuni din afară (implicit: 1 dacă nu se folosește -proxy sau -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3358,725 +2677,700 @@ If the file does not exist, create it with owner-readable-only file permissions. It is also recommended to set alertnotify so you are notified of problems; for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo.com - + %s trebuie sa setezi o parola rpc in fisierul de configurare +%s +Este recomandat sa folosesti aceasta parola aleatorie: +rpcuser=bitcoinrpc +parola rpc=%s +(nu este necesar ca sa iti amintesti aceasta parola) +Numele de utilizator si parola NU trebuie sa fie la fel. +Daca fisierul nu exista, creaza-l cu fisier de citit permis doar proprietarului. +Este de asemenea recomandat sa setezi alerta de notificare ca sa primesti notificari ale problemelor; +spre exemplu: alertnotify=echo %%s | mail -s "Alerta Dogecoin" admin@foo.com + + - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Cifruri acceptabile (implicit: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s A intervenit o eroare in timp ce se seta portul RPC %u pentru ascultare pe IPv6, reintoarcere la IPv4: %s - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Atasati adresei date si ascultati totdeauna pe ea. Folositi [host]:port notatia pentru IPv6 - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - Nu se poate obține o blocare a directorului de date %s. Dogecoin probabil rulează deja. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + - 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. Initiati modul de test al regresie, care foloseste un lant special in care block-urile pot fi rezolvate instantaneu. Acest lucru este facut pentru utilitare si aplicatii de dezvoltare pentru testarea regresiei. - 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 %d) + + + 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. Eroare: Tranzactia a fost respinsa! Acest lucru se poate intampla daca anumite monezi din portofelul dumneavoastra au fost deja cheltuite, deasemenea daca ati folosit o copie a fisierului wallet.dat si monezile au fost folosite in acea copie dar nu au fost marcate ca fiind folosite acolo. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! Eroare: Aceasta tranzactie necesita o taxa de cel putin %s din cauza sumei, complexitatii sau folosirii fondurilor recent primite! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Executati comanda cand o tranzactie a portofelului se schimba (%s in cmd este inlocuit de TxID) - + Fees smaller than this are considered zero fee (for transaction creation) (default: + Taxe mai mici decat aceasta suma sunt considerate taxe nule (pentru crearea tranzactiilor) (pentru nespecificare: + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Aceasta este o versiune de test preliminara - va asumati riscul folosind-o - nu folositi pentru minerit sau aplicatiile comerciantilor. - + Unable to bind to %s on this computer. Dogecoin Core is probably already running. + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) Utilizare proxy SOCKS5 separat pentru a ajunge la servicii ascunse TOR (implicit: -proxy) - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Atentie: setarea -paytxfee este foarte ridicata! Aceasta este taxa tranzactiei pe care o vei plati daca trimiti o tranzactie. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Atentie: Va rugam verificati daca data/timpul computerului dumneavoastra sunt corecte! Daca ceasul computerului este decalat, Dogecoin nu va functiona corect. - Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Atentie: Reteaua nu pare sa fie deacord in totalitate! Aparent niste mineri au probleme. - Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Atentie: Aparent, nu suntem deacord cu toti membrii nostri! Va trebui sa faci un upgrade, sau alte noduri ar necesita upgrade. - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Atentie: eroare la citirea fisierului wallet.dat! Toate cheile sunt citite corect, dar datele tranzactiei sau anumite intrari din agenda sunt incorecte sau lipsesc. - 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. Atentie: fisierul wallet.dat este corupt, date salvate! Fisierul original wallet.dat a fost salvat ca wallet.{timestamp}.bak in %s; daca balansul sau tranzactiile sunt incorecte ar trebui sa restaurati dintr-o copie de siguranta. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: <category> poate fi: - Attempt to recover private keys from a corrupt wallet.dat Încearcă recuperarea cheilor private dintr-un wallet.dat corupt - Dogecoin Core Daemon Daemon-ul Dogecoin Core - - Dogecoin Core RPC client version - Versiunea clientului Dogecoin RPC - - - Block creation options: Optiuni creare block - Clear list of wallet transactions (diagnostic tool; implies -rescan) - Connect only to the specified node(s) Conecteaza-te doar la nod(urile) specifice - Connect through SOCKS proxy Conectare prin proxy SOCKS - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - Conectat la JSON-RPC pe <portul> (implicit: 22555 sau testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + Conectat la JSON-RPC pe <portul> (implicit: 8332 sau testnet: 18332) + + + Connection options: + - Corrupted block database detected Baza de date 'bloc' defectată a fost detectată - + Debugging/Testing options: + + + + Disable safemode, override a real safe mode event (default: 0) + + + Discover own IP address (default: 1 when listening and no -externalip) Descopera propria ta adresa IP (intial: 1) - Do not load the wallet and disable wallet RPC calls - Do you want to rebuild the block database now? Doriți să reconstruiți baza de date 'bloc' acum? - Error initializing block database Eroare la inițializarea bazei de date de blocuri - Error initializing wallet database environment %s! Eroare la initializarea mediului de baza de date a portofelului %s! - Error loading block database Eroare la încărcarea bazei de date de blocuri - Error opening block database Eroare la deschiderea bazei de date de blocuri - Error: Disk space is low! Eroare: Spațiu pe disc redus! - Error: Wallet locked, unable to create transaction! Eroare: Portofel blocat, nu se poate crea o tranzacție! - Error: system error: Eroare: eroare de sistem: - Failed to listen on any port. Use -listen=0 if you want this. Am esuat ascultarea pe orice port. Folositi -listen=0 daca vreti asta. - Failed to read block info Citirea informațiilor despre bloc a eșuat - Failed to read block Citirea blocului a eșuat - Failed to sync block index A eșuat sincronizarea indexului de blocuri - Failed to write block index A eșuat scrierea indexului de blocuri - Failed to write block info Scrierea informațiilor despre bloc a eșuat - Failed to write block Scrierea blocului a eșuat - Failed to write file info Nu a reușit scrierea informației în fișier - Failed to write to coin database Eșuarea scrierii în baza de date de monede - Failed to write transaction index Nu a reușit scrierea indexului de tranzacție - Failed to write undo data Esuare in scrierea datelor anulate - Fee per kB to add to transactions you send - + Fees smaller than this are considered zero fee (for relaying) (default: + + + Find peers using DNS lookup (default: 1 unless -connect) Găsește parteneri folosind căutarea DNS (implicit: 1 doar dacă nu s-a folosit -connect) - + Force safe mode (default: 0) + Pornire fortata a modului safe mode (prestabilit: 0) + + Generate coins (default: 0) Generează monede (implicit: 0) - How many blocks to check at startup (default: 288, 0 = all) Cate block-uri se verifica la initializare (implicit: 288, 0=toate) - - How thorough the block verification is (0-4, default: 3) - Cât de - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? Incorect sau nici un bloc de Geneza găsite. Directorul de retea greşit? - Invalid -onion address: '%s' Adresa -onion invalidă: '%s' - Not enough file descriptors available. Nu sunt destule descriptoare disponibile. - Prepend debug output with timestamp (default: 1) - RPC client options: Opţiuni client RPC: - Rebuild block chain index from current blk000??.dat files Reconstruirea indexului lantului de block-uri din fisierele actuale blk000???.dat - Select SOCKS version for -proxy (4 or 5, default: 5) Selectaţi versiunea SOCKS pentru -proxy (4 din 5; iniţial: 5) - - Send command to Dogecoin Core server - Trimite comanda la serverul Dogecoin + Set database cache size in megabytes (%d to %d, default: %d) + - Set maximum block size in bytes (default: %d) Setaţi dimensiunea maximă a unui block în bytes (implicit: %d) - Set the number of threads to service RPC calls (default: 4) - Specify wallet file (within data directory) Specifică fișierul wallet (în dosarul de date) - Spend unconfirmed change when sending transactions (default: 1) - - Start Dogecoin Core server - A porni serverul Dogecoin - - - This is intended for regression testing tools and app development. - + Este folosita pentru programe de testare a regresiei in algoritmi si dezvoltare de alte aplicatii. - - Usage (deprecated, use dogecoin-cli): - Utilizare (învechită, folositi dogecoin-cli): + Usage (deprecated, use bitcoin-cli): + Utilizare (învechită, folositi bitcoin-cli): - Verifying blocks... Se verifică blocurile... - Verifying wallet... Se verifică portofelul... - Wait for RPC server to start Aşteptaţi serverul RPC să pornească - Wallet %s resides outside data directory %s Portofelul %s se află în afara dosarului de date %s - Wallet options: Optiuni de portofel - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex Trebuie să reconstruiești baza de date folosind -reindex pentru a schimba -txindex - Imports blocks from external blk000??.dat file Importă blocuri dintr-un fișier extern blk000??.dat - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Executati comanda cand o alerta relevanta este primita sau vedem o bifurcatie foarte lunga (%s in cmd este inlocuti de mesaj) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Information Informație - Invalid amount for -minrelaytxfee=<amount>: '%s' Suma invalida pentru -minrelaytxfee=<suma>:'%s' - Invalid amount for -mintxfee=<amount>: '%s' Suma invalida pentru -mintxfee=<suma>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) Păstrează un index complet al tranzacțiilor (implicit: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Tampon maxim pentru recepție per conexiune, <n>*1000 baiți (implicit: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Tampon maxim pentru transmitere per conexiune, <n>*1000 baiți (implicit: 1000) - Only accept block chain matching built-in checkpoints (default: 1) Se accepta decat lantul de block care se potriveste punctului de control implementat (implicit: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Efectuează conexiuni doar către nodurile din rețeaua <net> (IPv4, IPv6 sau Tor) - + Print block on startup, if found in block index + Publica bloc la pornire daca exista in index-ul de blocuri. + + + Print block tree on startup (default: 0) + Publicare arbore blocuri la pornire (prestabilit: 0) + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + RPC server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Optiuni SSl (vezi Dogecoin wiki pentru intructiunile de instalare) - + Send command to Dogecoin Core + Trimitere comenzi catre Dogecoin Core + + Send trace/debug info to console instead of debug.log file Trimite informațiile trace/debug la consolă în locul fișierului debug.log - Set minimum block size in bytes (default: 0) Setează mărimea minimă a blocului în baiți (implicit: 0) - + 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) Micsorati fisierul debug.log la inceperea clientului (implicit: 1 cand nu -debug) - Signing transaction failed Semnarea tranzacției a eșuat - Specify connection timeout in milliseconds (default: 5000) Specifică intervalul maxim de conectare în milisecunde (implicit: 5000) - + Start Dogecoin Core Daemon + + + System error: Eroare de sistem: - Transaction amount too small Suma tranzacționată este prea mică - Transaction amounts must be positive Sumele tranzacționate trebuie să fie pozitive - Transaction too large Tranzacția este prea mare - Use UPnP to map the listening port (default: 0) Foloseste UPnP pentru a vedea porturile (initial: 0) - Use UPnP to map the listening port (default: 1 when listening) Foloseste UPnP pentru a vedea porturile (initial: 1 cand listezi) - Username for JSON-RPC connections Utilizator pentru conexiunile JSON-RPC - Warning Avertizare - Warning: This version is obsolete, upgrade required! Atenție: această versiune este depășită, este necesară actualizarea! - Zapping all transactions from wallet... - + on startup + in timpul pornirii + + version versiunea - wallet.dat corrupt, salvage failed wallet.dat corupt, recuperare eșuată - Password for JSON-RPC connections Parola pentru conexiunile JSON-RPC - Allow JSON-RPC connections from specified IP address Permite conexiuni JSON-RPC de la adresa IP specificată - Send commands to node running on <ip> (default: 127.0.0.1) Trimite comenzi la nodul care rulează la <ip> (implicit: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) Execută comanda când cel mai bun bloc se modifică (%s în cmd este înlocuit cu hash-ul blocului) - Upgrade wallet to latest format Actualizează portofelul la ultimul format - Set key pool size to <n> (default: 100) Setează mărimea bazinului de chei la <n> (implicit: 100) - Rescan the block chain for missing wallet transactions Rescanează lanțul de bloc pentru tranzacțiile portofel lipsă - Use OpenSSL (https) for JSON-RPC connections Folosește OpenSSL (https) pentru conexiunile JSON-RPC - Server certificate file (default: server.cert) Certificatul serverului (implicit: server.cert) - Server private key (default: server.pem) Cheia privată a serverului (implicit: server.pem) - This help message Acest mesaj de ajutor - Unable to bind to %s on this computer (bind returned error %d, %s) Nu se poate folosi %s pe acest calculator (eroarea returnată este %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Permite căutări DNS pentru -addnode, -seednode și -connect - Loading addresses... Încarc adrese... - Error loading wallet.dat: Wallet corrupted Eroare la încărcarea wallet.dat: Portofel corupt - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Eroare la încărcarea wallet.dat: Portofelul are nevoie de o versiune Dogecoin mai nouă - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Portofelul trebuie rescris: repornește Dogecoin pentru finalizare - Error loading wallet.dat Eroare la încărcarea wallet.dat - Invalid -proxy address: '%s' Adresa -proxy nevalidă: '%s' - Unknown network specified in -onlynet: '%s' Rețeaua specificată în -onlynet este necunoscută: '%s' - Unknown -socks proxy version requested: %i S-a cerut o versiune necunoscută de proxy -socks: %i - Cannot resolve -bind address: '%s' Nu se poate rezolva adresa -bind: '%s' - Cannot resolve -externalip address: '%s' Nu se poate rezolva adresa -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Suma nevalidă pentru -paytxfee=<amount>: '%s' - Invalid amount Sumă nevalidă - Insufficient funds Fonduri insuficiente - Loading block index... Încarc indice bloc... - Add a node to connect to and attempt to keep the connection open Adaugă un nod la care te poți conecta pentru a menține conexiunea deschisă - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Imposibilitatea de a lega la% s pe acest computer. Dogecoin este, probabil, deja în execuție. - - - Loading wallet... Încarc portofel... - Cannot downgrade wallet Nu se poate retrograda portofelul - Cannot write default address Nu se poate scrie adresa implicită - Rescanning... Rescanez... - Done loading Încărcare terminată - To use the %s option Pentru a folosi opțiunea %s - Error Eroare - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4085,4 +3379,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Dacă fișierul nu există, creează-l cu permisiuni de citire doar de către proprietar. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_ru.ts b/src/qt/locale/bitcoin_ru.ts index 9253cb5a0..8dcd91e08 100644 --- a/src/qt/locale/bitcoin_ru.ts +++ b/src/qt/locale/bitcoin_ru.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core О Dogecoin Core - <b>Dogecoin Core</b> version версия <b>Dogecoin Core</b> - This is experimental software. @@ -27,135 +24,113 @@ This product includes software developed by the OpenSSL Project for use in the O Этот продукт включает ПО, разработанное OpenSSL Project для использования в OpenSSL Toolkit (http://www.openssl.org/) и криптографическое ПО, написанное Eric Young (eay@cryptsoft.com) и ПО для работы с UPnP, написанное Thomas Bernard. - Copyright Все права защищены - The Dogecoin Core developers Разработчики Dogecoin Core + + (%1-bit) + (%1-бит) + AddressBookPage - Double-click to edit address or label Для того, чтобы изменить адрес или метку, дважды кликните по изменяемому объекту - Create a new address Создать новый адрес - &New &Новый - Copy the currently selected address to the system clipboard Копировать текущий выделенный адрес в буфер обмена - &Copy &Копировать - C&lose &Закрыть - &Copy Address &Копировать адрес - Delete the currently selected address from the list Удалить выбранный адрес из списка - Export the data in the current tab to a file Экспортировать данные из вкладки в файл - &Export &Экспорт - &Delete &Удалить - Choose the address to send coins to Выберите адрес для отправки на него монет - Choose the address to receive coins with Выберите адрес для получения монет - C&hoose &Выбрать - Very sending addresses Адреса отправки - Much receiving addresses Адреса получения - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Ваши адреса Dogecoin для отправки средств. Совет: проверьте сумму и адрес назначения перед переводом. + Это ваши адреса Dogecoin для отправки платежей. Всегда проверяйте количество и адрес получателя перед отправкой перевода. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Это ваши адреса Dogecoin для приёма платежей. Рекомендуется использовать новый адрес получения для каждой транзакции. - Copy &Label Копировать &метку - &Edit &Правка - Export Address List Экспортировать список адресов - Comma separated file (*.csv) Текст, разделённый запятыми (*.csv) - Exporting Failed Экспорт не удался - There was an error trying to save the address list to %1. Произошла ошибка при сохранении списка адресов в %1. @@ -163,17 +138,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Метка - Address Адрес - (no label) [нет метки] @@ -181,140 +153,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog Диалог ввода пароля - Enter passphrase Введите пароль - New passphrase Новый пароль - Repeat new passphrase Повторите новый пароль - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Введите новый пароль для бумажника. <br/> Пожалуйста, используйте фразы из <b>10 или более случайных символов,</b> или <b>восьми и более слов.</b> - Encrypt wallet Зашифровать бумажник - This operation needs your wallet passphrase to unlock the wallet. Для выполнения операции требуется пароль вашего бумажника. - Unlock wallet Разблокировать бумажник - This operation needs your wallet passphrase to decrypt the wallet. Для выполнения операции требуется пароль вашего бумажника. - Decrypt wallet Расшифровать бумажник - Change passphrase Сменить пароль - Enter the old and new passphrase to the wallet. Введите старый и новый пароль для бумажника. - Confirm wallet encryption Подтвердите шифрование бумажника - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! Внимание: если вы зашифруете бумажник и потеряете пароль, вы <b>ПОТЕРЯЕТЕ ВСЕ ВАШИ БИТКОЙНЫ</b>! - Are you sure you wish to encrypt your wallet? Вы уверены, что хотите зашифровать ваш бумажник? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. ВАЖНО: все предыдущие резервные копии вашего бумажника должны быть заменены новым зашифрованным файлом. В целях безопасности предыдущие резервные копии незашифрованного бумажника станут бесполезны, как только вы начнёте использовать новый зашифрованный бумажник. - - Warning: The Caps Lock key is on! Внимание: Caps Lock включен! - - Wallet encrypted Бумажник зашифрован - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Сейчас программа закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши биткойны от кражи с помощью инфицирования вашего компьютера вредоносным ПО. - - - - Wallet encryption failed Не удалось зашифровать бумажник - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Шифрование бумажника не удалось из-за внутренней ошибки. Ваш бумажник не был зашифрован. - - The supplied passphrases do not match. Введённые пароли не совпадают. - Wallet unlock failed Разблокировка бумажника не удалась - - - The passphrase entered for the wallet decryption was incorrect. Указанный пароль не подходит. - Wallet decryption failed Расшифрование бумажника не удалось - Wallet passphrase was successfully changed. Пароль бумажника успешно изменён. @@ -322,352 +260,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... &Подписать сообщение... - Synchronizing with network... Синхронизация с сетью... - &Overview &Обзор - Node Узел - Show general overview of wallet Показать общий обзор действий с бумажником - &Transactions &Транзакции - Browse transaction history Показать историю транзакций - E&xit В&ыход - Quit application Закрыть приложение - - Show information about Dogecoin Core + Show information about Dogecoin Показать информацию о Dogecoin - - About &Qt О &Qt - Show information about Qt Показать информацию о Qt - &Options... Опции - &Encrypt Wallet... &Зашифровать бумажник... - &Backup Wallet... &Сделать резервную копию бумажника... - &Change Passphrase... &Изменить пароль... - Very &sending addresses... &Адреса отправки... - Much &receiving addresses... Адреса &получения... - Open &URI... Открыть &URI... - Importing blocks from disk... Импортируются блоки с диска... - Reindexing blocks on disk... Идёт переиндексация блоков на диске... - Send coins to a Dogecoin address Отправить монеты на указанный адрес Dogecoin - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Изменить параметры конфигурации Dogecoin - Backup wallet to another location Сделать резервную копию бумажника в другом месте - Change the passphrase used for wallet encryption Изменить пароль шифрования бумажника - &Debug window &Окно отладки - Open debugging and diagnostic console Открыть консоль отладки и диагностики - &Verify message... &Проверить сообщение... - Dogecoin Dogecoin - Wallet Бумажник - &Send &Отправить - &Receive &Получить - - &Show / Hide &Показать / Скрыть - Show or hide the main Window Показать или скрыть главное окно - Encrypt the private keys that belong to your wallet Зашифровать приватные ключи, принадлежащие вашему бумажнику - Sign messages with your Dogecoin addresses to prove you own them Подписать сообщения вашим адресом Dogecoin, чтобы доказать, что вы им владеете - Verify messages to ensure they were signed with specified Dogecoin addresses Проверить сообщения, чтобы удостовериться, что они были подписаны определённым адресом Dogecoin - &File &Файл - &Settings &Настройки - &Help &Помощь - Tabs toolbar Панель вкладок - - [testnet] [тестовая сеть] - Dogecoin Core Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) - Запросить платежи (создаёт QR-коды и dogecoin: ссылки) + Request payments (generates QR codes and bitcoin: URIs) + Запросить платежи (создаёт QR-коды и bitcoin: ссылки) - - &About Dogecoin Core &О Dogecoin Core - Show the list of used sending addresses and labels Показать список использованных адресов и меток отправки - Show the list of used receiving addresses and labels Показать список использованных адресов и меток получения - - Open a dogecoin: URI or payment request - Открыть dogecoin: URI или запрос платежа + Open a bitcoin: URI or payment request + Открыть bitcoin: URI или запрос платежа - &Command-line options &Опции командной строки - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options Показать помощь по Dogecoin Core и получить список доступных опций командной строки. - - Dogecoin client Dogecoin клиент - %n active connection(s) to Dogecoin network %n активное соединение с сетью%n активных соединений с сетью%n активных соединений с сетью Dogecoin - No block source available... Источник блоков недоступен... - Processed %1 of %2 (estimated) blocks of transaction history. Обработано %1 из %2 (примерно) блоков истории транзакций. - Processed %1 blocks of transaction history. Обработано %1 блоков истории транзакций. - %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 позади - Last received block was generated %1 ago. Последний полученный блок был сгенерирован %1 назад. - Transactions after this will not yet be visible. Транзакции после него пока не будут видны. - Error Ошибка - Warning Внимание - Information Информация - Up to date Синхронизировано - Catching up... Синхронизируется... - Sent transaction Исходящая транзакция - Incoming transaction Входящая транзакция - Date: %1 Amount: %2 Type: %3 @@ -680,25 +552,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Бумажник <b>зашифрован</b> и в настоящее время <b>разблокирован</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Бумажник <b>зашифрован</b> и в настоящее время <b>заблокирован</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Произошла неисправимая ошибка. Dogecoin не может безопасно продолжать работу и будет закрыт. ClientModel - Network Alert Сетевая Тревога @@ -706,291 +574,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection Выбор адреса контроля монет - Quantity: Количество: - Bytes: Байт: - Amount: Сумма: - Priority: Приоритет: - Fee: Комиссия: - Low Output: Малый выход: - After Fee: После комиссии: - Change: Сдача: - (un)select all Отменить выбор всего - Tree mode Режим дерева - List mode Режим списка - Amount Сумма - Address Адрес - Date Дата - Confirmations Подтверждений - Confirmed Подтверждено - Priority Приоритет - Copy address Копировать адрес - Copy label Копировать метку - - Copy amount Скопировать сумму - Copy transaction ID Скопировать ID транзакции - Lock unspent Заблокировать непотраченное - Unlock unspent Разблокировать непотраченное - Copy quantity Копировать количество - Copy fee Копировать комиссию - Copy after fee Копировать после комиссии - Copy bytes Копировать байты - Copy priority Копировать приоритет - Copy low output Копировать малый выход - Copy change Копировать сдачу - highest самый высокий - higher выше - high высокий - medium-high выше среднего - medium средний - low-medium ниже среднего - low низкий - lower ниже - lowest самый низкий - (%1 locked) (%1 заблокировано) - none ничего - Dust Пыль - yes да - no нет - This label turns red, if the transaction size is greater than 1000 bytes. Эта пометка становится красной, если размер транзакции больше 1000 байт. - - This means a fee of at least %1 per kB is required. Это значит, что требуется комиссия как минимум %1 на КБ. - Can vary +/- 1 byte per input. Может отличаться на +/- 1 байт на вход. - Transactions with higher priority are more likely to get included into a block. Транзакции с более высоким приоритетом будут вероятнее других включены в блок. - This label turns red, if the priority is smaller than "medium". Эта пометка становится красной, если приоритет ниже, чем "средний". - This label turns red, if any recipient receives an amount smaller than %1. Эта пометка становится красной, если какой-либо из адресатов получает сумму менее %1. - - This means a fee of at least %1 is required. Это значит, что требуется комиссия как минимум %1. - Amounts below 0.546 times the minimum relay fee are shown as dust. Суммы ниже, чем 0.546 минимальных комиссий ретрансляции, показаны как пыль. - This label turns red, if the change is smaller than %1. Эта пометка становится красной, если сдача меньше %1. - - (no label) [нет метки] - change from %1 (%2) сдача с %1 (%2) - (change) (размен) @@ -998,67 +805,54 @@ Address: %4 EditAddressDialog - Edit Address Изменить адрес - &Label &Метка - The label associated with this address list entry Метка, связанная с этой записью списка адресов - The address associated with this address list entry. This can only be modified for sending addresses. Адрес, связанный с этой записью списка адресов. Он может быть изменён только для адресов отправки. - &Address &Адрес - New receiving address Новый адрес для получения - New sending address Новый адрес для отправки - Edit receiving address Изменение адреса для получения - Edit sending address Изменение адреса для отправки - The entered address "%1" is already in the address book. Введённый адрес «%1» уже находится в адресной книге. - The entered address "%1" is not a valid Dogecoin address. Введённый адрес "%1" не является правильным Dogecoin-адресом. - Could not unlock wallet. Не удается разблокировать бумажник. - New key generation failed. Генерация нового ключа не удалась. @@ -1066,27 +860,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. Будет создан новый каталог данных. - name имя - Directory already exists. Add %1 if you intend to create a new directory here. Каталог уже существует. Добавьте %1, если вы хотите создать здесь новый каталог. - Path already exists, and is not a directory. Путь уже существует и не является каталогом. - Cannot create data directory here. Не удаётся создать здесь каталог данных. @@ -1094,52 +883,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options Dogecoin Core - опции командной строки - Dogecoin Core Dogecoin Core - version версия - Usage: Использование: - command-line options опции командной строки - UI options Опции интерфейса - Set language, for example "de_DE" (default: system locale) Выберите язык, например "de_DE" (по умолчанию: как в системе) - Start minimized Запускать свёрнутым - + Set SSL root certificates for payment request (default: -system-) + Указать корневые SSL-сертификаты для запроса платежа (по умолчанию: -system-) + + Show splash screen on startup (default: 1) Показывать сплэш при запуске (по умолчанию: 1) - Choose data directory on startup (default: 0) Выбрать каталог данных при запуске (по умолчанию: 0) @@ -1147,57 +930,46 @@ Address: %4 Intro - Welcome Добро пожаловать - Welcome to Dogecoin Core. Добро пожаловать в Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. Так как вы впервые запустили программу, вы можете выбрать, где Dogecoin Core будет хранить данные. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. Dogecoin Core скачает и сохранит копию цепи блоков. Как минимум, %1ГБ данных будет храниться в этом каталоге, и со временем он будет расти. Бумажник будет также сохранён в этом каталоге. - Use the default data directory Использовать каталог данных по умолчанию - Use a custom data directory: Использовать другой каталог данных: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. Ошибка: не удалось создать указанный каталог данных "%1". - Error Ошибка - GB of free space available ГБ свободного места доступно - (of %1GB needed) (из необходимых %1ГБ) @@ -1205,27 +977,22 @@ Address: %4 OpenURIDialog - Open URI Открыть URI - Open payment request from URI or file Открыть запрос платежа из URI или файла - URI: URI: - Select payment request file Выбрать файл запроса платежа - Select payment request file to open Выберите файл запроса платежа @@ -1233,243 +1000,206 @@ Address: %4 OptionsDialog - Options Опции - &Main &Главная - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Необязательная комиссия за каждый КБ транзакции, которая ускоряет обработку Ваших транзакций. Большинство транзакций занимают 1КБ. - Pay transaction &fee Заплатить ко&миссию - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Автоматически запускать Dogecoin после входа в систему - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Запускать Dogecoin при входе в систему - Size of &database cache Размер кэша &БД - - Set database cache size in megabytes (default: 25) - Установить размера кэша БД в мегабайтах (по умолчанию: 25) - - - MB МБ - Number of script &verification threads Число потоков проверки &сценария - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Задать число потоков проверки сценария (вплоть до 16, 0=авто, <0 = оставить столько ядер свободными, по умолчанию: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. Подключаться к сети Dogecoin через прокси SOCKS. - &Connect through SOCKS proxy (default proxy): &Подключаться через SOCKS прокси (прокси по умолчанию): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) IP-адрес прокси (например IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: Активные опции командной строки, которые перекрывают вышеуказанные опции: - Reset all client options to default. Сбросить все опции клиента на значения по умолчанию. - &Reset Options &Сбросить опции - &Network &Сеть - + (0 = auto, <0 = leave that many cores free) + (0 = автоматически, <0 = оставить столько незагруженных ядер) + + + W&allet + Б&умажник + + + Expert + Эксперт + + + Enable coin &control features + Включить управление входами + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + При отключении траты неподтверждённой сдачи, сдача от транзакции не может быть использована до тех пор пока у этой транзакции не будет хотя бы одно подтверждение. Это также влияет как ваш баланс рассчитывается. + + + &Spend unconfirmed change + &Тратить неподтверждённую сдачу + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Автоматически открыть порт для Dogecoin-клиента на роутере. Работает только если Ваш роутер поддерживает UPnP, и данная функция включена. - Map port using &UPnP Пробросить порт через &UPnP - Proxy &IP: &IP Прокси: - &Port: По&рт: - Port of the proxy (e.g. 9050) Порт прокси-сервера (например, 9050) - SOCKS &Version: &Версия SOCKS: - SOCKS version of the proxy (e.g. 5) Версия SOCKS-прокси (например, 5) - &Window &Окно - Show only a tray icon after minimizing the window. Показывать только иконку в системном лотке после сворачивания окна. - &Minimize to the tray instead of the taskbar &Cворачивать в системный лоток вместо панели задач - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Сворачивать вместо закрытия. Если данная опция будет выбрана — приложение закроется только после выбора соответствующего пункта в меню. - M&inimize on close С&ворачивать при закрытии - &Display О&тображение - User Interface &language: &Язык интерфейса: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Здесь можно выбрать язык интерфейса. Настройки вступят в силу после перезапуска Dogecoin. - &Unit to show amounts in: &Отображать суммы в единицах: - Choose the default subdivision unit to show in the interface and when sending coins. Выберите единицу измерения монет при отображении и отправке. - Whether to show Dogecoin addresses in the transaction list or not. Показывать ли адреса Dogecoin в списке транзакций. - &Display addresses in transaction list &Показывать адреса в списке транзакций - Whether to show coin control features or not. Показывать ли функции контроля монет или нет. - - Display coin &control features (experts only) - Показать функции &контроля монет (только для экспертов) - - - &OK &OK - &Cancel &Отмена - default по умолчанию - none ничего - Confirm options reset Подтвердите сброс опций - - Client restart required to activate changes. Для применения изменений требуется перезапуск клиента. - Client will be shutdown, do you want to proceed? Клиент будет выключен, желаете продолжить? - This change would require a client restart. Это изменение потребует перезапуска клиента. - The supplied proxy address is invalid. Адрес прокси неверен. @@ -1477,69 +1207,54 @@ Address: %4 OverviewPage - Form Форма - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Отображаемая информация может быть устаревшей. Ваш бумажник автоматически синхронизируется с сетью Dogecoin после подключения, но этот процесс пока не завершён. - - Unconfirmed: - Не подтверждено: - - - Wallet Бумажник - - Confirmed: - Подтверждено + Available: + Доступно: - Your current spendable balance Ваш текущий расходный баланс - + Pending: + В ожидании: + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Общая сумма всех транзакций, которые до сих пор не подтверждены, и до сих пор не учитываются в расходном балансе - Immature: Незрелые: - Mined balance that has not yet matured Баланс добытых монет, который ещё не созрел - Total: Итого: - Your current total balance Ваш текущий общий баланс - <b>Recent transactions</b> - <b>Последние транзакции</b> + <b>Недавние транзакции</b> - - out of sync не синхронизировано @@ -1547,93 +1262,70 @@ Address: %4 PaymentServer - - URI handling Обработка URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Не удалось обработать URI! Это может быть связано с неверным адресом Dogecoin или неправильными параметрами URI. + Не удалось разобрать URI! Это может быть связано с неверным адресом Dogecoin или неправильными параметрами URI. - Requested payment amount of %1 is too small (considered dust). Запрошенная сумма платежа %1 слишком мала (считается пылью). - - - - - - Payment request error Ошибка запроса платежа - - Cannot start dogecoin: click-to-pay handler - Не удаётся запустить dogecoin: обработчик click-to-pay + Cannot start bitcoin: click-to-pay handler + Не удаётся запустить bitcoin: обработчик click-to-pay - Net manager warning Предупреждение менеджера сети - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. Активный прокси не поддерживает SOCKS5, который необходим для запроса платежей через прокси. - Payment request fetch URL is invalid: %1 Неверный URL запроса платежа: %1 - Payment request file handling Обработка файла запроса платежа - Payment request file can not be read or processed! This can be caused by an invalid payment request file. Файл запроса платежа не может быть прочитан или обработан! Обычно это происходит из-за неверного файла запроса платежа. - Unverified payment requests to custom payment scripts are unsupported. Непроверенные запросы платежей с нестандартными платёжными сценариями не поддерживаются. - Refund from %1 Возврат от %1 - Error communicating with %1: %2 Ошибка связи с %1: %2 - Payment request can not be parsed or processed! Запрос платежа не может быть разобран или обработан! - Bad response from server %1 Плохой ответ от сервера %1 - Payment acknowledged Платёж принят - Network request error Ошибка сетевого запроса @@ -1641,41 +1333,45 @@ Address: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Ошибка: указанный каталог "%1" не существует. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Ошибка: не удалось разобрать конфигурационный файл: %1. Используйте синтаксис вида ключ=значение. + + Error: Invalid combination of -regtest and -testnet. Ошибка: неверная комбинация -regtest и -testnet. + + Dogecoin Core did't yet exit safely... + Dogecoin Core еще не готов к безопасному завершению... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Введите Dogecoin-адрес (например DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... &Сохранить изображение... - &Copy Image &Копировать изображение - Save QR Code Сохранить QR-код - PNG Image (*.png) Изображение PNG (*.png) @@ -1683,192 +1379,146 @@ Address: %4 RPCConsole - Client name Имя клиента - - - - - - - - - - - N/A Н/Д - Client version Версия клиента - &Information &Информация - Debug window Окно отладки - General Общие - Using OpenSSL version Используется версия OpenSSL - Startup time Время запуска - Network Сеть - Name Имя - Number of connections Число подключений - Block chain Цепь блоков - Current number of blocks Текущее число блоков - Estimated total blocks Расчётное число блоков - Last block time Время последнего блока - &Open &Открыть - &Console Консоль - &Network Traffic Сетевой &трафик - &Clear &Очистить - Totals Всего - In: Вход: - Out: Выход: - Build date Дата сборки - Debug log file Отладочный лог-файл - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Открыть отладочный лог-файл Dogecoin из текущего каталога данных. Это может занять несколько секунд для больших лог-файлов. - Clear console Очистить консоль - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Добро пожаловать в RPC-консоль Dogecoin. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Используйте стрелки вверх и вниз для просмотра истории и <b>Ctrl-L</b> для очистки экрана. - Type <b>help</b> for an overview of available commands. Напишите <b>help</b> для просмотра доступных команд. - %1 B %1 Б - %1 KB %1 КБ - %1 MB %1 МБ - %1 GB %1 ГБ - %1 m %1 мин - %1 h %1 ч - %1 h %2 m %1 ч %2 мин @@ -1876,155 +1526,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: &Сумма: - &Label: &Метка: - &Message: &Сообщение - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. Повторно использовать один из ранее использованных адресов. Повторное использование адресов несёт риски безопасности и приватности. Не используйте эту опцию, если вы не создаёте повторно ранее сделанный запрос платежа. - R&euse an existing receiving address (not recommended) &Повторно использовать существующий адрес получения (не рекомендуется) - - An optional label to associate with the new receiving address - Необязательная метка для нового адреса получения - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - Необязательное сообщение для запроса платежа, которое будет показано при открытии запроса. Внимание: сообщение не будет отправлено вместе с платежом через сеть Dogecoin. + Необязательное сообщение для запроса платежа, которое будет показано при открытии запроса. Заметьте: сообщение не будет отправлено вместе с платежом через сеть Dogecoin. + + + An optional label to associate with the new receiving address. + Необязательная метка для нового адреса получения. - Use this form to request payments. All fields are <b>optional</b>. Заполните форму для запроса платежей. Все поля <b>необязательны</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. Необязательная сумма для запроса. Оставьте пустым или укажите ноль, чтобы запросить неопределённую сумму. - Clear all fields of the form. Очистить все поля формы. - Clear Очистить - + Requested payments history + История запрошенных платежей + + &Request payment &Запросить платёж - - Requested payments - Запрошенные платежи - - - Show the selected request (does the same as double clicking an entry) Показать выбранный запрос (то же самое, что и двойной клик по записи) - Show Показать - Remove the selected entries from the list Удалить выбранные записи из списка - Remove Удалить + + Copy label + Копировать метку + + + Copy message + Копировать сообщение + + + Copy amount + Скопировать сумму + ReceiveRequestDialog - QR Code QR код - Copy &URI Копировать &URI - Copy &Address Копировать &адрес - &Save Image... &Сохранить изображение... - Request payment to %1 Запросить платёж на %1 - Payment information Информация платежа - URI URI - Address Адрес - Amount Сумма - Label Метка - Message Сообщение - Resulting URI too long, try to reduce the text for label / message. Получившийся URI слишком длинный, попробуйте сократить текст метки / сообщения. - Error encoding URI into QR Code. Ошибка кодирования URI в QR-код @@ -2032,285 +1664,225 @@ Address: %4 RecentRequestsTableModel - Date Дата - Label Метка - Message Сообщение - Amount Сумма - (no label) [нет метки] - (no message) (нет сообщения) + + (no amount) + (нет суммы) + SendCoinsDialog - - - Send Coins Отправка - Coin Control Features Функции Контроля Монет - Inputs... Входы... - automatically selected автоматически выбрано - Insufficient funds! Недостаточно средств! - Quantity: Количество: - Bytes: Байт: - Amount: Сумма: - Priority: Приоритет: - Fee: Комиссия: - Low Output: Малый выход: - After Fee: После комиссии: - Change: Размен: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Если это выбрано, но адрес сдачи пустой или неверный, сдача будет отправлена на новый сгенерированный адрес. - Custom change address Свой адрес для сдачи - Send to multiple recipients at once Отправить нескольким получателям одновременно - Add &Recipient &Добавить получателя - Clear all fields of the form. Очистить все поля формы - Clear &All Очистить &всё - Balance: Баланс: - Confirm the send action Подтвердить отправку - S&end &Отправить - Confirm send coins Подтвердите отправку монет - - - - %1 to %2 С %1 на %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Введите адрес Dogecoin (напр. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity Копировать количество - Copy amount Скопировать сумму - Copy fee Копировать комиссию - Copy after fee Копировать после комиссии - Copy bytes Копировать байты - Copy priority Копировать приоритет - Copy low output Копировать малый выход - Copy change Копировать размен - Total Amount %1 (= %2) Общая сумма %1 (= %2) - or или - The recipient address is not valid, please recheck. Адрес получателя неверный, пожалуйста, перепроверьте. - The amount to pay must be larger than 0. Сумма для отправки должно быть больше 0. - The amount exceeds your balance. Сумма превышает Ваш баланс - The total exceeds your balance when the %1 transaction fee is included. Сумма превысит Ваш баланс, если комиссия в размере %1 будет добавлена к транзакции - Duplicate address found, can only send to each address once per send operation. Обнаружен дублирующийся адрес. Отправка на один и тот же адрес возможна только один раз за одну операцию отправки - Transaction creation failed! Не удалось создать транзакцию! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. Транзакция была отклонена! Такое может произойти, если некоторые монеты уже были потрачены, например, если Вы используете одну копию бумажника (wallet.dat), а монеты были потрачены из другой копии, но не были отмечены как потраченные в этой. - Warning: Invalid Dogecoin address Внимание: неверный адрес Dogecoin - (no label) [нет метки] - Warning: Unknown change address Внимание: неизвестный адрес для сдачи - Are you sure you want to send? Вы уверены, что хотите отправить? - added as transaction fee добавлено как комиссия - Payment request expired Запрос платежа просрочен - Invalid payment address %1 Неверный адрес платежа %1 @@ -2318,116 +1890,85 @@ Address: %4 SendCoinsEntry - - - A&mount: Ко&личество: - Pay &To: Полу&чатель: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Адрес, на который будет выслан платёж (например DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Введите метку для данного адреса (для добавления в адресную книгу) - &Label: &Метка: - Choose previously used address Выберите ранее использованный адрес - This is a normal payment. Это нормальный платёж. - Alt+A Alt+A - Paste address from clipboard Вставить адрес из буфера обмена - Alt+P Alt+P - - - Remove this entry Удалить эту запись - Message: Сообщение: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - Сообщение, прикреплённое к Dogecoin URI, которое будет сохранено вместе с транзакцией для вашего сведения. Внимание: это сообщение не будет отправлено через сеть Dogecoin. - - - This is a verified payment request. Это проверенный запрос платежа. - Enter a label for this address to add it to the list of used addresses Введите метку для этого адреса, чтобы добавить его в список использованных - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + К bitcoin: URI было прикреплено сообщение, которое будет сохранено вместе с транзакцией для вашего сведения. Заметьте: сообщение не будет отправлено через сеть Dogecoin. + + This is an unverified payment request. Это непроверенный запрос платежа. - - Pay To: Получатель: - - Memo: - Заметка: - - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Введите Dogecoin-адрес (например DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Примечание: ShutdownWindow - Dogecoin Core is shutting down... Dogecoin Core выключается... - Do not shut down the computer until this window disappears. Не выключайте компьютер, пока это окно не исчезнет. @@ -2435,192 +1976,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Подписи - подписать/проверить сообщение - &Sign Message &Подписать сообщение - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Вы можете подписывать сообщения своими адресами, чтобы доказать владение ими. Будьте осторожны, не подписывайте что-то неопределённое, так как фишинговые атаки могут обманным путём заставить вас подписать нежелательные сообщения. Подписывайте только те сообщения, с которыми вы согласны вплоть до мелочей. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Адрес, которым вы хотите подписать сообщение (напр. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Выберите ранее использованный адрес - - Alt+A Alt+A - Paste address from clipboard Вставить адрес из буфера обмена - Alt+P Alt+P - Enter the message you want to sign here Введите сообщение для подписи - Signature Подпись - Copy the current signature to the system clipboard Скопировать текущую подпись в системный буфер обмена - Sign the message to prove you own this Dogecoin address Подписать сообщение, чтобы доказать владение адресом Dogecoin - Sign &Message Подписать &Сообщение - Reset all sign message fields Сбросить значения всех полей подписывания сообщений - - Clear &All Очистить &всё - &Verify Message &Проверить сообщение - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Введите ниже адрес для подписи, сообщение (убедитесь, что переводы строк, пробелы, табы и т.п. в точности скопированы) и подпись, чтобы проверить сообщение. Убедитесь, что не скопировали лишнего в подпись, по сравнению с самим подписываемым сообщением, чтобы не стать жертвой атаки "man-in-the-middle". - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Адрес, которым было подписано сообщение (напр. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Проверить сообщение, чтобы убедиться, что оно было подписано указанным адресом Dogecoin - Verify &Message Проверить &Сообщение - Reset all verify message fields Сбросить все поля проверки сообщения - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Введите адрес Dogecoin (напр. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Нажмите "Подписать сообщение" для создания подписи - - Enter Dogecoin signature - Введите подпись Dogecoin - - - - The entered address is invalid. Введённый адрес неверен - - - - Please check the address and try again. Пожалуйста, проверьте адрес и попробуйте ещё раз. - - The entered address does not refer to a key. Введённый адрес не связан с ключом - Wallet unlock was cancelled. Разблокировка бумажника была отменена. - Private key for the entered address is not available. Для введённого адреса недоступен закрытый ключ - Message signing failed. Не удалось подписать сообщение - Message signed. Сообщение подписано - The signature could not be decoded. Подпись не может быть раскодирована. - - Please check the signature and try again. Пожалуйста, проверьте подпись и попробуйте ещё раз. - The signature did not match the message digest. Подпись не соответствует отпечатку сообщения. - Message verification failed. Проверка сообщения не удалась. - Message verified. Сообщение проверено. @@ -2628,17 +2119,14 @@ Address: %4 SplashScreen - Dogecoin Core Dogecoin Core - The Dogecoin Core developers Разработчики Dogecoin Core - [testnet] [тестовая сеть] @@ -2646,7 +2134,6 @@ Address: %4 TrafficGraphWidget - KB/s КБ/сек @@ -2654,179 +2141,138 @@ Address: %4 TransactionDesc - Open until %1 Открыто до %1 - + conflicted + в противоречии + + %1/offline %1/отключен - %1/unconfirmed %1/не подтверждено - %1 confirmations %1 подтверждений - Status Статус - , broadcast through %n node(s) , разослано через %n узел, разослано через %n узла, разослано через %n узлов - Date Дата - Source Источник - Generated Сгенерированно - - From От - - - To Для - - own address свой адрес - label метка - - - - - Credit Кредит - matures in %n more block(s) будет доступно через %n блокбудет доступно через %n блокабудет доступно через %n блоков - not accepted не принято - - - - Debit Дебет - Transaction fee Комиссия - Net amount Чистая сумма - - Message Сообщение - Comment Комментарий: - Transaction ID ID транзакции - Merchant Продавец - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Сгенерированные монеты должны подождать %1 блоков, прежде чем они могут быть потрачены. Когда Вы сгенерировали этот блок, он был отправлен в сеть для добавления в цепочку блоков. Если он не попадёт в цепь, его статус изменится на "не принят", и монеты будут недействительны. Это иногда происходит в случае, если другой узел сгенерирует блок на несколько секунд раньше вас. - Debug information Отладочная информация - Transaction Транзакция - Inputs Входы - Amount Сумма - true истина - false ложь - , has not been successfully broadcast yet , ещё не было успешно разослано - Open for %n more block(s) Открыто для ещё %n блокаОткрыто для ещё %n блоковОткрыто для ещё %n блоков - unknown неизвестно @@ -2834,131 +2280,113 @@ Address: %4 TransactionDescDialog - Transaction details Детали транзакции - This pane shows a detailed description of the transaction - Данный диалог показывает детализированную статистику по выбранной транзакции + Эта панель отображает детальное описание транзакции. TransactionTableModel - Date Дата - Type Тип - Address Адрес - Amount Сумма - Immature (%1 confirmations, will be available after %2) Незрелый (%1 подтверждений, будет доступен после %2) - Open for %n more block(s) Открыто для ещё %n блокаОткрыто для ещё %n блоковОткрыто для ещё %n блоков - Open until %1 Открыто до %1 - - Offline (%1 confirmations) - Оффлайн (%1 подтверждений) - - - - Unconfirmed (%1 of %2 confirmations) - Не подтверждено (%1 из %2 подтверждений) - - - - Confirmed (%1 confirmations) Подтверждено (%1 подтверждений) - This block was not received by any other nodes and will probably not be accepted! Этот блок не был получен другими узлами и, возможно, не будет принят! - Generated but not accepted Сгенерированно, но не подтверждено - + Offline + Нет активных соединений с сетью + + + Unconfirmed + Неподтверждено + + + Confirming (%1 of %2 recommended confirmations) + Подтверждено(%1 подтверждений, рекомендуется 2% подтверждений) + + + Conflicted + В противоречии + + Received with Получено - Received from Получено от - Sent to Отправлено - Payment to yourself Отправлено себе - Mined Добыто - (n/a) [не доступно] - Transaction status. Hover over this field to show number of confirmations. Статус транзакции. Подведите курсор к нужному полю для того, чтобы увидеть количество подтверждений. - Date and time that the transaction was received. Дата и время, когда транзакция была получена. - Type of transaction. Тип транзакции. - Destination address of transaction. Адрес назначения транзакции. - Amount removed from or added to balance. Сумма, добавленная, или снятая с баланса. @@ -2966,178 +2394,142 @@ Address: %4 TransactionView - - All Все - Today Сегодня - This week На этой неделе - This month В этом месяце - Last month - За последний месяц + В прошлом месяце - This year В этом году - Range... Промежуток... - Received with Получено на - Sent to Отправлено на - To yourself Отправленные себе - Mined Добытые - Other Другое - Enter address or label to search Введите адрес или метку для поиска - Min amount Мин. сумма - Copy address Копировать адрес - Copy label Копировать метку - Copy amount Скопировать сумму - Copy transaction ID Скопировать ID транзакции - Edit label Изменить метку - Show transaction details Показать подробности транзакции - Export Transaction History Экспортировать историю транзакций - Exporting Failed Экспорт не удался - There was an error trying to save the transaction history to %1. Произошла ошибка при сохранении истории транзакций в %1. - Exporting Successful Экспорт успешно завершён - The transaction history was successfully saved to %1. История транзакций была успешно сохранена в %1. - Comma separated file (*.csv) Текст, разделённый запятыми (*.csv) - Confirmed Подтверждено - Date Дата - Type Тип - Label Метка - Address Адрес - Amount Сумма - ID ID - Range: Промежуток от: - to до @@ -3145,7 +2537,6 @@ Address: %4 WalletFrame - No wallet has been loaded. Не был загружен ни один бумажник. @@ -3153,7 +2544,6 @@ Address: %4 WalletModel - Send Coins Отправка @@ -3161,155 +2551,126 @@ Address: %4 WalletView - &Export &Экспорт - Export the data in the current tab to a file Экспортировать данные из вкладки в файл - Backup Wallet Сделать резервную копию бумажника - Wallet Data (*.dat) Данные бумажника (*.dat) - Backup Failed Резервное копирование не удалось - There was an error trying to save the wallet data to %1. Произошла ошибка при сохранении данных бумажника в %1. - The wallet data was successfully saved to %1. Данные бумажника были успешно сохранены в %1. - Backup Successful Резервное копирование успешно завершено - dogecoin-core + bitcoin-core - Usage: Использование: - List commands Список команд - Get help for a command Получить помощь по команде - Options: Опции: - - Specify configuration file (default: dogecoin.conf) - Указать конфигурационный файл (по умолчанию: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Указать конфигурационный файл (по умолчанию: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Задать pid-файл (по умолчанию: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Задать pid-файл (по умолчанию: bitcoin.pid) - Specify data directory Задать каталог данных - - Set database cache size in megabytes (default: 25) - Установить размер кэша базы данных в мегабайтах (по умолчанию: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Принимать входящие подключения на <port> (по умолчанию: 8333 или 18333 в тестовой сети) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Принимать входящие подключения на <port> (по умолчанию: 22556 или 44556 в тестовой сети) - - - Maintain at most <n> connections to peers (default: 125) Поддерживать не более <n> подключений к узлам (по умолчанию: 125) - Connect to a node to retrieve peer addresses, and disconnect Подключиться к узлу, чтобы получить список адресов других участников и отключиться - Specify your own public address Укажите ваш собственный публичный адрес - Threshold for disconnecting misbehaving peers (default: 100) Порог для отключения неправильно ведущих себя узлов (по умолчанию: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Число секунд блокирования неправильно ведущих себя узлов (по умолчанию: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s Произошла ошибка при открытии RPC-порта %u для прослушивания на IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Прослушивать подключения JSON-RPC на <порту> (по умолчанию: 22555 или для testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Прослушивать подключения JSON-RPC на <порту> (по умолчанию: 8332 или для testnet: 18332) - Accept command line and JSON-RPC commands Принимать командную строку и команды JSON-RPC - + Dogecoin Core RPC client version + Версия RPC-клиента Dogecoin Core + + Run in the background as a daemon and accept commands Запускаться в фоне как демон и принимать команды - Use the test network Использовать тестовую сеть - Accept connections from outside (default: 1 if no -proxy or -connect) Принимать подключения извне (по умолчанию: 1, если не используется -proxy или -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3320,7 +2681,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, вы должны установить опцию rpcpassword в конфигурационном файле: %s Рекомендуется использовать следующий случайный пароль: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (вам не нужно запоминать этот пароль) Имя и пароль ДОЛЖНЫ различаться. @@ -3330,708 +2691,687 @@ 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 IPv6, falling back to IPv4: %s Произошла ошибка при открытии на прослушивание IPv6 RCP-порта %u, возвращаемся к 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. Dogecoin Core is probably already running. - Не удаётся установить блокировку на каталог данных %s. Возможно, Dogecoin уже работает. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + Ограничить скорость передачи бесплатных транзакций до <n>*1000 байт в минуту (по умолчанию: 15) - 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 %d) + Ошибка: не удалось начать прослушивание входящих подключений (прослушивание вернуло ошибку %d) + + 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 из-за суммы, сложности или использования недавно полученных средств! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Выполнить команду, когда меняется транзакция в бумажнике (%s в команде заменяется на TxID) - + 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) + + + 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 определяет, сколько блоков генерируется немедленно. + + + 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) + + 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. Dogecoin Core is probably already running. + Не удалось забиндиться на %s на этом компьютере. Возможно, Dogecoin Core уже запущен. + + 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 Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Внимание: убедитесь, что дата и время на Вашем компьютере выставлены верно. Если Ваши часы идут неправильно, Dogecoin будет работать некорректно. - 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; если ваш баланс или транзакции некорректны, вы должны восстановить файл из резервной копии. - + (default: 1) + (по умолчанию: 1) + + + (default: wallet.dat) + (по умолчанию: wallet.dat) + + <category> can be: <category> может быть: - Attempt to recover private keys from a corrupt wallet.dat Попытаться восстановить приватные ключи из повреждённого wallet.dat - Dogecoin Core Daemon Демон Dogecoin Core - - Dogecoin Core RPC client version - Версия RPC клиента Dogecoin - - - Block creation options: Параметры создания блоков: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Очистить список транзакций кошелька (диагностический инструмент; включает в себя -rescan) + + Connect only to the specified node(s) Подключаться только к указанному узлу(ам) - Connect through SOCKS proxy Подключаться через SOCKS прокси - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - Подключаться к JSON-RPC на <порт> (по умолчанию: 22555 или testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + Подключаться к JSON-RPC на <порт> (по умолчанию: 8332 или testnet: 18332) + + + Connection options: + Параметры подключения: - Corrupted block database detected БД блоков повреждена - + 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? Пересобрать БД блоков прямо сейчас? - Error initializing block database Ошибка инициализации БД блоков - Error initializing wallet database environment %s! Ошибка инициализации окружения БД бумажника %s! - Error loading block database Ошибка чтения базы данных блоков - Error opening block database Не удалось открыть БД блоков - Error: Disk space is low! Ошибка: мало места на диске! - Error: Wallet locked, unable to create transaction! Ошибка: бумажник заблокирован, невозможно создать транзакцию! - 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: + Комиссии меньшие этого значения считаются нулевыми (для ретрансляции) (по умолчанию: + + Find peers using DNS lookup (default: 1 unless -connect) Искать узлы с помощью DNS (по умолчанию: 1, если не указан -connect) - + Force safe mode (default: 0) + Принудительный безопасный режим (по умолчанию: 0) + + Generate coins (default: 0) Включить добычу монет (по умолчанию: 0) - How many blocks to check at startup (default: 288, 0 = all) Сколько блоков проверять при запуске (по умолчанию: 288, 0 = все) - - How thorough the block verification is (0-4, default: 3) - Насколько тщательно проверять блок (0-4, по умолчанию: 3) - - - If <category> is not supplied, output all debugging information. Если <category> не предоставлена, выводить всю отладочную информацию. - + Importing... + Импорт ... + + Incorrect or no genesis block found. Wrong datadir for network? Неверный или отсутствующий начальный блок. Неправильный каталог данных для сети? - Invalid -onion address: '%s' Неверный -onion адрес: '%s' - Not enough file descriptors available. Недостаточно файловых дескрипторов. - Prepend debug output with timestamp (default: 1) Дописывать отметки времени к отладочному выводу (по умолчанию: 1) - RPC client options: Параметры RPC клиента: - Rebuild block chain index from current blk000??.dat files Перестроить индекс цепи блоков из текущих файлов blk000??.dat - Select SOCKS version for -proxy (4 or 5, default: 5) Выбрать версию SOCKS для -proxy (4 или 5, по умолчанию: 5) - - Send command to Dogecoin Core server - Отправлить команды на сервер Dogecoin + Set database cache size in megabytes (%d to %d, default: %d) + Установить размер кэша БД в мегабайтах(от %d до %d, по умолчанию: %d) - Set maximum block size in bytes (default: %d) Задать максимальный размер блока в байтах (по умолчанию: %d) - Set the number of threads to service RPC calls (default: 4) Задать число потоков выполнения(по умолчанию: 4) - Specify wallet file (within data directory) Укажите файл бумажника (внутри каталога данных) - - Start Dogecoin Core server - Запустить Dogecoin сервер + Spend unconfirmed change when sending transactions (default: 1) + Тратить неподтвержденную сдачу при отправке транзакций (по умолчанию: 1) - This is intended for regression testing tools and app development. Это рассчитано на инструменты регрессионного тестирования и разработку приложений. - - Usage (deprecated, use dogecoin-cli): - Использование (устарело, используйте dogecoin-cli): + Usage (deprecated, use bitcoin-cli): + Использование (устарело, используйте bitcoin-cli): - Verifying blocks... Проверка блоков... - Verifying wallet... Проверка бумажника... - Wait for RPC server to start Ожидание запуска RPC сервера - Wallet %s resides outside data directory %s Бумажник %s располагается вне каталога данных %s - Wallet options: Опции бумажника: - Warning: Deprecated argument -debugnet ignored, use -debug=net Внимание: устаревший аргумент -debugnet проигнорирован, используйте -debug=net - You need to rebuild the database using -reindex to change -txindex Вам необходимо пересобрать базы данных с помощью -reindex, чтобы изменить -txindex - Imports blocks from external blk000??.dat file Импортировать блоки из внешнего файла blk000??.dat - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + Не удалось установить блокировку на каталог данных %s. Возможно, Dogecoin Core уже запущен. + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Выполнить команду, когда приходит соответствующее сообщение о тревоге или наблюдается очень длинное расщепление цепи (%s в команде заменяется на сообщение) - Output debugging information (default: 0, supplying <category> is optional) Выводить отладочную информацию (по умолчанию: 0, указание <category> необязательно) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Задать максимальный размер высокоприоритетных/низкокомиссионных транзакций в байтах (по умолчанию: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Задать число потоков проверки сценария (вплоть до 16, 0=авто, <0 = оставить столько ядер свободными, по умолчанию: 0) - - - Information Информация - Invalid amount for -minrelaytxfee=<amount>: '%s' Неверная сумма в параметре -minrelaytxfee=<кол-во>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' Неверная сумма в параметре -mintxfee=<кол-во>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + Ограничить размер кэша подписей <n> записями (по умолчанию: 50000) + + + Log transaction priority and fee per kB when mining blocks (default: 0) + Записывать в лог приоритет транзакции и комиссию на килобайт во время добычи блоков (по умолчанию: 0) + + Maintain a full transaction index (default: 0) Держать полный индекс транзакций (по умолчанию: 0) - 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) - 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) - + 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: (см. Dogecoin вики для инструкций по настройке SSL) + + + RPC server options: + Параметры сервера RPC: + + + Randomly drop 1 of every <n> network messages + Случайно отбрасывать 1 из каждых <n> сетевых сообщений + + + Randomly fuzz 1 of every <n> network messages + Случайно разбрасывать 1 из каждых <n> сетевых сообщений + + + Run a thread to flush wallet periodically (default: 1) + Запустить поток для периодического сохранения бумажника (по умолчанию: 1) + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Параметры SSL: (см. Bitcoin Wiki для инструкций по настройке SSL) - + Send command to Dogecoin Core + Отправить команду Dogecoin Core + + Send trace/debug info to console instead of debug.log file Выводить информацию трассировки/отладки на консоль вместо файла debug.log - Set minimum block size in bytes (default: 0) Минимальный размер блока в байтах (по умолчанию: 0) - + 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 transaction failed Не удалось подписать транзакцию - Specify connection timeout in milliseconds (default: 5000) Тайм-аут соединения в миллисекундах (по умолчанию: 5000) - + Start Dogecoin Core Daemon + Запустить Dogecoin Core демон + + System error: Системная ошибка: - Transaction amount too small Сумма транзакции слишком мала - Transaction amounts must be positive Сумма транзакции должна быть положительна - Transaction too large Транзакция слишком большая - Use UPnP to map the listening port (default: 0) Использовать UPnP для проброса порта (по умолчанию: 0) - Use UPnP to map the listening port (default: 1 when listening) Использовать UPnP для проброса порта (по умолчанию: 1, если используется прослушивание) - Username for JSON-RPC connections Имя для подключений JSON-RPC - Warning Внимание - Warning: This version is obsolete, upgrade required! Внимание: эта версия устарела, требуется обновление! - + Zapping all transactions from wallet... + Стираем все транзакции из кошелька... + + + on startup + при запуске + + version версия - wallet.dat corrupt, salvage failed wallet.dat повреждён, спасение данных не удалось - Password for JSON-RPC connections Пароль для подключений JSON-RPC - Allow JSON-RPC connections from specified IP address Разрешить подключения JSON-RPC с указанного IP - Send commands to node running on <ip> (default: 127.0.0.1) Посылать команды узлу, запущенному на <ip> (по умолчанию: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) Выполнить команду, когда появляется новый блок (%s в команде заменяется на хэш блока) - Upgrade wallet to latest format Обновить бумажник до последнего формата - Set key pool size to <n> (default: 100) Установить размер запаса ключей в <n> (по умолчанию: 100) - Rescan the block chain for missing wallet transactions Перепроверить цепь блоков на предмет отсутствующих в бумажнике транзакций - Use OpenSSL (https) for JSON-RPC connections Использовать OpenSSL (https) для подключений JSON-RPC - Server certificate file (default: server.cert) Файл серверного сертификата (по умолчанию: server.cert) - Server private key (default: server.pem) Приватный ключ сервера (по умолчанию: server.pem) - This help message Эта справка - Unable to bind to %s on this computer (bind returned error %d, %s) Невозможно привязаться к %s на этом компьютере (bind вернул ошибку %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Разрешить поиск в DNS для -addnode, -seednode и -connect - Loading addresses... Загрузка адресов... - Error loading wallet.dat: Wallet corrupted Ошибка загрузки wallet.dat: Бумажник поврежден - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Ошибка загрузки wallet.dat: бумажник требует более новую версию Dogecoin - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Необходимо перезаписать бумажник, перезапустите Dogecoin для завершения операции. - Error loading wallet.dat Ошибка при загрузке wallet.dat - Invalid -proxy address: '%s' Неверный адрес -proxy: '%s' - Unknown network specified in -onlynet: '%s' В параметре -onlynet указана неизвестная сеть: '%s' - Unknown -socks proxy version requested: %i В параметре -socks запрошена неизвестная версия: %i - Cannot resolve -bind address: '%s' Не удаётся разрешить адрес в параметре -bind: '%s' - Cannot resolve -externalip address: '%s' Не удаётся разрешить адрес в параметре -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Неверная сумма в параметре -paytxfee=<кол-во>: '%s' - Invalid amount Неверная сумма - Insufficient funds Недостаточно монет - Loading block index... Загрузка индекса блоков... - Add a node to connect to and attempt to keep the connection open Добавить узел для подключения и пытаться поддерживать соединение открытым - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Невозможно привязаться к %s на этом компьютере. Возможно, Dogecoin уже работает. - - - Loading wallet... Загрузка бумажника... - Cannot downgrade wallet Не удаётся понизить версию бумажника - Cannot write default address Не удаётся записать адрес по умолчанию - Rescanning... Сканирование... - Done loading Загрузка завершена - To use the %s option Чтобы использовать опцию %s - Error Ошибка - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4040,4 +3380,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Если файл не существует, создайте его и установите права доступа только для владельца. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_sah.ts b/src/qt/locale/bitcoin_sah.ts index 00bed690e..63400764b 100644 --- a/src/qt/locale/bitcoin_sah.ts +++ b/src/qt/locale/bitcoin_sah.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Аадырыскын уларытаргар иккитэ баттаа - Create a new address - &New - Copy the currently selected address to the system clipboard - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label - Address - (no label) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase - New passphrase - Repeat new passphrase - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Encrypt wallet - This operation needs your wallet passphrase to unlock the wallet. - Unlock wallet - This operation needs your wallet passphrase to decrypt the wallet. - Decrypt wallet - Change passphrase - Enter the old and new passphrase to the wallet. - Confirm wallet encryption - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - The supplied passphrases do not match. - Wallet unlock failed - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... - &Overview - Node - Show general overview of wallet - &Transactions - Browse transaction history - E&xit - Quit application - - Show information about Dogecoin Core + Show information about Dogecoin - - About &Qt - Show information about Qt - &Options... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File - &Settings - &Help - Tabs toolbar - - [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address - Date - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,23 +1324,26 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1656,22 +1351,18 @@ Address: %4 QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1679,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1872,105 +1517,82 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - - An optional label to associate with the new receiving address. - Use this form to request payments. All fields are <b>optional</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - Requested payments history - &Request payment - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove - Copy label - Copy message - Copy amount @@ -1978,67 +1600,54 @@ Address: %4 ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address - Amount - Label - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2046,37 +1655,30 @@ Address: %4 RecentRequestsTableModel - Date - Label - Message - Amount - (no label) - (no message) - (no amount) @@ -2084,247 +1686,194 @@ Address: %4 SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: - Confirm the send action - S&end - Confirm send coins - - - - %1 to %2 - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2332,98 +1881,74 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard - Alt+P - - - Remove this entry - Message: - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. - - Pay To: - - Memo: @@ -2431,12 +1956,10 @@ Address: %4 ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2444,186 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard - Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2631,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2649,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2657,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2837,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2850,118 +2282,102 @@ Address: %4 TransactionTableModel - Date - Type - Address - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2969,178 +2385,142 @@ Address: %4 TransactionView - - All - Today - This week - This month - Last month - This year - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - Confirmed - Date - Type - Label - Address - Amount - ID - Range: - to @@ -3148,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3156,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3164,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3322,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_sk.ts b/src/qt/locale/bitcoin_sk.ts index e47d1c813..b23a5ec8b 100644 --- a/src/qt/locale/bitcoin_sk.ts +++ b/src/qt/locale/bitcoin_sk.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core O jadre Dogecoin - <b>Dogecoin Core</b> version Verzia <b>Dogecoin jadra</b> - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright Autorské práva - The Dogecoin Core developers Vývojári jadra Dogecoin + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Dvojklikom editovať adresu alebo popis - Create a new address Vytvoriť novú adresu - &New &Nové - Copy the currently selected address to the system clipboard Kopírovať práve zvolenú adresu do systémového klipbordu - &Copy &Kopírovať - C&lose Zatvoriť - &Copy Address &Kopírovať adresu - Delete the currently selected address from the list - Export the data in the current tab to a file Exportovať tento náhľad do súboru - &Export &Exportovať... - &Delete &Zmazať - Choose the address to send coins to - Choose the address to receive coins with - C&hoose Vybrať - Very sending addresses Adresa odoslania - Much receiving addresses Adresa prijatia - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label Kopírovať &popis - &Edit &Upraviť - Export Address List Exportovať zoznam adries - Comma separated file (*.csv) Čiarkou oddelený súbor (*.csv) - Exporting Failed Export zlyhal - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Popis - Address Adresa - (no label) (bez popisu) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog Dialóg hesla - Enter passphrase Zadajte heslo - New passphrase Nové heslo - Repeat new passphrase Zopakujte nové heslo - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Zadajte nové heslo k peňaženke.<br/>Prosím použite heslo s dĺžkou aspon <b>10 alebo viac náhodných znakov</b>, alebo <b>8 alebo viac slov</b>. - Encrypt wallet Zašifrovať peňaženku - This operation needs your wallet passphrase to unlock the wallet. Táto operácia potrebuje heslo k vašej peňaženke aby ju mohla dešifrovať. - Unlock wallet Odomknúť peňaženku - This operation needs your wallet passphrase to decrypt the wallet. Táto operácia potrebuje heslo k vašej peňaženke na dešifrovanie peňaženky. - Decrypt wallet Dešifrovať peňaženku - Change passphrase Zmena hesla - Enter the old and new passphrase to the wallet. Zadajte staré a nové heslo k peňaženke. - Confirm wallet encryption Potvrďte šifrovanie peňaženky - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Varovanie: Ak zašifrujete peňaženku a stratíte heslo, <b>STRATÍTE VŠETKY VAŠE DOGECOINY</b>!⏎ + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Varovanie: Ak zašifrujete peňaženku a stratíte heslo, <b>STRATÍTE VŠETKY VAŠE DogecoinY</b>!⏎ - Are you sure you wish to encrypt your wallet? Ste si istí, že si želáte zašifrovať peňaženku? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! Varovanie: Caps Lock je zapnutý - - Wallet encrypted Peňaženka zašifrovaná - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin sa teraz ukončí pre dokončenie procesu šifrovania. Pamätaj že šifrovanie peňaženky Ťa nemôže úplne ochrániť pred kráďežou dogecoinov pomocou škodlivého software. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin sa teraz ukončí pre dokončenie procesu šifrovania. Pamätaj že šifrovanie peňaženky Ťa nemôže úplne ochrániť pred kráďežou bitcoinov pomocou škodlivého software. - - - - Wallet encryption failed Šifrovanie peňaženky zlyhalo - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Šifrovanie peňaženky zlyhalo kôli internej chybe. Vaša peňaženka nebola zašifrovaná. - - The supplied passphrases do not match. Zadané heslá nesúhlasia. - Wallet unlock failed Odomykanie peňaženky zlyhalo - - - The passphrase entered for the wallet decryption was incorrect. Zadané heslo pre dešifrovanie peňaženky bolo nesprávne. - Wallet decryption failed Zlyhalo šifrovanie peňaženky. - Wallet passphrase was successfully changed. Heslo k peňaženke bolo úspešne zmenené. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... Podpísať &správu... - Synchronizing with network... Synchronizácia so sieťou... - &Overview &Prehľad - Node Uzol - Show general overview of wallet Zobraziť celkový prehľad o peňaženke - &Transactions &Transakcie - Browse transaction history Prechádzať históriu transakcií - E&xit U&končiť - Quit application Ukončiť program - - Show information about Dogecoin Core + Show information about Dogecoin Zobraziť informácie o Dogecoin - - About &Qt O &Qt - Show information about Qt Zobrazit informácie o Qt - &Options... &Možnosti... - &Encrypt Wallet... &Zašifrovať Peňaženku... - &Backup Wallet... &Backup peňaženku... - &Change Passphrase... &Zmena Hesla... - Very &sending addresses... - Much &receiving addresses... - Open &URI... Otvoriť &URI... - Importing blocks from disk... Importujem bloky z disku... - Reindexing blocks on disk... Preindexúvam bloky na disku... - Send coins to a Dogecoin address - Poslať dogecoins na adresu + Poslať bitcoins na adresu - - Modify configuration options for Dogecoin Core - Upraviť možnosti nastavenia pre dogecoin + Modify configuration options for Dogecoin + Upraviť možnosti nastavenia pre bitcoin - Backup wallet to another location Zálohovať peňaženku na iné miesto - Change the passphrase used for wallet encryption Zmeniť heslo použité na šifrovanie peňaženky - &Debug window &Okno pre ladenie - Open debugging and diagnostic console Otvor konzolu pre ladenie a diagnostiku - &Verify message... Overiť správu - Dogecoin Dogecoin - Wallet Peňaženka - &Send &Odoslať - &Receive &Prijať - - &Show / Hide Zobraziť / skryť - Show or hide the main Window Zobraziť alebo skryť hlavné okno - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &Súbor - &Settings &Nastavenia - &Help &Pomoc - Tabs toolbar Lišta záložiek - - [testnet] [testovacia sieť] - Dogecoin Core Jadro Dogecoin - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core O jadre Dogecoin - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options Voľby príkazového riadku - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Dogecoin klient - %n active connection(s) to Dogecoin network %n aktívne spojenie v Dogecoin sieti%n aktívne spojenia v Dogecoin sieti%n aktívnych spojení v Bitconi sieti - No block source available... Nedostupný zdroj blokov... - Processed %1 of %2 (estimated) blocks of transaction history. Spracovaných %1 z %2 (odhadovaných) blokov transakčnej histórie. - Processed %1 blocks of transaction history. Spracovaných %1 blokov transakčnej histórie. - %n hour(s) %n hodina%n hodiny%n hodín - %n day(s) %n deň%n dni%n dní - %n week(s) %n týždeň%n týždne%n týždňov - + %1 and %2 + + + + %n year(s) + + + %1 behind %1 za - 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é. - Error Chyba - Warning Upozornenie - Information Informácia - Up to date Aktualizovaný - Catching up... Sťahujem... - Sent transaction Odoslané transakcie - Incoming transaction Prijaté transakcie - Date: %1 Amount: %2 Type: %3 @@ -674,25 +546,21 @@ 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>locked</b> Peňaženka je <b>zašifrovaná</b> a momentálne <b>zamknutá</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert Výstraha siete @@ -700,291 +568,230 @@ Adresa: %4 CoinControlDialog - Coin Control Address Selection - Quantity: Množstvo: - Bytes: Bajtov: - Amount: Suma: - Priority: Priorita: - Fee: Poplatok: - Low Output: - After Fee: - Change: Zmena: - (un)select all - Tree mode Stromový režim - List mode Zoznamový režim - Amount Suma - Address Adresa - Date Dátum - Confirmations Potvrdenia - Confirmed Potvrdené - Priority Priorita - Copy address Kopírovať adresu - Copy label Kopírovať popis - - Copy amount Kopírovať sumu - Copy transaction ID Kopírovať ID transakcie - Lock unspent - Unlock unspent - Copy quantity Kopírovať množstvo - Copy fee Kopírovať poplatok - Copy after fee - Copy bytes Kopírovať bajty - Copy priority Kopírovať prioritu - Copy low output - Copy change Kopírovať zmenu - highest najvyššie - higher vyššie - high vysoké - medium-high stredne vysoké - medium stredné - low-medium stredne nízke - low nízke - lower nižšie - lowest najnižšie - (%1 locked) - none žiadne - Dust Prach - yes áno - no nie - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (bez popisu) - change from %1 (%2) zmena od %1 (%2) - (change) (zmena) @@ -992,67 +799,54 @@ Adresa: %4 EditAddressDialog - Edit Address Upraviť adresu - &Label &Popis - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Adresa - New receiving address Nová adresa pre prijímanie - New sending address Nová adresa pre odoslanie - Edit receiving address Upraviť prijímacie adresy - Edit sending address Upraviť odosielaciu adresu - The entered address "%1" is already in the address book. Vložená adresa "%1" sa už nachádza v adresári. - The entered address "%1" is not a valid Dogecoin address. - Vložená adresa "%1" nieje platnou adresou dogecoin. + Vložená adresa "%1" nieje platnou adresou bitcoin. - Could not unlock wallet. Nepodarilo sa odomknúť peňaženku. - New key generation failed. Generovanie nového kľúča zlyhalo. @@ -1060,27 +854,22 @@ Adresa: %4 FreespaceChecker - A new data directory will be created. Bude vytvorený nový dátový adresár. - name názov - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. Cesta už existuje a nie je to adresár. - Cannot create data directory here. Tu nemôžem vytvoriť dátový adresár. @@ -1088,52 +877,46 @@ Adresa: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Jadro Dogecoin - version verzia - Usage: Použitie: - command-line options voľby príkazového riadku - UI options UI možnosti - Set language, for example "de_DE" (default: system locale) Nastaviť jazyk, napríklad "sk_SK" (predvolené: systémový) - Start minimized Spustiť minimalizované - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Zobraziť splash screen pri spustení (predvolené: 1) - Choose data directory on startup (default: 0) @@ -1141,57 +924,46 @@ Adresa: %4 Intro - Welcome Vitajte - Welcome to Dogecoin Core. Vitajte v jadre Dogecoin. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory Použiť predvolený dátový adresár - Use a custom data directory: Použiť vlastný dátový adresár: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Error Chyba - GB of free space available GB dostupného voľného miesta - (of %1GB needed) (z %1GB potrebných) @@ -1199,27 +971,22 @@ Adresa: %4 OpenURIDialog - Open URI Otvoriť URI - Open payment request from URI or file - URI: URI: - Select payment request file - Select payment request file to open @@ -1227,243 +994,206 @@ Adresa: %4 OptionsDialog - Options Možnosti - &Main &Hlavné - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee Zaplatiť transakčné &poplatky - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Automaticky spustiť Dogecoin po zapnutí počítača - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Spustiť Dogecoin pri spustení systému správy okien - Size of &database cache - - Set database cache size in megabytes (default: 25) - Veľkosť vyrovnávajúcej pamäte pre databázu v megabytoch (predvolené:25) - - - MB MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. Vynulovať všetky voľby klienta na predvolené. - &Reset Options Vynulovať voľby - &Network Sieť - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Automaticky otvorit port pre Dogecoin na routeri. Toto funguje len ak router podporuje UPnP a je táto podpora aktivovaná. - Map port using &UPnP Mapovať port pomocou &UPnP - Proxy &IP: Proxy &IP: - &Port: &Port: - Port of the proxy (e.g. 9050) Port proxy (napr. 9050) - SOCKS &Version: Verzia SOCKS: - SOCKS version of the proxy (e.g. 5) SOCKS verzia proxy (napr. 5) - &Window Okno - Show only a tray icon after minimizing the window. Zobraziť len ikonu na lište po minimalizovaní okna. - &Minimize to the tray instead of the taskbar Zobraziť len ikonu na lište po minimalizovaní okna. - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimalizovat namiesto ukončenia aplikácie keď sa okno zavrie. Keď je zvolená táto možnosť, aplikácia sa zavrie len po zvolení Ukončiť v menu. - M&inimize on close M&inimalizovať pri zavretí - &Display &Displej - User Interface &language: Jazyk užívateľského rozhrania: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: &Zobrazovať hodnoty v jednotkách: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list &Zobraziť adresy zo zoznamu transakcií - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &OK - &Cancel Zrušiť - default predvolené - none žiadne - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. Zadaná proxy adresa je neplatná. @@ -1471,69 +1201,54 @@ Adresa: %4 OverviewPage - Form Forma - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - Nepotvrdené: - - - Wallet Peňaženka - - Confirmed: - Potvrdené: + Available: + - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: Nezrelé: - Mined balance that has not yet matured - Total: Celkovo: - Your current total balance Váš súčasný celkový zostatok - <b>Recent transactions</b> <b>Nedávne transakcie</b> - - out of sync nesynchronizované @@ -1541,93 +1256,70 @@ Adresa: %4 PaymentServer - - URI handling Spracovanie URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 Zlá odpoveď zo servera %1 - Payment acknowledged - Network request error @@ -1635,23 +1327,26 @@ Adresa: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Zadajte Dogecoin adresu (napr. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1659,22 +1354,18 @@ Adresa: %4 QRImageWidget - &Save Image... Uložiť obrázok... - &Copy Image Kopírovať obrázok - Save QR Code Ukladanie QR kódu - PNG Image (*.png) PNG obrázok (*.png) @@ -1682,192 +1373,146 @@ Adresa: %4 RPCConsole - Client name Meno klienta - - - - - - - - - - - N/A nie je k dispozícii - Client version Verzia klienta - &Information &Informácia - Debug window Okno pre ladenie - General Všeobecné - Using OpenSSL version Používa OpenSSL verziu - Startup time Čas spustenia - Network Sieť - Name Názov - Number of connections Počet pripojení - Block chain Reťazec blokov - Current number of blocks Aktuálny počet blokov - Estimated total blocks Očakávaných blokov celkovo - Last block time Čas posledného bloku - &Open &Otvoriť - &Console &Konzola - &Network Traffic Sieťová prevádzka - &Clear &Vyčistiť - Totals Celkovo - In: Dnu: - Out: Von: - Build date Dátum zostavenia - Debug log file Súbor záznamu ladenia - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console Vymazať konzolu - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 m - %1 h %1 h - %1 h %2 m %1 h %2 m @@ -1875,105 +1520,82 @@ Adresa: %4 ReceiveCoinsDialog - &Amount: &Suma: - &Label: &Popis: - &Message: &Správa: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - - An optional label to associate with the new receiving address. - Use this form to request payments. All fields are <b>optional</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. Vyčistiť všetky polia formulára. - Clear Vyčistiť - Requested payments history História vyžiadaných platieb - &Request payment Vyžiadať platbu - Show the selected request (does the same as double clicking an entry) - Show Zobraziť - Remove the selected entries from the list - Remove Odstrániť - Copy label Kopírovať popis - Copy message Kopírovať správu - Copy amount Kopírovať sumu @@ -1981,67 +1603,54 @@ Adresa: %4 ReceiveRequestDialog - QR Code QR kód - Copy &URI Kopírovať &URI - Copy &Address Kopírovať adresu - &Save Image... Uložiť obrázok... - Request payment to %1 Vyžiadať platbu pre %1 - Payment information Informácia o platbe - URI URI - Address Adresa - Amount Suma - Label Popis - Message Správa - Resulting URI too long, try to reduce the text for label / message. Výsledné URI príliš dlhé, skráť text pre názov / správu. - Error encoding URI into QR Code. Chyba v zakódovaní URI do QR kódu @@ -2049,37 +1658,30 @@ Adresa: %4 RecentRequestsTableModel - Date Dátum - Label Popis - Message Správa - Amount Suma - (no label) (bez popisu) - (no message) (žiadna správa) - (no amount) (žiadna suma) @@ -2087,247 +1689,194 @@ Adresa: %4 SendCoinsDialog - - - Send Coins Poslať Dogecoins - Coin Control Features - Inputs... Vstupy... - automatically selected automaticky vybrané - Insufficient funds! Nedostatok prostriedkov! - Quantity: Množstvo: - Bytes: Bajtov: - Amount: Suma: - Priority: Priorita: - Fee: Poplatok: - Low Output: - After Fee: - Change: Zmena: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address Vlastná adresa zmeny - Send to multiple recipients at once Poslať viacerým príjemcom naraz - Add &Recipient &Pridať príjemcu - Clear all fields of the form. Vyčistiť všetky polia formulára. - Clear &All Zmazať &všetko - Balance: Zostatok: - Confirm the send action Potvrďte odoslanie - S&end &Odoslať - Confirm send coins - Potvrdiť odoslanie dogecoins + Potvrdiť odoslanie bitcoins - - - - %1 to %2 %1 do %2 - Copy quantity Kopírovať množstvo - Copy amount Kopírovať sumu - Copy fee Kopírovať poplatok - Copy after fee - Copy bytes Kopírovať bajty - Copy priority Kopírovať prioritu - Copy low output - Copy change Kopírovať zmenu - Total Amount %1 (= %2) Celková suma %1 (= %2) - or alebo - The recipient address is not valid, please recheck. Adresa príjemcu je neplatná, prosím, overte ju. - The amount to pay must be larger than 0. Suma na úhradu musí byť väčšia ako 0. - The amount exceeds your balance. Suma je vyššia ako Váš zostatok. - The total exceeds your balance when the %1 transaction fee is included. Suma celkom prevyšuje Váš zostatok ak sú započítané %1 transakčné poplatky. - Duplicate address found, can only send to each address once per send operation. Duplikát adresy objavený, je možné poslať na každú adresu len raz v jednej odchádzajúcej transakcii. - Transaction creation failed! Vytvorenie transakcie zlyhalo! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (bez popisu) - Warning: Unknown change address - Are you sure you want to send? Určite to chcete odoslať? - added as transaction fee pridané ako transakčný poplatok - Payment request expired - Invalid payment address %1 Neplatná adresa platby %1 @@ -2335,98 +1884,74 @@ Adresa: %4 SendCoinsEntry - - - A&mount: Su&ma: - Pay &To: Zapla&tiť: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Adresa na odoslanie platby (napr. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Vložte popis pre túto adresu aby sa pridala do adresára - &Label: &Popis: - Choose previously used address Vybrať predtým použitú adresu - This is a normal payment. Toto je normálna platba. - Alt+A Alt+A - Paste address from clipboard Vložiť adresu z klipbordu - Alt+P Alt+P - - - Remove this entry Odstrániť túto položku - Message: Správa: - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. - - Pay To: Platba pre: - - Memo: @@ -2434,12 +1959,10 @@ Adresa: %4 ShutdownWindow - Dogecoin Core is shutting down... Jadro Dogecoin sa ukončuje... - Do not shut down the computer until this window disappears. @@ -2447,186 +1970,142 @@ Adresa: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message &Podpísať Správu - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Môžete podpísať správy svojou adresou a dokázať, že ju vlastníte. Buďte opatrní a podpíšte len prehlásenia s ktorými plne súhlasíte, nakoľko útoky typu "phishing" Vás môžu lákať k ich podpísaniu. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Zadajte Dogecoin adresu (napr. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Vybrať predtým použitú adresu - - Alt+A Alt+A - Paste address from clipboard Vložte adresu z klipbordu - Alt+P Alt+P - Enter the message you want to sign here Sem vložte správu ktorú chcete podpísať - Signature Podpis - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address Podpíšte správu aby ste dokázali že vlastníte túto adresu - Sign &Message Podpísať &správu - Reset all sign message fields - - Clear &All Zmazať &všetko - &Verify Message Overiť správu... - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Zadajte Dogecoin adresu (napr. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message Overiť správu - Reset all verify message fields - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Zadajte Dogecoin adresu (napr. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Kliknite "Podpísať Správu" na získanie podpisu - - The entered address is invalid. Zadaná adresa je neplatná. - - - - Please check the address and try again. Prosím skontrolujte adresu a skúste znova. - - The entered address does not refer to a key. - Wallet unlock was cancelled. Odomknutie peňaženky bolo zrušené. - Private key for the entered address is not available. - Message signing failed. Podpísanie správy zlyhalo. - Message signed. Správa podpísaná. - The signature could not be decoded. Podpis nie je možné dekódovať. - - Please check the signature and try again. Prosím skontrolujte podpis a skúste znova. - The signature did not match the message digest. - Message verification failed. Overenie správy zlyhalo. - Message verified. Správa overená. @@ -2634,17 +2113,14 @@ Adresa: %4 SplashScreen - Dogecoin Core Jadro Dogecoin - The Dogecoin Core developers Vývojári jadra Dogecoin - [testnet] [testovacia sieť] @@ -2652,7 +2128,6 @@ Adresa: %4 TrafficGraphWidget - KB/s KB/s @@ -2660,179 +2135,138 @@ Adresa: %4 TransactionDesc - Open until %1 Otvorené do %1 - + conflicted + + + %1/offline %1/offline - %1/unconfirmed %1/nepotvrdené - %1 confirmations %1 potvrdení - Status Stav - , broadcast through %n node(s) - Date Dátum - Source Zdroj - Generated Vygenerované - - From od - - - To Pre - - own address vlastná adresa - label popis - - - - - Credit Kredit - matures in %n more block(s) - not accepted neprijaté - - - - Debit Debet - Transaction fee Transakčný poplatok - Net amount Suma netto - - Message Správa - Comment Komentár - Transaction ID ID transakcie - Merchant Kupec - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information Ladiace informácie - Transaction Transakcie - Inputs Vstupy - Amount Suma - true pravda - false nepravda - , has not been successfully broadcast yet , ešte nebola úspešne odoslaná - Open for %n more block(s) - unknown neznámy @@ -2840,12 +2274,10 @@ Adresa: %4 TransactionDescDialog - Transaction details Detaily transakcie - This pane shows a detailed description of the transaction Táto časť obrazovky zobrazuje detailný popis transakcie @@ -2853,118 +2285,102 @@ Adresa: %4 TransactionTableModel - Date Dátum - Type Typ - Address Adresa - Amount Hodnota - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 Otvorené do %1 - - Offline (%1 confirmations) - Offline (%1 potvrdení) - - - - Unconfirmed (%1 of %2 confirmations) - Nepotvrdené (%1 z %2 potvrdení) - - - - Confirmed (%1 confirmations) Potvrdené (%1 potvrdení) - This block was not received by any other nodes and will probably not be accepted! Ten blok nebol prijatý žiadnou inou nódou a pravdepodobne nebude akceptovaný! - Generated but not accepted Vypočítané ale neakceptované - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Prijaté s - Received from Prijaté od: - Sent to Odoslané na - Payment to yourself Platba sebe samému - Mined Vyfárané - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. Status transakcie. Pohybujte myšou nad týmto poľom a zjaví sa počet potvrdení. - Date and time that the transaction was received. Dátum a čas prijatia transakcie. - Type of transaction. Typ transakcie. - Destination address of transaction. Cieľová adresa transakcie. - Amount removed from or added to balance. Suma pridaná alebo odobraná k zostatku. @@ -2972,178 +2388,142 @@ Adresa: %4 TransactionView - - All Všetko - Today Dnes - This week Tento týždeň - This month Tento mesiac - Last month Minulý mesiac - This year Tento rok - Range... Rozsah... - Received with Prijaté s - Sent to Odoslané na - To yourself Samému sebe - Mined Vyfárané - Other Iné - Enter address or label to search Vložte adresu alebo popis pre vyhľadávanie - Min amount Min množstvo - Copy address Kopírovať adresu - Copy label Kopírovať popis - Copy amount Kopírovať sumu - Copy transaction ID Kopírovať ID transakcie - Edit label Editovať popis - Show transaction details Zobraziť podrobnosti transakcie - Export Transaction History Exportovať históriu transakcií - Exporting Failed Export zlyhal - There was an error trying to save the transaction history to %1. - Exporting Successful Export úspešný - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Čiarkou oddelovaný súbor (*.csv) - Confirmed Potvrdené - Date Dátum - Type Typ - Label Popis - Address Adresa - Amount Suma - ID ID - Range: Rozsah: - to do @@ -3151,7 +2531,6 @@ Adresa: %4 WalletFrame - No wallet has been loaded. Nie je načítaná peňaženka. @@ -3159,7 +2538,6 @@ Adresa: %4 WalletModel - Send Coins Poslať Dogecoins @@ -3167,154 +2545,125 @@ Adresa: %4 WalletView - &Export &Exportovať... - Export the data in the current tab to a file Exportovať tento náhľad do súboru - Backup Wallet Zálohovať peňaženku - Wallet Data (*.dat) Údaje peňaženky (*.dat) - Backup Failed Záloha zlyhala - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful Záloha úspešná - dogecoin-core + bitcoin-core - Usage: Použitie: - List commands Zoznam príkazov - Get help for a command Dostať pomoc pre príkaz - Options: Možnosti: - - Specify configuration file (default: dogecoin.conf) - Určiť súbor s nastaveniami (predvolené: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Určiť súbor s nastaveniami (predvolené: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Určiť súbor pid (predvolené: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Určiť súbor pid (predvolené: bitcoind.pid) - Specify data directory Určiť priečinok s dátami - - Set database cache size in megabytes (default: 25) - Veľkosť vyrovnávajúcej pamäte pre databázu v megabytoch (predvolené:25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Načúvať spojeniam na <port> (prednastavené: 8333 alebo testovacia sieť: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Načúvať spojeniam na <port> (prednastavené: 22556 alebo testovacia sieť: 44556) - - - Maintain at most <n> connections to peers (default: 125) Udržiavať maximálne <n> spojení (predvolené: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address Určite vašu vlastnú verejnú adresu - Threshold for disconnecting misbehaving peers (default: 100) Hranica pre odpojenie zle sa správajúcich peerov (predvolené: 100) - 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) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Počúvať JSON-RPC spojeniam na <port> (predvolené: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Počúvať JSON-RPC spojeniam na <port> (predvolené: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands Prijímať príkazy z príkazového riadku a JSON-RPC - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Bežať na pozadí ako démon a prijímať príkazy - Use the test network Použiť testovaciu sieť - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3325,707 +2674,686 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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. - Varovanie: -paytxfee je nastavené veľmi vysoko. Toto sú transakčné poplatky ktoré zaplatíte ak odošlete transakciu. - - - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core 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. - - - - - <category> can be: - <category> môže byť: - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - Voľby vytvorenia bloku: - - - - Connect only to the specified node(s) - Pripojiť sa len k určenej nóde - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - Zistená poškodená databáza blokov - - - - 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? - Chcete znovu zostaviť databázu blokov? - - - - Error initializing block database - Chyba inicializácie databázy blokov - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - Chyba načítania databázy blokov - - - - Error opening block database - Chyba otvárania databázy blokov - - - - Error: Disk space is low! - Chyba: Málo miesta na disku! - - - - Error: Wallet locked, unable to create transaction! - Chyba: Peňaženka je zamknutá, nemôžem vytvoriť transakciu! - - - - Error: system error: - Chyba: systémová chyba: - - - - Failed to listen on any port. Use -listen=0 if you want this. - - - - - Failed to read block info - Zlyhalo čítanie info o bloku - - - - Failed to read block - Zlyhalo čítanie bloku - - - - Failed to sync block index - - - - - Failed to write block index - - - - - Failed to write block info - Zlyhal zápis info o bloku - - - - Failed to write block - Zlyhal zápis bloku - - - - 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 - Poplatok za kB ktorý treba pridať k odoslanej transakcii - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - Poslať príkaz Dogecoin serveru - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - Spustiť Dogecoin server - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - Overujem bloky... - - - - Verifying wallet... - Overujem peňaženku... - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - Voľby peňaženky: - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - Importuje bloky z externého súboru blk000??.dat - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - Informácia - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL možnosť: (pozrite Bitcoin Wiki pre návod na nastavenie SSL) - - - - Send trace/debug info to console instead of debug.log file - Odoslať trace/debug informácie na konzolu namiesto debug.info žurnálu - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - Podpísanie správy zlyhalo - - - - Specify connection timeout in milliseconds (default: 5000) - Určiť aut spojenia v milisekundách (predvolené: 5000) - - - - System error: - Systémová chyba: - - - - Transaction amount too small - Suma transakcie príliš malá - - - - Transaction amounts must be positive - - - - - Transaction too large - Transakcia príliš veľká - - - - 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 (default: 1 when listening) - - - - Username for JSON-RPC connections - Užívateľské meno pre JSON-RPC spojenia - - - - Warning - Upozornenie - - - - Warning: This version is obsolete, upgrade required! - Upozornenie: Táto verzia je zastaraná, vyžaduje sa aktualizácia! - - - - version - verzia - - - - wallet.dat corrupt, salvage failed - wallet.dat je poškodený, záchrana zlyhala - - - - Password for JSON-RPC connections - Heslo pre JSON-rPC spojenia - - - - Allow JSON-RPC connections from specified IP address - Povoliť JSON-RPC spojenia z určenej IP adresy. - - - - Send commands to node running on <ip> (default: 127.0.0.1) - Poslať príkaz nóde bežiacej na <ip> (predvolené: 127.0.0.1) - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - Vykonaj príkaz, ak zmeny v najlepšom bloku (%s v príkaze nahradí blok hash) - - - - Upgrade wallet to latest format - Aktualizuj peňaženku na najnovší formát. - - - - Set key pool size to <n> (default: 100) - Nastaviť zásobu adries na <n> (predvolené: 100) - - - - Rescan the block chain for missing wallet transactions - Znovu skenovať reťaz blokov pre chýbajúce transakcie - - - - Use OpenSSL (https) for JSON-RPC connections - Použiť OpenSSL (https) pre JSON-RPC spojenia - - - - Server certificate file (default: server.cert) - Súbor s certifikátom servra (predvolené: server.cert) - - - - Server private key (default: server.pem) - Súkromný kľúč servra (predvolené: server.pem) - - - - This help message - Táto pomocná správa - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - Povoliť vyhľadávanie DNS pre pridanie nódy a spojenie - - - - Loading addresses... - Načítavanie adries... - - - - Error loading wallet.dat: Wallet corrupted - Chyba načítania wallet.dat: Peňaženka je poškodená - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - Chyba načítania wallet.dat: Peňaženka vyžaduje novšiu verziu Dogecoin - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - Bolo potrebné prepísať peňaženku: dokončite reštartovaním Dogecoin - - - - Error loading wallet.dat - Chyba načítania wallet.dat - - - - Invalid -proxy address: '%s' - Neplatná adresa proxy: '%s' - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - Neplatná suma pre -paytxfee=<amount>: '%s' - - - - Invalid amount - Neplatná suma - - - - Insufficient funds - Nedostatok prostriedkov - - - - Loading block index... - Načítavanie zoznamu blokov... - - - - Add a node to connect to and attempt to keep the connection open - Pridať nód na pripojenie a pokus o udržanie pripojenia otvoreného - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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. + Varovanie: -paytxfee je nastavené veľmi vysoko. Toto sú transakčné poplatky ktoré zaplatíte ak odošlete transakciu. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + <category> môže byť: + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + Voľby vytvorenia bloku: + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + Pripojiť sa len k určenej nóde + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + Zistená poškodená databáza blokov + + + 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? + Chcete znovu zostaviť databázu blokov? + + + Error initializing block database + Chyba inicializácie databázy blokov + + + Error initializing wallet database environment %s! + + + + Error loading block database + Chyba načítania databázy blokov + + + Error opening block database + Chyba otvárania databázy blokov + + + Error: Disk space is low! + Chyba: Málo miesta na disku! + + + Error: Wallet locked, unable to create transaction! + Chyba: Peňaženka je zamknutá, nemôžem vytvoriť transakciu! + + + Error: system error: + Chyba: systémová chyba: + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + Failed to read block info + Zlyhalo čítanie info o bloku + + + Failed to read block + Zlyhalo čítanie bloku + + + Failed to sync block index + + + + Failed to write block index + + + + Failed to write block info + Zlyhal zápis info o bloku + + + Failed to write block + Zlyhal zápis bloku + + + 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 + Poplatok za kB ktorý treba pridať k odoslanej transakcii + + + Fees smaller than this are considered zero fee (for relaying) (default: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + Overujem bloky... + + + Verifying wallet... + Overujem peňaženku... + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + Voľby peňaženky: + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + Importuje bloky z externého súboru blk000??.dat + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + Informácia + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL možnosť: (pozrite Bitcoin Wiki pre návod na nastavenie SSL) + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + Odoslať trace/debug informácie na konzolu namiesto debug.info žurnálu + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + Podpísanie správy zlyhalo + + + Specify connection timeout in milliseconds (default: 5000) + Určiť aut spojenia v milisekundách (predvolené: 5000) + + + Start Dogecoin Core Daemon + + + + System error: + Systémová chyba: + + + Transaction amount too small + Suma transakcie príliš malá + + + Transaction amounts must be positive + + + + Transaction too large + Transakcia príliš veľká + + + 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 (default: 1 when listening) + + + Username for JSON-RPC connections + Užívateľské meno pre JSON-RPC spojenia + + + Warning + Upozornenie + + + Warning: This version is obsolete, upgrade required! + Upozornenie: Táto verzia je zastaraná, vyžaduje sa aktualizácia! + + + Zapping all transactions from wallet... + + + + on startup + + + + version + verzia + + + wallet.dat corrupt, salvage failed + wallet.dat je poškodený, záchrana zlyhala + + + Password for JSON-RPC connections + Heslo pre JSON-rPC spojenia + + + Allow JSON-RPC connections from specified IP address + Povoliť JSON-RPC spojenia z určenej IP adresy. + + + Send commands to node running on <ip> (default: 127.0.0.1) + Poslať príkaz nóde bežiacej na <ip> (predvolené: 127.0.0.1) + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Vykonaj príkaz, ak zmeny v najlepšom bloku (%s v príkaze nahradí blok hash) + + + Upgrade wallet to latest format + Aktualizuj peňaženku na najnovší formát. + + + Set key pool size to <n> (default: 100) + Nastaviť zásobu adries na <n> (predvolené: 100) + + + Rescan the block chain for missing wallet transactions + Znovu skenovať reťaz blokov pre chýbajúce transakcie + + + Use OpenSSL (https) for JSON-RPC connections + Použiť OpenSSL (https) pre JSON-RPC spojenia + + + Server certificate file (default: server.cert) + Súbor s certifikátom servra (predvolené: server.cert) + + + Server private key (default: server.pem) + Súkromný kľúč servra (predvolené: server.pem) + + + This help message + Táto pomocná správa + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Povoliť vyhľadávanie DNS pre pridanie nódy a spojenie + + + Loading addresses... + Načítavanie adries... + + + Error loading wallet.dat: Wallet corrupted + Chyba načítania wallet.dat: Peňaženka je poškodená + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + Chyba načítania wallet.dat: Peňaženka vyžaduje novšiu verziu Dogecoin + + + Wallet needed to be rewritten: restart Dogecoin to complete + Bolo potrebné prepísať peňaženku: dokončite reštartovaním Dogecoin + + + Error loading wallet.dat + Chyba načítania wallet.dat + + + Invalid -proxy address: '%s' + Neplatná adresa proxy: '%s' + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + Neplatná suma pre -paytxfee=<amount>: '%s' + + + Invalid amount + Neplatná suma + + + Insufficient funds + Nedostatok prostriedkov + + + Loading block index... + Načítavanie zoznamu blokov... + + + Add a node to connect to and attempt to keep the connection open + Pridať nód na pripojenie a pokus o udržanie pripojenia otvoreného + + Loading wallet... Načítavam peňaženku... - Cannot downgrade wallet Nie je možné prejsť na nižšiu verziu peňaženky - Cannot write default address Nie je možné zapísať predvolenú adresu. - Rescanning... Nové prehľadávanie... - Done loading Dokončené načítavanie - To use the %s option Použiť %s možnosť. - Error Chyba - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4034,4 +3362,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Ak súbor neexistuje, vytvor ho s oprávnením pre čítanie len vlastníkom (owner-readable-only) - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_sl_SI.ts b/src/qt/locale/bitcoin_sl_SI.ts index a81e1064f..0eb0f7202 100644 --- a/src/qt/locale/bitcoin_sl_SI.ts +++ b/src/qt/locale/bitcoin_sl_SI.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - + O jedru Dogecoina - <b>Dogecoin Core</b> version - + <b>Jedro Dogecoina</b> različica - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Dvakrat klikni za urejanje naslovov ali oznak - Create a new address Ustvari nov naslov - &New - + &Novo - Copy the currently selected address to the system clipboard Kopiraj trenutno izbrani naslov v odložišče - &Copy - + &Kopiraj - C&lose - + &Zapri (close) - &Copy Address &Kopiraj naslov - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - + &Izvozi - &Delete &Zbriši - Choose the address to send coins to - + Izberi naslov prejemnika kovancev - Choose the address to receive coins with - + Izberi naslov pošiljatelja kovancev - C&hoose - + &Izberi - Very sending addresses - + Pošiljati naslove - Much receiving addresses - + Prejemati naslovi - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - + To so vaši Dogecoin naslovi za prejemanje plačil. Priporočljivo je uporabljati nov prejemni naslov za vsako izmed transakcij. - Copy &Label Kopiraj &oznako - &Edit &Uredi - Export Address List - + Izvozi seznam naslovov - Comma separated file (*.csv) Datoteka s podatki, ločenimi z vejico (*.csv) - Exporting Failed - + Neuspešen izvoz - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Oznaka - Address Naslov - (no label) (ni oznake) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog Poziv gesla - Enter passphrase Vnesite geslo - New passphrase Novo geslo - Repeat new passphrase Ponovite novo geslo - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Vnesite novo geslo za vstop v denarnico.<br/>Prosimo, da geslo sestavite iz <b> 10 ali več naključnih znakov</b> oz. <b>osem ali več besed</b>. - Encrypt wallet Šifriraj denarnico - This operation needs your wallet passphrase to unlock the wallet. To dejanje zahteva geslo za odklepanje vaše denarnice. - Unlock wallet Odkleni denarnico - This operation needs your wallet passphrase to decrypt the wallet. To dejanje zahteva geslo za dešifriranje vaše denarnice. - Decrypt wallet Dešifriraj denarnico - Change passphrase Zamenjaj geslo - Enter the old and new passphrase to the wallet. Vnesite staro in novo geslo denarnice. - Confirm wallet encryption Potrdi šifriranje denarnice - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? Ali ste prepričani, da želite šifrirati vašo denarnico? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! Opozorilo: imate prižgan Cap Lock - - Wallet encrypted Denarnica šifrirana - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Dogecoin se bo zaprl, da bi dokončal proces šifriranja. Zapomnite si, da šifriranje vaše denarnice ne more popolnoma zaščititi pred krajami zlonamernih programov, ki bi lahko bili nameščeni na vašem računalniku. - - - - Wallet encryption failed Šifriranje denarnice spodletelo - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Šifriranje denarnice spodletelo zaradi notranje napake. Vaša denarnica ni šifrirana. - - The supplied passphrases do not match. Vnešeno geslo se ne ujema - Wallet unlock failed Odklep denarnice spodletel - - - The passphrase entered for the wallet decryption was incorrect. Geslo za dešifriranje denarnice, ki ste ga vnesli, ni pravilno. - Wallet decryption failed Dešifriranje denarnice spodletelo - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... Podpiši &sporočilo ... - Synchronizing with network... Sinhroniziranje z omrežjem ... - &Overview &Pregled - Node - Show general overview of wallet Pokaži splošen pregled denarnice - &Transactions &Transakcije - Browse transaction history Brskaj po zgodovini transakcij - E&xit I&zhod - Quit application Izhod iz aplikacije - - Show information about Dogecoin Core + Show information about Dogecoin Pokaži informacije o Dogecoinu - - About &Qt O &Qt - Show information about Qt Prikaži informacije o Qt - &Options... &Možnosti ... - &Encrypt Wallet... &Šifriraj denarnico ... - &Backup Wallet... &Napravi varnostno kopijo denarnice ... - &Change Passphrase... &Spremeni geslo ... - Very &sending addresses... - + &Pošiljanje naslovov... - Much &receiving addresses... - + &Prejemanje naslovov... - Open &URI... - + Odpri &URI... - Importing blocks from disk... - + Uvažam bloke z diska... - Reindexing blocks on disk... - + Poustvarjam kazalo blokov na disku... - Send coins to a Dogecoin address + Pošlji kovance na Dogecoin naslov + + + Modify configuration options for Dogecoin - - Modify configuration options for Dogecoin Core - - - - Backup wallet to another location Napravi varnostno kopijo denarnice na drugo lokacijo - Change the passphrase used for wallet encryption Spremeni šifrirno geslo denarnice - &Debug window &Razhroščevalno okno - Open debugging and diagnostic console Odpri razhroščevalno in diagnostično konzolo - &Verify message... %Preveri sporočilo ... - Dogecoin Dogecoin - Wallet Denarnica - &Send - + &Pošlji - &Receive - + &Sprejmi - - &Show / Hide - + &Prikaži / Skrij - Show or hide the main Window - + Prikaži ali skrij glavno okno - Encrypt the private keys that belong to your wallet - + Šifiraj zasebne ključe v moji denarnici - Sign messages with your Dogecoin addresses to prove you own them - + Za dokaz, da ste lastniki sporočil, se podpišite z Dogecoin naslovom - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &Datoteka - &Settings &Nastavitve - &Help &Pomoč - Tabs toolbar Orodna vrstica zavihkov - - [testnet] [testnet] - Dogecoin Core Jedro Dogecoina - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - + &O jedru Dogecoina - Show the list of used sending addresses and labels - + Prikaži seznam uporabljenih naslovov za pošiljanje in oznak - Show the list of used receiving addresses and labels - + Prikaži seznam uporabljenih sprejemnih naslovov in oznak - - Open a dogecoin: URI or payment request - + Open a bitcoin: URI or payment request + Odpri Dogecoin: URI ali zahteva o plačilu - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Dogecoin odjemalec - %n active connection(s) to Dogecoin network - %n aktivna povezava v dogecoin omrežje%n aktivni povezavi v dogecoin omrežje%n aktivnih povezav v dogecoin omrežje%n aktivnih povezav v dogecoin omrežje + %n aktivna povezava v bitcoin omrežje%n aktivni povezavi v bitcoin omrežje%n aktivnih povezav v bitcoin omrežje%n aktivnih povezav v bitcoin omrežje - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - + %n ura%n uri%n ure%n ura - %n day(s) - + %n dan%n dneva%n dnevi%n dni - %n week(s) - + %n teden%n tedna%n tedni%n tednov - - %1 behind + %1 and %2 + + %n year(s) + %n leto%n leti%n leta%n let + + + %1 behind + %1 odzadaj + - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - + Transkacija za tem ne bo bila še na voljo. - Error Napaka - Warning Opozorilo - Information - + Informacije - Up to date Posodobljeno - Catching up... Pridobivanje ... - Sent transaction Odlivi - Incoming transaction Prilivi - Date: %1 Amount: %2 Type: %3 @@ -675,317 +547,252 @@ Naslov: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Denarnica je <b>šifrirana</b> in trenutno <b>odklenjena</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Denarnica je <b>šifrirana</b> in trenutno <b>zaklenjena</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert - + Omrežno Opozorilo CoinControlDialog - Coin Control Address Selection - Quantity: Količina: - Bytes: - + Biti: - Amount: Količina: - Priority: - + Prednostno mesto: - Fee: - + Provizija: - Low Output: - After Fee: - Change: Sprememba: - (un)select all - Tree mode - List mode - Amount Količina - Address Naslov - Date Datum - Confirmations - + Potrdila - Confirmed Potrjeno - Priority - + Prednostno mesto - Copy address Kopiraj naslov - Copy label Kopiraj oznako - - Copy amount Kopiraj količino - Copy transaction ID - + Kopiraj ID transakcije - Lock unspent - Unlock unspent - Copy quantity - + Kopiraj količino - Copy fee - + Kopiraj provizijo - Copy after fee - Copy bytes - + Kopiraj bite - Copy priority - + Kopiraj prednostno mesto - Copy low output - Copy change - highest - + najvišja - higher - + višja - high - + visoka - medium-high - + srednje visoka - medium - + srednje - low-medium - + srednje nizka - low - + nizka - lower - + nižja - lowest - + najnižja - (%1 locked) - + (%1 zaklenjeno) - none - Dust - + Prah - yes da - no ne - This label turns red, if the transaction size is greater than 1000 bytes. - + V primeru, da je velikost transakcije večja od 1000 bitov, se ta oznaka se obarva rdeče. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (ni oznake) - change from %1 (%2) - (change) @@ -993,67 +800,54 @@ Naslov: %4 EditAddressDialog - Edit Address Uredi naslov - &Label &Oznaka - The label associated with this address list entry - + Oznaka je povezana s tem vnosom seznama naslovov - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Naslov - New receiving address Nov naslov za prilive - New sending address Nov naslov za odlive - Edit receiving address Uredi naslov za prilive - Edit sending address Uredi naslov za odlive - The entered address "%1" is already in the address book. Vnešeni naslov "&1" je že v imeniku. - The entered address "%1" is not a valid Dogecoin address. - + Vnešeni naslov "%1" ni veljaven Dogecoin naslov. - Could not unlock wallet. Ni bilo moč odkleniti denarnice. - New key generation failed. Generiranje novega ključa je spodletelo. @@ -1061,27 +855,22 @@ Naslov: %4 FreespaceChecker - A new data directory will be created. - name - + ime - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1089,52 +878,46 @@ Naslov: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Jedro Dogecoina - version različica - Usage: Uporaba: - command-line options možnosti ukazne vrstice - UI options možnosti uporabniškega vmesnika - Set language, for example "de_DE" (default: system locale) Nastavi jezik, npr. "sl_SI" (privzeto: jezikovna oznaka sistema) - Start minimized Zaženi pomanjšano - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1142,57 +925,46 @@ Naslov: %4 Intro - Welcome - + Dobrodošli - Welcome to Dogecoin Core. - + Dobrodošli v jedru Dogecoina - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Error Napaka - GB of free space available - + GB prostora na voljo - (of %1GB needed) @@ -1200,27 +972,22 @@ Naslov: %4 OpenURIDialog - Open URI - + Odpri URl - Open payment request from URI or file - + Odpri zahtevo o plačilo od ORI ali datoteke - URI: - + URI: - Select payment request file - Select payment request file to open @@ -1228,243 +995,206 @@ Naslov: %4 OptionsDialog - Options Možnosti - &Main - + &Glavno - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - + Nakazilo plačila & provizija - - Automatically start Dogecoin Core after logging in to the system. - + Automatically start Dogecoin after logging in to the system. + Po prijavi v sistem samodejno zaženite Dogecoin. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Zaženi Dogecoin ob prijavi v sistem - Size of &database cache - - Set database cache size in megabytes (default: 25) - Nastavi pomnilnik podatkovne zbirke v megabajtih (privzeto: 25) - - - MB - + megabite - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network &Omrežje - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + &Denarnica + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: IP posredniškega strežnika: - &Port: &Vrata: - Port of the proxy (e.g. 9050) Vrata strežnika (npr.: 9050) - SOCKS &Version: SOCKS &različica: - SOCKS version of the proxy (e.g. 5) SOCKS različica posredniškega strežnika (npr.: 5) - &Window &Okno - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display &Prikaz - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &Potrdi - &Cancel &Prekini - default privzeto - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1472,69 +1202,54 @@ Naslov: %4 OverviewPage - Form Oblika - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - + Prikazanim podatkom je lahko potekel rok. Vaša denarnica bo po vzpostavitvi povezave samodejno sinhronizirana z Dogecoin omrežjem, ampak ta proces še ni bil zaključen. - - Unconfirmed: - Nepotrjeno: - - - Wallet Denarnica - - Confirmed: - + Available: + Razpoložljivost: - Your current spendable balance + Vaše trenutno razpoložljivo stanje + + + Pending: - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - + Skupno število potrjenih transakcij, ki sicer niso bile prištete k razpoložljivem stanju - Immature: - Mined balance that has not yet matured - Total: Skupaj: - Your current total balance - + Vaše trenutno skupno stanje - <b>Recent transactions</b> - <b>Pogoste transakcije</> + <b>Nedavne transakcije</> - - out of sync @@ -1542,484 +1257,401 @@ Naslov: %4 PaymentServer - - URI handling Rokovanje z URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error + Napaka pri zahtevi plačila + + + Cannot start bitcoin: click-to-pay handler - - Cannot start dogecoin: click-to-pay handler - - - - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - + Napaka pri povezavi z %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - + Slab odziv strežnika %1 - Payment acknowledged - + Plačilo priznano - Network request error - + Napaka omrežne zahteve QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. + Napaka: Želena nahajališče datoteke "%1" ne obstaja. + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. - Error: Invalid combination of -regtest and -testnet. + Napaka: Neveljavna kombinacija -regtest and -testnet + + + Dogecoin Core did't yet exit safely... + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Vnesite bitcoin naslov (npr.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - + &Shrani sliko... - &Copy Image - + &Kopiraj sliko - Save QR Code Shrani QR kodo - PNG Image (*.png) - + PNG slika (*.png) RPCConsole - Client name Ime odjemalca - - - - - - - - - - - N/A - + Neznano - Client version Različica odjemalca - &Information &Informacije - Debug window - General - Using OpenSSL version OpenSSL različica v rabi - Startup time Čas zagona - Network Omrežje - Name - Number of connections Število povezav - Block chain - + Veriga blokov - Current number of blocks Trenutno število blokov - Estimated total blocks - + Ocenjeno skupno število blokov - Last block time - + Čas zadnjega bloka - &Open &Odpri - &Console &Konzola - &Network Traffic - + &Omrežni promet - &Clear - + &Pošisti - Totals - + Vsote - In: - Out: - Build date Datum izgradnje - Debug log file Razhroščevalna dnevniška datoteka - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console Počisti konzolo - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - + Vtipkaj <b>pomoč</b> za vpogled v razpožljive ukaze. - %1 B - + %1 bitov - %1 KB - + %1 kilobitov - %1 MB - + %1 megabitov - %1 GB - + %1 gigabitov - %1 m - + %1 minut - %1 h - + %1 ur - %1 h %2 m - + %1 ur %2 minut ReceiveCoinsDialog - &Amount: - + &Količina: - &Label: &Oznaka: - &Message: - + &Sporočilo: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + Pomožna oznaka je povezana z novim sprejemnim naslovom. + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear + Počisti + + + Requested payments history - &Request payment - + &Zahtevaj plačilo - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show Pokaži - Remove the selected entries from the list Odstrani označene vnose iz seznama - Remove Odstrani + + Copy label + Kopiraj oznako + + + Copy message + Kopiraj sporočilo + + + Copy amount + Kopiraj količino + ReceiveRequestDialog - QR Code - + QR Koda - Copy &URI - + Kopraj &URl - Copy &Address - + Kopiraj &Naslov - &Save Image... - + &Shrani sliko.. - Request payment to %1 - Payment information - + Informacija o plačilu - URI - Address Naslov - Amount Količina - Label Oznaka - Message Sporočilo - Resulting URI too long, try to reduce the text for label / message. URI predolg, skušajte zmanjšati besedilo oznake/sporočila. - Error encoding URI into QR Code. @@ -2027,595 +1659,454 @@ Naslov: %4 RecentRequestsTableModel - Date Datum - Label Oznaka - Message Sporočilo - Amount Količina - (no label) (ni oznake) - (no message) (ni sporočila) + + (no amount) + (brez količine) + SendCoinsDialog - - - Send Coins Pošlji kovance - Coin Control Features - Inputs... - + Vnosi... - automatically selected - + samodejno izbran - Insufficient funds! - + Premalo sredstev! - Quantity: Količina: - Bytes: - + Biti: - Amount: Znesek: - Priority: - + Prednostno mesto: - Fee: - + Provizija: - Low Output: - After Fee: - Change: Sprememba: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Pošlji več prejemnikom hkrati - Add &Recipient Dodaj &prejemnika - Clear all fields of the form. - Clear &All Počisti &vse - Balance: Dobroimetje: - Confirm the send action Potrdi odlivno dejanje - S&end P&ošlji - Confirm send coins Potrdi odliv kovancev - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Vnesite dogecoin naslov (npr.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - + Kopiraj količino - Copy amount Kopiraj količino - Copy fee - + Kopiraj provizijo - Copy after fee - Copy bytes - + Kopiraj bite - Copy priority - + Kopiraj prednostno mesto - Copy low output - Copy change - Total Amount %1 (= %2) - or ali - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. Količina za plačilo mora biti večja od 0. - The amount exceeds your balance. Količina presega vaše dobroimetje - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - + Najdena kopija naslova, možnost pošiljanja na vsakega izmed naslov le enkrat ob pošiljanju. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address Opozorilo: Neveljaven Dogecoin naslov - (no label) (ni oznake) - Warning: Unknown change address - Are you sure you want to send? - + Ali ste prepričani, da želite poslati? - added as transaction fee - + dodano kot provizija transakcije - Payment request expired - + Zahteva plačila je potekla - Invalid payment address %1 - + Neveljaven naslov plačila %1 SendCoinsEntry - - - A&mount: K&oličina: - Pay &To: Prejemnik &plačila: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Vnesite oznako za ta naslov, ki bo shranjena v imenik - &Label: &Oznaka: - Choose previously used address - + Izberi zadnje uporabljen naslov - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard Prilepi naslov iz odložišča - Alt+P Alt+P - - - Remove this entry - Message: Sporočilo: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses + Vnesite oznako za ta naslov, ki bo shranjena v seznam uporabljenih naslovov + + + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Vnesite dogecoin naslov (npr.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. - + Ne zaustavite računalnika dokler to okno ne izgine. SignVerifyMessageDialog - Signatures - Sign / Verify a Message Podpisi - Podpiši/preveri sporočilo - &Sign Message &Podpiši sporočilo - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - + Izberi zadnje uporabljen naslov - - Alt+A Alt+A - Paste address from clipboard Prilepi naslov iz odložišča - Alt+P Alt+P - Enter the message you want to sign here - Signature - + Podpis - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message Podpiši &sporočilo - Reset all sign message fields - - Clear &All Počisti &vse - &Verify Message &Preveri sporočilo - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - + Preveri &Sporočilo - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Vnesite dogecoin naslov (npr.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Vnesite bitcoin naslov (npr.: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - + Kliknite "Podpiši sporočilo" za ustvaritev podpisa - - Enter Dogecoin signature - - - - - The entered address is invalid. - + Vnešeni naslov ni veljaven. - - - - Please check the address and try again. - + Prosimo preverite naslov in poizkusite znova. - - The entered address does not refer to a key. - Wallet unlock was cancelled. Odklepanje denarnice je bilo prekinjeno. - Private key for the entered address is not available. - + Zasebni ključ vnešenega naslov ni na voljo. - Message signing failed. Podpisovanje sporočila spodletelo. - Message signed. Sporočilo podpisano. - The signature could not be decoded. - + Ni bilo mogoče dešifrirati podpisa. - - Please check the signature and try again. - + Prosimo preverite podpis in poizkusite znova. - The signature did not match the message digest. - Message verification failed. Pregledovanje sporočila spodletelo. - Message verified. Sporočilo pregledano. @@ -2623,17 +2114,14 @@ Naslov: %4 SplashScreen - Dogecoin Core Jedro Dogecoina - The Dogecoin Core developers - [testnet] [testnet] @@ -2641,7 +2129,6 @@ Naslov: %4 TrafficGraphWidget - KB/s @@ -2649,179 +2136,138 @@ Naslov: %4 TransactionDesc - Open until %1 Odpri enoto %1 - + conflicted + + + %1/offline - %1/unconfirmed %1/nepotrjeno - %1 confirmations %1 potrdil - Status Stanje - , broadcast through %n node(s) - Date Datum - Source Izvor - Generated Generirano - - From - + Pošiljatelj - - - To - + Prejemnik - - own address - + lasten naslov - label oznaka - - - - - Credit - matures in %n more block(s) - not accepted - + ni bilo sprejeto - - - - Debit Dolg - Transaction fee - + Provizija transakcije - Net amount - + Neto količina - - Message Sporočilo - Comment Opomba - Transaction ID ID transakcije - Merchant - + Trgovec - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information Razhroščevalna informacija - Transaction Transakcija - Inputs - + Vnosi - Amount Količina - true - + pravilno - false - + nepravilno - , has not been successfully broadcast yet , še ni bila uspešno raznešena - Open for %n more block(s) - unknown neznano @@ -2829,12 +2275,10 @@ Naslov: %4 TransactionDescDialog - Transaction details Podrobnosti transakcije - This pane shows a detailed description of the transaction To podokno prikazuje podroben opis transakcije @@ -2842,118 +2286,102 @@ Naslov: %4 TransactionTableModel - Date Datum - Type Vrsta - Address Naslov - Amount Količina - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 Odpri enoto %1 - - Offline (%1 confirmations) - Brez povezave (%1 potrdil) - - - - Unconfirmed (%1 of %2 confirmations) - Nepotrjeno (&1 od %2 potrdil) - - - - Confirmed (%1 confirmations) Potrjeno (%1 potrdil) - This block was not received by any other nodes and will probably not be accepted! Ta blok ni prejelo še nobeno vozlišče. Najverjetneje ne bo sprejet! - Generated but not accepted Generirano, toda ne sprejeto - + Offline + + + + Unconfirmed + Nepotrjeno + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Prejeto z - Received from Prejeto od - Sent to Poslano - Payment to yourself Izplačilo sebi - Mined Minirano - (n/a) (ni na voljo) - Transaction status. Hover over this field to show number of confirmations. Stanje transakcije. Zapeljite z miško čez to polje za prikaz števila potrdil. - Date and time that the transaction was received. Datum in čas, ko je transakcija bila prejeta. - Type of transaction. Vrsta transakcije. - Destination address of transaction. Naslov prejemnika transakcije. - Amount removed from or added to balance. Količina odlita ali prilita dobroimetju. @@ -2961,178 +2389,142 @@ Naslov: %4 TransactionView - - All Vse - Today Danes - This week Ta teden - This month Ta mesec - Last month Prejšnji mesec - This year To leto - Range... Območje ... - Received with Prejeto z - Sent to Poslano - To yourself Samemu sebi - Mined Minirano - Other Drugo - Enter address or label to search Vnesite naslov ali oznako za iskanje - Min amount Minimalna količina - Copy address Kopiraj naslov - Copy label Kopiraj oznako - Copy amount Kopiraj količino - Copy transaction ID - + Kopiraj ID transakcije - Edit label Uredi oznako - Show transaction details Prikaži podrobnosti transakcije - Export Transaction History - Exporting Failed - + Neuspešen izvoz - There was an error trying to save the transaction history to %1. - Exporting Successful - + Uspešen izvoz - The transaction history was successfully saved to %1. - + Zgodovina poteklih transakcij je bila uspešno shranjena na %1. - Comma separated file (*.csv) Datoteka s podatki, ločenimi z vejico (*.csv) - Confirmed Potrjeno - Date Datum - Type Vrsta - Label Oznaka - Address Naslov - Amount Količina - ID ID - Range: Območje: - to za @@ -3140,7 +2532,6 @@ Naslov: %4 WalletFrame - No wallet has been loaded. @@ -3148,7 +2539,6 @@ Naslov: %4 WalletModel - Send Coins Pošlji kovance @@ -3156,154 +2546,125 @@ Naslov: %4 WalletView - &Export - + &Izvozi - Export the data in the current tab to a file - Backup Wallet - + Napravi varnostno kopijo denarnice - Wallet Data (*.dat) - + Podatki denarnice (*.dat) - Backup Failed - + Varnostna kopijo neuspešna - There was an error trying to save the wallet data to %1. - + Prišlo je do napake pri shranjevanju podatkov denarnice na %1. - The wallet data was successfully saved to %1. - + Podatki denarnice so bili uspešno shranjena na %1. - Backup Successful - + Varnostna kopija uspešna - dogecoin-core + bitcoin-core - Usage: Uporaba: - List commands Prikaži ukaze - Get help for a command Prikaži pomoč za ukaz - Options: Možnosti: - - Specify configuration file (default: dogecoin.conf) - Določi datoteko z nastavitvami (privzeta: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Določi datoteko z nastavitvami (privzeta: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Določi pid datoteko (privzeta: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Določi pid datoteko (privzeta: bitcoin.pid) - Specify data directory Določi podatkovni imenik - - Set database cache size in megabytes (default: 25) - Nastavi pomnilnik podatkovne zbirke v megabajtih (privzeto: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Sprejmi povezave na <port> (privzeta vrata: 8333 ali testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Sprejmi povezave na <port> (privzeta vrata: 22556 ali testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Obdrži maksimalno število <n> povezav (privzeto: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - + Določite vaš lasten javni naslov - Threshold for disconnecting misbehaving peers (default: 100) Prag za prekinitev povezav s slabimi odjemalci (privzeto: 1000) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands Sprejmi ukaze iz ukazne vrstice in JSON-RPC - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Teci v ozadju in sprejemaj ukaze - Use the test network Uporabi testno omrežje - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3314,711 +2675,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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. - + Napaka: Transakcija ni bila sprejeta! To se je morebiti zgodilo, ker so nekateri kovanci v vaši denarnici bili že porabljeni, na primer če ste uporabili kopijo wallet.dat in so tako kovanci bili porabljeni v kopiji, ostali pa označeni kot neporabljeni. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - + Napaka: Ta transakcija potrebuje povizijo, ki je najmanj %s zaradi svoje količine, kompliciranosti, ali zaradi uporabe prejetih sredstev. - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Izvedi ukaz, ko bo transakcija denarnice se spremenila (V cmd je bil TxID zamenjan za %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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) - This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - + To je pred izdana poizkusna verzija - uporaba na lastno odgovornost - ne uporabljajte je za rudarstvo ali trgovske aplikacije - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - Možnosti ustvarjanja blokov: - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL možnosti: (glejte Bitcoin Wiki za navodla, kako nastaviti SSL) - - - - Send trace/debug info to console instead of debug.log file - Pošlji sledilne/razhroščevalne informacije v konzolo namesto jih shraniti v debug.log datoteko - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - Uporabniško ime za JSON-RPC povezave - - - - Warning - Opozorilo - - - - Warning: This version is obsolete, upgrade required! - Opozorilo: ta različica je zastarela, potrebna je nadgradnja! - - - - version - različica - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - Geslo za JSON-RPC povezave - - - - Allow JSON-RPC connections from specified IP address - Dovoli JSON-RPC povezave z določenega IP naslova - - - - Send commands to node running on <ip> (default: 127.0.0.1) - Pošlji ukaze vozlišču na <ip> (privzet: 127.0.0.1) - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - Posodobi denarnico v najnovejši zapis - - - - Set key pool size to <n> (default: 100) - Nastavi velikost ključa bazena na <n> (privzeto: 100) - - - - Rescan the block chain for missing wallet transactions - Ponovno preglej verigo blokov za manjkajoče transakcije denarnice - - - - Use OpenSSL (https) for JSON-RPC connections - Uporabi OpenSSL (https) za JSON-RPC povezave - - - - Server certificate file (default: server.cert) - Datoteka potrdila strežnika (privzeta: server.cert) - - - - Server private key (default: server.pem) - Zasebni ključ strežnika (privzet: server.pem) - - - - This help message - To sporočilo pomoči - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - Nalaganje naslovov ... - - - - Error loading wallet.dat: Wallet corrupted - Napaka pri nalaganju wallet.dat: denarnica pokvarjena - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - Napaka pri nalaganju wallet.dat: denarnica zahteva novejšo različico Dogecoina - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - Denarnica mora biti prepisana: ponovno zaženite Dogecoin za doknčanje - - - - Error loading wallet.dat - Napaka pri nalaganju wallet.dat - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - Nalaganje indeksa blokov ... - - - - Add a node to connect to and attempt to keep the connection open - Dodaj vozlišče za povezavo nanj in skušaj le to obdržati odprto - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + Opozorilo: napaka pri branju wallet.dat! Vsi ključi so bili pravilno prebrani, podatki o transakciji ali imenik vnešenih naslovov so morda izgubljeni ali nepravilni. + + + 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + <kategorija> je lahko: + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + Možnosti ustvarjanja blokov: + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + Opozorilo: Premalo prostora na disku! + + + Error: Wallet locked, unable to create transaction! + Opozorilo: Denarnica je zaklenjena, ni mogoče opraviti transkacijo! + + + Error: system error: + Napaka: sistemska napaka: + + + 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 + Zapisovanje informacij o datoteki neuspešno + + + Failed to write to coin database + Neuspešno zapisovanje na bazi podatkov kovancev + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + Ustvari kovance (privzeto: 0) + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + Počakajte na zagon RPC strežnika + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + Informacije + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL možnosti: (glejte Bitcoin Wiki za navodla, kako nastaviti SSL) + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + Pošlji sledilne/razhroščevalne informacije v konzolo namesto jih shraniti v debug.log datoteko + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + Podpisovanje transakcije spodletelo + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + Sistemska napaka: + + + Transaction amount too small + Količina transakcije je pramajhna + + + Transaction amounts must be positive + Količina transkacije mora biti pozitivna + + + Transaction too large + Transkacija je prevelika + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + Uporabniško ime za JSON-RPC povezave + + + Warning + Opozorilo + + + Warning: This version is obsolete, upgrade required! + Opozorilo: ta različica je zastarela, potrebna je nadgradnja! + + + Zapping all transactions from wallet... + + + + on startup + + + + version + različica + + + wallet.dat corrupt, salvage failed + wallet.dat poškodovana, neuspešna obnova + + + Password for JSON-RPC connections + Geslo za JSON-RPC povezave + + + Allow JSON-RPC connections from specified IP address + Dovoli JSON-RPC povezave z določenega IP naslova + + + Send commands to node running on <ip> (default: 127.0.0.1) + Pošlji ukaze vozlišču na <ip> (privzet: 127.0.0.1) + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + Posodobi denarnico v najnovejši zapis + + + Set key pool size to <n> (default: 100) + Nastavi velikost ključa bazena na <n> (privzeto: 100) + + + Rescan the block chain for missing wallet transactions + Ponovno preglej verigo blokov za manjkajoče transakcije denarnice + + + Use OpenSSL (https) for JSON-RPC connections + Uporabi OpenSSL (https) za JSON-RPC povezave + + + Server certificate file (default: server.cert) + Datoteka potrdila strežnika (privzeta: server.cert) + + + Server private key (default: server.pem) + Zasebni ključ strežnika (privzet: server.pem) + + + This help message + To sporočilo pomoči + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + Nalaganje naslovov ... + + + Error loading wallet.dat: Wallet corrupted + Napaka pri nalaganju wallet.dat: denarnica pokvarjena + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + Napaka pri nalaganju wallet.dat: denarnica zahteva novejšo različico Dogecoina + + + Wallet needed to be rewritten: restart Dogecoin to complete + Denarnica mora biti prepisana: ponovno zaženite Dogecoin za doknčanje + + + Error loading wallet.dat + Napaka pri nalaganju wallet.dat + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + Neveljavna količina + + + Insufficient funds + Premalo sredstev + + + Loading block index... + Nalaganje indeksa blokov ... + + + Add a node to connect to and attempt to keep the connection open + Dodaj vozlišče za povezavo nanj in skušaj le to obdržati odprto + + Loading wallet... Nalaganje denarnice ... - Cannot downgrade wallet Ne morem - Cannot write default address - Rescanning... Ponovno pregledovanje ... - Done loading Nalaganje končano - To use the %s option - Error Napaka - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_sq.ts b/src/qt/locale/bitcoin_sq.ts index 0644fac8b..e357baa7e 100644 --- a/src/qt/locale/bitcoin_sq.ts +++ b/src/qt/locale/bitcoin_sq.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Klikoni 2 herë për të ndryshuar adressën ose etiketën - Create a new address Krijo një adresë të re - &New - Copy the currently selected address to the system clipboard Kopjo adresën e zgjedhur në memorjen e sistemit - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete &Fshi - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) Skedar i ndarë me pikëpresje(*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Etiketë - Address Adresë - (no label) (pa etiketë) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase Futni frazkalimin - New passphrase Frazkalim i ri - Repeat new passphrase Përsërisni frazkalimin e ri - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Futni frazkalimin e ri në portofol.<br/>Ju lutemi përdorni një frazkalim prej<b>10 ose më shumë shkronjash të rastësishme<b/>, ose tetë apo më shumë fjalë</b>. - Encrypt wallet Enkripto portofolin - This operation needs your wallet passphrase to unlock the wallet. Ky veprim ka nevojë per frazkalimin e portofolit tuaj që të ç'kyç portofolin. - Unlock wallet ç'kyç portofolin. - This operation needs your wallet passphrase to decrypt the wallet. Ky veprim kërkon frazkalimin e portofolit tuaj që të dekriptoj portofolin. - Decrypt wallet Dekripto portofolin - Change passphrase Ndrysho frazkalimin - Enter the old and new passphrase to the wallet. Futni frazkalimin e vjetër dhe të ri në portofol. - Confirm wallet encryption Konfirmoni enkriptimin e portofolit - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted Portofoli u enkriptua - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed Enkriptimi i portofolit dështoi - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Enkriptimi i portofolit dështoi për shkak të një gabimi të brëndshëm. portofoli juaj nuk u enkriptua. - - The supplied passphrases do not match. Frazkalimet e plotësuara nuk përputhen. - Wallet unlock failed ç'kyçja e portofolit dështoi - - - The passphrase entered for the wallet decryption was incorrect. Frazkalimi i futur për dekriptimin e portofolit nuk ishte i saktë. - Wallet decryption failed Dekriptimi i portofolit dështoi - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... Duke u sinkronizuar me rrjetin... - &Overview &Përmbledhje - Node - Show general overview of wallet Trego një përmbledhje te përgjithshme të portofolit - &Transactions &Transaksionet - Browse transaction history Shfleto historinë e transaksioneve - E&xit - Quit application Mbyllni aplikacionin - - Show information about Dogecoin Core + Show information about Dogecoin Trego informacionin rreth Botkoin-it - - About &Qt - Show information about Qt - &Options... &Opsione - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption Ndrysho frazkalimin e përdorur per enkriptimin e portofolit - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &Skedar - &Settings &Konfigurimet - &Help &Ndihmë - Tabs toolbar Shiriti i mjeteve - - [testnet] [testo rrjetin] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network %n lidhje aktive me rrjetin e Dogekoin%n lidhje aktive me rrjetin e Dogekoin - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date I azhornuar - Catching up... Duke u azhornuar... - Sent transaction Dërgo transaksionin - Incoming transaction Transaksion në ardhje - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Portofoli po <b> enkriptohet</b> dhe është <b> i ç'kyçur</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Portofoli po <b> enkriptohet</b> dhe është <b> i kyçur</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Sasia - Address Adresë - Date Data - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (pa etiketë) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address Ndrysho Adresën - &Label &Etiketë - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Adresa - New receiving address Adresë e re pritëse - New sending address Adresë e re dërgimi - Edit receiving address Ndrysho adresën pritëse - Edit sending address ndrysho adresën dërguese - The entered address "%1" is already in the address book. Adresa e dhënë "%1" është e zënë në librin e adresave. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. Nuk mund të ç'kyçet portofoli. - New key generation failed. Krijimi i çelësit të ri dështoi. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options Opsionet - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form Formilarë - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - E pakonfirmuar: - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> <b>Transaksionet e fundit</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,41 +1324,45 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Futni një adresë Dogekoini (p.sh. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1674,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1867,155 +1517,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: &Etiketë: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + + + + Copy message + + + + Copy amount + + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address Adresë - Amount Sasia - Label Etiketë - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2023,285 +1655,225 @@ Address: %4 RecentRequestsTableModel - Date Data - Label Etiketë - Message - Amount Sasia - (no label) (pa etiketë) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins Dërgo Monedha - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Dërgo marrësve të ndryshëm njëkohësisht - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: Balanca: - Confirm the send action Konfirmo veprimin e dërgimit - S&end - Confirm send coins konfirmo dërgimin e monedhave - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Futni një adresë Dogekoini (p.sh. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. Shuma e paguar duhet të jetë më e madhe se 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (pa etiketë) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2309,116 +1881,85 @@ Address: %4 SendCoinsEntry - - - A&mount: Sh&uma: - Pay &To: Paguaj &drejt: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Krijoni një etiketë për këtë adresë që t'ja shtoni librit të adresave - &Label: &Etiketë: - Choose previously used address - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard Ngjit nga memorja e sistemit - Alt+P Alt+P - - - Remove this entry - Message: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Futni një adresë Dogekoini (p.sh. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2426,192 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard Ngjit nga memorja e sistemit - Alt+P Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Futni një adresë Dogekoini (p.sh. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2619,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] [testo rrjetin] @@ -2637,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2645,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 Hapur deri më %1 - + conflicted + + + %1/offline - %1/unconfirmed %1/I pakonfirmuar - %1 confirmations %1 konfirmimet - Status - , broadcast through %n node(s) - Date Data - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount Sasia - true - false - , has not been successfully broadcast yet , nuk është transmetuar me sukses deri tani - Open for %n more block(s) - unknown i/e panjohur @@ -2825,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details Detajet e transaksionit - This pane shows a detailed description of the transaction Ky panel tregon një përshkrim të detajuar të transaksionit @@ -2838,118 +2282,102 @@ Address: %4 TransactionTableModel - Date Data - Type Lloji - Address Adresë - Amount Sasia - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 Hapur deri më %1 - - Offline (%1 confirmations) - Jashtë linje(%1 konfirmime) - - - - Unconfirmed (%1 of %2 confirmations) - I/E pakonfirmuar(%1 nga %2 konfirmime) - - - - Confirmed (%1 confirmations) I/E konfirmuar(%1 konfirmime) - This block was not received by any other nodes and will probably not be accepted! Ky bllok është marrë nga ndonjë nyje dhe ka shumë mundësi të mos pranohet! - Generated but not accepted I krijuar por i papranuar - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Marrë me - Received from - Sent to Dërguar drejt - Payment to yourself Pagesë ndaj vetvetes - Mined Minuar - (n/a) (p/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2957,178 +2385,142 @@ Address: %4 TransactionView - - All - Today - This week - This month - Last month - This year - Range... - Received with Marrë me - Sent to Dërguar drejt - To yourself - Mined Minuar - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Skedar i ndarë me pikëpresje(*.csv) - Confirmed - Date Data - Type Lloji - Label Etiketë - Address Adresë - Amount Sasia - ID - Range: - to @@ -3136,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3144,7 +2535,6 @@ Address: %4 WalletModel - Send Coins Dërgo Monedha @@ -3152,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3310,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_sr.ts b/src/qt/locale/bitcoin_sr.ts index 4ef4c02ff..61997c191 100644 --- a/src/qt/locale/bitcoin_sr.ts +++ b/src/qt/locale/bitcoin_sr.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Кликните два пута да промените адресу и/или етикету - Create a new address Прави нову адресу - &New - Copy the currently selected address to the system clipboard Копира изабрану адресу на системски клипборд - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete &Избриши - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) Зарезом одвојене вредности (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Етикета - Address Адреса - (no label) (без етикете) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase Унесите лозинку - New passphrase Нова лозинка - Repeat new passphrase Поновите нову лозинку - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Унесите нову лозинку за приступ новчанику.<br/>Молимо Вас да лозинка буде <b>10 или више насумице одабраних знакова</b>, или <b>осам или више речи</b>. - Encrypt wallet Шифровање новчаника - This operation needs your wallet passphrase to unlock the wallet. Ова акција захтева лозинку Вашег новчаника да би га откључала. - Unlock wallet Откључавање новчаника - This operation needs your wallet passphrase to decrypt the wallet. Ова акција захтева да унесете лозинку да би дешифловала новчаник. - Decrypt wallet Дешифровање новчаника - Change passphrase Промена лозинке - Enter the old and new passphrase to the wallet. Унесите стару и нову лозинку за шифровање новчаника. - Confirm wallet encryption Одобрите шифровање новчаника - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - Упозорење: Ако се ваш новчаник шифрује а потом изгубите лозинкзу, ви ћете <b>ИЗГУБИТИ СВЕ DOGECOIN-Е</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! + Упозорење: Ако се ваш новчаник шифрује а потом изгубите лозинкзу, ви ћете <b>ИЗГУБИТИ СВЕ Dogecoin-Е</b>! - Are you sure you wish to encrypt your wallet? Да ли сте сигурни да желите да се новчаник шифује? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted Новчаник је шифрован - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - Dogecoin će se sad zatvoriti da bi završio proces enkripcije. Zapamti da enkripcija tvog novčanika ne može u potpunosti da zaštiti tvoje Dogecoine da ne budu ukradeni od malawarea koji bi inficirao tvoj kompjuter. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Dogecoin će se sad zatvoriti da bi završio proces enkripcije. Zapamti da enkripcija tvog novčanika ne može u potpunosti da zaštiti tvoje bitcoine da ne budu ukradeni od malawarea koji bi inficirao tvoj kompjuter. - - - - Wallet encryption failed Неуспело шифровање новчаника - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Настала је унутрашња грешка током шифровања новчаника. Ваш новчаник није шифрован. - - The supplied passphrases do not match. Лозинке које сте унели се не подударају. - Wallet unlock failed Неуспело откључавање новчаника - - - The passphrase entered for the wallet decryption was incorrect. Лозинка коју сте унели за откључавање новчаника је нетачна. - Wallet decryption failed Неуспело дешифровање новчаника - Wallet passphrase was successfully changed. Лозинка за приступ новчанику је успешно промењена. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... Синхронизација са мрежом у току... - &Overview &Општи преглед - Node - Show general overview of wallet Погледајте општи преглед новчаника - &Transactions &Трансакције - Browse transaction history Претражите историјат трансакција - E&xit I&zlaz - Quit application Напустите програм - - Show information about Dogecoin Core + Show information about Dogecoin Прегледајте информације о Dogecoin-у - - About &Qt О &Qt-у - Show information about Qt Прегледајте информације о Qt-у - &Options... П&оставке... - &Encrypt Wallet... &Шифровање новчаника... - &Backup Wallet... &Backup новчаника - &Change Passphrase... Промени &лозинку... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - Пошаљите новац на dogecoin адресу + Пошаљите новац на bitcoin адресу - - Modify configuration options for Dogecoin Core - Изаберите могућности dogecoin-а + Modify configuration options for Dogecoin + Изаберите могућности bitcoin-а - Backup wallet to another location - Change the passphrase used for wallet encryption Мењање лозинке којом се шифрује новчаник - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet новчаник - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File &Фајл - &Settings &Подешавања - &Help П&омоћ - Tabs toolbar Трака са картицама - - [testnet] [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network %n активна веза са Dogecoin мрежом%n активне везе са Dogecoin мрежом%n активних веза са Dogecoin мрежом - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date Ажурно - Catching up... Ажурирање у току... - Sent transaction Послана трансакција - Incoming transaction Придошла трансакција - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 Datum: %1⏎ Iznos: %2⏎ Tip: %3⏎ Adresa: %4⏎ - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Новчаник јс <b>шифрован</b> и тренутно <b>откључан</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Новчаник јс <b>шифрован</b> и тренутно <b>закључан</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: Iznos: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount iznos - Address Адреса - Date datum - Confirmations - Confirmed Potvrdjen - Priority - Copy address kopiraj adresu - Copy label kopiraj naziv - - Copy amount kopiraj iznos - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (без етикете) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address Измени адресу - &Label &Етикета - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Адреса - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. Унешена адреса "%1" се већ налази у адресару. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. Немогуће откључати новчаник. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version верзија - Usage: Korišćenje: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options Поставке - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: &Јединица за приказивање износа: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form Форма - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - Непотврђено: - - - Wallet новчаник - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> <b>Недавне трансакције</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,41 +1324,45 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Unesite Dogecoin adresu (n.pr. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1674,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1867,155 +1517,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: &Етикета - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + kopiraj naziv + + + Copy message + + + + Copy amount + kopiraj iznos + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address Адреса - Amount iznos - Label Етикета - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2023,285 +1655,225 @@ Address: %4 RecentRequestsTableModel - Date datum - Label Етикета - Message - Amount iznos - (no label) (без етикете) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins Слање новца - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: Iznos: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: - Confirm the send action Потврди акцију слања - S&end &Пошаљи - Confirm send coins - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Unesite Dogecoin adresu (n.pr. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount kopiraj iznos - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (без етикете) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2309,116 +1881,85 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: &Етикета - Choose previously used address - This is a normal payment. - Alt+A Alt+ - Paste address from clipboard - Alt+P Alt+П - - - Remove this entry - Message: Poruka: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Unesite Dogecoin adresu (n.pr. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2426,192 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A Alt+A - Paste address from clipboard - Alt+P Alt+П - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Unesite Dogecoin adresu (n.pr. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2619,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] [testnet] @@ -2637,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2645,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 Otvorite do %1 - + conflicted + + + %1/offline - %1/unconfirmed %1/nepotvrdjeno - %1 confirmations %1 potvrde - Status - , broadcast through %n node(s) - Date datum - Source - Generated - - From - - - To - - own address - label етикета - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount iznos - true - false - , has not been successfully broadcast yet , nije još uvek uspešno emitovan - Open for %n more block(s) - unknown nepoznato @@ -2825,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details detalji transakcije - This pane shows a detailed description of the transaction Ovaj odeljak pokazuje detaljan opis transakcije @@ -2838,118 +2282,102 @@ Address: %4 TransactionTableModel - Date datum - Type tip - Address Адреса - Amount iznos - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 Otvoreno do %1 - - Offline (%1 confirmations) - Offline * van mreže (%1 potvrdjenih) - - - - Unconfirmed (%1 of %2 confirmations) - Nepotvrdjeno (%1 of %2 potvrdjenih) - - - - Confirmed (%1 confirmations) Potvrdjena (%1 potvrdjenih) - This block was not received by any other nodes and will probably not be accepted! Ovaj blok nije primljen od ostalih čvorova (nodova) i verovatno neće biti prihvaćen! - Generated but not accepted Generisan ali nije prihvaćen - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Primljen sa - Received from Primljeno od - Sent to Poslat ka - Payment to yourself Isplata samom sebi - Mined Minirano - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. Status vaše transakcije. Predjite mišem preko ovog polja da bi ste videli broj konfirmacija - Date and time that the transaction was received. Datum i vreme primljene transakcije. - Type of transaction. Tip transakcije - Destination address of transaction. Destinacija i adresa transakcije - Amount removed from or added to balance. Iznos odbijen ili dodat balansu. @@ -2957,178 +2385,142 @@ Address: %4 TransactionView - - All Sve - Today Danas - This week ove nedelje - This month Ovog meseca - Last month Prošlog meseca - This year Ove godine - Range... Opseg... - Received with Primljen sa - Sent to Poslat ka - To yourself Vama - samom sebi - Mined Minirano - Other Drugi - Enter address or label to search Navedite adresu ili naziv koji bi ste potražili - Min amount Min iznos - Copy address kopiraj adresu - Copy label kopiraj naziv - Copy amount kopiraj iznos - Copy transaction ID - Edit label promeni naziv - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Зарезом одвојене вредности (*.csv) - Confirmed Potvrdjen - Date datum - Type tip - Label Етикета - Address Адреса - Amount iznos - ID - Range: Opseg: - to do @@ -3136,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3144,7 +2535,6 @@ Address: %4 WalletModel - Send Coins Слање новца @@ -3152,155 +2542,126 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: Korišćenje: - List commands Listaj komande - Get help for a command Zatraži pomoć za komande - Options: Opcije - - Specify configuration file (default: dogecoin.conf) - Potvrdi željeni konfiguracioni fajl (podrazumevani:dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Potvrdi željeni konfiguracioni fajl (podrazumevani:bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Konkretizuj pid fajl (podrazumevani: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Konkretizuj pid fajl (podrazumevani: bitcoind.pid) - Specify data directory Gde je konkretni data direktorijum - - Set database cache size in megabytes (default: 25) - + Listen for connections on <port> (default: 8333 or testnet: 18333) + Slušaj konekcije na <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Slušaj konekcije na <port> (default: 22556 or testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Održavaj najviše <n> konekcija po priključku (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands Prihvati komandnu liniju i JSON-RPC komande - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Radi u pozadini kao daemon servis i prihvati komande - Use the test network Koristi testnu mrežu - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3311,711 +2672,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - Korisničko ime za JSON-RPC konekcije - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - верзија - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - Lozinka za JSON-RPC konekcije - - - - Allow JSON-RPC connections from specified IP address - Dozvoli JSON-RPC konekcije sa posebne IP adrese - - - - Send commands to node running on <ip> (default: 127.0.0.1) - Pošalji komande to nodu koji radi na <ip> (default: 127.0.0.1) - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - Odredi veličinu zaštićenih ključeva na <n> (default: 100) - - - - Rescan the block chain for missing wallet transactions - Ponovo skeniraj lanac blokova za nedostajuće transakcije iz novčanika - - - - Use OpenSSL (https) for JSON-RPC connections - Koristi OpenSSL (https) za JSON-RPC konekcije - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - privatni ključ za Server (podrazumevan: server.pem) - - - - This help message - Ova poruka Pomoći - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - učitavam adrese.... - - - - Error loading wallet.dat: Wallet corrupted - Грешка током учитавања wallet.dat: Новчаник је покварен - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - Грешка током учитавања wallet.dat: Новчанику је неопходна нова верзија Dogecoin-a. - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - Грешка током учитавања wallet.dat - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - Učitavam blok indeksa... - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + Korisničko ime za JSON-RPC konekcije + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + верзија + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + Lozinka za JSON-RPC konekcije + + + Allow JSON-RPC connections from specified IP address + Dozvoli JSON-RPC konekcije sa posebne IP adrese + + + Send commands to node running on <ip> (default: 127.0.0.1) + Pošalji komande to nodu koji radi na <ip> (default: 127.0.0.1) + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + Odredi veličinu zaštićenih ključeva na <n> (default: 100) + + + Rescan the block chain for missing wallet transactions + Ponovo skeniraj lanac blokova za nedostajuće transakcije iz novčanika + + + Use OpenSSL (https) for JSON-RPC connections + Koristi OpenSSL (https) za JSON-RPC konekcije + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + privatni ključ za Server (podrazumevan: server.pem) + + + This help message + Ova poruka Pomoći + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + učitavam adrese.... + + + Error loading wallet.dat: Wallet corrupted + Грешка током учитавања wallet.dat: Новчаник је покварен + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + Грешка током учитавања wallet.dat: Новчанику је неопходна нова верзија Dogecoin-a. + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + Грешка током учитавања wallet.dat + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + Učitavam blok indeksa... + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... Новчаник се учитава... - Cannot downgrade wallet - Cannot write default address - Rescanning... Ponovo skeniram... - Done loading Završeno učitavanje - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_sv.ts b/src/qt/locale/bitcoin_sv.ts index a093f4137..a3463def3 100644 --- a/src/qt/locale/bitcoin_sv.ts +++ b/src/qt/locale/bitcoin_sv.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - + Om Dogecoin Core - <b>Dogecoin Core</b> version - + <b>Dogecoin Core</b>-version - This is experimental software. @@ -28,153 +25,128 @@ Distribuerad under mjukvarulicensen MIT/X11, se den medföljande filen COPYING e Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användning i OpenSSL Toolkit (http://www.openssl.org/) och kryptografisk mjukvara utvecklad av Eric Young (eay@cryptsoft.com) samt UPnP-mjukvara skriven av Thomas Bernard. - Copyright Copyright - The Dogecoin Core developers - + Dogecoin Core-utvecklarna + + + (%1-bit) + (%1-bit) AddressBookPage - Double-click to edit address or label - Dubbel-klicka för att ändra adressen eller etiketten + Dubbelklicka för att ändra adressen eller etiketten - Create a new address Skapa ny adress - &New &Ny - Copy the currently selected address to the system clipboard Kopiera den markerade adressen till systemets Urklipp - &Copy &Kopiera - C&lose S&täng - &Copy Address &Kopiera adress - Delete the currently selected address from the list Ta bort den valda adressen från listan - Export the data in the current tab to a file Exportera informationen i den nuvarande fliken till en fil - &Export &Exportera - &Delete &Radera - Choose the address to send coins to - + Välj en adress att sända betalning till - Choose the address to receive coins with - + Välj en adress att ta emot betalning till - C&hoose V&älj - Very sending addresses Avsändaradresser - Much receiving addresses Mottagaradresser - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Detta är dina Dogecoin adresser för att skicka betalningar. Kolla alltid summan och den mottagande adressen innan du skickar Dogecoins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - + Detta är dina Dogecoin adresser för att ta emot betalningar. Det rekommenderas att använda en ny mottagningsadress för varje transaktion. - Copy &Label Kopiera &etikett - &Edit &Editera - Export Address List Exportera adresslistan - Comma separated file (*.csv) Kommaseparerad fil (*.csv) - Exporting Failed - + Exporteringen misslyckades - There was an error trying to save the address list to %1. - + Det inträffade ett fel när adresslistan skulle sparas till %1. AddressTableModel - Label Etikett - Address Adress - (no label) (Ingen etikett) @@ -182,140 +154,106 @@ Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användni AskPassphraseDialog - Passphrase Dialog Lösenords Dialog - Enter passphrase Ange lösenord - New passphrase Nytt lösenord - Repeat new passphrase Upprepa nytt lösenord - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Ange plånbokens nya lösenord. <br/> Använd ett lösenord på <b>10 eller fler slumpmässiga tecken,</b> eller <b>åtta eller fler ord.</b> - Encrypt wallet Kryptera plånbok - This operation needs your wallet passphrase to unlock the wallet. Denna operation behöver din plånboks lösenord för att låsa upp plånboken. - Unlock wallet Lås upp plånbok - This operation needs your wallet passphrase to decrypt the wallet. Denna operation behöver din plånboks lösenord för att dekryptera plånboken. - Decrypt wallet Dekryptera plånbok - Change passphrase Ändra lösenord - Enter the old and new passphrase to the wallet. Ange plånbokens gamla och nya lösenord. - Confirm wallet encryption Bekräfta kryptering av plånbok - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! VARNING: Om du krypterar din plånbok och glömmer ditt lösenord, kommer du att <b>FÖRLORA ALLA DINA TILLGÅNGAR</b>! - Are you sure you wish to encrypt your wallet? Är du säker på att du vill kryptera din plånbok? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. VIKTIGT: Alla tidigare säkerhetskopior du har gjort av plånbokens fil ska ersättas med den nya genererade, krypterade plånboks filen. Av säkerhetsskäl kommer tidigare säkerhetskopior av den okrypterade plånboks filen blir oanvändbara när du börjar använda en ny, krypterad plånbok. - - Warning: The Caps Lock key is on! Varning: Caps Lock är påslaget! - - Wallet encrypted Plånboken är krypterad - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Programmet kommer nu att stänga ner för att färdigställa krypteringen. Tänk på att en krypterad plånbok inte skyddar mot stöld om din dator är infekterad med en keylogger. - - - - Wallet encryption failed Kryptering av plånbok misslyckades - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Kryptering av plånbok misslyckades på grund av ett internt fel. Din plånbok blev inte krypterad. - - The supplied passphrases do not match. De angivna lösenorden överensstämmer inte. - Wallet unlock failed Upplåsning av plånbok misslyckades - - - The passphrase entered for the wallet decryption was incorrect. Lösenordet för dekryptering av plånbok var felaktig. - Wallet decryption failed Dekryptering av plånbok misslyckades - Wallet passphrase was successfully changed. Plånbokens lösenord har ändrats. @@ -323,352 +261,286 @@ Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användni BitcoinGUI - Sign &message... Signera &meddelande... - Synchronizing with network... Synkroniserar med nätverk... - &Overview &Översikt - Node - + Nod - Show general overview of wallet Visa översiktsvy av plånbok - &Transactions &Transaktioner - Browse transaction history Bläddra i transaktionshistorik - E&xit &Avsluta - Quit application Avsluta programmet - - Show information about Dogecoin Core + Show information about Dogecoin Visa information om Dogecoin - - About &Qt Om &Qt - Show information about Qt Visa information om Qt - &Options... &Alternativ... - &Encrypt Wallet... &Kryptera plånbok... - &Backup Wallet... &Säkerhetskopiera plånbok... - &Change Passphrase... &Byt Lösenord... - Very &sending addresses... - + Av&sändaradresser... - Much &receiving addresses... - + Mottaga&radresser... - Open &URI... - + Öppna &URI... - Importing blocks from disk... Importerar block från disk... - Reindexing blocks on disk... Återindexerar block på disken... - Send coins to a Dogecoin address Skicka mynt till en Dogecoin-adress - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Ändra konfigurationsalternativ för Dogecoin - Backup wallet to another location Säkerhetskopiera plånboken till en annan plats - Change the passphrase used for wallet encryption Byt lösenord för kryptering av plånbok - &Debug window &Debug fönster - Open debugging and diagnostic console Öppna debug- och diagnostikkonsolen - &Verify message... &Verifiera meddelande... - Dogecoin Dogecoin - Wallet Plånbok - &Send &Skicka - &Receive &Ta emot - - &Show / Hide &Visa / Göm - Show or hide the main Window Visa eller göm huvudfönstret - Encrypt the private keys that belong to your wallet Kryptera de privata nycklar som tillhör din plånbok - Sign messages with your Dogecoin addresses to prove you own them Signera meddelanden med din Dogecoinadress för att bevisa att du äger dem - Verify messages to ensure they were signed with specified Dogecoin addresses Verifiera meddelanden för att vara säker på att de var signerade med den specificerade Dogecoin-adressen - &File &Arkiv - &Settings &Inställningar - &Help &Hjälp - Tabs toolbar Verktygsfält för Tabbar - - [testnet] [testnet] - Dogecoin Core Dogecoin Kärna - - Request payments (generates QR codes and dogecoin: URIs) - + Request payments (generates QR codes and bitcoin: URIs) + Begär betalning (genererar QR-koder och bitcoin-URI) - - &About Dogecoin Core - + &Om Dogecoin Core - Show the list of used sending addresses and labels Visa listan av använda avsändaradresser och etiketter - Show the list of used receiving addresses and labels - + Visa listan av använda mottagningsadresser och etiketter - - Open a dogecoin: URI or payment request - + Open a bitcoin: URI or payment request + Öppna en bitcoin: URI eller betalningsbegäran - &Command-line options - + &Kommandoradsalternativ - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options - + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options + Visa Dogecoin Core hjälpmeddelande för att få en lista med möjliga Dogecoin kommandoradsalternativ. - - Dogecoin client Dogecoin-klient - %n active connection(s) to Dogecoin network %n aktiv anslutning till Dogecoin-nätverket%n aktiva anslutningar till Dogecoin-nätverket - No block source available... Ingen block-källa tillgänglig... - Processed %1 of %2 (estimated) blocks of transaction history. Bearbetat %1 av %2 (uppskattade) block av transaktionshistorik. - Processed %1 blocks of transaction history. Bearbetat %1 block i transaktionshistoriken. - %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 - 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. - Error Fel - Warning Varning - Information Information - Up to date Uppdaterad - Catching up... Hämtar senaste... - Sent transaction Transaktion skickad - Incoming transaction Inkommande transaktion - Date: %1 Amount: %2 Type: %3 @@ -681,25 +553,21 @@ Adress: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Denna plånbok är <b>krypterad</b> och för närvarande <b>olåst</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> Denna plånbok är <b>krypterad</b> och för närvarande <b>låst</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Ett allvarligt fel har uppstått. Dogecoin kan inte längre köras säkert och kommer att avslutas. ClientModel - Network Alert Nätverkslarm @@ -707,359 +575,285 @@ Adress: %4 CoinControlDialog - Coin Control Address Selection - + Adressval för myntkontroll - Quantity: - + Kvantitet: - Bytes: - + Antal Byte: - Amount: Belopp: - Priority: - + Prioritet: - Fee: - + Avgift: - Low Output: - + Låg utmatning: - After Fee: - + Efter avgift: - Change: - + Växel: - (un)select all - + (av)välj allt - Tree mode - + Trädmetod - List mode - + Listmetod - Amount Mängd - Address Adress - Date Datum - Confirmations - + Konfirmationer - Confirmed Bekräftad - Priority - + Prioritet - Copy address Kopiera adress - Copy label Kopiera etikett - - Copy amount Kopiera belopp - Copy transaction ID Kopiera transaktions ID - Lock unspent - + Lås ospenderat - Unlock unspent - + Lås upp ospenderat - Copy quantity - + Kopiera kvantitet - Copy fee - + Kopiera avgift - Copy after fee - + Kopiera efter avgift - Copy bytes - + Kopiera byte - Copy priority - + Kopiera prioritet - Copy low output - + Kopiera låg utmatning - Copy change - + Kopiera växel - highest - + högst - higher - + högre - high - + hög - medium-high - + medelhög - medium - + medel - low-medium - + lågmedel - low - + låg - lower - + lägre - lowest - + lägst - (%1 locked) - + (%1 låst) - none - + ingen - Dust - + Damm - yes - + ja - no - + nej - This label turns red, if the transaction size is greater than 1000 bytes. - + Denna etikett blir röd om transaktionen överstiger 1000 byte. - - This means a fee of at least %1 per kB is required. - + Detta betyder att en avgift på minst %1 per kB behövs. - Can vary +/- 1 byte per input. - + Kan variera +/- 1 byte per inmatning. - Transactions with higher priority are more likely to get included into a block. - + Transaktioner med högre prioritet har större sannolikhet att inkluderas i ett block. - This label turns red, if the priority is smaller than "medium". - + Denna etikett blir röd om prioriteten är mindre än "medium". - This label turns red, if any recipient receives an amount smaller than %1. - + Denna etikett blir röd om någon mottagare får en betalning som är mindre än %1. - - This means a fee of at least %1 is required. - + Detta betyder att en avgift på minst %1 behövs. - Amounts below 0.546 times the minimum relay fee are shown as dust. - + Belopp mindre än 0.546 gånger den minsta vidarebefordringsavgiften visa som damm. - This label turns red, if the change is smaller than %1. - + Denna etikett blir röd om växeln är mindre än %1. - - (no label) (Ingen etikett) - change from %1 (%2) - + växel från %1 (%2) - (change) - + (växel) EditAddressDialog - Edit Address Redigera Adress - &Label &Etikett - The label associated with this address list entry - + Etiketten associerad med denna adresslistas post - The address associated with this address list entry. This can only be modified for sending addresses. - + Adressen associerad med denna adresslistas post. Detta kan bara ändras för sändningsadresser. - &Address &Adress - New receiving address Ny mottagaradress - New sending address Ny avsändaradress - Edit receiving address Redigera mottagaradress - Edit sending address Redigera avsändaradress - The entered address "%1" is already in the address book. Den angivna adressen "%1" finns redan i adressboken. - The entered address "%1" is not a valid Dogecoin address. Den angivna adressen "%1" är inte en giltig Dogecoin-adress. - Could not unlock wallet. Plånboken kunde inte låsas upp. - New key generation failed. Misslyckades med generering av ny nyckel. @@ -1067,27 +861,22 @@ Adress: %4 FreespaceChecker - A new data directory will be created. En ny datakatalog kommer att skapas. - name namn - Directory already exists. Add %1 if you intend to create a new directory here. Katalogen finns redan. Läggtill %1 om du vill skapa en ny katalog här. - Path already exists, and is not a directory. Sökvägen finns redan, och är inte en katalog. - Cannot create data directory here. Kan inte skapa datakatalog här. @@ -1095,52 +884,46 @@ Adress: %4 HelpMessageDialog - Dogecoin Core - Command-line options - + Dogecoin Core - Kommandoradsalternativ - Dogecoin Core Dogecoin Kärna - version version - Usage: Användning: - command-line options kommandoradsalternativ - UI options UI alternativ - Set language, for example "de_DE" (default: system locale) Ändra språk, till exempel "de_DE" (förvalt: systemets språk) - Start minimized Starta som minimerad - + Set SSL root certificates for payment request (default: -system-) + Sätt SSL root-certifikat för betalningsbegäran (förvalt: -system-) + + Show splash screen on startup (default: 1) Visa startbilden vid uppstart (förvalt: 1) - Choose data directory on startup (default: 0) Välj datakatalog vid uppstart (förvalt: 0) @@ -1148,57 +931,46 @@ Adress: %4 Intro - Welcome Välkommen - Welcome to Dogecoin Core. - + Välkommen till Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - + Eftersom detta är första gången programmet startas får du välja var Dogecoin Core skall lagra sitt data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - + Dogecoin Core kommer att ladda ner och spara en kopia av Dogecoin blockkedjan. Åtminstone %1GB av data kommer att sparas i denna katalog, och den kommer att växa över tiden. Plånboken kommer också att sparas i denna katalog. - Use the default data directory Använd den förvalda datakatalogen - Use a custom data directory: Använd en anpassad datakatalog: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. Fel: Den angivna datakatalogen "%1" kan inte skapas. - Error Fel - GB of free space available GB ledigt utrymme är tillgängligt - (of %1GB needed) (av %1GB behövs) @@ -1206,271 +978,229 @@ Adress: %4 OpenURIDialog - Open URI - + Öppna URI - Open payment request from URI or file - + Öppna betalningsbegäran från URI eller fil - URI: - + URI: - Select payment request file - + Välj betalningsbegäransfil - Select payment request file to open - + Välj betalningsbegäransfil att öppna OptionsDialog - Options Alternativ - &Main &Allmänt - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Valfri transaktionsavgift per kB som ser till att dina transaktioner behandlas snabbt. De flesta transaktioner är 1 kB. - Pay transaction &fee Betala överförings&avgift - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Starta Dogecoin automatiskt efter inloggning. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Starta Dogecoin vid systemstart - Size of &database cache - + Storleken på &databascache - - Set database cache size in megabytes (default: 25) - Sätt databas cache storleken i megabyte (förvalt: 25) - - - MB - + MB - Number of script &verification threads - + Antalet skript & verifikationstrådar - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Ange antalet skriptkontrolltrådar (upp till 16, 0 = auto, <0 = lämna så många kärnor lediga, förval: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - + Anslut till Dogecoin-nätverket genom en SOCKS-proxy. - &Connect through SOCKS proxy (default proxy): - + &Anslut genom SOCKS-proxy (förvald proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - + Proxyns IP-adress (t.ex. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - + Aktiva kommandoradsalternativ som överrider alternativen ovan: - Reset all client options to default. Återställ alla klient inställningar till förvalen. - &Reset Options &Återställ Alternativ - &Network &Nätverk - + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = lämna så många kärnor lediga) + + + W&allet + &Plånbok + + + Expert + Expert + + + Enable coin &control features + Aktivera mynt och kontrollfunktioner + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Om du avaktiverar betalning med okonfirmerade växel, kan inte växeln från en transaktion användas förrän den transaktionen har minst en konfirmation. + + + &Spend unconfirmed change + &Spendera okonfirmerad växel + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Öppna automatiskt Dogecoin-klientens port på routern. Detta fungerar endast om din router har UPnP aktiverat. - Map port using &UPnP Tilldela port med hjälp av &UPnP - Proxy &IP: Proxy-&IP: - &Port: &Port: - Port of the proxy (e.g. 9050) Proxyns port (t.ex. 9050) - SOCKS &Version: SOCKS &Version: - SOCKS version of the proxy (e.g. 5) SOCKS version av proxyn (t.ex. 5) - &Window &Fönster - Show only a tray icon after minimizing the window. Visa endast en systemfältsikon vid minimering. - &Minimize to the tray instead of the taskbar &Minimera till systemfältet istället för aktivitetsfältet - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimera applikationen istället för att stänga ner den när fönstret stängs. Detta innebär att programmet fotrsätter att köras tills du väljer Avsluta i menyn. - M&inimize on close M&inimera vid stängning - &Display &Visa - User Interface &language: Användargränssnittets &språk: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Användargränssnittets språk kan ställas in här. Denna inställning träder i kraft efter en omstart av Dogecoin. - &Unit to show amounts in: &Måttenhet att visa belopp i: - Choose the default subdivision unit to show in the interface and when sending coins. Välj en måttenhet att visa när du skickar mynt. - Whether to show Dogecoin addresses in the transaction list or not. Anger om Dogecoin-adresser skall visas i transaktionslistan. - &Display addresses in transaction list &Visa adresser i transaktionslistan - Whether to show coin control features or not. - + Om myntkontrollfunktioner skall visas eller inte - - Display coin &control features (experts only) - - - - &OK &OK - &Cancel &Avbryt - default standard - none - + ingen - Confirm options reset Bekräfta att alternativen ska återställs - - Client restart required to activate changes. - + Klientomstart är nödvändig för att aktivera ändringarna. - Client will be shutdown, do you want to proceed? - + Klienten skall stängas av, vill du fortsätta? - This change would require a client restart. - + Denna ändring kräver en klientomstart. - The supplied proxy address is invalid. Den medföljande proxy adressen är ogiltig. @@ -1478,69 +1208,54 @@ Adress: %4 OverviewPage - Form Formulär - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Den visade informationen kan vara inaktuell. Plånboken synkroniseras automatiskt med Dogecoin-nätverket efter att anslutningen är upprättad, men denna process har inte slutförts ännu. - - Unconfirmed: - Obekräftade: - - - Wallet Plånbok - - Confirmed: - Bekräftade: + Available: + Tillgängligt: - Your current spendable balance Ditt tillgängliga saldo - + Pending: + Pågående: + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Totalt antal transaktioner som ännu inte bekräftats, och som ännu inte räknas med i aktuellt saldo - Immature: Omogen: - Mined balance that has not yet matured Den genererade balansen som ännu inte har mognat - Total: Totalt: - Your current total balance Ditt nuvarande totala saldo - <b>Recent transactions</b> <b>Nyligen genomförda transaktioner</b> - - out of sync osynkroniserad @@ -1548,328 +1263,263 @@ Adress: %4 PaymentServer - - URI handling URI hantering - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. URI går inte att tolkas! Detta kan orsakas av en ogiltig Dogecoin-adress eller felaktiga URI parametrar. - Requested payment amount of %1 is too small (considered dust). - + Begärd betalning av %1 är för liten (betraktas som damm). - - - - - - Payment request error - + Fel vid betalningsbegäran - - Cannot start dogecoin: click-to-pay handler - Kan inte starta dogecoin: klicka-och-betala handhavare + Cannot start bitcoin: click-to-pay handler + Kan inte starta bitcoin: klicka-och-betala handhavare - Net manager warning - + Varningar från näthanteraren - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - + Din aktiva proxy stödjer inte SOCKS5, vilket är nödvändigt för att använda betalningsbegäran via proxy. - Payment request fetch URL is invalid: %1 - + Betalningsbegärans hämta URL är felaktig: %1 - Payment request file handling - + Hantering av betalningsbegäransfil - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - + Betalningsbegäransfilen kan inte läsas eller behandlas! Detta kan orsakas av en felaktig betalningsbegäransfil. - Unverified payment requests to custom payment scripts are unsupported. - + Overifierade betalningsbegärningar till specialbetalningsskript stöds inte. - Refund from %1 - + Återbetalning från %1 - Error communicating with %1: %2 - + Kommunikationsfel med %1: %2 - Payment request can not be parsed or processed! - + Betalningsbegäran kan inte läsas eller behandlas! - Bad response from server %1 - + Dåligt svar från server %1 - Payment acknowledged - + Betalningen bekräftad - Network request error - + Fel vid närverksbegäran QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Fel: Den angivna datakatalogen "%1" finns inte. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Fel: Kan inte läsa konfigurationsfilen: %1. Använd bara nyckel=värde formatet. + + Error: Invalid combination of -regtest and -testnet. - + Fel: Felaktig kombination av -regtest och -testnet. + + + Dogecoin Core did't yet exit safely... + Dogecoin Core avslutades säkert... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Ange en Dogecoin-adress (t.ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) QRImageWidget - &Save Image... &Spara Bild... - &Copy Image &Kopiera Bild - Save QR Code Spara QR-kod - PNG Image (*.png) - + PNG-bild (*.png) RPCConsole - Client name Klientnamn - - - - - - - - - - - N/A ej tillgänglig - Client version Klient-version - &Information &Information - Debug window - + Debug fönster - General - + Generell - Using OpenSSL version Använder OpenSSL version - Startup time Uppstartstid - Network Nätverk - Name - + Namn - Number of connections Antalet anslutningar - Block chain Blockkedja - Current number of blocks Aktuellt antal block - Estimated total blocks Beräknade totala block - Last block time Sista blocktid - &Open &Öppna - &Console &Konsol - &Network Traffic &Nätverkstrafik - &Clear &Rensa - Totals - + Totalt - In: In: - Out: Ut: - Build date Kompileringsdatum - Debug log file Debugloggfil - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Öppna Dogecoin debug-loggfilen som finns i datakatalogen. Detta kan ta några sekunder för stora loggfiler. - Clear console Rensa konsollen - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Välkommen till Dogecoin RPC-konsollen. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Använd upp- och ner-pilarna för att navigera i historiken, och <b>Ctrl-L</b> för att rensa skärmen. - Type <b>help</b> for an overview of available commands. Skriv <b>help</b> för en översikt av alla kommandon. - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 m - %1 h %1 h - %1 h %2 m %1 h %2 m @@ -1877,155 +1527,137 @@ Adress: %4 ReceiveCoinsDialog - &Amount: %Belopp: - &Label: &Etikett: - &Message: &Meddelande: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - + Återanvänd en av tidigare använda mottagningsadresser. Återanvändning av adresser har både säkerhets och integritetsbrister. Använd inte samma mottagningsadress om du inte gör om samma betalningsbegäran. - R&euse an existing receiving address (not recommended) - + Åt&eranvänd en existerande mottagningsadress (rekommenderas inte) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + Ett frivilligt meddelande att bifoga betalningsbegäran, vilket visas när begäran öppnas. NB: Meddelandet kommer inte att sändas med betalningen över Dogecoinnätverket. + + + An optional label to associate with the new receiving address. + En frivillig etikett att associera med den nya mottagningsadressen. - Use this form to request payments. All fields are <b>optional</b>. - + Använd detta formulär för att begära betalningar. Alla fält är <b>frivilliga</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - + En valfri summa att begära. Lämna denna tom eller noll för att inte begära en specifik summa. - Clear all fields of the form. - + Rensa alla formulärfälten - Clear Rensa - + Requested payments history + Historik för begärda betalningar + + &Request payment - + Begä&r betalning - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - + Visa valda begäranden (gör samma som att dubbelklicka på en post) - Show - + Visa - Remove the selected entries from the list - + Ta bort valda poster från listan - Remove - + Ta bort + + + Copy label + Kopiera etikett + + + Copy message + Kopiera meddelande + + + Copy amount + Kopiera belopp ReceiveRequestDialog - QR Code QR-kod - Copy &URI Kopiera &URI - Copy &Address Kopiera &Adress - &Save Image... &Spara Bild... - Request payment to %1 - + Begär betalning till %1 - Payment information Betalningsinformation - URI URI - Address Adress - Amount Mängd - Label Etikett - Message Meddelande - Resulting URI too long, try to reduce the text for label / message. URI:n är för lång, försöka minska texten för etikett / meddelande. - Error encoding URI into QR Code. Fel vid skapande av QR-kod från URI. @@ -2033,595 +1665,454 @@ Adress: %4 RecentRequestsTableModel - Date Datum - Label Etikett - Message Meddelande - Amount Mängd - (no label) (Ingen etikett) - (no message) - + (inget meddelande) + + + (no amount) + (ingen summa) SendCoinsDialog - - - Send Coins Skicka pengar - Coin Control Features - + Myntkontrollfunktioner - Inputs... - + Inmatningar... - automatically selected - + automatiskt vald - Insufficient funds! - + Otillräckliga medel! - Quantity: - + Kvantitet: - Bytes: - + Antal Byte: - Amount: Belopp: - Priority: - + Prioritet: - Fee: - + Avgift: - Low Output: - + Låg utmatning: - After Fee: - + Efter avgift: - Change: - + Växel: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - + Om denna är aktiverad men växeladressen är tom eller felaktig kommer växeln att sändas till en nygenererad adress. - Custom change address - + Specialväxeladress - Send to multiple recipients at once Skicka till flera mottagare samtidigt - Add &Recipient Lägg till &mottagare - Clear all fields of the form. - + Rensa alla formulärfälten - Clear &All Rensa &alla - Balance: Balans: - Confirm the send action Bekräfta sändordern - S&end &Skicka - Confirm send coins Bekräfta skickade mynt - - - - %1 to %2 %1 till %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Ange en Dogecoin-adress (t.ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - + Kopiera kvantitet - Copy amount Kopiera belopp - Copy fee - + Kopiera avgift - Copy after fee - + Kopiera efter avgift - Copy bytes - + Kopiera byte - Copy priority - + Kopiera prioritet - Copy low output - + Kopiera låg utmatning - Copy change - + Kopiera växel - Total Amount %1 (= %2) - + Totalt %1 (= %2) - or - + eller - The recipient address is not valid, please recheck. Mottagarens adress är inte giltig, vänligen kontrollera igen. - The amount to pay must be larger than 0. Det betalade beloppet måste vara större än 0. - The amount exceeds your balance. Värdet överstiger ditt saldo. - The total exceeds your balance when the %1 transaction fee is included. Totalvärdet överstiger ditt saldo när transaktionsavgiften %1 är pålagd. - Duplicate address found, can only send to each address once per send operation. Dubblett av adress funnen, kan bara skicka till varje adress en gång per sändning. - Transaction creation failed! - + Transaktionen gick inte att skapa! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - + Transaktionen avslogs! Detta kan hända om några av mynten i plånboken redan spenderats, t.ex om du använt en kopia av wallet.dat och mynt spenderades i kopian men inte markerats som spenderade här. - Warning: Invalid Dogecoin address - + Varning: Felaktig Dogecoinadress - (no label) (Ingen etikett) - Warning: Unknown change address - + Varning: Okänd växeladress - Are you sure you want to send? Är du säker på att du vill skicka? - added as transaction fee - + adderad som transaktionsavgift - Payment request expired - + Tiden för betalningsbegäran gick ut - Invalid payment address %1 - + Felaktig betalningsadress %1 SendCoinsEntry - - - A&mount: &Belopp: - Pay &To: Betala &Till: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Adressen som betalningen skall skickas till (t.ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Ange ett namn för den här adressen och lägg till den i din adressbok - &Label: &Etikett: - Choose previously used address Välj tidigare använda adresser - This is a normal payment. - + Detta är en normal betalning. - Alt+A Alt+A - Paste address from clipboard Klistra in adress från Urklipp - Alt+P Alt+P - - - Remove this entry - + Radera denna post - Message: Meddelande: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - + Detta är en verifierad betalningsbegäran. - Enter a label for this address to add it to the list of used addresses - + Ange en etikett för denna adress att adderas till listan över använda adresser + + + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + Ett meddelande som bifogades bitcoin-URI, vilket lagras med transaktionen som referens. NB: Meddelandet kommer inte att sändas över Dogecoinnätverket. - This is an unverified payment request. - + Detta är en overifierad betalningsbegäran. - - Pay To: - + Betala Till: - - Memo: - - - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Ange en Dogecoin-adress (t.ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + PM: ShutdownWindow - Dogecoin Core is shutting down... - + Dogecoin Core stängs av... - Do not shut down the computer until this window disappears. - + Stäng inte av datorn förrän denna ruta försvinner. SignVerifyMessageDialog - Signatures - Sign / Verify a Message Signaturer - Signera / Verifiera ett Meddelande - &Sign Message &Signera Meddelande - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Du kan signera meddelanden med dina adresser för att bevisa att du äger dem. Var försiktig med vad du signerar eftersom phising-attacker kan försöka få dig att skriva över din identitet till någon annan. Signera bara väldetaljerade påståenden du kan gå i god för. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Adressen att signera meddelandet med (t.ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Välj tidigare använda adresser - - Alt+A Alt+A - Paste address from clipboard Klistra in adress från Urklipp - Alt+P Alt+P - Enter the message you want to sign here Skriv in meddelandet du vill signera här - Signature Signatur - Copy the current signature to the system clipboard Kopiera signaturen till systemets Urklipp - Sign the message to prove you own this Dogecoin address Signera meddelandet för att bevisa att du äger denna adress - Sign &Message Signera &Meddelande - Reset all sign message fields Rensa alla fält - - Clear &All Rensa &alla - &Verify Message &Verifiera Meddelande - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Skriv in din adress, meddelande (se till att du kopierar radbrytningar, mellanslag, tabbar, osv. exakt) och signatur nedan för att verifiera meddelandet. Var noga med att inte läsa in mer i signaturen än vad som finns i det signerade meddelandet, för att undvika att luras av en man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Adressen som meddelandet var signerat med (t.ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Verifiera meddelandet för att vara säker på att den var signerad med den angivna Dogecoin-adressen - Verify &Message Verifiera &Meddelande - Reset all verify message fields Rensa alla fält - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Ange en Dogecoin-adress (t.ex. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Klicka "Signera Meddelande" för att få en signatur - - Enter Dogecoin signature - Ange Dogecoin-signatur - - - - The entered address is invalid. Den angivna adressen är ogiltig. - - - - Please check the address and try again. Vad god kontrollera adressen och försök igen. - - The entered address does not refer to a key. Den angivna adressen refererar inte till en nyckel. - Wallet unlock was cancelled. Upplåsningen av plånboken avbröts. - Private key for the entered address is not available. Privata nyckel för den angivna adressen är inte tillgänglig. - Message signing failed. Signeringen av meddelandet misslyckades. - Message signed. Meddelandet är signerat. - The signature could not be decoded. Signaturen kunde inte avkodas. - - Please check the signature and try again. Kontrollera signaturen och försök igen. - The signature did not match the message digest. Signaturen matchade inte meddelandesammanfattningen. - Message verification failed. Meddelandet verifikation misslyckades. - Message verified. Meddelandet är verifierad. @@ -2629,17 +2120,14 @@ Adress: %4 SplashScreen - Dogecoin Core Dogecoin Kärna - The Dogecoin Core developers - + Dogecoin Core-utvecklarna - [testnet] [testnet] @@ -2647,7 +2135,6 @@ Adress: %4 TrafficGraphWidget - KB/s KB/s @@ -2655,179 +2142,138 @@ Adress: %4 TransactionDesc - Open until %1 Öppet till %1 - + conflicted + konflikterade + + %1/offline %1/nerkopplad - %1/unconfirmed %1/obekräftade - %1 confirmations %1 bekräftelser - Status Status - , broadcast through %n node(s) , sänd genom %n nod, sänd genom %n noder - Date Datum - Source Källa - Generated Genererad - - From Från - - - To Till - - own address egen adress - label etikett - - - - - Credit Kredit - matures in %n more block(s) mognar om %n blockmognar om %n fler block - not accepted inte accepterad - - - - Debit Belasta - Transaction fee Transaktionsavgift - Net amount Nettobelopp - - Message Meddelande - Comment Kommentar - Transaction ID Transaktions-ID - Merchant - + Handlare - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + Genererade mynt måste vänta %1 block innan de kan användas. När du skapade detta block sändes det till nätverket för att läggas till i blockkedjan. Om blocket inte kommer in i kedjan kommer dess status att ändras till "accepteras inte" och kommer ej att gå att spendera. Detta kan ibland hända om en annan nod genererar ett block nästan samtidigt som dig. - Debug information Debug information - Transaction Transaktion - Inputs Inputs - Amount Mängd - true sant - false falsk - , has not been successfully broadcast yet , har inte lyckats skickas ännu - Open for %n more block(s) Öppet för %n mer blockÖppet för %n mer block - unknown okänd @@ -2835,12 +2281,10 @@ Adress: %4 TransactionDescDialog - Transaction details Transaktionsdetaljer - This pane shows a detailed description of the transaction Den här panelen visar en detaljerad beskrivning av transaktionen @@ -2848,118 +2292,102 @@ Adress: %4 TransactionTableModel - Date Datum - Type Typ - Address Adress - Amount Mängd - Immature (%1 confirmations, will be available after %2) - + Omogen (%1 konfirmeringar, blir tillgänglig efter %2) - Open for %n more block(s) Öppet för %n mer blockÖppet för %n mer block - Open until %1 Öppet till %1 - - Offline (%1 confirmations) - Offline (%1 bekräftelser) - - - - Unconfirmed (%1 of %2 confirmations) - Obekräftad (%1 av %2 bekräftelser) - - - - Confirmed (%1 confirmations) Bekräftad (%1 bekräftelser) - This block was not received by any other nodes and will probably not be accepted! Det här blocket togs inte emot av några andra noder och kommer antagligen inte att bli godkänt. - Generated but not accepted Genererad men inte accepterad - + Offline + Nerkopplad + + + Unconfirmed + Okonfirmerade + + + Confirming (%1 of %2 recommended confirmations) + Konfirmerar (%1 of %2 konfirmeringar) + + + Conflicted + Konflikterade + + Received with Mottagen med - Received from Mottaget från - Sent to Skickad till - Payment to yourself Betalning till dig själv - Mined Genererade - (n/a) (n/a) - Transaction status. Hover over this field to show number of confirmations. Transaktionsstatus. Håll muspekaren över för att se antal bekräftelser. - Date and time that the transaction was received. Tidpunkt då transaktionen mottogs. - Type of transaction. Transaktionstyp. - Destination address of transaction. Transaktionens destinationsadress. - Amount removed from or added to balance. Belopp draget eller tillagt till balans. @@ -2967,178 +2395,142 @@ Adress: %4 TransactionView - - All Alla - Today Idag - This week Denna vecka - This month Denna månad - Last month Föregående månad - This year Det här året - Range... Period... - Received with Mottagen med - Sent to Skickad till - To yourself Till dig själv - Mined Genererade - Other Övriga - Enter address or label to search Sök efter adress eller etikett - Min amount Minsta mängd - Copy address Kopiera adress - Copy label Kopiera etikett - Copy amount Kopiera belopp - Copy transaction ID Kopiera transaktions ID - Edit label Ändra etikett - Show transaction details Visa transaktionsdetaljer - Export Transaction History - + Exportera Transaktionshistoriken - Exporting Failed - + Exporteringen misslyckades - There was an error trying to save the transaction history to %1. - + Det inträffade ett fel när transaktionshistoriken skulle sparas till %1. - Exporting Successful - + Exporteringen lyckades - The transaction history was successfully saved to %1. - + Transaktionshistoriken sparades utan problem till %1. - Comma separated file (*.csv) Kommaseparerad fil (*. csv) - Confirmed Bekräftad - Date Datum - Type Typ - Label Etikett - Address Adress - Amount Mängd - ID ID - Range: Intervall: - to till @@ -3146,15 +2538,13 @@ Adress: %4 WalletFrame - No wallet has been loaded. - + Ingen plånbok har laddats in. WalletModel - Send Coins Skicka pengar @@ -3162,154 +2552,125 @@ Adress: %4 WalletView - &Export &Exportera - Export the data in the current tab to a file Exportera informationen i den nuvarande fliken till en fil - Backup Wallet Säkerhetskopiera Plånbok - Wallet Data (*.dat) Plånboks-data (*.dat) - Backup Failed Säkerhetskopiering misslyckades - There was an error trying to save the wallet data to %1. - + Det inträffade ett fel när plånbokens data skulle sparas till %1. - The wallet data was successfully saved to %1. - + Plånbokens data sparades utan problem till %1. - Backup Successful Säkerhetskopiering lyckades - dogecoin-core + bitcoin-core - Usage: Användning: - List commands Lista kommandon - Get help for a command Få hjälp med ett kommando - Options: Inställningar: - - Specify configuration file (default: dogecoin.conf) - Ange konfigurationsfil (förvalt: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Ange konfigurationsfil (förvalt: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Ange pid fil (förvalt: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Ange pid fil (förvalt: bitcoind.pid) - Specify data directory Ange katalog för data - - Set database cache size in megabytes (default: 25) - Sätt databas cache storleken i megabyte (förvalt: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Lyssna efter anslutningar på <port> (förvalt: 8333 eller testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Lyssna efter anslutningar på <port> (förvalt: 22556 eller testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Ha som mest <n> anslutningar till andra klienter (förvalt: 125) - Connect to a node to retrieve peer addresses, and disconnect Anslut till en nod för att hämta klientadresser, och koppla från - Specify your own public address Ange din egen publika adress - Threshold for disconnecting misbehaving peers (default: 100) Tröskelvärde för att koppla ifrån klienter som missköter sig (förvalt: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Antal sekunder att hindra klienter som missköter sig från att ansluta (förvalt: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s Ett fel uppstod vid upprättandet av RPC port %u för att lyssna på IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Lyssna på JSON-RPC-anslutningar på <port> (förvalt: 22555 eller testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Lyssna på JSON-RPC-anslutningar på <port> (förvalt: 8332 eller testnet: 18332) - Accept command line and JSON-RPC commands Tillåt kommandon från kommandotolken och JSON-RPC-kommandon - + Dogecoin Core RPC client version + Dogecoin Core RPC-klient version + + Run in the background as a daemon and accept commands Kör i bakgrunden som tjänst och acceptera kommandon - Use the test network Använd testnätverket - Accept connections from outside (default: 1 if no -proxy or -connect) Acceptera anslutningar utifrån (förvalt: 1 om ingen -proxy eller -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3320,7 +2681,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, du behöver sätta ett rpclösensord i konfigurationsfilen: %s Det är rekommenderat att använda följande slumpade lösenord: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (du behöver inte komma ihåg lösenordet) Användarnamnet och lösenordet FÅR INTE bara detsamma. @@ -3330,707 +2691,686 @@ till exempel: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@fo - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - + Accepterade krypteringsalgoritmer (förvalt: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s Ett fel uppstod vid upprättandet av RPC port %u för att lyssna på IPv6, faller tillbaka till IPV4: %s - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Bind till given adress och lyssna alltid på den. Använd [värd]:port notation för IPv6 - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - Kan inte låsa data-mappen %s. Dogecoin körs förmodligen redan. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + Antalsbegränsa kontinuerligt fria transaktioner till <n>*1000 bytes per minut (förvalt:15) - 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. Ange regressiontestläge, som använder en speciell kedja i vilka block kan lösas omedelbart. Detta är avsett för regressiontestnings verktyg och applikationsutveckling. - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - + Ange regressiontestläge, som använder en speciell kedja i vilka block kan lösas omedelbart. + + + Error: Listening for incoming connections failed (listen returned error %d) + Fel: Avlyssning av inkommande anslutningar misslyckades (Avlyssningen returnerade felkod %d) - 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 plånboken redan spenderats, t.ex om du använt en kopia av wallet.dat och mynt spenderades i kopian men inte markerats som spenderas 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: Denna transaktion kräver en transaktionsavgift på minst %s på grund av dess storlek, komplexitet, eller användning av senast mottagna dogecoins. + Fel: Denna transaktion kräver en transaktionsavgift på minst %s på grund av dess storlek, komplexitet, eller användning av senast mottagna bitcoins! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Exekvera kommando när en plånbokstransaktion ändras (%s i cmd är ersatt av TxID) - + Fees smaller than this are considered zero fee (for transaction creation) (default: + Avgifter mindre än detta betraktas som nollavgift (för transaktionsskapande) (förvalt: + + + Flush database activity from memory pool to disk log every <n> megabytes (default: 100) + Töm databasens minnespool till disk varje <n> megabytes (förvalt: 100) + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + Hur grundlig blockverifikationen vid -checkblocks är (0-4, förvalt: 3) + + + In this mode -genproclimit controls how many blocks are generated immediately. + I denna mode kontrollerar -genproclimit hur många block som genereras på en gång. + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Ange antalet skriptkontrolltrådar (%u till %d, 0 = auto, <0 = lämna så många kärnor lediga, förval: %d) + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + Sätt processorbegränsning när blockgenereringen är på (-1 = obegränsad, förvalt: -1) + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Detta är ett förhands testbygge - använd på egen risk - använd inte för mining eller handels applikationer - - Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) - + Unable to bind to %s on this computer. Dogecoin Core is probably already running. + Det går inte att binda till %s på den här datorn. Dogecoin Core är förmodligen redan igång. + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) + Använd separat SOCKS5 proxy för att nå kollegor via dolda tjänster i Tor (default: -proxy) - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Varning: -paytxfee är satt väldigt hög! Detta är avgiften du kommer betala för varje transaktion. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Varning: Vänligen kolla så att din dators datum och tid är korrekt! Om din klocka går fel kommer Dogecoin inte fungera korrekt. - Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Varning: Nätverket verkar inte vara helt överens! Några miners verkar ha 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 helt överens med våra peers! Du kan behöva uppgradera, eller andra noder kan behöva uppgradera. - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Varning: fel vid läsning av wallet.dat! Alla nycklar lästes korrekt, men transaktionsdatan eller adressbokens poster kanske saknas eller är felaktiga. - 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 korrupt, datan har räddats! Den ursprungliga wallet.dat har sparas som wallet.{timestamp}.bak i %s; om ditt saldo eller transaktioner är felaktiga ska du återställa från en säkerhetskopia. - - <category> can be: - + (default: 1) + (förvalt: 1) + + + (default: wallet.dat) + (förvalt: wallet.dat) + + + <category> can be: + <category> Kan vara: - Attempt to recover private keys from a corrupt wallet.dat Försök att rädda de privata nycklarna från en korrupt wallet.dat - Dogecoin Core Daemon - + Dogecoin Core tjänsten - - Dogecoin Core RPC client version - Dogecoin RPC-klient version - - - Block creation options: Block skapande inställningar: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Töm listan över plånbokstransaktioner (diagnostikverktyg; medför -rescan) + + Connect only to the specified node(s) Koppla enbart upp till den/de specificerade noden/noder - Connect through SOCKS proxy - + Anslut genom SOCKS-proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + Anslut till JSON-RPC på <port> (förval: 8332 eller testnet: 18332) + + + Connection options: + Anslutningsoptioner: - Corrupted block database detected Korrupt blockdatabas har upptäckts - + Debugging/Testing options: + Avlusnings/Testnings optioner: + + + Disable safemode, override a real safe mode event (default: 0) + Avaktivera säkert läge. Åsidosätt en riktigt säkert läge händelse (förvalt: 0) + + Discover own IP address (default: 1 when listening and no -externalip) Hitta egen IP-adress (förvalt: 1 under lyssning och utan -externalip) - Do not load the wallet and disable wallet RPC calls - + Ladda inte plånboken och stäng av RPC-anrop till plånboken - Do you want to rebuild the block database now? Vill du bygga om blockdatabasen nu? - Error initializing block database Fel vid initiering av blockdatabasen - Error initializing wallet database environment %s! Fel vid initiering av plånbokens databasmiljö %s! - Error loading block database Fel vid inläsning av blockdatabasen - Error opening block database Fel vid öppning av blockdatabasen - Error: Disk space is low! Fel: Hårddiskutrymme är lågt! - Error: Wallet locked, unable to create transaction! Fel: Plånboken är låst, det går ej att skapa en transaktion! - Error: system error: Fel: systemfel: - Failed to listen on any port. Use -listen=0 if you want this. Misslyckades att lyssna på någon port. Använd -listen=0 om du vill detta. - Failed to read block info Misslyckades att läsa blockinformation - Failed to read block Misslyckades att läsa blocket - Failed to sync block index Misslyckades att synkronisera blockindex - Failed to write block index Misslyckades att skriva blockindex - Failed to write block info Misslyckades att skriva blockinformation - Failed to write block Misslyckades att skriva blocket - Failed to write file info Misslyckades att skriva filinformation - Failed to write to coin database Misslyckades att skriva till myntdatabas - Failed to write transaction index Misslyckades att skriva transaktionsindex - Failed to write undo data Misslyckades att skriva ångradata - Fee per kB to add to transactions you send Avgift per kB att lägga till på transaktioner du skickar - + Fees smaller than this are considered zero fee (for relaying) (default: + Avgifter mindre än detta betraktas som nollavgift (för vidarebefodran) (förvalt: + + Find peers using DNS lookup (default: 1 unless -connect) Sök efter klienter med DNS sökningen (förvalt: 1 om inte -connect) - + Force safe mode (default: 0) + Tvångskör i säkert läge (förvalt: 0) + + Generate coins (default: 0) Generera mynt (förvalt: 0) - How many blocks to check at startup (default: 288, 0 = all) Hur många block att kontrollera vid uppstart (standardvärde: 288, 0 = alla) - - How thorough the block verification is (0-4, default: 3) - Hur grundlig blockverifikationen är (0-4, förvalt: 3) - - - If <category> is not supplied, output all debugging information. - + Om <category> inte anges, skrivs all avlusningsinformation ut. + + + Importing... + Importerar... - Incorrect or no genesis block found. Wrong datadir for network? Felaktig eller inget genesisblock hittades. Fel datadir för nätverket? - Invalid -onion address: '%s' Ogiltig -onion adress:'%s' - Not enough file descriptors available. Inte tillräckligt med filbeskrivningar tillgängliga. - Prepend debug output with timestamp (default: 1) - + Skriv ut tidsstämpel i avlusningsinformationen (förvalt: 1) - RPC client options: - + RPC klientoptioner: - Rebuild block chain index from current blk000??.dat files Återskapa blockkedjans index från nuvarande blk000??.dat filer - Select SOCKS version for -proxy (4 or 5, default: 5) - + Välj SOCKS-version att använda för -proxy (4 eller 5, förvalt: 5) - - Send command to Dogecoin Core server - Skicka commando till Dogecoinserver + Set database cache size in megabytes (%d to %d, default: %d) + Sätt databasens cachestorlek i megabyte (%d till %d, förvalt: %d) - Set maximum block size in bytes (default: %d) - + Sätt maximal blockstorlek i byte (förvalt: %d) - Set the number of threads to service RPC calls (default: 4) Ange antalet trådar för att hantera RPC anrop (standard: 4) - Specify wallet file (within data directory) Ange plånboksfil (inom datakatalogen) - - Start Dogecoin Core server - Starta Dogecoinserver + Spend unconfirmed change when sending transactions (default: 1) + Spendera okonfirmerad växel när transaktioner sänds (förvalt: 1) - This is intended for regression testing tools and app development. - + Detta är avsett för regressionstestningsverktyg och applikationsutveckling. - - Usage (deprecated, use dogecoin-cli): - + Usage (deprecated, use bitcoin-cli): + Användning (föråldrat, använd bitcoin-cli): - Verifying blocks... Verifierar block... - Verifying wallet... Verifierar plånboken... - Wait for RPC server to start - + Vänta på att RPC.servern startar - Wallet %s resides outside data directory %s Plånbok %s ligger utanför datakatalogen %s - Wallet options: - + Plånboksinställningar: - Warning: Deprecated argument -debugnet ignored, use -debug=net - + Varning: Föråldrat argument -debugnet ignorerad, använd -debug=net - You need to rebuild the database using -reindex to change -txindex Du måste återskapa databasen med -reindex för att ändra -txindex - Imports blocks from external blk000??.dat file Importerar block från extern blk000??.dat fil - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + Kan inte låsa data-mappen %s. Dogecoin Core körs förmodligen redan. + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Exekvera kommando när ett relevant meddelande är mottagen eller när vi ser en väldigt lång förgrening (%s i cmd är utbytt med ett meddelande) - Output debugging information (default: 0, supplying <category> is optional) - + Skriv ut avlusningsinformation (förvalt: 0, att ange <category> är frivilligt) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + Sätt den maximala storleken av hög-prioriterade/låg-avgifts transaktioner i byte (förvalt: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Ange antalet skriptkontrolltrådar (upp till 16, 0 = auto, <0 = lämna så många kärnor lediga, förval: 0) - - - Information Information - Invalid amount for -minrelaytxfee=<amount>: '%s' Ogiltigt belopp för -minrelaytxfee=<belopp>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' Ogiltigt belopp för -mintxfee=<belopp>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + Begränsa signaturcachestorleken till <n> poster (förvalt: 50000) + + + Log transaction priority and fee per kB when mining blocks (default: 0) + Logga transaktionsprioritet och avgift per kB vid blockbrytning (förvalt: 0) + + Maintain a full transaction index (default: 0) Upprätthåll ett fullständigt transaktionsindex (förval: 0) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) Maximal buffert för mottagning per anslutning, <n>*1000 byte (förvalt: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) Maximal buffert för sändning per anslutning, <n>*1000 byte (förvalt: 5000) - Only accept block chain matching built-in checkpoints (default: 1) Acceptera bara blockkedjans matchande inbyggda kontrollpunkter (förvalt: 1) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) Anslut enbart till noder i nätverket <net> (IPv4, IPv6 eller Tor) - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL-inställningar: (se Bitcoin-wikin för SSL-setup instruktioner) + Print block on startup, if found in block index + Skriv ut block vid uppstart, om det hittas i blockindexet + + + Print block tree on startup (default: 0) + Skriv ut blockträdet vid uppstart (förvalt: 0) + + + RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + RPC SSL optioner: (se Bitcoin Wiki för SSL inställningsinstruktioner) + + + RPC server options: + RPC serveroptioner: + + + Randomly drop 1 of every <n> network messages + Slumpmässigt tappa 1 av varje <n> nåtverksmeddelande + + + Randomly fuzz 1 of every <n> network messages + Slupmässigt brus 1 gång varje <n> nätverksmeddelande + + + Run a thread to flush wallet periodically (default: 1) + Kör en tråd för att tömma plånboken periodiskt (förvalt: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL-inställningar: (se Dogecoin-wikin för SSL-setup instruktioner) + + + Send command to Dogecoin Core + Sänd kommando till Dogecoin Core - Send trace/debug info to console instead of debug.log file Skicka trace-/debuginformation till terminalen istället för till debug.log - Set minimum block size in bytes (default: 0) Sätt minsta blockstorlek i byte (förvalt: 0) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + Sätt DB_PRIVATE flaggan i plånbokens databasmiljö (förvalt: 1) + + + Show all debugging options (usage: --help -help-debug) + Visa alla avlusningsoptioner (använd: --help -help-debug) + + + Show benchmark information (default: 0) + Visa riktmärknings information (förvalt: 0) + + Shrink debug.log file on client startup (default: 1 when no -debug) Krymp debug.log filen vid klient start (förvalt: 1 vid ingen -debug) - Signing transaction failed Signering av transaktion misslyckades - Specify connection timeout in milliseconds (default: 5000) Ange timeout för uppkoppling i millisekunder (förvalt: 5000) - + Start Dogecoin Core Daemon + Starta Dogecoin Core tjänsten + + System error: Systemfel: - Transaction amount too small Transaktions belopp för liten - Transaction amounts must be positive Transaktionens belopp måste vara positiva - Transaction too large Transaktionen är för stor - Use UPnP to map the listening port (default: 0) Använd UPnP för att mappa den lyssnande porten (förvalt: 0) - Use UPnP to map the listening port (default: 1 when listening) Använd UPnP för att mappa den lyssnande porten (förvalt: 1 under lyssning) - Username for JSON-RPC connections Användarnamn för JSON-RPC-anslutningar - Warning Varning - Warning: This version is obsolete, upgrade required! Varning: denna version är föråldrad, uppgradering krävs! - + Zapping all transactions from wallet... + Töm plånboken på alla transaktioner... + + + on startup + under uppstarten + + version version - wallet.dat corrupt, salvage failed wallet.dat korrupt, räddning misslyckades - Password for JSON-RPC connections Lösenord för JSON-RPC-anslutningar - Allow JSON-RPC connections from specified IP address Tillåt JSON-RPC-anslutningar från specifika IP-adresser - Send commands to node running on <ip> (default: 127.0.0.1) Skicka kommandon till klient på <ip> (förvalt: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) Exekvera kommando när det bästa blocket ändras (%s i cmd är utbytt av blockhash) - Upgrade wallet to latest format Uppgradera plånboken till senaste formatet - Set key pool size to <n> (default: 100) Sätt storleken på nyckelpoolen till <n> (förvalt: 100) - Rescan the block chain for missing wallet transactions Sök i blockkedjan efter saknade plånboks transaktioner - Use OpenSSL (https) for JSON-RPC connections Använd OpenSSL (https) för JSON-RPC-anslutningar - Server certificate file (default: server.cert) Serverns certifikatfil (förvalt: server.cert) - Server private key (default: server.pem) Serverns privata nyckel (förvalt: server.pem) - This help message Det här hjälp medelandet - Unable to bind to %s on this computer (bind returned error %d, %s) Det går inte att binda till %s på den här datorn (bind returnerade felmeddelande %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Tillåt DNS-sökningar för -addnode, -seednode och -connect - Loading addresses... Laddar adresser... - Error loading wallet.dat: Wallet corrupted Fel vid inläsningen av wallet.dat: Plånboken är skadad - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Fel vid inläsningen av wallet.dat: Plånboken kräver en senare version av Dogecoin - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Plånboken behöver skrivas om: Starta om Dogecoin för att färdigställa - Error loading wallet.dat Fel vid inläsning av plånboksfilen wallet.dat - Invalid -proxy address: '%s' Ogiltig -proxy adress: '%s' - Unknown network specified in -onlynet: '%s' Okänt nätverk som anges i -onlynet: '%s' - Unknown -socks proxy version requested: %i Okänd -socks proxy version begärd: %i - Cannot resolve -bind address: '%s' Kan inte matcha -bind adress: '%s' - Cannot resolve -externalip address: '%s' Kan inte matcha -externalip adress: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Ogiltigt belopp för -paytxfee=<belopp>:'%s' - Invalid amount Ogiltig mängd - Insufficient funds - Otillräckligt med dogecoins + Otillräckligt med bitcoins - Loading block index... Laddar blockindex... - Add a node to connect to and attempt to keep the connection open Lägg till en nod att koppla upp mot och försök att hålla anslutningen öppen - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Det går inte att binda till %s på den här datorn. Dogecoin är förmodligen redan igång. - - - Loading wallet... Laddar plånbok... - Cannot downgrade wallet Kan inte nedgradera plånboken - Cannot write default address Kan inte skriva standardadress - Rescanning... Söker igen... - Done loading Klar med laddning - To use the %s option Att använda %s alternativet - Error Fel - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4039,4 +3379,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Om filen inte existerar, skapa den med filrättigheten endast läsbar för ägaren. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_th_TH.ts b/src/qt/locale/bitcoin_th_TH.ts index 97b6f5ad0..32c60e4ef 100644 --- a/src/qt/locale/bitcoin_th_TH.ts +++ b/src/qt/locale/bitcoin_th_TH.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label ดับเบิลคลิก เพื่อแก้ไขที่อยู่ หรือชื่อ - Create a new address สร้างที่อยู่ใหม่ - &New - Copy the currently selected address to the system clipboard คัดลอกที่อยู่ที่ถูกเลือกไปยัง คลิปบอร์ดของระบบ - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete ลบ - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label ชื่อ - Address ที่อยู่ - (no label) (ไม่มีชื่อ) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase ใส่รหัสผ่าน - New passphrase รหัสผา่นใหม่ - Repeat new passphrase กรุณากรอกรหัสผ่านใหม่อีกครั้งหนึ่ง - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Encrypt wallet กระเป๋าสตางค์ที่เข้ารหัส - This operation needs your wallet passphrase to unlock the wallet. - Unlock wallet เปิดกระเป๋าสตางค์ - This operation needs your wallet passphrase to decrypt the wallet. - Decrypt wallet ถอดรหัสกระเป๋าสตางค์ - Change passphrase เปลี่ยนรหัสผ่าน - Enter the old and new passphrase to the wallet. กรอกรหัสผ่านเก่าและรหัสผ่านใหม่สำหรับกระเป๋าสตางค์ - Confirm wallet encryption ยืนยันการเข้ารหัสกระเป๋าสตางค์ - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted กระเป๋าสตางค์ถูกเข้ารหัสเรียบร้อยแล้ว - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed การเข้ารหัสกระเป๋าสตางค์ผิดพลาด - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - The supplied passphrases do not match. รหัสผ่านที่คุณกรอกไม่ตรงกัน - Wallet unlock failed - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... - &Overview - Node - Show general overview of wallet - &Transactions - Browse transaction history - E&xit - Quit application - - Show information about Dogecoin Core + Show information about Dogecoin - - About &Qt - Show information about Qt - &Options... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File - &Settings - &Help - Tabs toolbar - - [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address ที่อยู่ - Date - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (ไม่มีชื่อ) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,41 +1324,45 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1674,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1867,155 +1517,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + + + + Copy message + + + + Copy amount + + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address ที่อยู่ - Amount - Label ชื่อ - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2023,285 +1655,225 @@ Address: %4 RecentRequestsTableModel - Date - Label ชื่อ - Message - Amount - (no label) (ไม่มีชื่อ) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: - Confirm the send action - S&end - Confirm send coins - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (ไม่มีชื่อ) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2309,116 +1881,85 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard - Alt+P - - - Remove this entry - Message: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2426,192 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard - Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2619,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2637,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2645,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2825,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2838,118 +2282,102 @@ Address: %4 TransactionTableModel - Date - Type - Address ที่อยู่ - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2957,178 +2385,142 @@ Address: %4 TransactionView - - All - Today วันนี้ - This week - This month - Last month - This year - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - Confirmed - Date - Type - Label ชื่อ - Address ที่อยู่ - Amount - ID - Range: - to @@ -3136,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3144,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3152,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3310,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_tr.ts b/src/qt/locale/bitcoin_tr.ts index 6d7216608..3ef846221 100644 --- a/src/qt/locale/bitcoin_tr.ts +++ b/src/qt/locale/bitcoin_tr.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core Dogecoin Çekirdeği hakkında - <b>Dogecoin Core</b> version <b>Dogecoin Çekirdek</b> sürümü - This is experimental software. @@ -27,135 +24,113 @@ This product includes software developed by the OpenSSL Project for use in the O Bu ürün OpenSSL projesi tarafından OpenSSL araç takımı (http://www.openssl.org/) için geliştirilen yazılımlar, Eric Young (eay@cryptsoft.com) tarafından hazırlanmış şifreleme yazılımları ve Thomas Bernard tarafından programlanmış UPnP yazılımı içerir. - Copyright Telif hakkı - The Dogecoin Core developers Dogecoin Çekirdeği geliştiricileri + + (%1-bit) + (%1-bit) + AddressBookPage - Double-click to edit address or label Adresi ya da etiketi düzenlemek için çift tıklayınız - Create a new address Yeni bir adres oluştur - &New &Yeni - Copy the currently selected address to the system clipboard Şu anda seçili olan adresi sistem panosuna kopyala - &Copy &Kopyala - C&lose K&apat - &Copy Address Adresi &kopyala - Delete the currently selected address from the list Seçili adresi listeden sil - Export the data in the current tab to a file Güncel sekmedeki verileri bir dosyaya aktar - &Export &Dışa aktar - &Delete &Sil - Choose the address to send coins to Dogecoin yollanacak adresi seç - Choose the address to receive coins with - Dogeoin alınacak adresi seç + Dogecoin alınacak adresi seç - C&hoose S&eç - Very sending addresses Yollama adresleri - Much receiving addresses Alım adresleri - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Bunlar ödeme yapmak için kullanacağınız Dogeoin adreslerinizdir. Dogecoin yollamadan önce meblağı ve alıcı adresini daima kontrol ediniz. + Bunlar ödeme yapmak için kullanacağınız Dogecoin adreslerinizdir. Dogecoin yollamadan önce meblağı ve alıcı adresini daima kontrol ediniz. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Bunlar ödeme almak için kullanacağınız Dogecoin adreslerinizdir. Her muamele için yeni bir alım adresi kullanmanız tavsiye edilir. - Copy &Label &Etiketi kopyala - &Edit &Düzenle - Export Address List Adres listesini dışa aktar - Comma separated file (*.csv) Virgülle ayrılmış değerler dosyası (*.csv) - Exporting Failed Dışa aktarım başarısız oldu - There was an error trying to save the address list to %1. Adres listesinin %1 konumuna kaydedilmesi sırasında bir hata meydana geldi. @@ -163,17 +138,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Etiket - Address Adres - (no label) (boş etiket) @@ -181,140 +153,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog Parola diyaloğu - Enter passphrase Parolayı giriniz - New passphrase Yeni parola - Repeat new passphrase Yeni parolayı tekrarlayınız - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Cüzdanınız için yeni parolayı giriniz.<br/>Lütfen <b>10 ya da daha fazla rastgele karakter</b> veya <b>sekiz ya da daha fazla kelime</b> içeren bir parola seçiniz. - Encrypt wallet Cüzdanı şifrele - This operation needs your wallet passphrase to unlock the wallet. Bu işlem cüzdan kilidini açmak için cüzdan parolanızı gerektirir. - Unlock wallet Cüzdan kilidini aç - This operation needs your wallet passphrase to decrypt the wallet. Bu işlem, cüzdan şifresini açmak için cüzdan parolasını gerektirir. - Decrypt wallet Cüzdan şifresini aç - Change passphrase Parolayı değiştir - Enter the old and new passphrase to the wallet. Cüzdan için eski ve yeni parolaları giriniz. - Confirm wallet encryption Cüzdan şifrelenmesini teyit eder - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! Uyarı: Eğer cüzdanınızı şifrelerseniz ve parolanızı kaybederseniz, <b>TÜM BİTCOİNLERİNİZİ KAYBEDERSİNİZ</b>! - Are you sure you wish to encrypt your wallet? Cüzdanınızı şifrelemek istediğinizden emin misiniz? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. ÖNEMLİ: Önceden yapmış olduğunuz cüzdan dosyası yedeklemelerinin yeni oluşturulan şifrelenmiş cüzdan dosyası ile değiştirilmeleri gerekir. Güvenlik nedenleriyle yeni, şifrelenmiş cüzdanı kullanmaya başladığınızda eski şifrelenmemiş cüzdan dosyaları işe yaramaz hale gelecektir. - - Warning: The Caps Lock key is on! Uyarı: Caps Lock tuşu faal durumda! - - Wallet encrypted Cüzdan şifrelendi - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Şifreleme işlemini tamamlamak için Dogecoin şimdi kapanacaktır. Cüzdanınızı şifrelemenin, Dogecoinlerinizin bilgisayara bulaşan kötücül bir yazılım tarafından çalınmaya karşı tamamen koruyamayacağını unutmayınız. - - - - Wallet encryption failed Cüzdan şifrelemesi başarısız oldu - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Dahili bir hata sebebiyle cüzdan şifrelemesi başarısız oldu. Cüzdanınız şifrelenmedi. - - The supplied passphrases do not match. Girilen parolalar birbirleriyle uyumlu değil. - Wallet unlock failed Cüzdan kilidinin açılması başarısız oldu - - - The passphrase entered for the wallet decryption was incorrect. Cüzdan şifresinin açılması için girilen parola yanlıştı. - Wallet decryption failed Cüzdan şifresinin açılması başarısız oldu - Wallet passphrase was successfully changed. Cüzdan parolası başarılı bir şekilde değiştirildi. @@ -322,352 +260,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... &Mesaj imzala... - Synchronizing with network... Şebeke ile senkronizasyon... - &Overview &Genel bakış - Node Düğüm - Show general overview of wallet Cüzdana genel bakışı göster - &Transactions &Muameleler - Browse transaction history Muamele tarihçesini tara - E&xit &Çık - Quit application Uygulamadan çık - - Show information about Dogecoin Core + Show information about Dogecoin Dogecoin hakkında bilgi göster - - About &Qt &Qt hakkında - Show information about Qt Qt hakkında bilgi görüntü - &Options... &Seçenekler... - &Encrypt Wallet... Cüzdanı &şifrele... - &Backup Wallet... Cüzdanı &yedekle... - &Change Passphrase... Parolayı &değiştir... - Very &sending addresses... &Gönderme adresleri... - Much &receiving addresses... &Alma adresleri... - Open &URI... &URI aç... - Importing blocks from disk... Bloklar diskten içe aktarılıyor... - Reindexing blocks on disk... Diskteki bloklar yeniden endeksleniyor... - Send coins to a Dogecoin address Bir Dogecoin adresine Dogecoin yolla - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Dogecoin seçeneklerinin yapılandırmasını değiştir - Backup wallet to another location Cüzdanı diğer bir konumda yedekle - Change the passphrase used for wallet encryption Cüzdan şifrelemesi için kullanılan parolayı değiştir - &Debug window &Hata ayıklama penceresi - Open debugging and diagnostic console Hata ayıklama ve teşhis penceresini aç - &Verify message... Mesaj &kontrol et... - Dogecoin Dogecoin - Wallet Cüzdan - &Send &Gönder - &Receive &Al - - &Show / Hide &Göster / Sakla - Show or hide the main Window Ana pencereyi görüntüle ya da sakla - Encrypt the private keys that belong to your wallet Cüzdanınızın özel anahtarlarını şifrele - Sign messages with your Dogecoin addresses to prove you own them Mesajları adreslerin size ait olduğunu ispatlamak için Dogecoin adresleri ile imzala - Verify messages to ensure they were signed with specified Dogecoin addresses Belirtilen Dogecoin adresleri ile imzalandıklarından emin olmak için mesajları kontrol et - &File &Dosya - &Settings &Ayarlar - &Help &Yardım - Tabs toolbar Sekme araç çubuğu - - [testnet] [testnet] - Dogecoin Core Dogecoin Çekirdeği - - Request payments (generates QR codes and dogecoin: URIs) - Ödeme talep et (QR kodu ve dogecoin URI'si oluşturur) + Request payments (generates QR codes and bitcoin: URIs) + Ödeme talep et (QR kodu ve bitcoin URI'si oluşturur) - - &About Dogecoin Core Dogecoin Çekirdeği &hakkında - Show the list of used sending addresses and labels Kullanılmış gönderme adresleri ve etiketlerin listesini göster - Show the list of used receiving addresses and labels Kullanılmış alım adresleri ve etiketlerin listesini göster - - Open a dogecoin: URI or payment request - Bir dogecoin: bağlantısı ya da ödeme talebi aç + Open a bitcoin: URI or payment request + Bir bitcoin: bağlantısı ya da ödeme talebi aç - &Command-line options &Komut satırı seçenekleri - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options Dogecoin komut satırı seçeneklerinin listesini elde etmek için Dogecoin Çekirdeği yardım mesajını göster - - Dogecoin client Dogecoin istemcisi - %n active connection(s) to Dogecoin network Dogecoin şebekesine %n faal bağlantıDogecoin şebekesine %n faal bağlantı - No block source available... Hiçbir blok kaynağı mevcut değil... - Processed %1 of %2 (estimated) blocks of transaction history. Muamele tarihçesinin toplam (tahmini) %2 blokundan %1 blok işlendi. - Processed %1 blocks of transaction history. Muamele tarihçesinde %1 blok işlendi. - %n hour(s) %n saat%n saat - %n day(s) %n gün%n gün - %n week(s) %n hafta%n hafta - + %1 and %2 + %1 ve %2 + + + %n year(s) + %n yıl%n yıl + + %1 behind %1 geride - 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. - Error Hata - Warning Uyarı - Information Bilgi - Up to date Güncel - Catching up... Aralık kapatılıyor... - Sent transaction Muamele yollandı - Incoming transaction Gelen muamele - Date: %1 Amount: %2 Type: %3 @@ -680,25 +552,21 @@ 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>locked</b> Cüzdan <b>şifrelenmiştir</b> ve şu anda <b>kilitlidir</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Ciddi bir hata oluştu. Dogecoin artık güvenli bir şekilde işlemeye devam edemez ve kapanacaktır. ClientModel - Network Alert Şebeke hakkında uyarı @@ -706,291 +574,230 @@ Adres: %4 CoinControlDialog - Coin Control Address Selection Para kontrolü adres seçimi - Quantity: Miktar: - Bytes: Bayt: - Amount: Meblağ: - Priority: Öncelik: - Fee: Ücret: - Low Output: Düşük çıktı: - After Fee: Ücretten sonra: - Change: Para üstü: - (un)select all tümünü seç(me) - Tree mode Ağaç kipi - List mode Liste kipi - Amount Meblağ - Address Adres - Date Tarih - Confirmations Doğrulamalar - Confirmed Doğrulandı - Priority Öncelik - Copy address Adresi kopyala - Copy label Etiketi kopyala - - Copy amount Meblağı kopyala - Copy transaction ID Muamele kimliğini kopyala - Lock unspent Harcanmamışı kilitle - Unlock unspent Harcanmamışın kilidini aç - Copy quantity Miktarı kopyala - Copy fee Ücreti kopyala - Copy after fee Ücretten sonrakini kopyala - Copy bytes Baytları kopyala - Copy priority Önceliği kopyala - Copy low output Düşük çıktıyı kopyala - Copy change Para üstünü kopyala - highest azami - higher daha yüksek - high yüksek - medium-high orta-yüksek - medium orta - low-medium düşük-orta - low düşük - lower daha düşük - lowest asgari - (%1 locked) (%1 kilitlendi) - none boş - Dust Toz - yes evet - no hayır - This label turns red, if the transaction size is greater than 1000 bytes. Eğer muamele boyutu 1000 bayttan büyükse bu etkiket kırmızı olur. - - This means a fee of at least %1 per kB is required. Bu, kB başına en az %1 ücret gerektiği anlamnına gelir. - Can vary +/- 1 byte per input. Girdi başına +/- 1 bayt değişebilir. - Transactions with higher priority are more likely to get included into a block. Yüksek öncelikli muamelelerin bir bloğa dahil olmaları daha olasıdır. - This label turns red, if the priority is smaller than "medium". Eğer öncelik "ortadan" düşükse bu etiket kırmızı olur. - This label turns red, if any recipient receives an amount smaller than %1. Eğer herhangi bir alıcı %1'den düşük bir meblağ alırsa bu etiket kırmızı olur. - - This means a fee of at least %1 is required. Bu, en az %1 tutarında bir ücret gerektiği anlamına gelir. - Amounts below 0.546 times the minimum relay fee are shown as dust. Asgari yönlendirme ücretinin 0.546 oranının altındaki meblağlar toz olarak gösterilir. - This label turns red, if the change is smaller than %1. Eğer para üstü %1'den düşükse bu etiket kırmızı olur. - - (no label) (boş etiket) - change from %1 (%2) %1 unsurundan para üstü (%2) - (change) (para üstü) @@ -998,67 +805,54 @@ Adres: %4 EditAddressDialog - Edit Address Adresi düzenle - &Label &Etiket - The label associated with this address list entry Bu adres listesi girdisi ile ilişkili etiket - The address associated with this address list entry. This can only be modified for sending addresses. Bu adres listesi girdisi ile ilişkili adres. Sadece gönderme adresleri için değiştirilebilir. - &Address &Adres - New receiving address Yeni alım adresi - New sending address Yeni gönderi adresi - Edit receiving address Alım adresini düzenle - Edit sending address Gönderi adresini düzenle - The entered address "%1" is already in the address book. Girilen "%1" adresi hâlihazırda adres defterinde mevcuttur. - The entered address "%1" is not a valid Dogecoin address. Girilen "%1" adresi geçerli bir Dogecoin adresi değildir. - Could not unlock wallet. Cüzdan kilidi açılamadı. - New key generation failed. Yeni anahtar oluşturulması başarısız oldu. @@ -1066,27 +860,22 @@ Adres: %4 FreespaceChecker - A new data directory will be created. Yeni bir veri klasörü oluşturulacaktır. - name isim - Directory already exists. Add %1 if you intend to create a new directory here. Klasör hâlihazırda mevcuttur. Burada yeni bir klasör oluşturmak istiyorsanız, %1 ilâve ediniz. - Path already exists, and is not a directory. Erişim yolu zaten mevcuttur ve klasör değildir. - Cannot create data directory here. Burada veri klasörü oluşturulamaz. @@ -1094,52 +883,46 @@ Adres: %4 HelpMessageDialog - Dogecoin Core - Command-line options Dogecoin Çekirdeği - Komut satırı seçenekleri - Dogecoin Core Dogecoin Çekirdeği - version sürüm - Usage: Kullanım: - command-line options komut satırı seçenekleri - UI options Kullanıcı arayüzü seçenekleri - Set language, for example "de_DE" (default: system locale) Lisan belirt, mesela "de_De" (varsayılan: sistem dili) - Start minimized Küçültülmüş olarak başlat - + Set SSL root certificates for payment request (default: -system-) + Ödeme talebi için SSL kök sertifikalarını belirle (varsayılan: -system-) + + Show splash screen on startup (default: 1) Başlatıldığında başlangıç ekranını göster (varsayılan: 1) - Choose data directory on startup (default: 0) Başlangıçta veri klasörü seç (varsayılan: 0) @@ -1147,57 +930,46 @@ Adres: %4 Intro - Welcome Hoş geldiniz - Welcome to Dogecoin Core. Dogecoin Çekirdeğine hoş geldiniz. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. Bu programı ilk kez başlattığınızdan dolayı Dogecoin Çekirdeğinin verilerini nereye saklayacağını seçebilirsiniz. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. Dogecoin çekirdeği Dogecoin blok zincirinin bir kopyasını indirip saklayacaktır. Asgari %1GB bouyutunda veri bu klasörde saklanacak ve zamanla bu boyut artacaktır. Cüzdan da bu klasörde saklanacaktır. - Use the default data directory Varsayılan veri klasörünü kullan - Use a custom data directory: Özel bir veri klasörü kullan: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. Hata: belirtilen "%1" veri klasörü oluşturulamaz. - Error Hata - GB of free space available GB boş alan mevcuttur - (of %1GB needed) (gereken boyut: %1GB) @@ -1205,27 +977,22 @@ Adres: %4 OpenURIDialog - Open URI URI aç - Open payment request from URI or file Dosyadan veya URI'den ödeme talebi aç - URI: URI: - Select payment request file Ödeme talebi dosyasını seç - Select payment request file to open Açılacak ödeme talebi dosyasını seç @@ -1233,243 +1000,206 @@ Adres: %4 OptionsDialog - Options Seçenekler - &Main &Esas ayarlar - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Muamelelerin hızlı işlenmesini garantilemeye yardım eden, seçime dayalı kB başı muamele ücreti. Muamelelerin çoğunluğunun boyutu 1 kB'dir. - Pay transaction &fee Muamele ücreti &öde - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Sistemde oturum açıldığında Dogecoin'i otomatik olarak başlat. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login Dogecoin'i sistem oturumuyla &başlat - Size of &database cache &Veritabanı tamponunun boyutu - - Set database cache size in megabytes (default: 25) - Veritabanı önbellek boyutunu megabayt olarak belirt (varsayılan: 25) - - - MB MB - Number of script &verification threads İş parçacıklarını &denetleme betiği sayısı - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Betik kontrolü iş parçacığı sayısını belirt (azami 16, 0 = otomatik, <0 = bu sayıda çekirdeği boş bırak, varsayılan: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. Dogecoin şebekesine bir SOCKS vekil sunucusu vasıtasıyla bağlan. - &Connect through SOCKS proxy (default proxy): SOCKS vekil sunucusuyla &bağlan (varsayılan vekil): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) Vekil sunucusunun IP adresi (mesela IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: Yukarıdaki seçeneklerin yerine geçen faal komut satırı seçenekleri: - Reset all client options to default. İstemcinin tüm seçeneklerini varsayılan değerlere geri al. - &Reset Options Seçenekleri Sıfı&rla - &Network &Şebeke - + (0 = auto, <0 = leave that many cores free) + (0 = otomatik, <0 = bu kadar çekirdeği kullanma) + + + W&allet + &Cüzdan + + + Expert + Gelişmiş + + + Enable coin &control features + Para &kontrolü özelliklerini etkinleştir + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Teyit edilmemiş para üstünü harcamayı devre dışı bırakırsanız, bir muamelenin para üstü bu muamele için en az bir teyit olana dek harcanamaz. Bu, aynı zamanda bakiyenizin nasıl hesaplandığını da etkiler. + + + &Spend unconfirmed change + Teyit edilmemiş para üstünü &harca + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Yönlendiricide Dogecoin istemci portlarını otomatik olarak açar. Bu, sadece yönlendiricinizin UPnP desteği bulunuyorsa ve etkinse çalışabilir. - Map port using &UPnP Portları &UPnP kullanarak haritala - Proxy &IP: Vekil &İP: - &Port: &Port: - Port of the proxy (e.g. 9050) Vekil sunucunun portu (mesela 9050) - SOCKS &Version: SOCKS &sürümü: - SOCKS version of the proxy (e.g. 5) Vekil sunucunun SOCKS sürümü (mesela 5) - &Window &Pencere - Show only a tray icon after minimizing the window. Küçültüldükten sonra sadece çekmece ikonu göster. - &Minimize to the tray instead of the taskbar İşlem çubuğu yerine sistem çekmecesine &küçült - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Pencere kapatıldığında uygulamadan çıkmak yerine uygulamayı küçültür. Bu seçenek etkinleştirildiğinde, uygulama sadece menüden çıkış seçildiğinde kapanacaktır. - M&inimize on close Kapatma sırasında k&üçült - &Display &Görünüm - User Interface &language: Kullanıcı arayüzü &lisanı: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Kullanıcı arayüzünün dili burada belirtilebilir. Bu ayar Dogecoin tekrar başlatıldığında etkinleşecektir. - &Unit to show amounts in: Meblağları göstermek için &birim: - Choose the default subdivision unit to show in the interface and when sending coins. Dogecoin gönderildiğinde arayüzde gösterilecek varsayılan alt birimi seçiniz. - Whether to show Dogecoin addresses in the transaction list or not. Muamele listesinde Dogecoin adreslerinin gösterilip gösterilmeyeceklerini belirler. - &Display addresses in transaction list Muamele listesinde adresleri &göster - Whether to show coin control features or not. Para kontrol özelliklerinin gösterilip gösterilmeyeceğini ayarlar. - - Display coin &control features (experts only) - Para &kontrol özelliklerini görüntüle (sadece uzman kullanıcılar için) - - - &OK &Tamam - &Cancel &İptal - default varsayılan - none boş - Confirm options reset Seçeneklerin sıfırlanmasını teyit et - - Client restart required to activate changes. Değişikliklerin uygulanması için istemcinin yeniden başlatılması lazımdır. - Client will be shutdown, do you want to proceed? İstemci kapanacaktır, devam etmek istiyor musunuz? - This change would require a client restart. Bu değişiklik istemcinin tekrar başlatılmasını gerektirir. - The supplied proxy address is invalid. Girilen vekil sunucu adresi geçersizdir. @@ -1477,69 +1207,54 @@ Adres: %4 OverviewPage - Form Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Görüntülenen veriler zaman aşımına uğramış olabilir. Bağlantı kurulduğunda cüzdanınız otomatik olarak şebeke ile eşleşir ancak bu işlem henüz tamamlanmamıştır. - - Unconfirmed: - Doğrulanmamış: - - - Wallet Cüzdan - - Confirmed: - Teyit edilmiş: + Available: + Mevcut: - Your current spendable balance Güncel harcanabilir bakiyeniz - + Pending: + Beklemede: + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Henüz teyit edilmemiş ve harcanabilir bakiyeye eklenmemiş muamelelerin toplamı - Immature: Olgunlaşmamış: - Mined balance that has not yet matured Oluşturulan bakiye henüz olgunlaşmamıştır - Total: Toplam: - Your current total balance Güncel toplam bakiyeniz - <b>Recent transactions</b> <b>Son muameleler</b> - - out of sync eşleşme dışı @@ -1547,93 +1262,70 @@ Adres: %4 PaymentServer - - URI handling URI yönetimi - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. URI okunamadı! Sebebi geçersiz bir Dogecoin adresi veya hatalı URI parametreleri olabilir. - Requested payment amount of %1 is too small (considered dust). Talep edilen %1 meblağında ödeme çok düşüktür (toz olarak kabul edilir). - - - - - - Payment request error Ödeme talebi hatası - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler Dogecoin başlatılamadı: tıkla-ve-öde yöneticisi - Net manager warning Şebeke yöneticisi uyarısı - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. Faal vekil sunucunuz, vekil vasıtasıyla ödeme talepleri için gereken SOCKS5'i desteklememektedir. - Payment request fetch URL is invalid: %1 Ödeme talebini alma URL'i geçersiz: %1 - Payment request file handling Ödeme talebi dosyası yönetimi - Payment request file can not be read or processed! This can be caused by an invalid payment request file. Ödeme talebi okunamaz ya da işlenemez! Bunun sebebi geçersiz bir ödeme talebi dosyası olabilir. - Unverified payment requests to custom payment scripts are unsupported. Özel ödeme betiklerine teyit edilmemiş ödeme talepleri desteklenmez. - Refund from %1 %1 öğesinden iade - Error communicating with %1: %2 %1 ile iletişimde hata: %2 - Payment request can not be parsed or processed! Ödeme talebi ayrıştırılamaz ya da işlenemez! - Bad response from server %1 %1 sunucusundan hatalı cevap - Payment acknowledged Ödeme teyit edildi - Network request error Şebeke talebi hatası @@ -1641,41 +1333,45 @@ Adres: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. Hata: belirtilen "%1" veri klasörü yoktur. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Hata: %1 yapılandırma dosyası ayrıştırılamadı. Sadece anahtar=değer dizimini kullanınız. + + Error: Invalid combination of -regtest and -testnet. Hata: -regtest ve -testnet'in geçersiz kombinasyonu. + + Dogecoin Core did't yet exit safely... + Bitcoin Çekirdeği henüz güvenli bir şekilde çıkış yapmamıştır... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Dogecoin adresi giriniz (mesela DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... Resmi k&aydet... - &Copy Image Resmi &kopyala - Save QR Code QR kodu kaydet - PNG Image (*.png) PNG resim (*.png) @@ -1683,192 +1379,146 @@ Adres: %4 RPCConsole - Client name İstemci ismi - - - - - - - - - - - N/A Mevcut değil - Client version İstemci sürümü - &Information &Malumat - Debug window Hata ayıklama penceresi - General Genel - Using OpenSSL version Kullanılan OpenSSL sürümü - Startup time Başlama zamanı - Network Şebeke - Name İsim - Number of connections Bağlantı sayısı - Block chain Blok zinciri - Current number of blocks Güncel blok sayısı - Estimated total blocks Tahmini toplam blok sayısı - Last block time Son blok zamanı - &Open &Aç - &Console &Konsol - &Network Traffic &Şebeke trafiği - &Clear &Temizle - Totals Toplamlar - In: İçeri: - Out: Dışarı: - Build date Derleme tarihi - Debug log file Hata ayıklama kütük dosyası - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Güncel veri klasöründen Dogecoin hata ayıklama kütük dosyasını açar. Büyük kütük dosyaları için bu birkaç saniye alabilir. - Clear console Konsolu temizle - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Dogecoin RPC konsoluna hoş geldiniz. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Tarihçede gezinmek için imleç tuşlarını kullanınız, <b>Ctrl-L</b> ile de ekranı temizleyebilirsiniz. - Type <b>help</b> for an overview of available commands. Mevcut komutların listesi için <b>help</b> yazınız. - %1 B %1 B - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 d - %1 h %1 s - %1 h %2 m %1 s %2 d @@ -1876,155 +1526,137 @@ Adres: %4 ReceiveCoinsDialog - &Amount: &Meblağ: - &Label: &Etiket: - &Message: Me&saj: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. Daha önce kullanılmış bir alım adresini kullan. Adresleri tekrar kullanmak güvenlik ve gizlilik sorunları doğurur. Bunu, daha önce yaptığınız bir talebi tekrar oluşturmak durumu dışında kullanmayınız. - R&euse an existing receiving address (not recommended) &Hâlihazırda bulunan bir alım adresini kullan (önerilmez) - - An optional label to associate with the new receiving address - Yeni alım adresi ile ilişkili, seçiminize dayalı etiket - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. Talep açıldığında gösterilecek, isteğinize dayalı, ödeme talebi ile ilişkilendirilecek bir mesaj. Not: Bu mesaj ödeme ile birlikte Dogecoin şebekesi üzerinden gönderilmeyecektir. - + An optional label to associate with the new receiving address. + Yeni alım adresi ile ilişkili, seçiminize dayalı etiket. + + Use this form to request payments. All fields are <b>optional</b>. Ödeme talep etmek için bu formu kullanın. Tüm alanlar <b>seçime dayalıdır</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. Seçiminize dayalı talep edilecek meblağ. Belli bir meblağ talep etmemek için bunu boş bırakın veya sıfır değerini kullanın. - Clear all fields of the form. Formdaki tüm alanları temizle. - Clear Temizle - + Requested payments history + Talep edilen ödemelerin tarihçesi + + &Request payment Ödeme &talep et - - Requested payments - Talep edilen ödemeler - - - Show the selected request (does the same as double clicking an entry) Seçilen talebi göster (bir unsura çift tıklamakla aynı anlama gelir) - Show Göster - Remove the selected entries from the list Seçilen unsurları listeden kaldır - Remove Kaldır + + Copy label + Etiketi kopyala + + + Copy message + Mesajı kopyala + + + Copy amount + Meblağı kopyala + ReceiveRequestDialog - QR Code QR Kodu - Copy &URI &URI'yi kopyala - Copy &Address &Adresi kopyala - &Save Image... Resmi ka&ydet... - Request payment to %1 %1 unsuruna ödeme talep et - Payment information Ödeme bilgisi - URI URI - Address Adres - Amount Meblağ - Label Etiket - Message Mesaj - Resulting URI too long, try to reduce the text for label / message. Sonuç URI çok uzun, etiket ya da mesaj metnini kısaltmayı deneyiniz. - Error encoding URI into QR Code. URI'nin QR koduna kodlanmasında hata oluştu. @@ -2032,285 +1664,225 @@ Adres: %4 RecentRequestsTableModel - Date Tarih - Label Etiket - Message Mesaj - Amount Meblağ - (no label) (boş etiket) - (no message) (boş mesaj) + + (no amount) + (boş meblağ) + SendCoinsDialog - - - Send Coins Dogecoin yolla - Coin Control Features Para kontrolü özellikleri - Inputs... Girdiler... - automatically selected otomatik seçilmiş - Insufficient funds! Yetersiz fon! - Quantity: Miktar: - Bytes: Bayt: - Amount: Meblağ: - Priority: Öncelik: - Fee: Ücret: - Low Output: Düşük çıktı: - After Fee: Ücretten sonra: - Change: Para üstü: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Bu etkinleştirildiyse fakat para üstü adresi boş ya da geçersizse para üstü yeni oluşturulan bir adrese gönderilecektir. - Custom change address Özel para üstü adresi - Send to multiple recipients at once Birçok alıcıya aynı anda gönder - Add &Recipient &Alıcı ekle - Clear all fields of the form. Formdaki tüm alanları temizle. - Clear &All Tümünü &temizle - Balance: Bakiye: - Confirm the send action Yollama etkinliğini teyit ediniz - S&end G&önder - Confirm send coins Gönderiyi teyit ediniz - - - - %1 to %2 %1 öğesinden %2 unsuruna - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Dogecoin adresi giriniz (mesela DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity Miktarı kopyala - Copy amount Meblağı kopyala - Copy fee Ücreti kopyala - Copy after fee Ücretten sonrakini kopyala - Copy bytes Baytları kopyala - Copy priority Önceliği kopyala - Copy low output Düşük çıktıyı kopyala - Copy change Para üstünü kopyala - Total Amount %1 (= %2) Toplam meblağ %1 (= %2) - or veya - The recipient address is not valid, please recheck. Alıcı adresi geçerli değildir, lütfen denetleyiniz. - The amount to pay must be larger than 0. Ödeyeceğiniz tutarın sıfırdan yüksek olması gerekir. - The amount exceeds your balance. Tutar bakiyenizden yüksektir. - The total exceeds your balance when the %1 transaction fee is included. Toplam, %1 muamele ücreti ilâve edildiğinde bakiyenizi geçmektedir. - Duplicate address found, can only send to each address once per send operation. Çift adres bulundu, belli bir gönderi sırasında her adrese sadece tek bir gönderide bulunulabilir. - Transaction creation failed! Muamelenin oluşturulması başarısız oldu! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. Muamele reddedildi! Cüzdanınızdaki madenî paraların bazıları zaten harcanmış olduğunda bu meydana gelebilir. Örneğin wallet.dat dosyasının bir kopyasını kullandıysanız ve kopyada para harcandığında ancak burada harcandığı işaretlenmediğinde. - Warning: Invalid Dogecoin address Uyarı: geçersiz Dogecoin adresi - (no label) (boş etiket) - Warning: Unknown change address Uyarı: geçersiz para üstü adresi - Are you sure you want to send? Göndermek istediğinizden emin misiniz? - added as transaction fee muamele ücreti olarak eklendi - Payment request expired Ödeme talebinin ömrü doldu - Invalid payment address %1 Geçersiz ödeme adresi %1 @@ -2318,116 +1890,85 @@ Adres: %4 SendCoinsEntry - - - A&mount: Mebla&ğ: - Pay &To: &Şu adrese öde: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Ödemenin gönderileceği adres (mesela DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Adres defterinize eklemek için bu adrese ilişik bir etiket giriniz - &Label: &Etiket: - Choose previously used address Önceden kullanılmış adres seç - This is a normal payment. Bu, normal bir ödemedir. - Alt+A Alt+A - Paste address from clipboard Panodan adres yapıştır - Alt+P Alt+P - - - Remove this entry Bu unsuru kaldır - Message: Mesaj: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - Dogecoin URI'siyle ilişkili ve bilginiz için muameleyle saklanacak bir mesaj. Not: Bu mesaj Dogecoin şebekesi üzerinden gönderilmeyecektir. - - - This is a verified payment request. Bu, teyit edilmiş bir ödeme talebidir. - Enter a label for this address to add it to the list of used addresses Kullanılmış adres listesine eklemek için bu adrese bir etiket girin - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + Dogecoin: URI'siyle ilişkili ve bilginiz için muameleyle saklanacak bir mesaj. Not: Bu mesaj Dogecoin şebekesi üzerinden gönderilmeyecektir. + + This is an unverified payment request. Bu, teyit edilmemiş bir ödeme talebidir. - - Pay To: Şu adrese öde: - - Memo: Not: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Dogecoin adresi giriniz (mesela DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... Dogecoin Çekirdeği kapanıyor... - Do not shut down the computer until this window disappears. Bu pencere kalkıncaya dek bilgisayarı kapatmayınız. @@ -2435,192 +1976,142 @@ Adres: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message İmzalar - Mesaj İmzala / Kontrol et - &Sign Message Mesaj &imzala - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Bir adresin sizin olduğunu ispatlamak için adresinizle mesaj imzalayabilirsiniz. Oltalama saldırılarının kimliğinizi imzanızla elde etmeyi deneyebilecekleri için belirsiz hiçbir şey imzalamamaya dikkat ediniz. Sadece ayrıntılı açıklaması olan ve tümüne katıldığınız ifadeleri imzalayınız. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Mesajın imzalanmasında kullanılacak adres (mesela DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Önceden kullanılmış adres seç - - Alt+A Alt+A - Paste address from clipboard Panodan adres yapıştır - Alt+P Alt+P - Enter the message you want to sign here İmzalamak istediğiniz mesajı burada giriniz - Signature İmza - Copy the current signature to the system clipboard Güncel imzayı sistem panosuna kopyala - Sign the message to prove you own this Dogecoin address Bu Dogecoin adresinin sizin olduğunu ispatlamak için mesajı imzalayın - Sign &Message &Mesajı imzala - Reset all sign message fields Tüm mesaj alanlarını sıfırla - - Clear &All Tümünü &temizle - &Verify Message Mesaj &kontrol et - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. İmza için kullanılan adresi, mesajı (satır sonları, boşluklar, sekmeler vs. karakterleri tam olarak kopyaladığınızdan emin olunuz) ve imzayı aşağıda giriniz. Bir ortadaki adam saldırısı tarafından kandırılmaya mâni olmak için imzadan, imzalı mesajın içeriğini aşan bir anlam çıkarmamaya dikkat ediniz. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Mesajı imzalamak için kullanılmış olan adres (mesela DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Belirtilen Dogecoin adresi ile imzalandığını doğrulamak için mesajı kontrol et - Verify &Message &Mesaj kontrol et - Reset all verify message fields Tüm mesaj kontrolü alanlarını sıfırla - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Dogecoin adresi giriniz (mesela DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature İmzayı oluşturmak için "Mesaj İmzala" unsurunu tıklayın - - Enter Dogecoin signature - Dogecoin imzası gir - - - - The entered address is invalid. Girilen adres geçersizdir. - - - - Please check the address and try again. Adresi kontrol edip tekrar deneyiniz. - - The entered address does not refer to a key. Girilen adres herhangi bir anahtara işaret etmemektedir. - Wallet unlock was cancelled. Cüzdan kilidinin açılması iptal edildi. - Private key for the entered address is not available. Girilen adres için özel anahtar mevcut değildir. - Message signing failed. Mesajın imzalanması başarısız oldu. - Message signed. Mesaj imzalandı. - The signature could not be decoded. İmzanın kodu çözülemedi. - - Please check the signature and try again. İmzayı kontrol edip tekrar deneyiniz. - The signature did not match the message digest. İmza mesajın hash değeri ile eşleşmedi. - Message verification failed. Mesaj doğrulaması başarısız oldu. - Message verified. Mesaj doğrulandı. @@ -2628,17 +2119,14 @@ Adres: %4 SplashScreen - Dogecoin Core Dogecoin Çekirdeği - The Dogecoin Core developers Dogecoin Çekirdeği geliştiricileri - [testnet] [testnet] @@ -2646,7 +2134,6 @@ Adres: %4 TrafficGraphWidget - KB/s KB/s @@ -2654,179 +2141,138 @@ Adres: %4 TransactionDesc - Open until %1 %1 değerine dek açık - + conflicted + çakışma + + %1/offline %1/çevrim dışı - %1/unconfirmed %1/doğrulanmadı - %1 confirmations %1 teyit - Status Durum - , broadcast through %n node(s) , %n düğüm vasıtasıyla yayınlandı, %n düğüm vasıtasıyla yayınlandı - Date Tarih - Source Kaynak - Generated Oluşturuldu - - From Gönderen - - - To Alıcı - - own address kendi adresiniz - label etiket - - - - - Credit Gider - matures in %n more block(s) %n ek blok sonrasında olgunlaşacak%n ek blok sonrasında olgunlaşacak - not accepted kabul edilmedi - - - - Debit Gelir - Transaction fee Muamele ücreti - Net amount Net meblağ - - Message Mesaj - Comment Yorum - Transaction ID Muamele tanımlayıcı - Merchant Tüccar - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Oluşturulan dogecoin'lerin harcanabilmelerinden önce %1 blok beklemeleri gerekmektedir. Bu blok, oluşturduğunuzda, blok zincirine eklenmesi için ağda yayınlandı. Zincire eklenmesi başarısız olursa, durumu "kabul edilmedi" olarak değiştirilecek ve harcanamayacaktır. Bu, bazen başka bir düğüm sizden birkaç saniye önce ya da sonra blok oluşturursa meydana gelebilir. + Oluşturulan bitcoin'lerin harcanabilmelerinden önce %1 blok beklemeleri gerekmektedir. Bu blok, oluşturduğunuzda, blok zincirine eklenmesi için ağda yayınlandı. Zincire eklenmesi başarısız olursa, durumu "kabul edilmedi" olarak değiştirilecek ve harcanamayacaktır. Bu, bazen başka bir düğüm sizden birkaç saniye önce ya da sonra blok oluşturursa meydana gelebilir. - Debug information Hata ayıklama verileri - Transaction Muamele - Inputs Girdiler - Amount Meblağ - true doğru - false yanlış - , has not been successfully broadcast yet , henüz başarılı bir şekilde yayınlanmadı - Open for %n more block(s) %n ilâve blok için açık%n ilâve blok için açık - unknown bilinmiyor @@ -2834,12 +2280,10 @@ Adres: %4 TransactionDescDialog - Transaction details Muamele detayları - This pane shows a detailed description of the transaction Bu pano muamelenin ayrıntılı açıklamasını gösterir @@ -2847,118 +2291,102 @@ Adres: %4 TransactionTableModel - Date Tarih - Type Tür - Address Adres - Amount Meblağ - Immature (%1 confirmations, will be available after %2) Olgunlaşmamış (%1 teyit, %2 teyit ardından kullanılabilir olacaktır) - Open for %n more block(s) %n ilâve blok için açık%n ilâve blok için açık - Open until %1 %1 değerine dek açık - - Offline (%1 confirmations) - Çevrimdışı (%1 teyit) - - - - Unconfirmed (%1 of %2 confirmations) - Doğrulanmadı (%1 (toplam %2 üzerinden) teyit) - - - - Confirmed (%1 confirmations) Doğrulandı (%1 teyit) - This block was not received by any other nodes and will probably not be accepted! Bu blok başka hiçbir düğüm tarafından alınmamıştır ve muhtemelen kabul edilmeyecektir! - Generated but not accepted Oluşturuldu ama kabul edilmedi - + Offline + Çevrim dışı + + + Unconfirmed + Teyit edilmemiş + + + Confirming (%1 of %2 recommended confirmations) + Teyit ediliyor (tavsiye edilen %2 teyit üzerinden %1 doğrulama) + + + Conflicted + Çakışma + + Received with Şununla alındı - Received from Alındığı kişi - Sent to Gönderildiği adres - Payment to yourself Kendinize ödeme - Mined Madenden çıkarılan - (n/a) (mevcut değil) - Transaction status. Hover over this field to show number of confirmations. Muamele durumu. Doğrulama sayısını görüntülemek için imleci bu alanda tutunuz. - Date and time that the transaction was received. Muamelenin alındığı tarih ve zaman. - Type of transaction. Muamele türü. - Destination address of transaction. Muamelenin alıcı adresi. - Amount removed from or added to balance. Bakiyeden alınan ya da bakiyeye eklenen meblağ. @@ -2966,178 +2394,142 @@ Adres: %4 TransactionView - - All Hepsi - Today Bugün - This week Bu hafta - This month Bu ay - Last month Geçen ay - This year Bu sene - Range... Aralık... - Received with Şununla alınan - Sent to Gönderildiği adres - To yourself Kendinize - Mined Oluşturulan - Other Diğer - Enter address or label to search Aranacak adres ya da etiket giriniz - Min amount Asgari meblağ - Copy address Adresi kopyala - Copy label Etiketi kopyala - Copy amount Meblağı kopyala - Copy transaction ID Muamele kimliğini kopyala - Edit label Etiketi düzenle - Show transaction details Muamele detaylarını göster - Export Transaction History Muamele tarihçesini dışa aktar - Exporting Failed Dışa aktarım başarısız oldu - There was an error trying to save the transaction history to %1. Muamele tarihçesinin %1 konumuna kaydedilmesi sırasında bir hata meydana geldi. - Exporting Successful Dışa aktarım başarılı oldu - The transaction history was successfully saved to %1. Muamele tarihçesi başarılı bir şekilde %1 konumuna kaydedildi. - Comma separated file (*.csv) Virgülle ayrılmış değerler dosyası (*.csv) - Confirmed Doğrulandı - Date Tarih - Type Tür - Label Etiket - Address Adres - Amount Meblağ - ID Tanımlayıcı - Range: Aralık: - to ilâ @@ -3145,7 +2537,6 @@ Adres: %4 WalletFrame - No wallet has been loaded. Hiçbir cüzdan yüklenmemiştir. @@ -3153,7 +2544,6 @@ Adres: %4 WalletModel - Send Coins Dogecoin yolla @@ -3161,154 +2551,125 @@ Adres: %4 WalletView - &Export &Dışa aktar - Export the data in the current tab to a file Güncel sekmedeki verileri bir dosyaya aktar - Backup Wallet Cüzdanı Yedekle - Wallet Data (*.dat) Cüzdan verileri (*.dat) - Backup Failed Yedekleme başarısız oldu - There was an error trying to save the wallet data to %1. Cüzdan verilerinin %1 konumuna kaydedilmesi sırasında bir hata meydana geldi. - The wallet data was successfully saved to %1. Cüzdan verileri %1 konumuna başarıyla kaydedildi. - Backup Successful Yedekleme başarılı - dogecoin-core + bitcoin-core - Usage: Kullanım: - List commands Komutları listele - Get help for a command Bir komut için yardım al - Options: Seçenekler: - - Specify configuration file (default: dogecoin.conf) - Yapılandırma dosyası belirt (varsayılan: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Yapılandırma dosyası belirt (varsayılan: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Pid dosyası belirt (varsayılan: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Pid dosyası belirt (varsayılan: bitcoind.pid) - Specify data directory Veri dizinini belirt - - Set database cache size in megabytes (default: 25) - Veritabanı önbellek boyutunu megabayt olarak belirt (varsayılan: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Bağlantılar için dinlenecek <port> (varsayılan: 8333 ya da testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Bağlantılar için dinlenecek <port> (varsayılan: 22556 ya da testnet: 44556) - - - Maintain at most <n> connections to peers (default: 125) Eşler ile en çok <n> adet bağlantı kur (varsayılan: 125) - 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 - Specify your own public address Kendi genel adresinizi tanımlayın - Threshold for disconnecting misbehaving peers (default: 100) Aksaklık gösteren eşlerle bağlantıyı kesme sınırı (varsayılan: 100) - 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) - 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 - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - JSON-RPC bağlantılarını <port> üzerinde dinle (varsayılan: 22555 veya tesnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + JSON-RPC bağlantılarını <port> üzerinde dinle (varsayılan: 8332 veya tesnet: 18332) - Accept command line and JSON-RPC commands Konut satırı ve JSON-RPC komutlarını kabul et - + Dogecoin Core RPC client version + Dogecoin Çekirdeği RPC istemci sürümü + + Run in the background as a daemon and accept commands Arka planda daemon (servis) olarak çalış ve komutları kabul et - Use the test network Deneme şebekesini kullan - 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) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3319,7 +2680,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, şu yapılandırma dosyasında rpc parolası belirtmeniz gerekir: %s Aşağıdaki rastgele oluşturulan parolayı kullanmanız tavsiye edilir: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (bu parolayı hatırlamanız gerekli değildir) Kullanıcı ismi ile parolanın FARKLI olmaları gerekir. @@ -3329,707 +2690,686 @@ mesela: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo.com - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) Kabul edilebilir şifreler (varsayılan: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - An error occurred while setting up the RPC port %u for listening on 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. Dogecoin Core is probably already running. - %s veri dizininde kilit elde edilemedi. Dogecoin muhtemelen hâlihazırda çalışmaktadır. + 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) - 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 %d) + Hata: İçeri gelen bağlantıların dinlenmesi başarısız oldu (dinleme %d hatası verdi) + + 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! - 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) - - 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 - dogecoin oluşturmak ya da ticari uygulamalar için kullanmayınız + 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) + + + 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. + + + 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) + + + 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. Dogecoin Core is probably already running. + Bu bilgisayarda %s unsuruna bağlanılamadı. Dogecoin Çekirdeği muhtemelen hâlihazırda çalışmaktadır. - 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 Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Uyarı: Lütfen bilgisayarınızın tarih ve saatinin doğru olup olmadığını kontrol ediniz! Saatiniz doğru değilse Dogecoin gerektiği gibi çalışamaz. - 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. - + (default: 1) + (varsayılan: 1) + + + (default: wallet.dat) + (varsayılan: wallet.dat) + + <category> can be: <kategori> şunlar olabilir: - Attempt to recover private keys from a corrupt wallet.dat Bozuk bir wallet.dat dosyasından özel anahtarları geri kazanmayı dene - Dogecoin Core Daemon Dogecoin Çekirdek servisi - - Dogecoin Core RPC client version - Dogecoin RPC istemci sürümü - - - Block creation options: Blok oluşturma seçenekleri: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + Cüzdanın muamele listesini temizle (tanı aracı; -rescan ima eder) + + 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: 22555 or testnet: 44555) - <port> numarasında JSON-RPC'ye bağlan (varsayılan: 22555 veya testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + <port> numarasında JSON-RPC'ye bağlan (varsayılan: 8332 veya testnet: 18332) + + + Connection options: + Bağlantı seçenekleri: - Corrupted block database detected Bozuk blok veritabanı tespit edildi - + 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? - 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 opening block database Blok veritabanının açılışı sırasında 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: 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: + + Find peers using DNS lookup (default: 1 unless -connect) Eşleri DNS araması vasıtasıyla bul (varsayılan: 1, eğer -connect kullanılmadıysa) - + Force safe mode (default: 0) + Güvenli kipi zorla (varsayılan: 0) + + Generate coins (default: 0) Dogecoin oluştur (varsayılan: 0) - How many blocks to check at startup (default: 288, 0 = all) Başlangıçta kontrol edilecek blok sayısı (varsayılan: 288, 0 = hepsi) - - How thorough the block verification is (0-4, default: 3) - Blok kontrolünün ne kadar derin olacağı (0 ilâ 4, varsayılan: 3) - - - If <category> is not supplied, output all debugging information. <kategori> sağlanmamışsa tüm hata ayıklama verilerini dök. - + Importing... + İçe aktarılıyor... + + 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ü? - Invalid -onion address: '%s' Geçersiz -onion adresi: '%s' - Not enough file descriptors available. Kafi derecede dosya tanımlayıcıları mevcut değil. - Prepend debug output with timestamp (default: 1) Hata ayıklama verilerinin önüne zaman damgası ekle (varsayılan: 1) - RPC client options: RPC istemci seçenekleri: - Rebuild block chain index from current blk000??.dat files Blok zinciri indeksini güncel blk000??.dat dosyalarından tekrar inşa et - 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 Dogecoin Core server - Dogecoin sunucusuna komut gönder + Set database cache size in megabytes (%d to %d, default: %d) + Veritabanı önbellek boyutunu megabayt olarak belirt (%d ilâ %d, varsayılan: %d) - Set maximum block size in bytes (default: %d) Azami blok boyutunu bayt olarak ayarla (varsayılan: %d) - 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) - Specify wallet file (within data directory) Cüzdan dosyası belirtiniz (veri klasörünün içinde) - - Start Dogecoin Core server - Dogecoin sunucusunu başlat + Spend unconfirmed change when sending transactions (default: 1) + Gönderme muamelelerinde teyit edilmemiş para üstünü harca (varsayılan: 1) - This is intended for regression testing tools and app development. Bu, regresyon deneme araçları ve uygulama geliştirmesi için tasarlanmıştır. - - Usage (deprecated, use dogecoin-cli): - Kullanım (önerilmemektedir, dogecoin-cli kullanın): + Usage (deprecated, use bitcoin-cli): + Kullanım (önerilmemektedir, bitcoin-cli kullanın): - 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 options: Cüzdan seçenekleri: - Warning: Deprecated argument -debugnet ignored, use -debug=net Uyarı: eskimiş seçenek -debugnet görmezden gelinir, -debug=net kullanınız - 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 - Imports blocks from external blk000??.dat file Harici blk000??.dat dosyasından blokları içe aktarır - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + %s veri dizininde kilit elde edilemedi. Dogecoin Çekirdeği muhtemelen hâlihazırda çalışmaktadır. + + 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) - 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) - 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 (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Betik kontrolü iş parçacığı sayısını belirt (azami 16, 0 = otomatik, <0 = bu sayıda çekirdeği boş bırak, varsayılan: 0) - - - Information Bilgi - 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' - + Limit size of signature cache to <n> entries (default: 50000) + İmza arabelleğinin boyutunu <n> unsurla sınırla (varsayılan: 50000) + + + 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) - 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) - 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) - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL seçenekleri: (SSL kurulum bilgisi için Bitcoin vikisine bakınız) + 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 Dogecoin vikisine bakınız) + + + 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 + + + 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) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL seçenekleri: (SSL kurulum bilgisi için Dogecoin vikisine bakınız) + + + Send command to Dogecoin Core + Dogecoin Çekirdeğine 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 - Set minimum block size in bytes (default: 0) Bayt olarak asgari blok boyutunu tanımla (varsayılan: 0) - + 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 transaction failed Muamelenin imzalanması başarısız oldu - Specify connection timeout in milliseconds (default: 5000) Bağlantı zaman aşım süresini milisaniye olarak belirt (varsayılan: 5000) - + Start Dogecoin Core Daemon + Dogecoin Çekirdeği servisini başlat + + System error: Sistem hatası: - Transaction amount too small Muamele meblağı çok düşük - Transaction amounts must be positive Muamele tutarının pozitif olması lazımdır - Transaction too large Muamele çok büyük - 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) - Username for JSON-RPC connections JSON-RPC bağlantıları için kullanıcı ismi - Warning Uyarı - Warning: This version is obsolete, upgrade required! Uyarı: Bu sürüm çok eskidir, güncellemeniz gerekir! - + 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 - Password for JSON-RPC connections JSON-RPC bağlantıları için parola - Allow JSON-RPC connections from specified IP address Belirtilen İP adresinden JSON-RPC bağlantılarını kabul et - 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 - 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) - Upgrade wallet to latest format Cüzdanı en yeni biçime güncelle - Set key pool size to <n> (default: 100) Anahtar alan boyutunu <n> değerine ayarla (varsayılan: 100) - Rescan the block chain for missing wallet transactions Blok zincirini eksik cüzdan muameleleri için tekrar tara - Use OpenSSL (https) for JSON-RPC connections JSON-RPC bağlantıları için OpenSSL (https) kullan - 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) - This help message Bu yardım mesajı - Unable to bind to %s on this computer (bind returned error %d, %s) Bu bilgisayarda %s unsuruna bağlanılamadı. (bind şu hatayı iletti: %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect -addnode, -seednode ve -connect için DNS aramalarına izin ver - Loading addresses... Adresler yükleniyor... - 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 Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin wallet.dat dosyasının yüklenmesinde hata oluştu: cüzdanın daha yeni bir Dogecoin sürümüne ihtiyacı var - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Cüzdanın tekrar yazılması gerekiyordu: işlemi tamamlamak için Dogecoin'i yeniden başlatınız - Error loading wallet.dat wallet.dat dosyasının yüklenmesinde hata oluştu - Invalid -proxy address: '%s' Geçersiz -proxy adresi: '%s' - Unknown network specified in -onlynet: '%s' -onlynet için bilinmeyen bir şebeke belirtildi: '%s' - Unknown -socks proxy version requested: %i Bilinmeyen bir -socks vekil sürümü talep edildi: %i - Cannot resolve -bind address: '%s' -bind adresi çözümlenemedi: '%s' - Cannot resolve -externalip address: '%s' -externalip adresi çözümlenemedi: '%s' - Invalid amount for -paytxfee=<amount>: '%s' -paytxfee=<meblağ> için geçersiz meblağ: '%s' - Invalid amount Geçersiz meblağ - Insufficient funds Yetersiz bakiye - Loading block index... Blok indeksi yükleniyor... - 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ış - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Bu bilgisayarda %s unsuruna bağlanılamadı. Dogecoin muhtemelen hâlihazırda çalışmaktadır. - - - Loading wallet... Cüzdan yükleniyor... - Cannot downgrade wallet Cüzdan eski biçime geri alınamaz - Cannot write default address Varsayılan adres yazılamadı - Rescanning... Yeniden tarama... - Done loading Yükleme tamamlandı - To use the %s option %s seçeneğini kullanmak için - Error Hata - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4038,4 +3378,4 @@ 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. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_uk.ts b/src/qt/locale/bitcoin_uk.ts index c2e271e6d..b766c3994 100644 --- a/src/qt/locale/bitcoin_uk.ts +++ b/src/qt/locale/bitcoin_uk.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -27,135 +24,113 @@ This product includes software developed by the OpenSSL Project for use in the O Цей продукт включає в себе програмне забезпечення, розроблене в рамках проекту OpenSSL (http://www.openssl.org/), криптографічне програмне забезпечення, написане Еріком Янгом (eay@cryptsoft.com), та функції для роботи з UPnP, написані Томасом Бернардом. - Copyright Авторське право - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Двічі клікніть на адресу чи назву для їх зміни - Create a new address Створити нову адресу - &New - Copy the currently selected address to the system clipboard Копіювати виділену адресу в буфер обміну - &Copy - C&lose - &Copy Address &Скопіювати адресу - Delete the currently selected address from the list Вилучити вибрані адреси з переліку - Export the data in the current tab to a file Експортувати дані з поточної вкладки в файл - &Export & Експорт - &Delete &Видалити - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Це ваші Dogecoin адреси для відправки платежів. Перед відправкою монети Завжди перевіряйте суму та адресу прийому. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label Скопіювати &мітку - &Edit &Редагувати - Export Address List - Comma separated file (*.csv) Файли відділені комами (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -163,17 +138,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Назва - Address Адреса - (no label) (немає назви) @@ -181,140 +153,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog Діалог введення паролю - Enter passphrase Введіть пароль - New passphrase Новий пароль - Repeat new passphrase Повторіть пароль - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Введіть новий пароль для гаманця.<br/>Будь ласка, використовуйте паролі що містять <b>як мінімум 10 випадкових символів</b>, або <b>як мінімум 8 слів</b>. - Encrypt wallet Зашифрувати гаманець - This operation needs your wallet passphrase to unlock the wallet. Ця операція потребує пароль для розблокування гаманця. - Unlock wallet Розблокувати гаманець - This operation needs your wallet passphrase to decrypt the wallet. Ця операція потребує пароль для дешифрування гаманця. - Decrypt wallet Дешифрувати гаманець - Change passphrase Змінити пароль - Enter the old and new passphrase to the wallet. Ввести старий та новий паролі для гаманця. - Confirm wallet encryption Підтвердити шифрування гаманця - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! УВАГА: Якщо ви зашифруєте гаманець і забудете пароль, ви <b>ВТРАТИТЕ ВСІ СВОЇ БІТКОІНИ</b>! - Are you sure you wish to encrypt your wallet? Ви дійсно хочете зашифрувати свій гаманець? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. ВАЖЛИВО: Всі попередні резервні копії, які ви зробили з вашого гаманця файл повинен бути замінений новоствореному, зашифрованому файлі гаманця. З міркувань безпеки, попередні резервні копії в незашифрованому файлі гаманець стане марним, як тільки ви починаєте використовувати нову, зашифрований гаманець. - - Warning: The Caps Lock key is on! Увага: Ввімкнено Caps Lock! - - Wallet encrypted Гаманець зашифровано - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Біткоін-клієнт буде закрито для завершення процесу шифрування. Пам'ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від крадіжки, у випадку якщо ваш комп'ютер буде інфіковано шкідливими програмами. - - - - Wallet encryption failed Не вдалося зашифрувати гаманець - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Виникла помилка під час шифрування гаманця. Ваш гаманець не було зашифровано. - - The supplied passphrases do not match. Введені паролі не співпадають. - Wallet unlock failed Не вдалося розблокувати гаманець - - - The passphrase entered for the wallet decryption was incorrect. Введений пароль є невірним. - Wallet decryption failed Не вдалося розшифрувати гаманець - Wallet passphrase was successfully changed. Пароль було успішно змінено. @@ -322,352 +260,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... &Підписати повідомлення... - Synchronizing with network... Синхронізація з мережею... - &Overview &Огляд - Node - Show general overview of wallet Показати загальний огляд гаманця - &Transactions Транзакції - Browse transaction history Переглянути історію транзакцій - E&xit &Вихід - Quit application Вийти - - Show information about Dogecoin Core + Show information about Dogecoin Показати інформацію про Dogecoin - - About &Qt &Про Qt - Show information about Qt Показати інформацію про Qt - &Options... &Параметри... - &Encrypt Wallet... &Шифрування гаманця... - &Backup Wallet... &Резервне копіювання гаманця... - &Change Passphrase... Змінити парол&ь... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... Імпорт блоків з диску... - Reindexing blocks on disk... Переіндексація блоків на диску ... - Send coins to a Dogecoin address Відправити монети на вказану адресу - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin Редагувати параметри - Backup wallet to another location Резервне копіювання гаманця в інше місце - Change the passphrase used for wallet encryption Змінити пароль, який використовується для шифрування гаманця - &Debug window Вікно зневадження - Open debugging and diagnostic console Відкрити консоль зневадження і діагностики - &Verify message... Перевірити повідомлення... - Dogecoin Dogecoin - Wallet Гаманець - &Send &Відправити - &Receive &Отримати - - &Show / Hide Показати / Приховати - Show or hide the main Window Показує або приховує головне вікно - Encrypt the private keys that belong to your wallet Шифрування закритих ключів, які належать вашому гаманці - Sign messages with your Dogecoin addresses to prove you own them Підтвердіть, що Ви є власником повідомлення підписавши його Вашою Dogecoin-адресою - Verify messages to ensure they were signed with specified Dogecoin addresses Перевірте повідомлення для впевненості, що воно підписано вказаною Dogecoin-адресою - &File &Файл - &Settings &Налаштування - &Help &Довідка - Tabs toolbar Панель вкладок - - [testnet] [тестова мережа] - Dogecoin Core Dogecoin Ядро - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client Dogecoin-клієнт - %n active connection(s) to Dogecoin network %n активне з'єднання з мережею%n активні з'єднання з мережею%n активних з'єднань з мережею - No block source available... Ні блок джерела доступні ... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. Оброблено %1 блоків історії транзакцій. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. Угоди після цього буде ще не буде видно. - Error Помилка - Warning Увага - Information Інформація - Up to date Синхронізовано - Catching up... Синхронізується... - Sent transaction Надіслані транзакції - Incoming transaction Отримані перекази - Date: %1 Amount: %2 Type: %3 @@ -680,25 +552,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> <b>Зашифрований</b> гаманець <b>розблоковано</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> <b>Зашифрований</b> гаманець <b>заблоковано</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. Сталася фатальна помилка. Dogecoin більше не може продовжувати безпечно і піде. ClientModel - Network Alert Сповіщення мережі @@ -706,291 +574,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: Кількість: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Кількість - Address Адреса - Date Дата - Confirmations - Confirmed Підтверджені - Priority - Copy address Скопіювати адресу - Copy label Скопіювати мітку - - Copy amount Копіювати кількість - Copy transaction ID Копіювати ID транзакції - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (немає назви) - change from %1 (%2) - (change) @@ -998,67 +805,54 @@ Address: %4 EditAddressDialog - Edit Address Редагувати адресу - &Label &Мітка - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address &Адреса - New receiving address Нова адреса для отримання - New sending address Нова адреса для відправлення - Edit receiving address Редагувати адресу для отримання - Edit sending address Редагувати адресу для відправлення - The entered address "%1" is already in the address book. Введена адреса «%1» вже присутня в адресній книзі. - The entered address "%1" is not a valid Dogecoin address. Введена адреса «%1» не є коректною адресою в мережі Dogecoin. - Could not unlock wallet. Неможливо розблокувати гаманець. - New key generation failed. Не вдалося згенерувати нові ключі. @@ -1066,27 +860,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name назва - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1094,52 +883,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core Dogecoin Ядро - version версія - Usage: Використання: - command-line options параметри командного рядка - UI options Параметри інтерфейсу - Set language, for example "de_DE" (default: system locale) Встановлення мови, наприклад "de_DE" (типово: системна) - Start minimized Запускати згорнутим - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) Показувати заставку під час запуску (типово: 1) - Choose data directory on startup (default: 0) @@ -1147,57 +930,46 @@ Address: %4 Intro - Welcome Вітання - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin Dogecoin - Error: Specified data directory "%1" can not be created. - Error Помилка - GB of free space available ГБ вільного простору доступно - (of %1GB needed) @@ -1205,27 +977,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1233,243 +1000,206 @@ Address: %4 OptionsDialog - Options Параметри - &Main &Головні - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Оплата додаткових транзакцій за Кб, що допомагає переконатися, що ваші транзакції обробляються швидко. Велика частина операцій проводиться 1 Кб. - Pay transaction &fee Заплатити комісі&ю - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. Автоматично запускати гаманець при вході до системи. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login &Запускати гаманець при вході в систему - Size of &database cache - - Set database cache size in megabytes (default: 25) - Встановити розмір кешу бази даних в мегабайтах (типово: 25) - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Встановіть кількість перевірки скрипт потоків (до 16, 0 = авто, <0 = залишити, що багато сердечники безкоштовно, за замовчуванням: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. Скинути всі параметри клієнта на типові. - &Reset Options Скинути параметри - &Network &Мережа - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. Автоматично відкривати порт для клієнту біткоін на роутері. Працює лише якщо ваш роутер підтримує UPnP і ця функція увімкнена. - Map port using &UPnP Відображення порту через &UPnP - Proxy &IP: &IP проксі: - &Port: &Порт: - Port of the proxy (e.g. 9050) Порт проксі-сервера (наприклад 9050) - SOCKS &Version: SOCKS версії: - SOCKS version of the proxy (e.g. 5) Версія SOCKS-проксі (наприклад 5) - &Window &Вікно - Show only a tray icon after minimizing the window. Показувати лише іконку в треї після згортання вікна. - &Minimize to the tray instead of the taskbar Мінімізувати &у трей - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Згортати замість закриття. Якщо ця опція включена, програма закриється лише після вибору відповідного пункту в меню. - M&inimize on close Згортати замість закритт&я - &Display &Відображення - User Interface &language: Мова інтерфейсу користувача: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. Встановлює мову інтерфейсу. Зміни набудуть чинності після перезапуску Dogecoin. - &Unit to show amounts in: В&имірювати монети в: - Choose the default subdivision unit to show in the interface and when sending coins. Виберіть одиницю вимірювання монет, яка буде відображатись в гаманці та при відправленні. - Whether to show Dogecoin addresses in the transaction list or not. Незалежно від того, щоб показати Dogecoin адреси в списку транзакцій чи ні. - &Display addresses in transaction list &Відображати адресу в списку транзакцій - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK &Гаразд - &Cancel &Скасувати - default типово - none - Confirm options reset Підтвердження скидання параметрів - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. Невірно вказано адресу проксі. @@ -1477,69 +1207,54 @@ Address: %4 OverviewPage - Form Форма - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. Показана інформація вже може бути застарілою. Ваш гаманець буде автоматично синхронізовано з мережею Dogecoin після встановлення підключення, але цей процес ще не завершено. - - Unconfirmed: - Непідтверджені: - - - Wallet Гаманець - - Confirmed: - підтверджено: + Available: + - Your current spendable balance Ваш поточний баланс расходуемого - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance Всього угод, які ще мають бути підтверджені, і до цих пір не враховуються в расходуемого балансу - Immature: незрілі: - Mined balance that has not yet matured Замінований баланс, який ще не дозрів - Total: всього: - Your current total balance Ваше поточне Сукупний баланс - <b>Recent transactions</b> <b>Недавні транзакції</b> - - out of sync не синхронізовано @@ -1547,93 +1262,70 @@ Address: %4 PaymentServer - - URI handling Обробка URI - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. Неможливо обробити URI! Це може бути викликано неправильною Dogecoin-адресою, чи невірними параметрами URI. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1641,41 +1333,45 @@ Address: %4 QObject - - Dogecoin Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + Введіть адресу Dogecoin (наприклад DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... &Зберегти зображення... - &Copy Image &Копіювати зображення - Save QR Code Зберегти QR-код - PNG Image (*.png) @@ -1683,192 +1379,146 @@ Address: %4 RPCConsole - Client name Назва клієнту - - - - - - - - - - - N/A Н/Д - Client version Версія клієнту - &Information &Інформація - Debug window - General - Using OpenSSL version Використовується OpenSSL версії - Startup time Час запуску - Network Мережа - Name Ім’я - Number of connections Кількість підключень - Block chain Ланцюг блоків - Current number of blocks Поточне число блоків - Estimated total blocks Розрахункове число блоків - Last block time Час останнього блоку - &Open Відкрити - &Console Консоль - &Network Traffic - &Clear - Totals - In: - Out: - Build date Дата збирання - Debug log file Файл звіту зневадження - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. Відкрийте налагодження файл журналу Dogecoin з поточного каталогу даних. Це може зайняти кілька секунд для великих файлів журналів. - Clear console Очистити консоль - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. Вітаємо у консолі Dogecoin RPC. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Використовуйте стрілки вгору вниз для навігації по історії, і <b>Ctrl-L</b> для очищення екрана. - Type <b>help</b> for an overview of available commands. Наберіть <b>help</b> для перегляду доступних команд. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1876,155 +1526,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: &Кількість: - &Label: &Мітка: - &Message: &Повідомлення: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. Очистити всі поля в формі - Clear Очистити - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + Скопіювати мітку + + + Copy message + + + + Copy amount + Копіювати кількість + ReceiveRequestDialog - QR Code QR-Код - Copy &URI - Copy &Address - &Save Image... &Зберегти зображення... - Request payment to %1 - Payment information - URI - Address Адреса - Amount Кількість - Label Назва - Message Повідомлення - Resulting URI too long, try to reduce the text for label / message. Кінцевий URI занадто довгий, спробуйте зменшити текст для мітки / повідомлення. - Error encoding URI into QR Code. Помилка при кодуванні URI в QR-код. @@ -2032,285 +1664,225 @@ Address: %4 RecentRequestsTableModel - Date Дата - Label Назва - Message Повідомлення - Amount Кількість - (no label) (немає назви) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins Відправити - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: Кількість: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once Відправити на декілька адрес - Add &Recipient Дод&ати одержувача - Clear all fields of the form. Очистити всі поля в формі - Clear &All Очистити &все - Balance: Баланс: - Confirm the send action Підтвердити відправлення - S&end &Відправити - Confirm send coins Підтвердіть відправлення - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Введіть адресу Dogecoin (наприклад DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - Copy amount Копіювати кількість - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. Адреса отримувача невірна, будь ласка перепровірте. - The amount to pay must be larger than 0. Кількість монет для відправлення повинна бути більшою 0. - The amount exceeds your balance. Кількість монет для відправлення перевищує ваш баланс. - The total exceeds your balance when the %1 transaction fee is included. Сума перевищить ваш баланс, якщо комісія %1 буде додана до вашої транзакції. - Duplicate address found, can only send to each address once per send operation. Знайдено адресу що дублюється. Відправлення на кожну адресу дозволяється лише один раз на кожну операцію переказу. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (немає назви) - Warning: Unknown change address - Are you sure you want to send? Ви впевнені, що хочете відправити? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2318,116 +1890,85 @@ Address: %4 SendCoinsEntry - - - A&mount: &Кількість: - Pay &To: &Отримувач: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Звернення до відправити платіж на (наприклад DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book Введіть мітку для цієї адреси для додавання її в адресну книгу - &Label: &Мітка: - Choose previously used address Обрати ранiш використовувану адресу - This is a normal payment. - Alt+A Alt+A - Paste address from clipboard Вставити адресу - Alt+P Alt+P - - - Remove this entry - Message: Повідомлення: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: Нотатка: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Введіть адресу Dogecoin (наприклад DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2435,192 +1976,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message Підписи - Підпис / Перевірка повідомлення - &Sign Message &Підписати повідомлення - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Ви можете зареєструватися повідомленнями зі своїми адресами, щоб довести, що ви є їх власником. Будьте обережні, щоб не підписувати що-небудь неясне, як фішинг-атак може спробувати обдурити вас в підписанні вашу особистість до них. Тільки підписати повністю докладні свідчення, користувач зобов'язується. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Введіть адресу Dogecoin (наприклад DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address Обрати ранiш використовувану адресу - - Alt+A Alt+A - Paste address from clipboard Вставити адресу - Alt+P Alt+P - Enter the message you want to sign here Введіть повідомлення, яке ви хочете підписати тут - Signature Підпис - Copy the current signature to the system clipboard Копіювати поточну сигнатуру до системного буферу обміну - Sign the message to prove you own this Dogecoin address Підпишіть повідомлення щоб довести, що ви є власником цієї адреси - Sign &Message &Підписати повідомлення - Reset all sign message fields Скинути всі поля підпису повідомлення - - Clear &All Очистити &все - &Verify Message Перевірити повідомлення - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Введіть адресу підписання, повідомлення (забезпечення копіюванні розриви рядків, прогалини, вкладки і т.д. точно) і підпис нижче, щоб перевірити повідомлення. Будьте обережні, щоб не читати далі в підпис, ніж те, що в підписаному самого повідомлення, щоб уникнути обдурять нападу чоловік-в-середній. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Введіть адресу Dogecoin (наприклад DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address Перевірте повідомлення для впевненості, що воно підписано вказаною Dogecoin-адресою - Verify &Message Перевірити повідомлення - Reset all verify message fields Скинути всі поля перевірки повідомлення - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) Введіть адресу Dogecoin (наприклад DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature Натисніть кнопку «Підписати повідомлення», для отримання підпису - - Enter Dogecoin signature - Введіть сигнатуру Dogecoin - - - - The entered address is invalid. Введена нечинна адреса. - - - - Please check the address and try again. Будь ласка, перевірте адресу та спробуйте ще. - - The entered address does not refer to a key. Введений адреса не відноситься до ключа. - Wallet unlock was cancelled. Розблокування Гаманець був скасований. - Private key for the entered address is not available. Приватний ключ для введеної адреси недоступний. - Message signing failed. Не вдалося підписати повідомлення. - Message signed. Повідомлення підписано. - The signature could not be decoded. Підпис не можливо декодувати. - - Please check the signature and try again. Будь ласка, перевірте підпис та спробуйте ще. - The signature did not match the message digest. Підпис не відповідає дайджест повідомлення. - Message verification failed. Не вдалося перевірити повідомлення. - Message verified. Повідомлення перевірено. @@ -2628,17 +2119,14 @@ Address: %4 SplashScreen - Dogecoin Core Dogecoin Ядро - The Dogecoin Core developers - [testnet] [тестова мережа] @@ -2646,7 +2134,6 @@ Address: %4 TrafficGraphWidget - KB/s КБ/с @@ -2654,179 +2141,138 @@ Address: %4 TransactionDesc - Open until %1 Відкрити до %1 - + conflicted + + + %1/offline %1/поза інтернетом - %1/unconfirmed %1/не підтверджено - %1 confirmations %1 підтверджень - Status Статус - , broadcast through %n node(s) - Date Дата - Source Джерело - Generated Згенеровано - - From Відправник - - - To Отримувач - - own address Власна адреса - label Мітка - - - - - Credit Кредит - matures in %n more block(s) - not accepted не прийнято - - - - Debit Дебет - Transaction fee Комісія за транзакцію - Net amount Загальна сума - - Message Повідомлення - Comment Коментар - Transaction ID ID транзакції - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information Отладочна інформація - Transaction Транзакція - Inputs витрати - Amount Кількість - true true - false false - , has not been successfully broadcast yet , ще не було успішно розіслано - Open for %n more block(s) - unknown невідомий @@ -2834,12 +2280,10 @@ Address: %4 TransactionDescDialog - Transaction details Деталі транзакції - This pane shows a detailed description of the transaction Даний діалог показує детальну статистику по вибраній транзакції @@ -2847,118 +2291,102 @@ Address: %4 TransactionTableModel - Date Дата - Type Тип - Address Адреса - Amount Кількість - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 Відкрити до %1 - - Offline (%1 confirmations) - Поза інтернетом (%1 підтверджень) - - - - Unconfirmed (%1 of %2 confirmations) - Непідтверджено (%1 із %2 підтверджень) - - - - Confirmed (%1 confirmations) Підтверджено (%1 підтверджень) - This block was not received by any other nodes and will probably not be accepted! Цей блок не був отриманий жодними іншими вузлами і, ймовірно, не буде прийнятий! - Generated but not accepted Згенеровано, але не підтверджено - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with Отримано - Received from Отримано від - Sent to Відправлено - Payment to yourself Відправлено собі - Mined Добуто - (n/a) (недоступно) - Transaction status. Hover over this field to show number of confirmations. Статус транзакції. Наведіть вказівник на це поле, щоб показати кількість підтверджень. - Date and time that the transaction was received. Дата і час, коли транзакцію було отримано. - Type of transaction. Тип транзакції. - Destination address of transaction. Адреса отримувача транзакції. - Amount removed from or added to balance. Сума, додана чи знята з балансу. @@ -2966,178 +2394,142 @@ Address: %4 TransactionView - - All Всі - Today Сьогодні - This week На цьому тижні - This month На цьому місяці - Last month Минулого місяця - This year Цього року - Range... Проміжок... - Received with Отримані на - Sent to Відправлені на - To yourself Відправлені собі - Mined Добуті - Other Інше - Enter address or label to search Введіть адресу чи мітку для пошуку - Min amount Мінімальна сума - Copy address Скопіювати адресу - Copy label Скопіювати мітку - Copy amount Копіювати кількість - Copy transaction ID Копіювати ID транзакції - Edit label Редагувати мітку - Show transaction details Показати деталі транзакції - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Файли, розділені комою (*.csv) - Confirmed Підтверджені - Date Дата - Type Тип - Label Мітка - Address Адреса - Amount Кількість - ID Ідентифікатор - Range: Діапазон від: - to до @@ -3145,7 +2537,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3153,7 +2544,6 @@ Address: %4 WalletModel - Send Coins Відправити @@ -3161,154 +2551,125 @@ Address: %4 WalletView - &Export & Експорт - Export the data in the current tab to a file Експортувати дані з поточної вкладки в файл - Backup Wallet Зробити резервне копіювання гаманця - Wallet Data (*.dat) Данi гаманця (*.dat) - Backup Failed Помилка резервного копіювання - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful Успішне створення резервної копії - dogecoin-core + bitcoin-core - Usage: Використання: - List commands Список команд - Get help for a command Отримати довідку по команді - Options: Параметри: - - Specify configuration file (default: dogecoin.conf) - Вкажіть файл конфігурації (типово: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + Вкажіть файл конфігурації (типово: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - Вкажіть pid-файл (типово: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + Вкажіть pid-файл (типово: bitcoind.pid) - Specify data directory Вкажіть робочий каталог - - Set database cache size in megabytes (default: 25) - Встановити розмір кешу бази даних в мегабайтах (типово: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + Чекати на з'єднання на <port> (типово: 8333 або тестова мережа: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - Чекати на з'єднання на <port> (типово: 22556 або тестова мережа: 44556) - - - Maintain at most <n> connections to peers (default: 125) Підтримувати не більше <n> зв'язків з колегами (типово: 125) - Connect to a node to retrieve peer addresses, and disconnect Підключитись до вузла, щоб отримати список адрес інших учасників та від'єднатись - Specify your own public address Вкажіть вашу власну публічну адресу - Threshold for disconnecting misbehaving peers (default: 100) Поріг відключення неправильно під'єднаних пірів (типово: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Максимальній розмір вхідного буферу на одне з'єднання (типово: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - Прослуховувати <port> для JSON-RPC-з'єднань (типово: 22555 або тестова мережа: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + Прослуховувати <port> для JSON-RPC-з'єднань (типово: 8332 або тестова мережа: 18332) - Accept command line and JSON-RPC commands Приймати команди із командного рядка та команди JSON-RPC - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands Запустити в фоновому режимі (як демон) та приймати команди - Use the test network Використовувати тестову мережу - Accept connections from outside (default: 1 if no -proxy or -connect) Приймати з'єднання ззовні (за замовчуванням: 1, якщо ні-проксі або-з'єднання) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3319,707 +2680,686 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 IPv6, falling back to 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. Dogecoin Core is probably already running. - Не вдалося отримати блокування на каталог даних% с. Dogecoin, ймовірно, вже запущений. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + 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. Dogecoin Core is probably already running. + + + 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 Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin will not work properly. Увага: будь ласка, перевірте дату і час на своєму комп'ютері. Якщо ваш годинник йде неправильно, Dogecoin може працювати некоректно. - 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; якщо Ваш баланс чи транзакції неправильні, Ви можете відновити їх з резервної копії. - + (default: 1) + + + + (default: wallet.dat) + + + <category> can be: - Attempt to recover private keys from a corrupt wallet.dat Спроба відновити закриті ключі з пошкодженого wallet.dat - Dogecoin Core Daemon - - Dogecoin Core RPC client version - - - - Block creation options: Опції створення блоку: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + Connect only to the specified node(s) Підключитись лише до вказаного вузла - Connect through SOCKS proxy - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: - Corrupted block database detected Виявлено пошкоджений блок бази даних - + 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? Ви хочете перебудувати базу даних блоку зараз? - Error initializing block database Помилка ініціалізації бази даних блоків - Error initializing wallet database environment %s! - Error loading block database Помилка завантаження бази даних блоків - Error opening block database Помилка відкриття блоку бази даних - Error: Disk space is low! Помилка: Мало вільного місця на диску! - Error: Wallet locked, unable to create transaction! Помилка: Гаманець заблокований, неможливо створити транзакцію! - Error: system error: Помилка: системна помилка: - Failed to listen on any port. Use -listen=0 if you want this. Не вдалося слухати на будь-якому порту. Використовуйте-слухати = 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: + + + Find peers using DNS lookup (default: 1 unless -connect) Знайти однолітків за допомогою DNS пошук (за замовчуванням: 1, якщо-ні підключити) - + Force safe mode (default: 0) + + + Generate coins (default: 0) Генерація монети (за замовчуванням: 0) - How many blocks to check at startup (default: 288, 0 = all) Скільки блоків перевіряти під час запуску (типово: 288, 0 = всі) - - How thorough the block verification is (0-4, default: 3) - Як ретельне блок перевірка (0-4, за замовчуванням: 3) - - - If <category> is not supplied, output all debugging information. - + Importing... + + + Incorrect or no genesis block found. Wrong datadir for network? - Invalid -onion address: '%s' - Not enough file descriptors available. Бракує дескрипторів файлів, доступних. - Prepend debug output with timestamp (default: 1) - RPC client options: - Rebuild block chain index from current blk000??.dat files - Select SOCKS version for -proxy (4 or 5, default: 5) - - Send command to Dogecoin Core server - Надіслати команду серверу Біткойну + Set database cache size in megabytes (%d to %d, default: %d) + - Set maximum block size in bytes (default: %d) - Set the number of threads to service RPC calls (default: 4) Встановити число потоків до дзвінків служба RPC (за замовчуванням: 4) - Specify wallet file (within data directory) - - Start Dogecoin Core server - Запустити сервер Біткойну + Spend unconfirmed change when sending transactions (default: 1) + - This is intended for regression testing tools and app development. - - Usage (deprecated, use dogecoin-cli): - Використання (застаріле, використовуйте dogecoin-cli): + Usage (deprecated, use bitcoin-cli): + Використання (застаріле, використовуйте bitcoin-cli): - Verifying blocks... Перевірка блоків... - Verifying wallet... Перевірка гаманця... - Wait for RPC server to start - Wallet %s resides outside data directory %s - Wallet options: - Warning: Deprecated argument -debugnet ignored, use -debug=net - You need to rebuild the database using -reindex to change -txindex - Imports blocks from external blk000??.dat file Імпорт блоків з зовнішнього файлу blk000??.dat - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Output debugging information (default: 0, supplying <category> is optional) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - Встановіть кількість перевірки скрипт потоків (до 16, 0 = авто, <0 = залишити, що багато сердечники безкоштовно, за замовчуванням: 0) - - - Information Інформація - Invalid amount for -minrelaytxfee=<amount>: '%s' - Invalid amount for -mintxfee=<amount>: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) Підтримувати індекс повний транзакцій (за замовчуванням: 0) - 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) - 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) - + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Параметри SSL: (див. Bitcoin Wiki для налаштування SSL) - + Send command to Dogecoin Core + + + Send trace/debug info to console instead of debug.log file Відсилати налагоджувальну інформацію на консоль, а не у файл debug.log - Set minimum block size in bytes (default: 0) Встановити мінімальний розмір блоку у байтах (типово: 0) - + 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 transaction failed Підписання угоди не вдалося - Specify connection timeout in milliseconds (default: 5000) Вказати тайм-аут підключення у мілісекундах (типово: 5000) - + Start Dogecoin Core Daemon + + + System error: Системна помилка: - Transaction amount too small Сума угоди занадто малий - Transaction amounts must be positive Суми угоди має бути позитивним - Transaction too large Угода занадто великий - Use UPnP to map the listening port (default: 0) Намагатись використовувати UPnP для відображення порту, що прослуховується на роутері (default: 0) - Use UPnP to map the listening port (default: 1 when listening) Намагатись використовувати UPnP для відображення порту, що прослуховується на роутері (default: 1 when listening) - Username for JSON-RPC connections Ім'я користувача для JSON-RPC-з'єднань - Warning Попередження - Warning: This version is obsolete, upgrade required! Увага: Поточна версія застаріла, необхідне оновлення! - + Zapping all transactions from wallet... + + + + on startup + + + version версія - wallet.dat corrupt, salvage failed wallet.dat пошкоджено, відновлення не вдалося - Password for JSON-RPC connections Пароль для JSON-RPC-з'єднань - Allow JSON-RPC connections from specified IP address Дозволити JSON-RPC-з'єднання з вказаної IP-адреси - Send commands to node running on <ip> (default: 127.0.0.1) Відправляти команди на вузол, запущений на <ip> (типово: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) Виконати команду, коли з'явиться новий блок (%s в команді змінюється на хеш блоку) - Upgrade wallet to latest format Модернізувати гаманець до останнього формату - Set key pool size to <n> (default: 100) Встановити розмір пулу ключів <n> (типово: 100) - Rescan the block chain for missing wallet transactions Пересканувати ланцюжок блоків, в пошуку втрачених транзакцій - Use OpenSSL (https) for JSON-RPC connections Використовувати OpenSSL (https) для JSON-RPC-з'єднань - Server certificate file (default: server.cert) Файл сертифіката сервера (типово: server.cert) - Server private key (default: server.pem) Закритий ключ сервера (типово: server.pem) - This help message Дана довідка - Unable to bind to %s on this computer (bind returned error %d, %s) Неможливо прив'язати до порту %s на цьому комп'ютері (bind returned error %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect Дозволити пошук в DNS для команд -addnode, -seednode та -connect - Loading addresses... Завантаження адрес... - Error loading wallet.dat: Wallet corrupted Помилка при завантаженні wallet.dat: Гаманець пошкоджено - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin Помилка при завантаженні wallet.dat: Гаманець потребує новішої версії Біткоін-клієнта - - Wallet needed to be rewritten: restart Dogecoin Core to complete + Wallet needed to be rewritten: restart Dogecoin to complete Потрібно перезаписати гаманець: перезапустіть Біткоін-клієнт для завершення - Error loading wallet.dat Помилка при завантаженні wallet.dat - Invalid -proxy address: '%s' Помилка в адресі проксі-сервера: «%s» - Unknown network specified in -onlynet: '%s' Невідома мережа вказана в -onlynet: «%s» - Unknown -socks proxy version requested: %i В параметрі -socks запитується невідома версія: %i - Cannot resolve -bind address: '%s' - Cannot resolve -externalip address: '%s' - Invalid amount for -paytxfee=<amount>: '%s' Помилка у величині комісії -paytxfee=<amount>: «%s» - Invalid amount Некоректна кількість - Insufficient funds Недостатньо коштів - Loading block index... Завантаження індексу блоків... - Add a node to connect to and attempt to keep the connection open Додати вузол до підключення і лишити його відкритим - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - Неможливо прив'язати до порту %s на цьому комп'ютері. Можливо гаманець вже запущено. - - - Loading wallet... Завантаження гаманця... - Cannot downgrade wallet Не вдається понизити версію гаманця - Cannot write default address Неможливо записати типову адресу - Rescanning... Сканування... - Done loading Завантаження завершене - To use the %s option Щоб використати опцію %s - Error Помилка - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4028,4 +3368,4 @@ If the file does not exist, create it with owner-readable-only file permissions. Якщо файл не існує, створіть його із правами тільки для читання власником (owner-readable-only). - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_ur_PK.ts b/src/qt/locale/bitcoin_ur_PK.ts index a2ef622af..0224b09d3 100644 --- a/src/qt/locale/bitcoin_ur_PK.ts +++ b/src/qt/locale/bitcoin_ur_PK.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label ایڈریس یا لیبل میں ترمیم کرنے پر ڈبل کلک کریں - Create a new address نیا ایڈریس بنائیں - &New - Copy the currently selected address to the system clipboard - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label چٹ - Address پتہ - (no label) چٹ کے بغیر @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase پاس فریز داخل کریں - New passphrase نیا پاس فریز - Repeat new passphrase نیا پاس فریز دہرائیں - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Encrypt wallet - This operation needs your wallet passphrase to unlock the wallet. - Unlock wallet بٹوا ان لاک - This operation needs your wallet passphrase to decrypt the wallet. - Decrypt wallet خفیہ کشائی کر یںبٹوے کے - Change passphrase پاس فریز تبدیل کریں - Enter the old and new passphrase to the wallet. - Confirm wallet encryption - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - The supplied passphrases do not match. - Wallet unlock failed - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... - &Overview - Node - Show general overview of wallet - &Transactions - Browse transaction history - E&xit - Quit application - - Show information about Dogecoin Core + Show information about Dogecoin - - About &Qt - Show information about Qt - &Options... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File - &Settings - &Help - Tabs toolbar - - [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error نقص - Warning - Information - Up to date - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount رقم - Address پتہ - Date تاریخ - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) چٹ کے بغیر - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error نقص - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,23 +1324,26 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1656,22 +1351,18 @@ Address: %4 QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1679,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1872,105 +1517,82 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - - An optional label to associate with the new receiving address. - Use this form to request payments. All fields are <b>optional</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - Requested payments history - &Request payment - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove - Copy label - Copy message - Copy amount @@ -1978,67 +1600,54 @@ Address: %4 ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address پتہ - Amount رقم - Label چٹ - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2046,37 +1655,30 @@ Address: %4 RecentRequestsTableModel - Date تاریخ - Label چٹ - Message - Amount رقم - (no label) چٹ کے بغیر - (no message) - (no amount) @@ -2084,247 +1686,194 @@ Address: %4 SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: بیلنس: - Confirm the send action - S&end - Confirm send coins - - - - %1 to %2 - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) چٹ کے بغیر - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2332,98 +1881,74 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard - Alt+P - - - Remove this entry - Message: - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. - - Pay To: - - Memo: @@ -2431,12 +1956,10 @@ Address: %4 ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2444,186 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard - Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2631,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2649,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2657,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date تاریخ - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount رقم - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2837,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2850,118 +2282,102 @@ Address: %4 TransactionTableModel - Date تاریخ - Type ٹائپ - Address پتہ - Amount رقم - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to کو بھیجا - Payment to yourself - Mined - (n/a) (N / A) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2969,178 +2385,142 @@ Address: %4 TransactionView - - All تمام - Today آج - This week اس ہفتے - This month اس مہینے - Last month پچھلے مہینے - This year اس سال - Range... دیگر - Received with - Sent to کو بھیجا - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - Confirmed - Date تاریخ - Type ٹائپ - Label چٹ - Address پتہ - Amount رقم - ID - Range: - to @@ -3148,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3156,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3164,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3322,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - یہ مدد کا پیغام - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - غلط رقم - - - - Insufficient funds - ناکافی فنڈز - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + یہ مدد کا پیغام + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + غلط رقم + + + Insufficient funds + ناکافی فنڈز + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error نقص - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_uz@Cyrl.ts b/src/qt/locale/bitcoin_uz@Cyrl.ts index 77a21bd0e..8ec273bcd 100644 --- a/src/qt/locale/bitcoin_uz@Cyrl.ts +++ b/src/qt/locale/bitcoin_uz@Cyrl.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label - Create a new address - &New - Copy the currently selected address to the system clipboard - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label - Address - (no label) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase - New passphrase - Repeat new passphrase - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Encrypt wallet - This operation needs your wallet passphrase to unlock the wallet. - Unlock wallet - This operation needs your wallet passphrase to decrypt the wallet. - Decrypt wallet - Change passphrase - Enter the old and new passphrase to the wallet. - Confirm wallet encryption - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - The supplied passphrases do not match. - Wallet unlock failed - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... - &Overview - Node - Show general overview of wallet - &Transactions - Browse transaction history - E&xit - Quit application - - Show information about Dogecoin Core + Show information about Dogecoin - - About &Qt - Show information about Qt - &Options... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File - &Settings - &Help - Tabs toolbar - - [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address - Date - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,23 +1324,26 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1656,22 +1351,18 @@ Address: %4 QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1679,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1872,105 +1517,82 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - - An optional label to associate with the new receiving address. - Use this form to request payments. All fields are <b>optional</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - Requested payments history - &Request payment - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove - Copy label - Copy message - Copy amount @@ -1978,67 +1600,54 @@ Address: %4 ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address - Amount - Label - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2046,37 +1655,30 @@ Address: %4 RecentRequestsTableModel - Date - Label - Message - Amount - (no label) - (no message) - (no amount) @@ -2084,247 +1686,194 @@ Address: %4 SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: - Confirm the send action - S&end - Confirm send coins - - - - %1 to %2 - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2332,98 +1881,74 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard - Alt+P - - - Remove this entry - Message: - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. - - Pay To: - - Memo: @@ -2431,12 +1956,10 @@ Address: %4 ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2444,186 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard - Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2631,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2649,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2657,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2837,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2850,118 +2282,102 @@ Address: %4 TransactionTableModel - Date - Type - Address - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2969,178 +2385,142 @@ Address: %4 TransactionView - - All - Today - This week - This month - Last month - This year - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - Confirmed - Date - Type - Label - Address - Amount - ID - Range: - to @@ -3148,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3156,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3164,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3322,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_vi.ts b/src/qt/locale/bitcoin_vi.ts index 49cba7eeb..0b7168f5c 100644 --- a/src/qt/locale/bitcoin_vi.ts +++ b/src/qt/locale/bitcoin_vi.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label Click đúp chuột để chỉnh sửa địa chỉ hoặc nhãn dữ liệu - Create a new address Tạo một địa chỉ mới - &New - Copy the currently selected address to the system clipboard Sao chép các địa chỉ đã được chọn vào bộ nhớ tạm thời của hệ thống - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete &Xóa - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) Tập tin tách biệt bởi dấu phẩy (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label Nhãn dữ liệu - Address Địa chỉ - (no label) (chưa có nhãn) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase - New passphrase - Repeat new passphrase - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Encrypt wallet - This operation needs your wallet passphrase to unlock the wallet. - Unlock wallet - This operation needs your wallet passphrase to decrypt the wallet. - Decrypt wallet - Change passphrase - Enter the old and new passphrase to the wallet. - Confirm wallet encryption - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - The supplied passphrases do not match. - Wallet unlock failed - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... - &Overview - Node - Show general overview of wallet - &Transactions - Browse transaction history - E&xit - Quit application - - Show information about Dogecoin Core + Show information about Dogecoin - - About &Qt - Show information about Qt - &Options... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File - &Settings - &Help - Tabs toolbar - - [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount Số lượng - Address Địa chỉ - Date - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) (chưa có nhãn) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - - The user interface language can be set here. This setting will take effect after restarting Dogecoin Core. + The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,41 +1324,45 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1674,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - - Open the Dogecoin Core debug log file from the current data directory. This can take a few seconds for large log files. + Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - - Welcome to the Dogecoin Core RPC console. + Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1867,155 +1517,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + + + + Copy message + + + + Copy amount + + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address Địa chỉ - Amount Số lượng - Label Nhãn dữ liệu - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2023,285 +1655,225 @@ Address: %4 RecentRequestsTableModel - Date - Label Nhãn dữ liệu - Message - Amount Số lượng - (no label) (chưa có nhãn) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: - Confirm the send action - S&end - Confirm send coins - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) (chưa có nhãn) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2309,116 +1881,85 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard - Alt+P - - - Remove this entry - Message: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2426,192 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard - Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2619,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2637,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2645,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount Số lượng - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2825,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2838,118 +2282,102 @@ Address: %4 TransactionTableModel - Date - Type - Address Địa chỉ - Amount Số lượng - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2957,178 +2385,142 @@ Address: %4 TransactionView - - All - Today - This week - This month - Last month - This year - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) Tập tin tách biệt bởi dấu phẩy (*.csv) - Confirmed - Date - Type - Label Nhãn dữ liệu - Address Địa chỉ - Amount Số lượng - ID - Range: - to @@ -3136,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3144,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3152,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3310,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin Core to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_vi_VN.ts b/src/qt/locale/bitcoin_vi_VN.ts index f1bc5b2cc..fc3eb1f41 100644 --- a/src/qt/locale/bitcoin_vi_VN.ts +++ b/src/qt/locale/bitcoin_vi_VN.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label - Create a new address Tạo một địa chỉ mới - &New - Copy the currently selected address to the system clipboard - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label - Address - (no label) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase - New passphrase - Repeat new passphrase - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Encrypt wallet - This operation needs your wallet passphrase to unlock the wallet. - Unlock wallet - This operation needs your wallet passphrase to decrypt the wallet. - Decrypt wallet - Change passphrase - Enter the old and new passphrase to the wallet. - Confirm wallet encryption - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - The supplied passphrases do not match. - Wallet unlock failed - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... - &Overview - Node - Show general overview of wallet - &Transactions - Browse transaction history - E&xit - Quit application - - Show information about Dogecoin Core + Show information about Dogecoin - - About &Qt - Show information about Qt - &Options... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File - &Settings - &Help - Tabs toolbar - - [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -671,25 +543,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address - Date - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - - Automatically start Dogecoin Core after logging in to the system. + Automatically start Dogecoin after logging in to the system. - - &Start Dogecoin Core on system login + &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,41 +1324,45 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + + QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1674,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1867,155 +1517,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional label to associate with the new receiving address - - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + An optional label to associate with the new receiving address. + + + Use this form to request payments. All fields are <b>optional</b>. - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - + Requested payments history + + + &Request payment - - Requested payments - - - - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove + + Copy label + + + + Copy message + + + + Copy amount + + ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address - Amount - Label - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2023,285 +1655,225 @@ Address: %4 RecentRequestsTableModel - Date - Label - Message - Amount - (no label) - (no message) + + (no amount) + + SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: - Confirm the send action - S&end - Confirm send coins - - - - %1 to %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2309,116 +1881,85 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard - Alt+P - - - Remove this entry - Message: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + + + This is an unverified payment request. - - Pay To: - - Memo: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2426,192 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard - Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - Enter Dogecoin signature - - - - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2619,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2637,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2645,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2825,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2838,118 +2282,102 @@ Address: %4 TransactionTableModel - Date - Type - Address - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2957,178 +2385,142 @@ Address: %4 TransactionView - - All - Today - This week - This month - Last month - This year - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - Confirmed - Date - Type - Label - Address - Amount - ID - Range: - to @@ -3136,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3144,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3152,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3310,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin Core 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin Core RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin Core server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin Core server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core - - - - - Wallet needed to be rewritten: restart Dogecoin to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts index 2675226eb..8bfd11000 100644 --- a/src/qt/locale/bitcoin_zh_CN.ts +++ b/src/qt/locale/bitcoin_zh_CN.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core 关于狗狗币核心 - <b>Dogecoin Core</b> version - <b>狗狗币核心</b>版本 + <b>狗狗币核心</b> 版本 - This is experimental software. @@ -27,153 +24,128 @@ Distributed under the MIT/X11 software license, see the accompanying file COPYIN This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - Copyright 版权 - The Dogecoin Core developers Dogecoin Core 开发团队 + + (%1-bit) + (%1 位) + AddressBookPage - Double-click to edit address or label 双击编辑地址或标签 - Create a new address 创建新地址 - &New 新建(&N) - Copy the currently selected address to the system clipboard - 复制当前选中地址到系统剪贴板 + 复制当前选中的地址到系统剪贴板 - &Copy 复制(&C) - C&lose 关闭(&C) - &Copy Address 复制地址(&C) - Delete the currently selected address from the list 从列表中删除选中的地址 - Export the data in the current tab to a file 导出当前数据到文件 - &Export 导出(&E) - &Delete 删除(&D) - Choose the address to send coins to 选择发款地址 - Choose the address to receive coins with 选择收款地址 - C&hoose 选择(&H) - Very sending addresses 正在发送地址 - Much receiving addresses 正在接收地址 - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. 这是您用来付款的狗狗币地址。在付款前,请总是核实付款金额和收款地址。 - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. 这些都是您的狗狗币地址,可用于收款。建议对每笔交易都使用一个新的地址。 - Copy &Label 复制标签(&L) - &Edit 编辑(&E) - Export Address List 导出地址列表 - Comma separated file (*.csv) 逗号分隔文件 (*.csv) - Exporting Failed 导出失败 - There was an error trying to save the address list to %1. - + 地址列表保存至 %1 时发生错误。 AddressTableModel - Label 标签 - Address 地址 - (no label) (没有标签) @@ -181,140 +153,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog 密码对话框 - Enter passphrase 输入密码 - New passphrase 新密码 - Repeat new passphrase 重复新密码 - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. 输入钱包的新密码。<br/>使用的密码请至少包含<b>10个以上随机字符</>,或者是<b>8个以上的单词</b>。 - Encrypt wallet 加密钱包 - This operation needs your wallet passphrase to unlock the wallet. 此操作需要您首先使用密码解锁该钱包。 - Unlock wallet 解锁钱包 - This operation needs your wallet passphrase to decrypt the wallet. 该操作需要您首先使用密码解密钱包。 - Decrypt wallet 解密钱包 - Change passphrase 更改密码 - Enter the old and new passphrase to the wallet. 请输入该钱包的旧密码与新密码。 - Confirm wallet encryption 确认加密钱包 - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! 警告:如果您加密了您的钱包,但是忘记了密码,你将会<b>丢失所有的狗狗币</b>! - Are you sure you wish to encrypt your wallet? 您确定需要为钱包加密吗? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 重要提示:您以前备份的钱包文件应该替换成最新生成的加密钱包文件(重新备份)。从安全性上考虑,您以前备份的未加密的钱包文件,在您使用新的加密钱包后将无效,请重新备份。 - - Warning: The Caps Lock key is on! 警告:大写锁定键处于打开状态! - - Wallet encrypted 钱包已加密 - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - 将关闭软件以完成加密过程。 请您谨记:钱包加密并不是万能的,电脑中毒,您的狗狗币还是有可能丢失。 + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + 狗狗币客户端将关闭软件以完成加密过程。请您谨记:钱包加密并不是万能的,电脑中毒等原因仍可能导致您的狗狗币意外丢失。 - - - - Wallet encryption failed 钱包加密失败 - Wallet encryption failed due to an internal error. Your wallet was not encrypted. 由于一个本地错误,加密钱包的操作已经失败。您的钱包没能被加密。 - - The supplied passphrases do not match. 密码不匹配。 - Wallet unlock failed 钱包解锁失败 - - - The passphrase entered for the wallet decryption was incorrect. 用于解密钱包的密码不正确。 - Wallet decryption failed 钱包解密失败。 - Wallet passphrase was successfully changed. 修改钱包密码成功。 @@ -322,352 +260,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... 消息签名(&M)... - Synchronizing with network... 正在与网络同步... - &Overview 概况(&O) - Node 节点 - Show general overview of wallet 显示钱包概况 - &Transactions 交易记录(&T) - Browse transaction history 查看交易历史 - E&xit 退出(&X) - Quit application 退出程序 - - Show information about Dogecoin Core + Show information about Dogecoin 显示狗狗币的相关信息 - - About &Qt 关于 &Qt - Show information about Qt 显示 Qt 相关信息 - &Options... 选项(&O)... - &Encrypt Wallet... 加密钱包(&E)... - &Backup Wallet... 备份钱包(&B)... - &Change Passphrase... 更改密码(&C)... - Very &sending addresses... - + &付款地址 - Much &receiving addresses... - + &收款地址 - Open &URI... - + 打开 &URI... - Importing blocks from disk... 正在从磁盘导入数据块... - Reindexing blocks on disk... 正在为数据块建立索引... - Send coins to a Dogecoin address 向一个狗狗币地址发送狗狗币 - - Modify configuration options for Dogecoin Core + Modify configuration options for Dogecoin 设置选项 - Backup wallet to another location 备份钱包到其他文件夹 - Change the passphrase used for wallet encryption 更改钱包加密口令 - &Debug window 调试窗口(&D) - Open debugging and diagnostic console 打开调试和诊断控制台 - &Verify message... 验证消息(&V)... - Dogecoin 狗狗币 - Wallet 钱包 - &Send 发送(&S) - &Receive 接收(&R) - - &Show / Hide 显示 / 隐藏(&S) - Show or hide the main Window 显示或隐藏主窗口 - Encrypt the private keys that belong to your wallet 对钱包中的私钥加密 - Sign messages with your Dogecoin addresses to prove you own them 用狗狗币地址关联的私钥为消息签名,以证明您拥有这个狗狗币地址 - Verify messages to ensure they were signed with specified Dogecoin addresses 校验消息,确保该消息是由指定的狗狗币地址所有者签名的 - &File 文件(&F) - &Settings 设置(&S) - &Help 帮助(&H) - Tabs toolbar 分页工具栏 - - [testnet] [测试网络] - Dogecoin Core 狗狗币核心 - - Request payments (generates QR codes and dogecoin: URIs) - 请求支付(生成二维码和 dogecoin: URI) + Request payments (generates QR codes and bitcoin: URIs) + 请求支付(生成二维码和 bitcoin: URI) - - &About Dogecoin Core 关于狗狗币核心(&A) - Show the list of used sending addresses and labels 显示用过的发送地址和标签的列表 - Show the list of used receiving addresses and labels 显示用过的接收地址和标签的列表 - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request 打开一个狗狗币:URI 或支付请求 - &Command-line options - + &命令行 选项 - - Show the Dogecoin Core help message to get a list with possible Dogecoin Core command-line options - + Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options + 显示狗狗币核心 程序帮助信息,获取可用的命令行选项 - - Dogecoin client 狗狗币客户端 - %n active connection(s) to Dogecoin network - 到狗狗币网络的连接共有%n条 + %n条到狗狗币网络的活动连接 - No block source available... - No block source available... + 沒有可用的区块来源... - Processed %1 of %2 (estimated) blocks of transaction history. %1 / %2 个交易历史的区块已下载 - Processed %1 blocks of transaction history. 已处理 %1 个交易历史数据块。 - %n hour(s) %n 小时前 - %n day(s) %n 天前 - %n week(s) %n 周前 - + %1 and %2 + %1 和 %2 + + + %n year(s) + %n 年 + + %1 behind 落后 %1 - Last received block was generated %1 ago. 最新收到的区块产生于 %1。 - Transactions after this will not yet be visible. 在此之后的交易尚未可见 - Error 错误 - Warning 警告 - Information 信息 - Up to date 已是最新 - Catching up... 更新中... - Sent transaction - 发出交易 + 发送交易 - Incoming transaction 流入交易 - Date: %1 Amount: %2 Type: %3 @@ -680,25 +552,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> 钱包已被<b>加密</b>,当前为<b>解锁</b>状态 - Wallet is <b>encrypted</b> and currently <b>locked</b> 钱包已被<b>加密</b>,当前为<b>锁定</b>状态 - - A fatal error occurred. Dogecoin Core can no longer continue safely and will quit. + A fatal error occurred. Dogecoin can no longer continue safely and will quit. 发生严重错误。 ClientModel - Network Alert 网络警报 @@ -706,359 +574,285 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - + 选择交易源地址 - Quantity: 总量: - Bytes: 字节: - Amount: 金额: - Priority: 优先级: - Fee: 费用: - Low Output: - + 低输出 - After Fee: - + 加上交易费用后: - Change: 变更 : - (un)select all (不)全选 - Tree mode 树状模式 - List mode 列表模式 - Amount 金额 - Address 地址 - Date 日期 - Confirmations 确认 - Confirmed 已确认 - Priority 优先级 - Copy address 复制地址 - Copy label 复制标签 - - Copy amount 复制金额 - Copy transaction ID 复制交易编号 - Lock unspent - + 锁定未花费 - Unlock unspent - + 解锁未花费 - Copy quantity - + 复制金额 - Copy fee - + 复制交易费 - Copy after fee - + 复制含交易费的金额 - Copy bytes 复制字节 - Copy priority 复制优先级 - Copy low output - + 复制低输出 - Copy change - + 复制零钱 - highest 最高 - higher 更高 - high - medium-high 中高 - medium 中等 - low-medium 中低 - low - lower 更低 - lowest 最低 - (%1 locked) - + (%1 锁定) - none - Dust - + 尘埃交易 - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - + 如果这笔交易大于1000字节,标签会变成红色。 - - This means a fee of at least %1 per kB is required. - + 这意味着将对交易收取 %1/千字节 的交易费。 - Can vary +/- 1 byte per input. - + 每笔输入可能会有 正负1字节的偏差。 - Transactions with higher priority are more likely to get included into a block. - + 交易的优先级越高,被矿工收入数据块的速度也越快。 - This label turns red, if the priority is smaller than "medium". - + 如果优先级小于"中位数" ,标签将变成红色。 - This label turns red, if any recipient receives an amount smaller than %1. - + 如果收款地址收到小于%1的狗狗币,标签将变成红色。 - - This means a fee of at least %1 is required. - + 这意味着至少需要 %1的交易费。 - Amounts below 0.546 times the minimum relay fee are shown as dust. - + 小于最小转发交易费的0.546倍的 转账金额将被视为 尘埃交易。 - This label turns red, if the change is smaller than %1. - + 如果零钱小于 %1,标签将变成红色。 - - (no label) (没有标签) - change from %1 (%2) - + 来自%1的零钱 (%2) - (change) - + (零钱) EditAddressDialog - Edit Address 编辑地址 - &Label 标签(&L) - The label associated with this address list entry 与此地址相关的标签项 - The address associated with this address list entry. This can only be modified for sending addresses. 该地址已与地址列表中的条目关联,只能被发送地址修改。 - &Address 地址(&A) - New receiving address 新建接收地址 - New sending address 新建发送地址 - Edit receiving address 编辑接收地址 - Edit sending address 编辑发送地址 - The entered address "%1" is already in the address book. 输入的地址“%1”已经存在于地址簿中。 - The entered address "%1" is not a valid Dogecoin address. 您输入的“%1”不是有效的狗狗币地址。 - Could not unlock wallet. 无法解锁钱包 - New key generation failed. 新的密钥生成失败。 @@ -1066,27 +860,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. 一个新的数据目录将被创建。 - name 名称 - Directory already exists. Add %1 if you intend to create a new directory here. 目录已存在。如果您打算在这里创建一个新目录,添加 %1。 - Path already exists, and is not a directory. 路径已存在,并且不是一个目录。 - Cannot create data directory here. 无法在此创建数据目录。 @@ -1094,53 +883,47 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - + 狗狗币核心程序 - 命令行选项 - Dogecoin Core 狗狗币核心 - version 版本 - Usage: 使用: - command-line options 命令行选项 - UI options UI选项 - Set language, for example "de_DE" (default: system locale) 设置语言, 例如“zh-TW”(默认为系统语言) - Start minimized 启动时最小化 - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) 启动时显示版权页 (缺省: 1) - Choose data directory on startup (default: 0) 在启动时选择数据目录(默认:0) @@ -1148,57 +931,46 @@ Address: %4 Intro - Welcome 欢迎 - Welcome to Dogecoin Core. - + 欢迎使用 狗狗币核心 程序。 - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - + 由于这是第一次运行 狗狗币核心 程序,您可以选择数据存储目录。 - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - + 狗狗币核心 程序会下载储存一份数据块链(blockchain)。至少需要 %1 GB的存储空间,随着时间推移会需要更多的存储空间。钱包文件也储存在该目录。 - Use the default data directory 使用默认的数据目录 - Use a custom data directory: 使用自定义的数据目录: - Dogecoin 狗狗币 - Error: Specified data directory "%1" can not be created. 错误:指定的数据目录“%1”无法创建。 - Error 错误 - GB of free space available 可用空间(GB) - (of %1GB needed) (需要 %1GB) @@ -1206,271 +978,229 @@ Address: %4 OpenURIDialog - Open URI - + 打开 URI - Open payment request from URI or file - + 打开来自URI或文件的付款请求 - URI: - + URI: - Select payment request file - + 选择付款请求文件 - Select payment request file to open - + 选择需要打开的付款请求文件 OptionsDialog - Options 选项 - &Main 主要(&M) - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. 可选的每 kB 交易费,这有助于您的交易被更快的处理。大多数交易都是 1 kB。 - Pay transaction &fee 支付交易费用(&F) - Automatically start Dogecoin after logging in to the system. 登录系统后自动开启狗狗币客户端 - &Start Dogecoin on system login 系统启动时运行(&S) - Size of &database cache 数据库缓存大小(&D) - - Set database cache size in megabytes (default: 25) - 设置数据库缓冲区大小 (缺省: 25MB) - - - MB MB - Number of script &verification threads - + 脚本&验证 进程数 - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - 设置脚本验证线程数量(最多16,0 = 自动,<0 = 留下许多空闲核心,默认为 0) - - - Connect to the Dogecoin network through a SOCKS proxy. 通过 SOCKS 代理连接到狗狗币网络。 - &Connect through SOCKS proxy (default proxy): 通过 SO&CKS 代理连接 (默认代理): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) 代理的 IP 地址 (例如 IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - + 有效的命令行参数覆盖上述选项: - Reset all client options to default. 恢复客户端的缺省设置 - &Reset Options 恢复缺省设置(&R) - &Network 网络(&N) - - Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - 自动在路由器中打开狗狗币端口。只有当您的路由器开启 UPnP 选项时此功能才有效。 + (0 = auto, <0 = leave that many cores free) + + + + W&allet + &钱包 + + + Expert + 专家 + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + 如果禁用未确认的零钱,则零钱至少需要1个确认才能使用。同时账户余额显示会受到影响。 + + + &Spend unconfirmed change + + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. + 自动在路由器中打开狗狗币端口。只有当您的路由器开启了 UPnP 选项时此功能才有效。 - Map port using &UPnP 使用 &UPnP 映射端口 - Proxy &IP: 代理服务器 &IP: - &Port: 端口(&P): - Port of the proxy (e.g. 9050) 代理端口(例如 9050) - SOCKS &Version: Socks 版本(&V): - SOCKS version of the proxy (e.g. 5) Socks 代理版本(例如 5) - &Window 窗口(&W) - Show only a tray icon after minimizing the window. 最小化窗口后仅显示托盘图标 - &Minimize to the tray instead of the taskbar 最小化到托盘(&M) - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. 当窗口关闭时程序最小化而不是退出。当使用该选项时,程序只能通过在菜单中选择退出来关闭 - M&inimize on close 单击关闭按钮最小化(&I) - &Display 显示(&D) - User Interface &language: 用户界面语言(&L): - The user interface language can be set here. This setting will take effect after restarting Dogecoin. 在这里设置用户界面的语言。设置将在客户端重启后生效。 - &Unit to show amounts in: 狗狗币金额单位(&U): - Choose the default subdivision unit to show in the interface and when sending coins. 选择狗狗币单位。 - Whether to show Dogecoin addresses in the transaction list or not. 是否需要在交易清单中显示狗狗币地址。 - &Display addresses in transaction list 在交易清单中显示狗狗币地址(&D) - Whether to show coin control features or not. - + 是否需要交易源地址控制功能。 - - Display coin &control features (experts only) - - - - &OK 确定(&O) - &Cancel 取消(&C) - default 默认 - none - Confirm options reset 确认恢复缺省设置 - - Client restart required to activate changes. 更改生效需要重启客户端。 - Client will be shutdown, do you want to proceed? 客户端即将关闭,确定继续吗? - This change would require a client restart. 此更改需要重启客户端。 - The supplied proxy address is invalid. 提供的代理服务器地址无效。 @@ -1478,79 +1208,54 @@ Address: %4 OverviewPage - Form 表单 - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - 现在显示的消息可能是过期的. 在连接上狗狗币网络节点后,您的钱包将自动与网络同步,但是这个过程还没有完成. + 现在显示的消息可能是过期的. 在连接上狗狗币网络节点后,您的钱包将自动与网络同步,但是这个过程还没有完成。 - - Unconfirmed: - 未确认: - - - Wallet 钱包 - Available: - 余额: + 可使用的余额: - - Pending: - 未确认: - - - - Confirmed: - 已确认: - - - Your current spendable balance 您当前可使用的余额 - + Pending: + 等待中的余额: + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance 尚未确认的交易总额,未计入当前余额 - Immature: 未成熟的: - Mined balance that has not yet matured 尚未成熟的挖矿收入余额 - Total: 总额: - Your current total balance 您当前的总余额 - <b>Recent transactions</b> <b>最近交易记录</b> - - out of sync 数据同步中 @@ -1558,93 +1263,70 @@ Address: %4 PaymentServer - - URI handling URI 处理 - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. URI无法解析!原因可能是狗狗币地址不正确,或者URI参数错误。 - Requested payment amount of %1 is too small (considered dust). 请求支付的金额 %1 太小(就像尘埃)。 - - - - - - Payment request error 支付请求出错 - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler 暂时无法启动狗狗币:点击支付功能 - Net manager warning 网络管理器警告 - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. 您的活动代理不支持 SOCKS5,而通过代理进行支付请求时这是必须的。 - Payment request fetch URL is invalid: %1 - + 付款请求URI链接非法: %1 - Payment request file handling - + 付款请求文件处理 - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - + 付款请求文件不能读取或无法识别!这可能是个不合格的付款请求文件。 - Unverified payment requests to custom payment scripts are unsupported. - + 不支持到自定义付款脚本的未验证付款请求。 - Refund from %1 退款来自 %1 - Error communicating with %1: %2 %1: %2 通讯出错 - Payment request can not be parsed or processed! 支付请求不能被解析或处理! - Bad response from server %1 来自 %1 服务器的错误响应 - Payment acknowledged 支付已到账 - Network request error 网络请求出错 @@ -1652,234 +1334,192 @@ Address: %4 QObject - - Dogecoin 狗狗币 - Error: Specified data directory "%1" does not exist. 错误:指定的数据目录“%1”不存在。 - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. 错误:无效的 -regtest 与 -testnet 结合体。 + + Dogecoin Core did't yet exit safely... + + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + 请输入狗狗币地址(例如: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + QRImageWidget - &Save Image... 保存图片(&S)... - &Copy Image 复制图片(&C) - Save QR Code 保存二维码 - PNG Image (*.png) - + PNG图片(*.png) RPCConsole - Client name 客户端名称 - - - - - - - - - - - N/A 不可用 - Client version 客户端版本 - &Information 信息(&I) - Debug window - + 调试窗口 - General 常规 - Using OpenSSL version 使用 OpenSSL 版本 - Startup time 启动时间 - Network 网络 - Name 姓名 - Number of connections 连接数 - Block chain 数据链 - Current number of blocks 当前数据块数量 - Estimated total blocks 预计数据块数量 - Last block time 上一数据块时间 - &Open 打开(&O) - &Console 控制台(&C) - &Network Traffic 网络流量(&N) - &Clear 清除(&C) - Totals 总数 - In: 输入: - Out: 输出: - Build date 创建时间 - Debug log file 调试日志文件 - Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. 打开当前目录中的调试日志文件。日志文件大的话可能要等上几秒钟。 - Clear console 清空控制台 - Welcome to the Dogecoin RPC console. 欢迎来到 RPC 控制台。 - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. 使用上下方向键浏览历史, <b>Ctrl-L</b>清除屏幕。 - Type <b>help</b> for an overview of available commands. 使用 <b>help</b> 命令显示帮助信息。 - %1 B %1 字节 - %1 KB %1 KB - %1 MB %1 MB - %1 GB %1 GB - %1 m %1 分钟 - %1 h %1 小时 - %1 h %2 m %1 小时 %2 分钟 @@ -1887,155 +1527,137 @@ Address: %4 ReceiveCoinsDialog - &Amount: 总额(&A): - &Label: 标签(&L): - &Message: 消息(&M): - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. 重复使用以前用过的接收地址。重用地址有安全和隐私方面的隐患。除非是为重复生成同一项支付请求,否则请不要这样做。 - R&euse an existing receiving address (not recommended) 重用现有的接收地址(不推荐) - - An optional label to associate with the new receiving address - 与新接收地址相关的标签,可选 - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - + 可在付款请求上备注一条信息,在打开付款请求时可以看到。注意:该消息不是通过狗狗币网络传送。 + + + An optional label to associate with the new receiving address. + 可为新建的收款地址添加一个标签。 - Use this form to request payments. All fields are <b>optional</b>. 使用此表单要求付款。所有字段都是<b>可选</b>。 - An optional amount to request. Leave this empty or zero to not request a specific amount. 可选的请求金额。留空或填零为不要求具体金额。 - Clear all fields of the form. 清空此表单的所有字段。 - Clear 清除 - + Requested payments history + 请求付款的历史 + + &Request payment 请求付款(&R) - - Requested payments - 已请求支付 - - - Show the selected request (does the same as double clicking an entry) - + 显示选中的请求 (双击也可以显示) - Show - + 显示 - Remove the selected entries from the list - + 从列表中移除选中的条目 - Remove 移除 + + Copy label + 复制标签 + + + Copy message + 复制消息 + + + Copy amount + 复制金额 + ReceiveRequestDialog - QR Code 二维码 - Copy &URI 复制 URI(&U) - Copy &Address 复制地址(&A) - &Save Image... 保存图片(&S)... - Request payment to %1 请求付款到 %1 - Payment information 付款信息 - URI URI - Address 地址 - Amount 金额 - Label 标签 - Message 消息 - Resulting URI too long, try to reduce the text for label / message. URI 太长,请试着精简标签或消息文本。 - Error encoding URI into QR Code. 将 URI 转为二维码失败。 @@ -2043,285 +1665,225 @@ Address: %4 RecentRequestsTableModel - Date 日期 - Label 标签 - Message 消息 - Amount 金额 - (no label) (没有标签) - (no message) (无消息) + + (no amount) + (无金额) + SendCoinsDialog - - - Send Coins 发送货币 - Coin Control Features - + 交易源地址控制功能 - Inputs... 输入... - automatically selected 自动选择 - Insufficient funds! 存款不足! - Quantity: 总量: - Bytes: 字节: - Amount: 金额: - Priority: 优先级: - Fee: 费用: - Low Output: - + 低输出 - After Fee: - + 加上交易费用后: - Change: 变更 : - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - + 如果激活该选项,但是零钱地址用光或者非法,将会新生成零钱地址,转入零钱。 - Custom change address - + 自定义零钱地址 - Send to multiple recipients at once 一次发送给多个接收者 - Add &Recipient 添加收款人(&R) - Clear all fields of the form. 清除此表单的所有字段。 - Clear &All 清除所有(&A) - Balance: 余额: - Confirm the send action 确认并发送货币 - S&end 发送(&E) - Confirm send coins 确认发送货币 - - - - %1 to %2 %1 到 %2 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - 请输入狗狗币地址(例如: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - - Copy quantity - + 复制金额 - Copy amount 复制金额 - Copy fee - + 复制交易费 - Copy after fee - + 复制含交易费的金额 - Copy bytes 复制字节 - Copy priority 复制优先级 - Copy low output - + 复制低输出 - Copy change - + 复制零钱 - Total Amount %1 (= %2) 总额 %1 (= %2) - or - The recipient address is not valid, please recheck. 收款人地址不合法,请检查。 - The amount to pay must be larger than 0. 支付金额必须大于0。 - The amount exceeds your balance. 金额超出您的账上余额。 - The total exceeds your balance when the %1 transaction fee is included. 计入 %1 交易费后的金额超出您的账上余额。 - Duplicate address found, can only send to each address once per send operation. 发现重复的地址, 每次只能对同一地址发送一次。 - Transaction creation failed! 交易创建失败! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - + 错误:该交易被拒绝!发生这种错误的原因可能是:钱包中的狗狗币已经被用掉,有可能您复制了wallet.dat钱包文件,然后用复制的钱包文件支付了狗狗币,但是这个钱包文件中没有记录。 - Warning: Invalid Dogecoin address 警告:无效的狗狗币地址 - (no label) (没有标签) - Warning: Unknown change address 警告:未知的更改地址 - Are you sure you want to send? 您确定要发出吗? - added as transaction fee 已添加交易费 - Payment request expired 支付请求已过期 - Invalid payment address %1 无效的付款地址 %1 @@ -2329,116 +1891,85 @@ Address: %4 SendCoinsEntry - - - A&mount: 金额(&M) - Pay &To: 付给(&T): - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) 付款给这个地址 (例如 DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book 为这个地址输入一个标签,以便将它添加到您的地址簿 - &Label: 标签(&L): - Choose previously used address 选择以前用过的地址 - This is a normal payment. 这是笔正常的支付。 - Alt+A Alt+A - Paste address from clipboard 从剪贴板粘贴地址 - Alt+P Alt+P - - - Remove this entry 移除此项 - Message: 消息: - - A message that was attached to the Dogecoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - - - - This is a verified payment request. 这是个有效的支付请求。 - Enter a label for this address to add it to the list of used addresses 请为此地址输入一个标签以将它加入用过的地址列表 - + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + bitcoin:URI 附带的备注信息,将会和交易一起存储,备查。 注意:该消息不会通过狗狗币网络传输。 + + This is an unverified payment request. 这是个非有效的支付请求。 - - Pay To: 支付给: - - Memo: 便条: - - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - 请输入狗狗币地址 (例如: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - ShutdownWindow - Dogecoin Core is shutting down... 狗狗币核心正在关机... - Do not shut down the computer until this window disappears. 在此窗口消失前不要关闭计算机。 @@ -2446,192 +1977,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message 签名 - 为消息签名/验证签名消息 - &Sign Message 签名消息(&S) - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. 您可以用你的地址对消息进行签名,以证明您是该地址的所有人。注意不要对模棱两可的消息签名,以免遭受钓鱼式攻击。请确保消息内容准确的表达了您的真实意愿。 - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) 用于签名消息的地址(例如: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address 选择以前用过的地址 - - Alt+A Alt+A - Paste address from clipboard 从剪贴板粘贴地址 - Alt+P Alt+P - Enter the message you want to sign here 请输入您要发送的签名消息 - Signature 签名 - Copy the current signature to the system clipboard 复制当前签名至剪切板 - Sign the message to prove you own this Dogecoin address 签名消息,证明这个地址属于您。 - Sign &Message 消息签名(&M) - Reset all sign message fields 清空所有签名消息栏 - - Clear &All 清除所有(&A) - &Verify Message 验证消息(&V) - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. 在下面输入签名地址,消息(请确保换行符、空格符、制表符等等一个不漏)和签名以验证消息。请确保签名信息准确,提防中间人攻击。 - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) 用于签名消息的地址(例如: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address 验证消息,确保消息是由指定的狗狗币地址签名过的。 - Verify &Message 验证消息签名(&M) - Reset all verify message fields 清空所有验证消息栏 - - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) 请输入狗狗币地址 (例如: DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature 单击“签名消息“产生签名。 - - Enter Dogecoin signature - 输入狗狗币签名 - - - - The entered address is invalid. 输入的地址非法。 - - - - Please check the address and try again. 请检查地址后重试。 - - The entered address does not refer to a key. 输入的地址没有关联的公私钥对。 - Wallet unlock was cancelled. 钱包解锁动作取消。 - Private key for the entered address is not available. 找不到输入地址关联的私钥。 - Message signing failed. 消息签名失败。 - Message signed. 消息已签名。 - The signature could not be decoded. 签名无法解码。 - - Please check the signature and try again. 请检查签名后重试。 - The signature did not match the message digest. 签名与消息摘要不匹配。 - Message verification failed. 消息验证失败。 - Message verified. 消息验证成功。 @@ -2639,17 +2120,14 @@ Address: %4 SplashScreen - Dogecoin Core 狗狗币核心 - The Dogecoin Core developers - Dogecoin Core 开发团队 + Dogecoin Core 的开发者 - [testnet] [testnet] @@ -2657,7 +2135,6 @@ Address: %4 TrafficGraphWidget - KB/s KB/s @@ -2665,179 +2142,138 @@ Address: %4 TransactionDesc - Open until %1 至 %1 个数据块时开启 - + conflicted + 发现冲突 + + %1/offline %1 / 离线 - %1/unconfirmed %1/未确认 - %1 confirmations %1 已确认 - Status 状态 - , broadcast through %n node(s) 通过 %n 个节点广播 - Date 日期 - Source - Generated 生成 - - From 来自 - - - To - - own address 自己的地址 - label 标签 - - - - - Credit 收入 - matures in %n more block(s) 将在 %n 个数据块后成熟 - not accepted 未被接受 - - - - Debit 支出 - Transaction fee 交易费 - Net amount 净额 - - Message 消息 - Comment 备注 - Transaction ID 交易ID - Merchant 商店 - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - 新挖出的狗狗币必须等确120个确认才能使用。您生产出的数据块,将被广播到全网并添加到数据块链。如果入链失败,状态将变为“未被接受”,意味着您的数据块竞争失败,挖出的狗狗币将不能使用。当某个节点先于你几秒生产出新的数据块,这种情况会偶尔发生。 + 生成的狗狗币在可以使用前必须有 %1 个成熟的区块。当您生成了此区块后,它将被广播到网络中以加入区块链。如果它未成功进入区块链,其状态将变更为“不接受”并且不可使用。这可能偶尔会发生,如果另一个节点比你早几秒钟成功生成一个区块。 - Debug information 调试信息 - Transaction 交易 - Inputs 输入 - Amount 金额 - true 正确 - false 错误 - , has not been successfully broadcast yet ,未被成功广播 - Open for %n more block(s) Open for %n more block - unknown 未知 @@ -2845,12 +2281,10 @@ Address: %4 TransactionDescDialog - Transaction details 交易细节 - This pane shows a detailed description of the transaction 当前面板显示了交易的详细信息 @@ -2858,118 +2292,102 @@ Address: %4 TransactionTableModel - Date 日期 - Type 类型 - Address 地址 - Amount 数量 - Immature (%1 confirmations, will be available after %2) 未成熟 (%1 个确认,将在 %2 个后可用) - Open for %n more block(s) Open for %n more block - Open until %1 至 %1 个数据块时开启 - - Offline (%1 confirmations) - 离线 (%1 个确认项) - - - - Unconfirmed (%1 of %2 confirmations) - 未确认 (%1 / %2 条确认信息) - - - - Confirmed (%1 confirmations) 已确认 (%1 条确认信息) - This block was not received by any other nodes and will probably not be accepted! 此数据块未被任何其他节点接收,可能不被接受! - Generated but not accepted 已生成但未被接受 - + Offline + 掉线 + + + Unconfirmed + 未确认的 + + + Confirming (%1 of %2 recommended confirmations) + 确认中 (推荐 %2个确认,已经有 %1个确认) + + + Conflicted + 冲突的 + + Received with 接收于 - Received from 收款来自 - Sent to 发送给 - Payment to yourself 付款给自己 - Mined 挖矿所得 - (n/a) (不可用) - Transaction status. Hover over this field to show number of confirmations. 交易状态。 鼠标移到此区域可显示确认项数量。 - Date and time that the transaction was received. - 接收狗狗币的时间 + 接收到交易的时间 - Type of transaction. 交易类别。 - Destination address of transaction. 交易目的地址。 - Amount removed from or added to balance. 从余额添加或移除的金额。 @@ -2977,178 +2395,142 @@ Address: %4 TransactionView - - All 全部 - Today 今天 - This week 本周 - This month 本月 - Last month 上月 - This year 今年 - Range... 范围... - Received with 接收于 - Sent to 发送给 - To yourself 到自己 - Mined 挖矿所得 - Other 其他 - Enter address or label to search 输入地址或标签进行搜索 - Min amount 最小金额 - Copy address 复制地址 - Copy label 复制标签 - Copy amount 复制金额 - Copy transaction ID 复制交易编号 - Edit label 编辑标签 - Show transaction details 显示交易详情 - Export Transaction History 导出交易历史 - Exporting Failed 导出失败 - There was an error trying to save the transaction history to %1. 导出交易历史到 %1 时发生错误。 - Exporting Successful 导出成功 - The transaction history was successfully saved to %1. 交易历史已成功保存到 %1。 - Comma separated file (*.csv) 逗号分隔文件 (*.csv) - Confirmed 已确认 - Date 日期 - Type 类别 - Label 标签 - Address 地址 - Amount 金额 - ID ID - Range: 范围: - to @@ -3156,7 +2538,6 @@ Address: %4 WalletFrame - No wallet has been loaded. 没有载入钱包。 @@ -3164,7 +2545,6 @@ Address: %4 WalletModel - Send Coins 发送狗狗币 @@ -3172,164 +2552,135 @@ Address: %4 WalletView - &Export 导出(&E) - Export the data in the current tab to a file 导出当前数据到文件 - Backup Wallet 备份钱包 - Wallet Data (*.dat) 钱包文件(*.dat) - Backup Failed 备份失败 - There was an error trying to save the wallet data to %1. - + 尝试保存钱包数据至 %1 时发生错误。 - The wallet data was successfully saved to %1. - + 钱包数据成功保存至 %1 。 - Backup Successful 备份成功 - dogecoin-core + bitcoin-core - Usage: 使用: - List commands 列出命令 - Get help for a command 获得某条命令的帮助 - Options: 选项: - - Specify configuration file (default: dogecoin.conf) - 指定配置文件 (默认为 dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + 指定配置文件 (默认为 bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - 指定 pid 文件 (默认为 dogecoind.pid) + Specify pid file (default: bitcoind.pid) + 指定 pid 文件 (默认为 bitcoind.pid) - Specify data directory 指定数据目录 - - Set database cache size in megabytes (default: 25) - 设置数据库缓冲区大小 (缺省: 25MB) + Listen for connections on <port> (default: 8333 or testnet: 18333) + 监听端口连接 <port>(缺省: 8333 或测试网络: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - 监听端口连接 <port>(缺省: 22556 或测试网络: 44556) - - - Maintain at most <n> connections to peers (default: 125) 最大连接数 <n> (缺省: 125) - Connect to a node to retrieve peer addresses, and disconnect 连接一个节点并获取对端地址,然后断开连接 - Specify your own public address 指定您的公共地址 - Threshold for disconnecting misbehaving peers (default: 100) 断开行为不端对端阀值(缺省: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Number of seconds to keep misbehaving peers from reconnecting (缺省: 86400) + 重新连接异常节点的秒数(缺省: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s 设置RPC监听端口%u时发生错误, IPv4:%s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - JSON-RPC连接监听端口<port> (缺省:22555 testnet:44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + JSON-RPC连接监听端口<port> (缺省:8332 testnet:18332) - Accept command line and JSON-RPC commands 接受命令行和 JSON-RPC 命令 - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands 在后台运行并接受命令 - Use the test network 使用测试网络 - Accept connections from outside (default: 1 if no -proxy or -connect) 接受来自外部的连接 (缺省: 如果不带 -proxy or -connect 参数设置为1) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3340,7 +2691,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, 您必须在配置文件设置rpcpassword: %s 建议您使用下面的随机密码: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (您无需记住此密码) 用户名和密码 必! 须! 不一样。 @@ -3350,712 +2701,691 @@ 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 IPv6, falling back to IPv4: %s 在IPv6模式下设置RPC监听端口 %u 失败,返回到IPv4模式: %s - Bind to given address and always listen on it. Use [host]:port notation for IPv6 绑定指定的IP地址开始监听。IPv6地址请使用[host]:port 格式 - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - 无法给数据目录 %s上锁。本软件可能已经在运行。 + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + - 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 %d) + + + 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的交易费用。 - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) 当最佳区块变化时执行命令 (命令行中的 %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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications 这是测试用的预发布版本 - 请谨慎使用 - 不要用来挖矿,或者在正式商用环境下使用 - - Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) + Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) + 连接至 Tor隐藏服务器时 使用不同的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 Dogecoin Core will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin 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损坏! 原始的钱包文件已经备份到%s目录下并重命名为{timestamp}.bak 。如果您的账户余额或者交易记录不正确,请使用您的钱包备份文件恢复。 - - <category> can be: + (default: 1) - + (default: wallet.dat) + + + + <category> can be: + <category> 可能是: + + Attempt to recover private keys from a corrupt wallet.dat 尝试从损坏的钱包文件wallet.dat中恢复私钥 - Dogecoin Core Daemon - + 狗狗币核心 守护程序 - - Dogecoin Core RPC client version - Dogecoin RPC 客户端版本 - - - Block creation options: 数据块创建选项: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + 清除钱包中的交易记录 (诊断用,意味着需要重新扫描 -rescan) + + Connect only to the specified node(s) 仅连接到指定节点 - Connect through SOCKS proxy + 通过Socks代理连接: + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + 连接到 JSON-RPC 于 <port>(默认: 8332,或测试网络: 18332) + + + Connection options: - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - 连接到 JSON-RPC 于 <port>(默认: 22555,或测试网络: 44555) - - - Corrupted block database detected 检测发现数据块数据库损坏。请使用 -reindex参数重启客户端。 - + 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地址(缺省:不带 -externalip 参数监听时设置为1) - Do not load the wallet and disable wallet RPC calls 不要加载钱包和禁用钱包的 RPC 调用 - Do you want to rebuild the block database now? 你想现在就重建块数据库吗? - Error initializing block database 初始化数据块数据库出错 - Error initializing wallet database environment %s! Error initializing wallet database environment %s! - Error loading block database 导入数据块数据库出错 - Error opening block database 导入数据块数据库出错 - Error: Disk space is low! 错误:磁盘剩余空间低! - Error: Wallet locked, unable to create transaction! 错误:钱包被锁定,无法创建交易! - 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 无法写入coin数据库 - 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: + + + Find peers using DNS lookup (default: 1 unless -connect) 通过DNS查找节点(缺省:1 除非使用 -connect 选项) - + Force safe mode (default: 0) + + + Generate coins (default: 0) 生成狗狗币(默认为 0) - How many blocks to check at startup (default: 288, 0 = all) 启动时检测多少个数据块(缺省:288,0=所有) - - How thorough the block verification is (0-4, default: 3) - How thorough the block verification is (0-4, default: 3) - - - If <category> is not supplied, output all debugging information. - + 如果<category>未提供,将输出所有调试信息。 + + + Importing... + 导入中... - Incorrect or no genesis block found. Wrong datadir for network? 不正确或没有找到起源区块。网络错误? - Invalid -onion address: '%s' 无效的 -onion 地址:“%s” - Not enough file descriptors available. 没有足够的文件描述符可用。 - Prepend debug output with timestamp (default: 1) - + 调试信息输出时,前面加上时间戳 (缺省: 1) - RPC client options: RPC 客户端选项: - Rebuild block chain index from current blk000??.dat files 重新为当前的blk000??.dat文件建立索引 - Select SOCKS version for -proxy (4 or 5, default: 5) 用 -proxy 选择 SOCKS 版本(4 或 5,默认为 5) - - Send command to Dogecoin Core server - 发送命令到狗狗币服务器 + Set database cache size in megabytes (%d to %d, default: %d) + - Set maximum block size in bytes (default: %d) 设置最大区块大小 (默认: %d,单位字节) - Set the number of threads to service RPC calls (default: 4) 设置使用调用服务 RPC 的线程数量(默认:4) - Specify wallet file (within data directory) 指定钱包文件(数据目录内) - - Start Dogecoin Core server - 启动狗狗币服务器 + Spend unconfirmed change when sending transactions (default: 1) + 付款时允许使用未确认的零钱 (缺省: 1) - This is intended for regression testing tools and app development. 这是用于回归测试和应用开发目的。 - - Usage (deprecated, use dogecoin-cli): - 用法(不推荐,请使用 dogecoin-cli): + Usage (deprecated, use bitcoin-cli): + 用法(不推荐,请使用 bitcoin-cli): - Verifying blocks... 正在验证数据库的完整性... - Verifying wallet... 正在检测钱包的完整性... - Wait for RPC server to start 等待 RPC 服务器 - Wallet %s resides outside data directory %s 钱包 %s 在外部的数据目录 %s - Wallet options: 钱包选项: - Warning: Deprecated argument -debugnet ignored, use -debug=net 警告:已废弃的 -debugnet 参数已忽略,请用 -debug=net - You need to rebuild the database using -reindex to change -txindex 您需要将 -reindex 改为 -txindex 以重建数据库 - Imports blocks from external blk000??.dat file 从blk000??.dat文件导入数据块 - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) 当收到相关提醒或者我们看到一个长分叉时执行命令(%s 将替换为消息) - Output debugging information (default: 0, supplying <category> is optional) 输出调试信息(默认为0,提供 <category> 是可选的) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - + 设置 高优先级/低交易费 交易的最大字节 (缺省: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - 设置脚本验证线程数量(最多16,0 = 自动,<0 = 留下许多空闲核心,默认为 0) - - - Information 信息 - Invalid amount for -minrelaytxfee=<amount>: '%s' -minrelaytxfee=<amount>: '%s' 无效的金额 - Invalid amount for -mintxfee=<amount>: '%s' -mintxfee=<amount>: '%s' 无效的金额 - + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + Maintain a full transaction index (default: 0) 维护一份完整的交易索引(缺省:0) - 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) - Only accept block chain matching built-in checkpoints (default: 1) 仅接受符合客户端检查点设置的数据块文件 - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) 仅连接至指定网络的节点<net>(IPv4, IPv6 或者 Tor) - + 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 server options: + RPC 服务器选项: + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL选项:(参见Bitcoin Wiki关于SSL设置栏目) - + Send command to Dogecoin Core + + + Send trace/debug info to console instead of debug.log file 跟踪/调试信息输出到控制台,不输出到 debug.log 文件 - Set minimum block size in bytes (default: 0) 设置最小数据块大小(缺省:0) - + 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文件(缺省:no-debug模式时为1) - Signing transaction failed 签署交易失败 - Specify connection timeout in milliseconds (default: 5000) 设置连接超时时间(缺省:5000毫秒) - + Start Dogecoin Core Daemon + + + System error: 系统错误: - Transaction amount too small 交易量太小 - Transaction amounts must be positive 交易金额必须是积极的 - Transaction too large 交易太大 - Use UPnP to map the listening port (default: 0) 使用UPnP映射监听端口 (缺省: 0) - Use UPnP to map the listening port (default: 1 when listening) 使用UPnp映射监听端口(缺省: 监听状态设为1) - Username for JSON-RPC connections JSON-RPC 连接用户名 - Warning 警告 - Warning: This version is obsolete, upgrade required! 警告:该软件版本已过时,请升级! - + Zapping all transactions from wallet... + Zapping all transactions from wallet... + + + on startup + + + version 版本 - wallet.dat corrupt, salvage failed 钱包文件wallet.dat损坏,抢救备份失败 - Password for JSON-RPC connections JSON-RPC 连接密码 - Allow JSON-RPC connections from specified IP address 允许从指定IP接受到的 JSON-RPC 连接 - Send commands to node running on <ip> (default: 127.0.0.1) 向IP地址为 <ip> 的节点发送指令 (缺省: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) 当最佳数据块变化时执行命令 (命令行中的 %s 会被替换成数据块哈希值) - Upgrade wallet to latest format 将钱包升级到最新的格式 - Set key pool size to <n> (default: 100) 设置密钥池大小为 <n> (缺省: 100) - Rescan the block chain for missing wallet transactions 重新扫描区块链以查找遗漏的钱包交易 - Use OpenSSL (https) for JSON-RPC connections 为 JSON-RPC 连接使用 OpenSSL (https) 连接 - Server certificate file (default: server.cert) 服务器证书 (默认为 server.cert) - Server private key (default: server.pem) 服务器私钥 (默认为 server.pem) - This help message 本帮助信息 - Unable to bind to %s on this computer (bind returned error %d, %s) 无法绑定本机端口 %s (返回错误消息 %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect 使用 -addnode, -seednode 和 -connect 选项时允许查询DNS - Loading addresses... 正在加载地址簿... - Error loading wallet.dat: Wallet corrupted wallet.dat 钱包文件加载出错:钱包损坏 - - Error loading wallet.dat: Wallet requires newer version of Dogecoin Core + Error loading wallet.dat: Wallet requires newer version of Dogecoin wallet.dat 钱包文件加载错误:请升级到最新版Dogecoin客户端 - Wallet needed to be rewritten: restart Dogecoin to complete 钱包文件需要被重写:请退出并重新启动Dogecoin客户端 - Error loading wallet.dat wallet.dat 钱包文件加载出错 - Invalid -proxy address: '%s' 无效的代理地址:%s - Unknown network specified in -onlynet: '%s' -onlynet 指定的是未知网络:%s - Unknown -socks proxy version requested: %i 被指定的是未知socks代理版本: %i - Cannot resolve -bind address: '%s' 无法解析 -bind 端口地址: '%s' - Cannot resolve -externalip address: '%s' 无法解析 -externalip 地址: '%s' - Invalid amount for -paytxfee=<amount>: '%s' 非法金额 -paytxfee=<amount>: '%s' - Invalid amount 无效金额 - Insufficient funds 金额不足 - Loading block index... 正在加载数据块索引... - Add a node to connect to and attempt to keep the connection open 添加节点并与其保持连接 - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - 无法在本机绑定 %s 端口 . 狗狗币客户端软件可能已经在运行. - - - Loading wallet... 正在加载钱包... - Cannot downgrade wallet 无法降级钱包 - Cannot write default address 无法写入默认地址 - Rescanning... 正在重新扫描... - Done loading 加载完成 - To use the %s option 使用 %s 选项 - Error 错误 - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. diff --git a/src/qt/locale/bitcoin_zh_HK.ts b/src/qt/locale/bitcoin_zh_HK.ts index 75d4b1e00..da88e0d8d 100644 --- a/src/qt/locale/bitcoin_zh_HK.ts +++ b/src/qt/locale/bitcoin_zh_HK.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - <b>Dogecoin Core</b> version - This is experimental software. @@ -22,135 +19,113 @@ This product includes software developed by the OpenSSL Project for use in the O - Copyright - The Dogecoin Core developers + + (%1-bit) + + AddressBookPage - Double-click to edit address or label - Create a new address - &New - Copy the currently selected address to the system clipboard - &Copy - C&lose - &Copy Address - Delete the currently selected address from the list - Export the data in the current tab to a file - &Export - &Delete - Choose the address to send coins to - Choose the address to receive coins with - C&hoose - Very sending addresses - Much receiving addresses - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Copy &Label - &Edit - Export Address List - Comma separated file (*.csv) - Exporting Failed - There was an error trying to save the address list to %1. @@ -158,17 +133,14 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label - Address - (no label) @@ -176,140 +148,106 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - Passphrase Dialog - Enter passphrase - New passphrase - Repeat new passphrase - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Encrypt wallet - This operation needs your wallet passphrase to unlock the wallet. - Unlock wallet - This operation needs your wallet passphrase to decrypt the wallet. - Decrypt wallet - Change passphrase - Enter the old and new passphrase to the wallet. - Confirm wallet encryption - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DogecoinS</b>! - Are you sure you wish to encrypt your wallet? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - - Warning: The Caps Lock key is on! - - Wallet encrypted - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet encryption failed - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - The supplied passphrases do not match. - Wallet unlock failed - - - The passphrase entered for the wallet decryption was incorrect. - Wallet decryption failed - Wallet passphrase was successfully changed. @@ -317,352 +255,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... - Synchronizing with network... - &Overview - Node - Show general overview of wallet - &Transactions - Browse transaction history - E&xit - Quit application - Show information about Dogecoin - - About &Qt - Show information about Qt - &Options... - &Encrypt Wallet... - &Backup Wallet... - &Change Passphrase... - Very &sending addresses... - Much &receiving addresses... - Open &URI... - Importing blocks from disk... - Reindexing blocks on disk... - Send coins to a Dogecoin address - Modify configuration options for Dogecoin - Backup wallet to another location - Change the passphrase used for wallet encryption - &Debug window - Open debugging and diagnostic console - &Verify message... - Dogecoin - Wallet - &Send - &Receive - - &Show / Hide - Show or hide the main Window - Encrypt the private keys that belong to your wallet - Sign messages with your Dogecoin addresses to prove you own them - Verify messages to ensure they were signed with specified Dogecoin addresses - &File - &Settings - &Help - Tabs toolbar - - [testnet] - Dogecoin Core - - Request payments (generates QR codes and dogecoin: URIs) + Request payments (generates QR codes and bitcoin: URIs) - - &About Dogecoin Core - Show the list of used sending addresses and labels - Show the list of used receiving addresses and labels - - Open a dogecoin: URI or payment request + Open a bitcoin: URI or payment request - &Command-line options - Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - - Dogecoin client - %n active connection(s) to Dogecoin network - No block source available... - Processed %1 of %2 (estimated) blocks of transaction history. - Processed %1 blocks of transaction history. - %n hour(s) - %n day(s) - %n week(s) - + %1 and %2 + + + + %n year(s) + + + %1 behind - Last received block was generated %1 ago. - Transactions after this will not yet be visible. - Error - Warning - Information - Up to date - Catching up... - Sent transaction - Incoming transaction - Date: %1 Amount: %2 Type: %3 @@ -671,17 +543,14 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> - A fatal error occurred. Dogecoin can no longer continue safely and will quit. @@ -689,7 +558,6 @@ Address: %4 ClientModel - Network Alert @@ -697,291 +565,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - (un)select all - Tree mode - List mode - Amount - Address - Date - Confirmations - Confirmed - Priority - Copy address - Copy label - - Copy amount - Copy transaction ID - Lock unspent - Unlock unspent - Copy quantity - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - highest - higher - high - medium-high - medium - low-medium - low - lower - lowest - (%1 locked) - none - Dust - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. - - This means a fee of at least %1 per kB is required. - Can vary +/- 1 byte per input. - Transactions with higher priority are more likely to get included into a block. - This label turns red, if the priority is smaller than "medium". - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %1 is required. - Amounts below 0.546 times the minimum relay fee are shown as dust. - This label turns red, if the change is smaller than %1. - - (no label) - change from %1 (%2) - (change) @@ -989,67 +796,54 @@ Address: %4 EditAddressDialog - Edit Address - &Label - The label associated with this address list entry - The address associated with this address list entry. This can only be modified for sending addresses. - &Address - New receiving address - New sending address - Edit receiving address - Edit sending address - The entered address "%1" is already in the address book. - The entered address "%1" is not a valid Dogecoin address. - Could not unlock wallet. - New key generation failed. @@ -1057,27 +851,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. - name - Directory already exists. Add %1 if you intend to create a new directory here. - Path already exists, and is not a directory. - Cannot create data directory here. @@ -1085,52 +874,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - Dogecoin Core - version - Usage: - command-line options - UI options - Set language, for example "de_DE" (default: system locale) - Start minimized - + Set SSL root certificates for payment request (default: -system-) + + + Show splash screen on startup (default: 1) - Choose data directory on startup (default: 0) @@ -1138,57 +921,46 @@ Address: %4 Intro - Welcome - Welcome to Dogecoin Core. - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Use the default data directory - Use a custom data directory: - Dogecoin - Error: Specified data directory "%1" can not be created. - Error - GB of free space available - (of %1GB needed) @@ -1196,27 +968,22 @@ Address: %4 OpenURIDialog - Open URI - Open payment request from URI or file - URI: - Select payment request file - Select payment request file to open @@ -1224,243 +991,206 @@ Address: %4 OptionsDialog - Options - &Main - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Pay transaction &fee - Automatically start Dogecoin after logging in to the system. - &Start Dogecoin on system login - Size of &database cache - - Set database cache size in megabytes (default: 25) - - - - MB - Number of script &verification threads - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - Connect to the Dogecoin network through a SOCKS proxy. - &Connect through SOCKS proxy (default proxy): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Active command-line options that override above options: - Reset all client options to default. - &Reset Options - &Network - + (0 = auto, <0 = leave that many cores free) + + + + W&allet + + + + Expert + + + + Enable coin &control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - Map port using &UPnP - Proxy &IP: - &Port: - Port of the proxy (e.g. 9050) - SOCKS &Version: - SOCKS version of the proxy (e.g. 5) - &Window - Show only a tray icon after minimizing the window. - &Minimize to the tray instead of the taskbar - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - M&inimize on close - &Display - User Interface &language: - The user interface language can be set here. This setting will take effect after restarting Dogecoin. - &Unit to show amounts in: - Choose the default subdivision unit to show in the interface and when sending coins. - Whether to show Dogecoin addresses in the transaction list or not. - &Display addresses in transaction list - Whether to show coin control features or not. - - Display coin &control features (experts only) - - - - &OK - &Cancel - default - none - Confirm options reset - - Client restart required to activate changes. - Client will be shutdown, do you want to proceed? - This change would require a client restart. - The supplied proxy address is invalid. @@ -1468,69 +1198,54 @@ Address: %4 OverviewPage - Form - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - - Unconfirmed: - - - - Wallet - - Confirmed: + Available: - Your current spendable balance - + Pending: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Immature: - Mined balance that has not yet matured - Total: - Your current total balance - <b>Recent transactions</b> - - out of sync @@ -1538,93 +1253,70 @@ Address: %4 PaymentServer - - URI handling - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - Requested payment amount of %1 is too small (considered dust). - - - - - - Payment request error - - Cannot start dogecoin: click-to-pay handler + Cannot start bitcoin: click-to-pay handler - Net manager warning - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. - Payment request fetch URL is invalid: %1 - Payment request file handling - Payment request file can not be read or processed! This can be caused by an invalid payment request file. - Unverified payment requests to custom payment scripts are unsupported. - Refund from %1 - Error communicating with %1: %2 - Payment request can not be parsed or processed! - Bad response from server %1 - Payment acknowledged - Network request error @@ -1632,23 +1324,26 @@ Address: %4 QObject - - Dogecoin - Error: Specified data directory "%1" does not exist. - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + Error: Invalid combination of -regtest and -testnet. - + Dogecoin Core did't yet exit safely... + + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) @@ -1656,22 +1351,18 @@ Address: %4 QRImageWidget - &Save Image... - &Copy Image - Save QR Code - PNG Image (*.png) @@ -1679,192 +1370,146 @@ Address: %4 RPCConsole - Client name - - - - - - - - - - - N/A - Client version - &Information - Debug window - General - Using OpenSSL version - Startup time - Network - Name - Number of connections - Block chain - Current number of blocks - Estimated total blocks - Last block time - &Open - &Console - &Network Traffic - &Clear - Totals - In: - Out: - Build date - Debug log file - Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - Clear console - Welcome to the Dogecoin RPC console. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Type <b>help</b> for an overview of available commands. - %1 B - %1 KB - %1 MB - %1 GB - %1 m - %1 h - %1 h %2 m @@ -1872,105 +1517,82 @@ Address: %4 ReceiveCoinsDialog - &Amount: - &Label: - &Message: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - R&euse an existing receiving address (not recommended) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - - An optional label to associate with the new receiving address. - Use this form to request payments. All fields are <b>optional</b>. - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Clear all fields of the form. - Clear - Requested payments history - &Request payment - Show the selected request (does the same as double clicking an entry) - Show - Remove the selected entries from the list - Remove - Copy label - Copy message - Copy amount @@ -1978,67 +1600,54 @@ Address: %4 ReceiveRequestDialog - QR Code - Copy &URI - Copy &Address - &Save Image... - Request payment to %1 - Payment information - URI - Address - Amount - Label - Message - Resulting URI too long, try to reduce the text for label / message. - Error encoding URI into QR Code. @@ -2046,37 +1655,30 @@ Address: %4 RecentRequestsTableModel - Date - Label - Message - Amount - (no label) - (no message) - (no amount) @@ -2084,247 +1686,194 @@ Address: %4 SendCoinsDialog - - - Send Coins - Coin Control Features - Inputs... - automatically selected - Insufficient funds! - Quantity: - Bytes: - Amount: - Priority: - Fee: - Low Output: - After Fee: - Change: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Custom change address - Send to multiple recipients at once - Add &Recipient - Clear all fields of the form. - Clear &All - Balance: - Confirm the send action - S&end - Confirm send coins - - - - %1 to %2 - Copy quantity - Copy amount - Copy fee - Copy after fee - Copy bytes - Copy priority - Copy low output - Copy change - Total Amount %1 (= %2) - or - The recipient address is not valid, please recheck. - The amount to pay must be larger than 0. - The amount exceeds your balance. - The total exceeds your balance when the %1 transaction fee is included. - Duplicate address found, can only send to each address once per send operation. - Transaction creation failed! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Warning: Invalid Dogecoin address - (no label) - Warning: Unknown change address - Are you sure you want to send? - added as transaction fee - Payment request expired - Invalid payment address %1 @@ -2332,98 +1881,74 @@ Address: %4 SendCoinsEntry - - - A&mount: - Pay &To: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - &Label: - Choose previously used address - This is a normal payment. - Alt+A - Paste address from clipboard - Alt+P - - - Remove this entry - Message: - This is a verified payment request. - Enter a label for this address to add it to the list of used addresses - - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - This is an unverified payment request. - - Pay To: - - Memo: @@ -2431,12 +1956,10 @@ Address: %4 ShutdownWindow - Dogecoin Core is shutting down... - Do not shut down the computer until this window disappears. @@ -2444,186 +1967,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message - &Sign Message - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address - - Alt+A - Paste address from clipboard - Alt+P - Enter the message you want to sign here - Signature - Copy the current signature to the system clipboard - Sign the message to prove you own this Dogecoin address - Sign &Message - Reset all sign message fields - - Clear &All - &Verify Message - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - Verify &Message - Reset all verify message fields - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature - - The entered address is invalid. - - - - Please check the address and try again. - - The entered address does not refer to a key. - Wallet unlock was cancelled. - Private key for the entered address is not available. - Message signing failed. - Message signed. - The signature could not be decoded. - - Please check the signature and try again. - The signature did not match the message digest. - Message verification failed. - Message verified. @@ -2631,17 +2110,14 @@ Address: %4 SplashScreen - Dogecoin Core - The Dogecoin Core developers - [testnet] @@ -2649,7 +2125,6 @@ Address: %4 TrafficGraphWidget - KB/s @@ -2657,179 +2132,138 @@ Address: %4 TransactionDesc - Open until %1 - + conflicted + + + %1/offline - %1/unconfirmed - %1 confirmations - Status - , broadcast through %n node(s) - Date - Source - Generated - - From - - - To - - own address - label - - - - - Credit - matures in %n more block(s) - not accepted - - - - Debit - Transaction fee - Net amount - - Message - Comment - Transaction ID - Merchant - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Debug information - Transaction - Inputs - Amount - true - false - , has not been successfully broadcast yet - Open for %n more block(s) - unknown @@ -2837,12 +2271,10 @@ Address: %4 TransactionDescDialog - Transaction details - This pane shows a detailed description of the transaction @@ -2850,118 +2282,102 @@ Address: %4 TransactionTableModel - Date - Type - Address - Amount - Immature (%1 confirmations, will be available after %2) - Open for %n more block(s) - Open until %1 - - Offline (%1 confirmations) - - - - - Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - This block was not received by any other nodes and will probably not be accepted! - Generated but not accepted - + Offline + + + + Unconfirmed + + + + Confirming (%1 of %2 recommended confirmations) + + + + Conflicted + + + Received with - Received from - Sent to - Payment to yourself - Mined - (n/a) - Transaction status. Hover over this field to show number of confirmations. - Date and time that the transaction was received. - Type of transaction. - Destination address of transaction. - Amount removed from or added to balance. @@ -2969,178 +2385,142 @@ Address: %4 TransactionView - - All - Today - This week - This month - Last month - This year - Range... - Received with - Sent to - To yourself - Mined - Other - Enter address or label to search - Min amount - Copy address - Copy label - Copy amount - Copy transaction ID - Edit label - Show transaction details - Export Transaction History - Exporting Failed - There was an error trying to save the transaction history to %1. - Exporting Successful - The transaction history was successfully saved to %1. - Comma separated file (*.csv) - Confirmed - Date - Type - Label - Address - Amount - ID - Range: - to @@ -3148,7 +2528,6 @@ Address: %4 WalletFrame - No wallet has been loaded. @@ -3156,7 +2535,6 @@ Address: %4 WalletModel - Send Coins @@ -3164,154 +2542,125 @@ Address: %4 WalletView - &Export - Export the data in the current tab to a file - Backup Wallet - Wallet Data (*.dat) - Backup Failed - There was an error trying to save the wallet data to %1. - The wallet data was successfully saved to %1. - Backup Successful - dogecoin-core + bitcoin-core - Usage: - List commands - Get help for a command - Options: - - Specify configuration file (default: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) + Specify pid file (default: bitcoind.pid) - Specify data directory - - Set database cache size in megabytes (default: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - - - - Maintain at most <n> connections to peers (default: 125) - Connect to a node to retrieve peer addresses, and disconnect - Specify your own public address - Threshold for disconnecting misbehaving peers (default: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) - Accept command line and JSON-RPC commands - + Dogecoin Core RPC client version + + + Run in the background as a daemon and accept commands - Use the test network - Accept connections from outside (default: 1 if no -proxy or -connect) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3322,711 +2671,690 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin 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 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. Dogecoin Core is probably already running. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) - 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 %d) + + + 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! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + 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) + + + + How thorough the block verification of -checkblocks is (0-4, default: 3) + + + + In this mode -genproclimit controls how many blocks are generated immediately. + + + + 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) + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - 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 Dogecoin 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. - - - - - <category> can be: - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Dogecoin Core Daemon - - - - - Dogecoin RPC client version - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Connect through SOCKS proxy - - - - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - - - - - Corrupted block database detected - - - - - 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? - - - - - Error initializing block database - - - - - Error initializing wallet database environment %s! - - - - - Error loading block database - - - - - Error opening block database - - - - - Error: Disk space is low! - - - - - Error: Wallet locked, unable to create transaction! - - - - - 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 - - - - - Find peers using DNS lookup (default: 1 unless -connect) - - - - - Generate coins (default: 0) - - - - - How many blocks to check at startup (default: 288, 0 = all) - - - - - How thorough the block verification is (0-4, default: 3) - - - - - If <category> is not supplied, output all debugging information. - - - - - Incorrect or no genesis block found. Wrong datadir for network? - - - - - Invalid -onion address: '%s' - - - - - Not enough file descriptors available. - - - - - Prepend debug output with timestamp (default: 1) - - - - - RPC client options: - - - - - Rebuild block chain index from current blk000??.dat files - - - - - Select SOCKS version for -proxy (4 or 5, default: 5) - - - - - Send command to Dogecoin server - - - - - Set maximum block size in bytes (default: %d) - - - - - Set the number of threads to service RPC calls (default: 4) - - - - - Specify wallet file (within data directory) - - - - - Start Dogecoin server - - - - - This is intended for regression testing tools and app development. - - - - - Usage (deprecated, use dogecoin-cli): - - - - - Verifying blocks... - - - - - Verifying wallet... - - - - - Wait for RPC server to start - - - - - Wallet %s resides outside data directory %s - - - - - Wallet options: - - - - - Warning: Deprecated argument -debugnet ignored, use -debug=net - - - - - You need to rebuild the database using -reindex to change -txindex - - - - - Imports blocks from external blk000??.dat file - - - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - - - - Output debugging information (default: 0, supplying <category> is optional) - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - - - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - - - - - Information - - - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - - - - - Invalid amount for -mintxfee=<amount>: '%s' - - - - - Maintain a full transaction index (default: 0) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only accept block chain matching built-in checkpoints (default: 1) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Signing transaction failed - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - System error: - - - - - Transaction amount too small - - - - - Transaction amounts must be positive - - - - - Transaction too large - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Username for JSON-RPC connections - - - - - Warning - - - - - Warning: This version is obsolete, upgrade required! - - - - - version - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - Allow JSON-RPC connections from specified IP address - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - This help message - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Dogecoin - - - - - Wallet needed to be rewritten: restart Dogecoin to complete - - - - - Error loading wallet.dat - - - - - Invalid -proxy address: '%s' - - - - - Unknown network specified in -onlynet: '%s' - - - - - Unknown -socks proxy version requested: %i - - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - - - - - Invalid amount for -paytxfee=<amount>: '%s' - - - - - Invalid amount - - - - - Insufficient funds - - - - - Loading block index... - - - - - Add a node to connect to and attempt to keep the connection open - - - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - + 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 Dogecoin 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. + + + + (default: 1) + + + + (default: wallet.dat) + + + + <category> can be: + + + + Attempt to recover private keys from a corrupt wallet.dat + + + + Dogecoin Core Daemon + + + + Block creation options: + + + + Clear list of wallet transactions (diagnostic tool; implies -rescan) + + + + Connect only to the specified node(s) + + + + Connect through SOCKS proxy + + + + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + + + + Connection options: + + + + Corrupted block database detected + + + + 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? + + + + Error initializing block database + + + + Error initializing wallet database environment %s! + + + + Error loading block database + + + + Error opening block database + + + + Error: Disk space is low! + + + + Error: Wallet locked, unable to create transaction! + + + + 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: + + + + Find peers using DNS lookup (default: 1 unless -connect) + + + + Force safe mode (default: 0) + + + + Generate coins (default: 0) + + + + How many blocks to check at startup (default: 288, 0 = all) + + + + If <category> is not supplied, output all debugging information. + + + + Importing... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + Invalid -onion address: '%s' + + + + Not enough file descriptors available. + + + + Prepend debug output with timestamp (default: 1) + + + + RPC client options: + + + + Rebuild block chain index from current blk000??.dat files + + + + Select SOCKS version for -proxy (4 or 5, default: 5) + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + Set maximum block size in bytes (default: %d) + + + + Set the number of threads to service RPC calls (default: 4) + + + + Specify wallet file (within data directory) + + + + Spend unconfirmed change when sending transactions (default: 1) + + + + This is intended for regression testing tools and app development. + + + + Usage (deprecated, use bitcoin-cli): + + + + Verifying blocks... + + + + Verifying wallet... + + + + Wait for RPC server to start + + + + Wallet %s resides outside data directory %s + + + + Wallet options: + + + + Warning: Deprecated argument -debugnet ignored, use -debug=net + + + + You need to rebuild the database using -reindex to change -txindex + + + + Imports blocks from external blk000??.dat file + + + + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + Output debugging information (default: 0, supplying <category> is optional) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + + + + Information + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' + + + + Invalid amount for -mintxfee=<amount>: '%s' + + + + Limit size of signature cache to <n> entries (default: 50000) + + + + Log transaction priority and fee per kB when mining blocks (default: 0) + + + + Maintain a full transaction index (default: 0) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Only accept block chain matching built-in checkpoints (default: 1) + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + 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 server options: + + + + Randomly drop 1 of every <n> network messages + + + + Randomly fuzz 1 of every <n> network messages + + + + Run a thread to flush wallet periodically (default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + Send command to Dogecoin Core + + + + Send trace/debug info to console instead of debug.log file + + + + Set minimum block size in bytes (default: 0) + + + + 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 transaction failed + + + + Specify connection timeout in milliseconds (default: 5000) + + + + Start Dogecoin Core Daemon + + + + System error: + + + + Transaction amount too small + + + + Transaction amounts must be positive + + + + Transaction too large + + + + Use UPnP to map the listening port (default: 0) + + + + Use UPnP to map the listening port (default: 1 when listening) + + + + Username for JSON-RPC connections + + + + Warning + + + + Warning: This version is obsolete, upgrade required! + + + + Zapping all transactions from wallet... + + + + on startup + + + + version + + + + wallet.dat corrupt, salvage failed + + + + Password for JSON-RPC connections + + + + Allow JSON-RPC connections from specified IP address + + + + Send commands to node running on <ip> (default: 127.0.0.1) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) + + + + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections + + + + Server certificate file (default: server.cert) + + + + Server private key (default: server.pem) + + + + This help message + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Loading addresses... + + + + Error loading wallet.dat: Wallet corrupted + + + + Error loading wallet.dat: Wallet requires newer version of Dogecoin + + + + Wallet needed to be rewritten: restart Dogecoin to complete + + + + Error loading wallet.dat + + + + Invalid -proxy address: '%s' + + + + Unknown network specified in -onlynet: '%s' + + + + Unknown -socks proxy version requested: %i + + + + Cannot resolve -bind address: '%s' + + + + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' + + + + Invalid amount + + + + Insufficient funds + + + + Loading block index... + + + + Add a node to connect to and attempt to keep the connection open + + + Loading wallet... - Cannot downgrade wallet - Cannot write default address - Rescanning... - Done loading - To use the %s option - Error - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. - + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitcoin_zh_TW.ts index 3a7691d52..b51ea95f0 100644 --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitcoin_zh_TW.ts @@ -2,17 +2,14 @@ AboutDialog - About Dogecoin Core - 關於狗狗幣核心 + 關於位元幣核心 - <b>Dogecoin Core</b> version - <b>狗狗幣</b>版本 + <b>位元幣核心</b> 版本 - This is experimental software. @@ -20,6 +17,8 @@ Distributed under the MIT/X11 software license, see the accompanying file COPYIN This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. +位元幣,原名是 Dogecoin, 又叫做比特幣。 + 這是一套實驗性的軟體。 這套軟體是依據 MIT/X11 軟體授權條款散布,詳情請見附帶的 COPYING 檔案,或是以下網站: http://www.opensource.org/licenses/mit-license.php. @@ -27,135 +26,113 @@ This product includes software developed by the OpenSSL Project for use in the O 此產品也包含了由 OpenSSL Project 所開發的 OpenSSL Toolkit (http://www.openssl.org/) 軟體,和由 Eric Young (eay@cryptsoft.com) 撰寫的加解密軟體,以及由 Thomas Bernard 所撰寫的 UPnP 軟體。 - Copyright 版權 - The Dogecoin Core developers - 狗狗幣開發人員 + 位元幣核心開發人員 + + + (%1-bit) + (%1 位元) AddressBookPage - Double-click to edit address or label - 點兩下來修改地址或標籤 + 按兩下來編輯位址或標記 - Create a new address - 產生新地址 + 製造新的位址 - &New 新增 - Copy the currently selected address to the system clipboard 複製目前選取的地址到系統剪貼簿 - &Copy 複製 - C&lose 關閉 - &Copy Address 複製地址 - Delete the currently selected address from the list 把目前選擇的位址從列表中刪掉 - Export the data in the current tab to a file 把目前分頁的資料匯出存成檔案 - &Export 匯出 - &Delete 刪掉 - Choose the address to send coins to 選擇要付錢過去的位址 - Choose the address to receive coins with 選擇要收錢進來的位址 - C&hoose 選取 - Very sending addresses 付款位址 - Much receiving addresses 收款位址 - These are your Dogecoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - 這是你用來付款的狗狗幣地址. 在付錢之前, 務必要檢查金額和收款地址是否正確. + 這些是你要付款過去的位元幣位址。在付錢之前,務必要檢查金額和收款位址是否正確。 - These are your Dogecoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - 這些是你用來收款的狗狗幣位址。建議在每次交易時,都使用一個新的收款位址。 + 這些是你用來收款的位元幣位址。建議在每次交易時,都使用一個新的收款位址。 - Copy &Label 複製標籤 - &Edit 編輯 - Export Address List 匯出位址清單 - Comma separated file (*.csv) 逗號分隔資料檔(*.csv) - Exporting Failed 匯出失敗 - There was an error trying to save the address list to %1. 儲存位址列表到 %1 時發生錯誤。 @@ -163,158 +140,121 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label - 標籤 + 標記 - Address 地址 - (no label) - (沒有標籤) + (無標記) AskPassphraseDialog - Passphrase Dialog 密碼對話視窗 - Enter passphrase 請輸入密碼 - New passphrase 新密碼 - Repeat new passphrase 重複新密碼 - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. 請輸入錢包的新密碼。<br/>建議用<b>10 個以上的任意字元</b>,或是<b>8 個以上的單字</b>。 - Encrypt wallet 加密錢包 - This operation needs your wallet passphrase to unlock the wallet. 這個動作需要你的錢包密碼來解鎖錢包。 - Unlock wallet 解鎖錢包 - This operation needs your wallet passphrase to decrypt the wallet. 這個動作需要你的錢包密碼來把錢包解密。 - Decrypt wallet 解密錢包 - Change passphrase 改變密碼 - Enter the old and new passphrase to the wallet. 請輸入錢包的舊密碼及新密碼。 - Confirm wallet encryption 確認錢包加密 - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR DOGECOINS</b>! - 警告: 如果將錢包加密後忘記密碼, 你會<b>失去其中所有的狗狗幣</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! + 警告: 如果把錢包加密後又忘記密碼,你就會從此<b>失去其中所有的位元幣了</b>! - Are you sure you wish to encrypt your wallet? 你確定要把錢包加密嗎? - IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 重要: 請改用新產生有加密的錢包檔,來取代舊錢包檔的備份。為了安全性的理由,當你開始使用新的有加密的錢包後,舊錢包檔的備份就不能再使用了。 - - Warning: The Caps Lock key is on! 警告: 大寫字母鎖定作用中! - - Wallet encrypted 錢包已加密 - - Dogecoin Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your Dogecoins from being stolen by malware infecting your computer. - 狗狗幣現在要關閉以完成加密程序. 請記住, 加密錢包無法完全防止入侵電腦的惡意程式偷取你的狗狗幣. + Dogecoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + 位元幣軟體現在要關閉,好完成加密程序。請注意,加密錢包不能完全防止入侵你的電腦的惡意程式偷取位元幣。 - - - - Wallet encryption failed 錢包加密失敗 - Wallet encryption failed due to an internal error. Your wallet was not encrypted. 因為內部錯誤導致錢包加密失敗。你的錢包還是沒加密。 - - The supplied passphrases do not match. 提供的密碼不一樣。 - Wallet unlock failed 錢包解鎖失敗 - - - The passphrase entered for the wallet decryption was incorrect. 輸入要用來解密錢包的密碼不對。 - Wallet decryption failed 錢包解密失敗 - Wallet passphrase was successfully changed. 錢包密碼改成功了。 @@ -322,352 +262,286 @@ This product includes software developed by the OpenSSL Project for use in the O BitcoinGUI - Sign &message... 簽署訊息... - Synchronizing with network... 正在跟網路進行同步... - &Overview 總覽 - Node 節點 - Show general overview of wallet 顯示錢包一般總覽 - &Transactions 交易 - Browse transaction history 瀏覽交易紀錄 - E&xit 結束 - Quit application 結束應用程式 - Show information about Dogecoin - 顯示狗狗幣相關資訊 + 顯示位元幣軟體相關資訊 - - About &Qt 關於 &Qt - Show information about Qt 顯示 Qt 相關資訊 - &Options... 選項... - &Encrypt Wallet... 加密錢包... - &Backup Wallet... 備份錢包... - &Change Passphrase... 改變密碼... - Very &sending addresses... 付款位址... - Much &receiving addresses... 收款位址... - Open &URI... 開啓 URI... - Importing blocks from disk... 正在從磁碟匯入區塊資料... - Reindexing blocks on disk... 正在為磁碟裡的區塊重建索引... - Send coins to a Dogecoin address - 付錢到狗狗幣地址 + 付錢給一個位元幣位址 - Modify configuration options for Dogecoin - 修改狗狗幣的設定選項 + 修改位元幣軟體的設定選項 - Backup wallet to another location 把錢包備份到其它地方 - Change the passphrase used for wallet encryption 改變錢包加密用的密碼 - &Debug window 除錯視窗 - Open debugging and diagnostic console 開啓除錯和診斷主控台 - &Verify message... 驗證訊息... - Dogecoin - 狗狗幣 + 位元幣 - Wallet 錢包 - &Send 付款 - &Receive 收受 - - &Show / Hide 顯示或隱藏 - Show or hide the main Window 顯示或隱藏主視窗 - Encrypt the private keys that belong to your wallet 把錢包中的密鑰加密 - Sign messages with your Dogecoin addresses to prove you own them - 用狗狗幣地址簽署訊息來證明那是你的 + 用位元幣位址簽署訊息來證明位址是你的 - Verify messages to ensure they were signed with specified Dogecoin addresses - 驗證訊息來確認是用指定的狗狗幣地址簽署的 + 驗證訊息是用來確定訊息是用指定的位元幣位址簽署的 - &File 檔案 - &Settings 設定 - &Help 說明 - Tabs toolbar 分頁工具列 - - [testnet] [testnet] - Dogecoin Core - 狗狗幣核心 + 位元幣核心 - - Request payments (generates QR codes and dogecoin: URIs) - 要求付款(產生 QR Code 和狗狗幣付款協議的 URI) + Request payments (generates QR codes and bitcoin: URIs) + 要求付款(產生 QR Code 和位元幣付款協議的 URI) - - &About Dogecoin Core - 關於狗狗幣核心 + 關於位元幣核心 - Show the list of used sending addresses and labels 顯示已使用過的付款位址和標記的清單 - Show the list of used receiving addresses and labels 顯示已使用過的收款位址和標記的清單 - - Open a dogecoin: URI or payment request - 開啓 dogecoin 協議的 URI 或付款要求 + Open a bitcoin: URI or payment request + 開啓 bitcoin 協議的 URI 或付款要求 - &Command-line options 命令列選項 - Show the Dogecoin Core help message to get a list with possible Dogecoin command-line options - 顯示狗狗幣核心的說明訊息,來取得可用命令列選項的列表 + 顯示位元幣核心的說明訊息,來取得可用命令列選項的列表 - - Dogecoin client - 狗狗幣客戶端軟體 + 位元幣客戶端軟體 - %n active connection(s) to Dogecoin network - 與狗狗幣網路有 %n 個連線在使用中 + %n 個運作中的位元幣網路連線 - No block source available... 沒有可用的區塊來源... - Processed %1 of %2 (estimated) blocks of transaction history. 已處理了估計全部 %2 個區塊中的 %1 個的交易紀錄。 - Processed %1 blocks of transaction history. 已處理了 %1 個區塊的交易紀錄。 - %n hour(s) %n 個小時 - %n day(s) %n 天 - %n week(s) %n 個星期 - + %1 and %2 + %1又 %2 + + + %n year(s) + %n 年 + + %1 behind 落後 %1 - Last received block was generated %1 ago. 最近收到的區塊是在 %1 以前生出來的。 - Transactions after this will not yet be visible. 暫時會看不到在這之後的交易。 - Error 錯誤 - Warning 警告 - Information 資訊 - Up to date 最新狀態 - Catching up... 正在趕進度... - Sent transaction 付款交易 - Incoming transaction 收款交易 - Date: %1 Amount: %2 Type: %3 @@ -680,25 +554,21 @@ Address: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> 錢包<b>已加密</b>並且<b>解鎖中</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> 錢包<b>已加密</b>並且<b>上鎖中</b> - A fatal error occurred. Dogecoin can no longer continue safely and will quit. - 發生了致命的錯誤. 狗狗幣程式無法再繼續安全執行, 只好結束. + 發生了致命的錯誤。位元幣軟體沒辦法再繼續安全執行,只好結束。 ClientModel - Network Alert 網路警報 @@ -706,291 +576,230 @@ Address: %4 CoinControlDialog - Coin Control Address Selection 錢幣控制的位址選擇 - Quantity: 數目: - Bytes: 位元組數: - Amount: 金額: - Priority: 優先度: - Fee: 手續費: - Low Output: 低輸出: - After Fee: 計費後金額: - Change: 找零金額: - (un)select all 全選或全不選 - Tree mode 樹狀模式 - List mode 列表模式 - Amount 金額 - Address - 位址 + 地址 - Date 日期 - Confirmations 確認次數 - Confirmed - 已確定 + 已確認 - Priority 優先度 - Copy address 複製位址 - Copy label 複製標記 - - Copy amount 複製金額 - Copy transaction ID 複製交易識別碼 - Lock unspent 鎖定不用 - Unlock unspent 解鎖可用 - Copy quantity 複製數目 - Copy fee 複製手續費 - Copy after fee 複製計費後金額 - Copy bytes 複製位元組數 - Copy priority 複製優先度 - Copy low output 複製低輸出 - Copy change 複製找零金額 - highest 最高 - higher 很高 - high - medium-high 中高 - medium 中等 - low-medium 中低 - low - lower 很低 - lowest 最低 - (%1 locked) (鎖定 %1 枚) - none - Dust 零散錢 - yes - no - This label turns red, if the transaction size is greater than 1000 bytes. 當交易大小大於 1000 位元組時,文字會變紅色。 - - This means a fee of at least %1 per kB is required. 表示每一千位元組(kB)需要至少 %1 的手續費。 - Can vary +/- 1 byte per input. 每組輸入可能會誤差多或少 1 個位元組。 - Transactions with higher priority are more likely to get included into a block. 優先度較高的交易比較有可能被接受放進區塊中。 - This label turns red, if the priority is smaller than "medium". 當優先度低於「中等」時,文字會變紅色。 - This label turns red, if any recipient receives an amount smaller than %1. 當任何一個收款金額小於 %1 時,文字會變紅色。 - - This means a fee of at least %1 is required. 表示至少需要 %1 的交易手續費。 - Amounts below 0.546 times the minimum relay fee are shown as dust. - 當金額低於最少轉發手續費乘以 0.546 時,會顯示成零散錢。 + 當金額低於最低轉發手續費乘以 0.546 時,會顯示成零散錢。 - This label turns red, if the change is smaller than %1. 當找零金額小於 %1 時,文字會變紅色。 - - (no label) (無標記) - change from %1 (%2) 找零前是 %1 (%2) - (change) (找零) @@ -998,67 +807,54 @@ Address: %4 EditAddressDialog - Edit Address 編輯位址 - &Label 標記 - The label associated with this address list entry 跟這個位址簿項目關聯的標記 - The address associated with this address list entry. This can only be modified for sending addresses. 跟這個位址簿項目關聯的位址。只有付款位址能被修改。 - &Address 位址 - New receiving address 造新的收款位址 - New sending address 造新的付款位址 - Edit receiving address 編輯收款位址 - Edit sending address 編輯付款位址 - The entered address "%1" is already in the address book. 輸入的位址 %1 在位址簿中已經有了。 - The entered address "%1" is not a valid Dogecoin address. - 輸入的位址 %1 並不是有效的狗狗幣位址。 + 輸入的位址 %1 並不是有效的位元幣位址。 - Could not unlock wallet. 沒辦法把錢包解鎖。 - New key generation failed. 產生新的密鑰失敗了。 @@ -1066,27 +862,22 @@ Address: %4 FreespaceChecker - A new data directory will be created. 就要造出新的資料目錄。 - name 名稱 - Directory already exists. Add %1 if you intend to create a new directory here. 已經有這個目錄了。如果你要在裡面造出新的目錄的話,請加上 %1. - Path already exists, and is not a directory. 已經有指定的路徑了,並且不是一個目錄。 - Cannot create data directory here. 沒辦法在這裡造出資料目錄。 @@ -1094,52 +885,46 @@ Address: %4 HelpMessageDialog - Dogecoin Core - Command-line options - 狗狗幣核心 - 命令列選項 + 位元幣核心 - 命令列選項 - Dogecoin Core - 狗狗幣核心 + 位元幣核心 - version 版本 - Usage: 用法: - command-line options 命令列選項 - UI options 使用界面選項 - Set language, for example "de_DE" (default: system locale) 設定語言,比如說 de_DE (預設值: 系統語系) - Start minimized 啓動時縮到最小 - + Set SSL root certificates for payment request (default: -system-) + 設定付款請求時所使用的 SSL 根憑證 (預設值: 系統憑證庫) + + Show splash screen on startup (default: 1) 顯示啓動畫面(預設值: 1) - Choose data directory on startup (default: 0) 啓動時選擇資料目錄(預設值: 0) @@ -1147,57 +932,46 @@ Address: %4 Intro - Welcome 歡迎 - Welcome to Dogecoin Core. - 歡迎使用狗狗幣核心 + 歡迎使用位元幣核心 - As this is the first time the program is launched, you can choose where Dogecoin Core will store its data. - 因為這是程式第一次啓動,你可以選擇狗狗幣核心儲存資料的地方。 + 因為這是程式第一次啓動,你可以選擇位元幣核心儲存資料的地方。 - Dogecoin Core will download and store a copy of the Dogecoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - 狗狗幣核心會下載並儲存一份狗狗幣區塊鏈的拷貝。至少有 %1GB 的資料會儲存到這個目錄中,並且還會持續增長。另外錢包資料也會儲存在這個目錄。 + 位元幣核心會下載並儲存一份位元幣區塊鏈的拷貝。至少有 %1GB 的資料會儲存到這個目錄中,並且還會持續增長。另外錢包資料也會儲存在這個目錄。 - Use the default data directory 使用預設的資料目錄 - Use a custom data directory: 使用自定的資料目錄: - Dogecoin - 狗狗幣 + 位元幣 - Error: Specified data directory "%1" can not be created. 錯誤: 沒辦法造出指定的資料目錄 %1 。 - Error 錯誤 - GB of free space available GB 可用空間 - (of %1GB needed) (需要 %1GB) @@ -1205,27 +979,22 @@ Address: %4 OpenURIDialog - Open URI 開啓 URI - Open payment request from URI or file 從 URI 或檔案開啟付款要求 - URI: URI: - Select payment request file 選擇付款要求資料檔 - Select payment request file to open 選擇要開啟的付款要求資料檔 @@ -1233,243 +1002,206 @@ Address: %4 OptionsDialog - Options 選項 - &Main 主要 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. 每一千位元組(kB)要付的交易手續費,如果有付可以加速網路處理你的交易。大部份交易資料的大小是 1 kB. - Pay transaction &fee 付交易手續費 - Automatically start Dogecoin after logging in to the system. - 在登入系統後自動啓動狗狗幣軟體。 + 在登入系統後自動啓動位元幣軟體。 - &Start Dogecoin on system login - 系統登入時啟動狗狗幣 + 系統登入時啟動位元幣 - Size of &database cache 資料庫快取大小 - - Set database cache size in megabytes (default: 25) - 設定資料庫快取的大小是多少百萬位元組(預設值: 25) - - - MB MB (百萬位元組) - Number of script &verification threads 指令碼驗證執行緒數目 - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - 設定驗證指令碼的執行緒數目(最多 16 個, 若是 0 表示程式自動決定,小於 0 是保留不用的處理器核心數目,預設值: 0) - - - Connect to the Dogecoin network through a SOCKS proxy. - 透過 SOCKS 代理伺服器連線至狗狗幣網路. + 透過 SOCKS 代理伺服器來連線到位元幣網路。 - &Connect through SOCKS proxy (default proxy): 透過 SOCKS 代理伺服器連線(預設代理伺服器): - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) 代理伺服器的網際網路位址(像是 IPv4 的 127.0.0.1 或 IPv6 的 ::1) - Active command-line options that override above options: 從命令列取代掉以上設定的選項有: - Reset all client options to default. - 回復所有客戶端軟體選項成預設值。 + 重設所有客戶端軟體選項成預設值。 - &Reset Options - 選項回復 + 重設選項 - &Network 網路 - - Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. - 自動在路由器上開放狗狗幣的客戶端通訊埠。只有在你的路由器支援且開啓通用即插即用(UPnP)協定時才有作用。 + (0 = auto, <0 = leave that many cores free) + (0 表示程式自動決定,小於 0 表示保留處理器核心不用的數目) + + + W&allet + 錢包 + + + Expert + 專家 + + + Enable coin &control features + 開啟錢幣控制功能 + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + 如果你關掉「可以花還沒確認的零錢」,那麼交易中找零的零錢就必須要等交易至少有一次確認後,才能夠使用。這也會影響餘額的計算方式。 + + + &Spend unconfirmed change + 可以花還沒確認的零錢 + + + Automatically open the Dogecoin client port on the router. This only works when your router supports UPnP and it is enabled. + 自動在路由器上開放位元幣的客戶端通訊埠。只有在你的路由器支援且開啓「通用即插即用」協定(UPnP)時才有作用。 - Map port using &UPnP 用 &UPnP 設定通訊埠對應 - Proxy &IP: 代理位址: - &Port: 埠號: - Port of the proxy (e.g. 9050) 代理伺服器的通訊埠(像是 9050) - SOCKS &Version: SOCKS 版本: - SOCKS version of the proxy (e.g. 5) 代理伺服器的 SOCKS 協定版本(像是 5) - &Window 視窗 - Show only a tray icon after minimizing the window. 視窗縮到最小後只在通知區域顯示圖示。 - &Minimize to the tray instead of the taskbar 縮到最小到通知區域而不是工作列 - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. 當視窗關閉時,把應用程式縮到最小,而不是結束。當勾選這個選項時,只能夠用選單中的結束來關掉應用程式。 - M&inimize on close 關閉時縮到最小 - &Display 顯示 - User Interface &language: 使用界面語言: - The user interface language can be set here. This setting will take effect after restarting Dogecoin. - 可以在這裡設定使用者介面的語言。這個設定在重啓狗狗幣軟體後才會生效。 + 可以在這裡設定使用者介面的語言。這個設定在重啓位元幣軟體後才會生效。 - &Unit to show amounts in: 金額顯示單位: - Choose the default subdivision unit to show in the interface and when sending coins. 選擇操作界面和付款時,預設顯示金額的細分單位。 - Whether to show Dogecoin addresses in the transaction list or not. - 是否要在交易列表中顯示狗狗幣位址。 + 是否要在交易列表中顯示位元幣位址。 - &Display addresses in transaction list 在交易列表顯示位址 - Whether to show coin control features or not. 是否要顯示錢幣控制功能。 - - Display coin &control features (experts only) - 顯示錢幣控制功能(專家用) - - - &OK - &Cancel 取消 - default 預設值 - none - Confirm options reset - 確認回復選項 + 確認重設選項 - - Client restart required to activate changes. 需要重新啟動客戶端軟體來讓改變生效。 - Client will be shutdown, do you want to proceed? 客戶端軟體就要關掉了,繼續做下去嗎? - This change would require a client restart. 這項改變需要重新啟動客戶端軟體。 - The supplied proxy address is invalid. 提供的代理伺服器位址無效。 @@ -1477,69 +1209,54 @@ Address: %4 OverviewPage - Form 表單 - - The displayed information may be out of date. Your wallet automatically synchronizes with the Dogecoin network after a connection is established, but this process has not completed yet. - 顯示的資訊可能是過期的. 與狗狗幣網路的連線建立後, 你的錢包會自動和網路同步, 但這個步驟還沒完成. + 顯示的資訊可能是過期的。跟位元幣網路的連線建立後,你的錢包會自動和網路同步,但是這個步驟還沒完成。 - - Unconfirmed: - 未確定金額: - - - Wallet 錢包 - - Confirmed: - 已確定金額: + Available: + 可用金額: - Your current spendable balance 目前可用餘額 - - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - 還沒確定的交易的總金額,可用餘額不包含這些金額 + Pending: + 未定金額: + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + 還沒被確認的交易的總金額,可用餘額不包含這些金額 - Immature: 未成熟金額: - Mined balance that has not yet matured 還沒成熟的開採金額 - Total: 總金額: - Your current total balance 目前全部餘額 - <b>Recent transactions</b> <b>最近交易</b> - - out of sync 還沒同步 @@ -1547,93 +1264,70 @@ Address: %4 PaymentServer - - URI handling URI 處理 - URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters. - 沒辦法解析 URI 位址!可能是因為狗狗幣位址無效,或是 URI 參數格式錯誤。 + 沒辦法解析 URI 位址!可能是因為位元幣位址無效,或是 URI 參數格式錯誤。 - Requested payment amount of %1 is too small (considered dust). 要求付款的金額 %1 太少(會被網路認為是沒必要的零散錢)。 - - - - - - Payment request error 要求付款時發生錯誤 - - Cannot start dogecoin: click-to-pay handler - 沒辦法啟動 dogecoin 協議的按就付處理器 + Cannot start bitcoin: click-to-pay handler + 沒辦法啟動 bitcoin 協議的按就付處理器 - Net manager warning 網路管理員警告 - Your active proxy doesn't support SOCKS5, which is required for payment requests via proxy. 目前使用中的代理伺服器不支援 SOCKS5 通訊協定,因此不能透過它來要求付款。 - Payment request fetch URL is invalid: %1 取得付款要求的 URL 無效: %1 - Payment request file handling 處理付款要求檔案 - Payment request file can not be read or processed! This can be caused by an invalid payment request file. 沒辦法讀或處理付款要求檔案!可能是無效的檔案造成的。 - Unverified payment requests to custom payment scripts are unsupported. 不支援含有自訂付款指令碼,且沒驗證過的付款要求。 - Refund from %1 來自 %1 的退款 - Error communicating with %1: %2 跟 %1 通訊時發生錯誤: %2 - Payment request can not be parsed or processed! 沒辦法解析或處理付款要求! - Bad response from server %1 伺服器 %1 的回應有誤 - Payment acknowledged 已確認付款 - Network request error 發出要求時發生網路錯誤 @@ -1641,46 +1335,45 @@ Address: %4 QObject - - Dogecoin - 狗狗幣 + 位元幣 - Error: Specified data directory "%1" does not exist. 錯誤: 沒有指定的資料目錄 %1 。 - + Error: Cannot parse configuration file: %1. Only use key=value syntax. + 錯誤: 沒辦法解析設定檔: %1。請只用「名稱=設定值」這種語法。 + + Error: Invalid combination of -regtest and -testnet. 錯誤: -regtest 和 -testnet 的使用組合無效。 - + Dogecoin Core did't yet exit safely... + 位元幣核心還沒有安全地結束... + + Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - 輸入狗狗幣地址 (比如說 DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + 請輸入位元幣位址(像是 DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) QRImageWidget - &Save Image... 儲存圖片... - &Copy Image 複製圖片 - Save QR Code 儲存 QR Code - PNG Image (*.png) PNG 圖檔(*.png) @@ -1688,192 +1381,146 @@ Address: %4 RPCConsole - Client name 客戶端軟體名稱 - - - - - - - - - - - N/A 未知 - Client version 客戶端軟體版本 - &Information 資訊 - Debug window 除錯視窗 - General 普通 - Using OpenSSL version 使用的 OpenSSL 版本 - Startup time 啓動時間 - Network 網路 - Name 名稱 - Number of connections 連線數 - Block chain 區塊鏈 - Current number of blocks 目前區塊數 - Estimated total blocks 估計總區塊數 - Last block time 最近區塊時間 - &Open 開啓 - &Console 主控台 - &Network Traffic 網路流量 - &Clear - 清除 + 清掉 - Totals 總計 - In: 輸入: - Out: 輸出: - Build date 建置日期 - Debug log file 除錯紀錄檔 - Open the Dogecoin debug log file from the current data directory. This can take a few seconds for large log files. - 從目前的資料目錄下開啓狗狗幣的除錯紀錄檔. 當紀錄檔很大時可能要花好幾秒的時間. + 從目前的資料目錄下開啓位元幣軟體的除錯紀錄檔。當紀錄檔很大時,可能會花好幾秒的時間。 - Clear console 清主控台 - Welcome to the Dogecoin RPC console. - 歡迎使用狗狗幣 RPC 主控台. + 歡迎使用位元幣 RPC 主控台。 - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - 請用上下游標鍵來瀏覽先前指令的紀錄,並用 <b>Ctrl-L</b> 來清理畫面。 + 請用上下游標鍵來瀏覽先前指令的紀錄,並用 <b>Ctrl-L</b> 來清畫面。 - Type <b>help</b> for an overview of available commands. 請打 <b>help</b> 來看可用指令的簡介。 - %1 B %1 B (位元組) - %1 KB %1 KB (千位元組) - %1 MB %1 MB (百萬位元組) - %1 GB %1 GB (十億位元組) - %1 m - %1 分 + %1 分鐘 - %1 h %1 小時 - %1 h %2 m %1 小時 %2 分 @@ -1881,105 +1528,82 @@ Address: %4 ReceiveCoinsDialog - &Amount: 金額: - &Label: 標記: - &Message: 訊息: - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. 重複使用先前使用過的收款位址。重複使用位址會有安全和隱私方面的問題。除非是要重新產生先前的付款要求,不然請不要使用。 - R&euse an existing receiving address (not recommended) 重複使用現有的收款位址(不建議) - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Dogecoin network. - 附加在付款要求中的訊息,可以不填,打開要求內容時會顯示。注意: 這個訊息不會隨著付款送到狗狗幣網路上。 + 附加在付款要求中的訊息,可以不填,打開要求內容時會顯示。注意: 這個訊息不會隨著付款送到位元幣網路上。 - - An optional label to associate with the new receiving address. 跟新收款位址關聯的標記,可以不填。 - Use this form to request payments. All fields are <b>optional</b>. 請用這份表單來要求付款。所有欄位都<b>可以不填</b>。 - - An optional amount to request. Leave this empty or zero to not request a specific amount. 要求付款的金額,可以不填。不確定金額時可以留白或是填零。 - Clear all fields of the form. - 清除表單中的所有欄位。 + 把表單中的所有欄位清空。 - Clear - 清除 + 清空 - Requested payments history 先前要求付款的記錄 - &Request payment 要求付款 - Show the selected request (does the same as double clicking an entry) 顯示選擇的要求內容(效果跟按它兩下一樣) - Show 顯示 - Remove the selected entries from the list 從列表中刪掉選擇的項目 - Remove 刪掉 - Copy label 複製標記 - Copy message 複製訊息 - Copy amount 複製金額 @@ -1987,67 +1611,54 @@ Address: %4 ReceiveRequestDialog - QR Code QR Code - Copy &URI 複製 URI - Copy &Address 複製位址 - &Save Image... 儲存圖片... - Request payment to %1 付款給 %1 的要求 - Payment information 付款資訊 - URI URI - Address - 位址 + 地址 - Amount 金額 - Label 標記 - Message 訊息 - Resulting URI too long, try to reduce the text for label / message. 產生的 URI 過長,請試著縮短標記或訊息的文字內容。 - Error encoding URI into QR Code. 把 URI 編碼成 QR Code 時發生錯誤。 @@ -2055,37 +1666,30 @@ Address: %4 RecentRequestsTableModel - Date 日期 - Label 標記 - Message 訊息 - Amount 金額 - (no label) (無標記) - (no message) (無訊息) - (no amount) (無金額) @@ -2093,247 +1697,194 @@ Address: %4 SendCoinsDialog - - - Send Coins 付款 - Coin Control Features 錢幣控制功能 - Inputs... 輸入... - automatically selected 自動選擇 - Insufficient funds! 累計金額不足! - Quantity: 數目: - Bytes: 位元組數: - Amount: 金額: - Priority: 優先度: - Fee: 手續費: - Low Output: 低輸出: - After Fee: 計費後金額: - Change: 找零金額: - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. 如果這項有打開,但是找零位址是空的或無效,那麼找零的錢會送到一個新產生的位址去。 - Custom change address 自定找零位址 - Send to multiple recipients at once 一次付給多個收款人 - Add &Recipient 增加收款人 - Clear all fields of the form. - 清除表單中的所有欄位。 + 把表單中的所有欄位清空。 - Clear &All 全部清掉 - Balance: 餘額: - Confirm the send action 確認付款動作 - S&end 付款 - Confirm send coins 確認付款金額 - - - - %1 to %2 %1 給 %2 - Copy quantity 複製數目 - Copy amount 複製金額 - Copy fee 複製手續費 - Copy after fee 複製計費後金額 - Copy bytes 複製位元組數 - Copy priority 複製優先度 - Copy low output 複製低輸出 - Copy change 複製找零金額 - Total Amount %1 (= %2) 總金額 %1 (= %2) - or - The recipient address is not valid, please recheck. 無效的收款地址, 請再檢查看看. - The amount to pay must be larger than 0. 付款金額必須大於零。 - The amount exceeds your balance. 金額超過餘額了。 - The total exceeds your balance when the %1 transaction fee is included. 包含 %1 的交易手續費後,總金額超過你的餘額了。 - Duplicate address found, can only send to each address once per send operation. 發現有重複的位址。每個付款動作中,只能付給個別的位址一次。 - Transaction creation failed! 製造交易失敗了! - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. 交易被拒絕了!有時候會發生這種錯誤,是因為你錢包中的一些錢已經被花掉了。比如說你複製了錢包檔 wallet.dat, 然後用複製的錢包花掉了錢,你現在所用的原來的錢包中,卻沒有那筆錢已經花掉的紀錄。 - Warning: Invalid Dogecoin address - 警告: 狗狗幣位址無效 + 警告: 位元幣位址無效 - (no label) (無標記) - Warning: Unknown change address 警告: 不明的找零位址 - Are you sure you want to send? 你確定要付錢出去嗎? - added as transaction fee 加做交易手續費 - Payment request expired 付款的要求已經過期 - Invalid payment address %1 無效的付款位址 %1 @@ -2341,98 +1892,74 @@ Address: %4 SendCoinsEntry - - - A&mount: 金額: - Pay &To: 付給: - The address to send the payment to (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - 付款的目標地址 (比如說 DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + 付款的目標位址(像是 DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Enter a label for this address to add it to your address book - 輸入一個標籤給這個地址, 並加到地址簿中 + 請輸入這個位址的標記來把它加進位址簿中 - &Label: - 標籤: + 標記: - Choose previously used address 選擇先前使用過的位址 - This is a normal payment. 這是一筆正常的付款。 - Alt+A Alt+A - Paste address from clipboard 從剪貼簿貼上地址 - Alt+P Alt+P - - - Remove this entry 刪掉這個項目 - Message: 訊息: - This is a verified payment request. 這是個已驗證的付款要求。 - Enter a label for this address to add it to the list of used addresses 請輸入這個位址的標記,來把它加進去已使用過位址的清單。 - - A message that was attached to the dogecoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. - 附加在狗狗幣付款協議 URI 中的訊息,會和交易內容一起存起來,給你自己做參考。注意: 這個訊息不會送到狗狗幣網路上。 + A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Dogecoin network. + 附加在位元幣付款協議 URI 中的訊息,會和交易內容一起存起來,給你自己做參考。注意: 這個訊息不會送到位元幣網路上。 - This is an unverified payment request. 這是個沒驗證過的付款要求。 - - Pay To: 付給: - - Memo: 備註: @@ -2440,12 +1967,10 @@ Address: %4 ShutdownWindow - Dogecoin Core is shutting down... - 狗狗幣核心正在關閉中... + 位元幣核心正在關閉中... - Do not shut down the computer until this window disappears. 在這個視窗不見以前,請不要關掉電腦。 @@ -2453,186 +1978,142 @@ Address: %4 SignVerifyMessageDialog - Signatures - Sign / Verify a Message 簽章 - 簽署或驗證訊息 - &Sign Message 簽署訊息 - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - 你可以用自己的地址來簽署訊息, 以證明你對它的所有權. 但是請小心, 不要簽署語意含糊不清的內容, 因為釣魚式詐騙可能會用騙你簽署的手法來冒充是你. 只有在語句中的細節你都同意時才簽署. + 你可以用自己的位址簽署訊息,來證明你對位址的所有權。但是請小心,不要簽署語意含糊不清的內容,因為釣魚式詐騙可能會用騙你簽署的手法來冒充是你。只有在語句中的細節你都同意時才簽署。 - The address to sign the message with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - 用來簽署訊息的地址 (比如說 DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + 用來簽署訊息的位址(像是 DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - - Choose previously used address 選擇先前使用過的位址 - - Alt+A Alt+A - Paste address from clipboard 從剪貼簿貼上地址 - Alt+P Alt+P - Enter the message you want to sign here 請在這裡輸入你想簽署的訊息 - Signature 簽章 - Copy the current signature to the system clipboard 複製目前的簽章到系統剪貼簿 - Sign the message to prove you own this Dogecoin address - 簽署訊息是用來證明這個狗狗幣地址是你的 + 簽署這個訊息來證明這個位元幣位址是你的 - Sign &Message 簽署訊息 - Reset all sign message fields - 重置所有訊息簽署欄位 + 重設所有訊息簽署欄位 - - Clear &All 全部清掉 - &Verify Message 驗證訊息 - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - 請在下面輸入簽署的地址, 訊息(請確認完整複製了所包含的換行, 空格, 跳位符號等等), 與簽章, 以驗證該訊息. 請小心, 除了訊息內容外, 不要對簽章本身過度解讀, 以避免被用"中間人攻擊法"詐騙. + 請在下面輸入簽署的位址,訊息(請確定完整複製了所包含的換行,空格,跳位符號等等),以及簽章,來驗證這個訊息。請小心,除了訊息內容以外,不要對簽章本身過度解讀,以避免被用「中間人攻擊法」詐騙。 - The address the message was signed with (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - 簽署該訊息的地址 (比如說 DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + 簽署這個訊息的位址(像是 DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Verify the message to ensure it was signed with the specified Dogecoin address - 驗證訊息是用來確認訊息是用指定的狗狗幣地址簽署的 + 驗證這個訊息來確定是用指定的位元幣位址簽署的 - Verify &Message 驗證訊息 - Reset all verify message fields - 重置所有訊息驗證欄位 + 重設所有訊息驗證欄位 - Enter a Dogecoin address (e.g. DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - 輸入狗狗幣地址 (比如說 DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) + 請輸入位元幣位址(像是 DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM) - Click "Sign Message" to generate signature 請按一下「簽署訊息」來產生簽章 - - The entered address is invalid. 輸入的位址無效。 - - - - Please check the address and try again. - 請檢查地址是否正確後再試一次. + 請檢查位址是否正確後再試一次。 - - The entered address does not refer to a key. - 輸入的地址沒有指到任何密鑰. + 輸入的位址沒有對應到你的任何密鑰。 - Wallet unlock was cancelled. 錢包解鎖已取消。 - Private key for the entered address is not available. 沒有所輸入地址的密鑰. - Message signing failed. 訊息簽署失敗。 - Message signed. 訊息簽署好了。 - The signature could not be decoded. 沒辦法把這個簽章解碼。 - - Please check the signature and try again. 請檢查簽章是否正確後再試一次。 - The signature did not match the message digest. 這個簽章跟訊息的數位摘要不符。 - Message verification failed. 訊息驗證失敗。 - Message verified. 訊息驗證沒錯。 @@ -2640,17 +2121,14 @@ Address: %4 SplashScreen - Dogecoin Core - 狗狗幣核心 + 位元幣核心 - The Dogecoin Core developers - 狗狗幣開發人員 + 位元幣核心開發人員 - [testnet] [testnet] @@ -2658,7 +2136,6 @@ Address: %4 TrafficGraphWidget - KB/s KB/s @@ -2666,179 +2143,138 @@ Address: %4 TransactionDesc - Open until %1 - 要到 %1 才確定 + 到 %1 前可修改 + + + conflicted + 有衝突 - %1/offline - %1/離線中 + %1 次/離線中 - %1/unconfirmed - %1/未確定 + %1 次/未確認 - %1 confirmations - %1 次確認 + 確認 %1 次 - Status 狀態 - , broadcast through %n node(s) ,已公告給 %n 個節點 - Date 日期 - Source 來源 - Generated 生產出來 - - From 來源 - - - To 目的 - - own address 自己的地址 - label 標記 - - - - - Credit 入帳 - matures in %n more block(s) 再等 %n 個區塊生出來後成熟 - not accepted 不被接受 - - - - Debit 出帳 - Transaction fee 交易手續費 - Net amount 淨額 - - Message 訊息 - Comment 附註 - Transaction ID 交易識別碼 - Merchant 商家 - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. 生產出來的錢要再等 %1 個區塊生出來後才成熟可以用。當區塊生產出來時會公布到網路上,來被加進區塊鏈。如果加失敗了,狀態就會變成「不被接受」,而且不能夠花。如果在你生產出區塊的幾秒鐘內,也有其他節點生產出來的話,就有可能會發生這種情形。 - Debug information 除錯資訊 - Transaction 交易 - Inputs 輸入 - Amount 金額 - true - false - , has not been successfully broadcast yet ,還沒成功公告出去 - Open for %n more block(s) - 再等 %n 個區塊生出來後才確定 + 到下 %n 個區塊生出來前可修改 - unknown 未知 @@ -2846,12 +2282,10 @@ Address: %4 TransactionDescDialog - Transaction details 交易明細 - This pane shows a detailed description of the transaction 這個版面顯示這次交易的詳細說明 @@ -2859,118 +2293,102 @@ Address: %4 TransactionTableModel - Date 日期 - Type 種類 - Address 地址 - Amount 金額 - Immature (%1 confirmations, will be available after %2) - 未成熟(%1 次確認,會在 %2 次確認後可用) + 未成熟(確認 %1 次,會在 %2 次後可用) - Open for %n more block(s) - 再等 %n 個區塊生出來後才確定 + 到下 %n 個區塊生出來前可修改 - Open until %1 - 要到 %1 才確定 + 到 %1 前可修改 - - Offline (%1 confirmations) - 離線中(%1 次確認) - - - - Unconfirmed (%1 of %2 confirmations) - 未確定(%1 次確認,應 %2 次) - - - - Confirmed (%1 confirmations) - 已確定(%1 次確認) + 已確認(%1 次) - This block was not received by any other nodes and will probably not be accepted! 沒有其他節點收到這個區塊,也許它不會被接受! - Generated but not accepted 生產出來但是不被接受 - + Offline + 離線中 + + + Unconfirmed + 未確認 + + + Confirming (%1 of %2 recommended confirmations) + 確認中(已經 %1 次,建議至少 %2 次) + + + Conflicted + 有衝突 + + Received with 收款在 - Received from 收款自 - Sent to 付款給 - Payment to yourself 付給自己 - Mined 開採所得 - (n/a) (不適用) - Transaction status. Hover over this field to show number of confirmations. 交易狀態。把游標停在欄位上會顯示確認次數。 - Date and time that the transaction was received. 收到交易的日期和時間。 - Type of transaction. 交易的種類。 - Destination address of transaction. 交易的目標地址. - Amount removed from or added to balance. 要減掉或加進餘額的金額。 @@ -2978,178 +2396,142 @@ Address: %4 TransactionView - - All 全部 - Today 今天 - This week 這星期 - This month 這個月 - Last month 上個月 - This year 今年 - Range... 指定範圍... - Received with 收款 - Sent to 付款 - To yourself 給自己 - Mined 開採所得 - Other 其它 - Enter address or label to search 輸入地址或標籤來搜尋 - Min amount 最小金額 - Copy address - 複製地址 + 複製位址 - Copy label - 複製標籤 + 複製標記 - Copy amount 複製金額 - Copy transaction ID 複製交易識別碼 - Edit label 編輯標籤 - Show transaction details 顯示交易明細 - Export Transaction History 匯出交易記錄 - Exporting Failed 匯出失敗 - There was an error trying to save the transaction history to %1. 儲存交易記錄到 %1 時發生錯誤。 - Exporting Successful 匯出成功 - The transaction history was successfully saved to %1. 交易記錄已經成功儲存到 %1 了。 - Comma separated file (*.csv) 逗點分隔資料檔(*.csv) - Confirmed - 已確定 + 已確認 - Date 日期 - Type 種類 - Label - 標籤 + 標記 - Address 地址 - Amount 金額 - ID 識別碼 - Range: 範圍: - to @@ -3157,7 +2539,6 @@ Address: %4 WalletFrame - No wallet has been loaded. 沒有載入錢包。 @@ -3165,7 +2546,6 @@ Address: %4 WalletModel - Send Coins 付款 @@ -3173,155 +2553,126 @@ Address: %4 WalletView - &Export 匯出 - Export the data in the current tab to a file 把目前分頁的資料匯出存成檔案 - Backup Wallet 備份錢包 - Wallet Data (*.dat) 錢包資料檔(*.dat) - Backup Failed 備份失敗 - There was an error trying to save the wallet data to %1. 儲存錢包資料到 %1 時發生錯誤。 - The wallet data was successfully saved to %1. 錢包的資料已經成功儲存到 %1 了。 - Backup Successful 備份成功 - dogecoin-core + bitcoin-core - Usage: 用法: - List commands 列出指令 - Get help for a command 取得指令說明 - Options: 選項: - - Specify configuration file (default: dogecoin.conf) - 指定設定檔(預設值: dogecoin.conf) + Specify configuration file (default: bitcoin.conf) + 指定設定檔(預設值: bitcoin.conf) - - Specify pid file (default: dogecoind.pid) - 指定行程識別碼(PID)檔(預設值: dogecoind.pid) + Specify pid file (default: bitcoind.pid) + 指定行程識別碼(PID)檔(預設值: bitcoind.pid) - Specify data directory 指定資料目錄 - - Set database cache size in megabytes (default: 25) - 設定資料庫快取大小成多少百萬位元組(MB;預設值: 25) + Listen for connections on <port> (default: 8333 or testnet: 18333) + 在通訊埠 <port> 聽候連線(預設值: 8333, 或若是測試網路: 18333) - - Listen for connections on <port> (default: 22556 or testnet: 44556) - 在通訊埠 <port> 聽候連線(預設值: 22556, 或若是測試網路: 44556) - - - Maintain at most <n> connections to peers (default: 125) 維持連線節點數的上限為 <n> 個(預設值: 125) - Connect to a node to retrieve peer addresses, and disconnect - 連線到某個節點以取得其它節點的地址, 然後斷線 + 連線到某個節點來取得其它節點的位址,然後斷線 - Specify your own public address - 指定自己公開的地址 + 指定自己的公開位址 - Threshold for disconnecting misbehaving peers (default: 100) 把異常節點斷線的臨界值(預設值: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) 拒絕跟異常節點連線的秒數(預設值: 86400) - An error occurred while setting up the RPC port %u for listening on IPv4: %s 設定在 IPv4 網路上以通訊埠 %u 聽取 RPC 連線時發生錯誤: %s - - Listen for JSON-RPC connections on <port> (default: 22555 or testnet: 44555) - 在通訊埠 <port> 聽候 JSON-RPC 連線(預設值: 22555, 或若是測試網路: 44555) + Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332) + 在通訊埠 <port> 聽候 JSON-RPC 連線(預設值: 8332, 或若是測試網路: 18332) - Accept command line and JSON-RPC commands 接受指令列和 JSON-RPC 指令 - + Dogecoin Core RPC client version + 位元幣核心 RPC 客戶端軟體版本 + + Run in the background as a daemon and accept commands 用護靈模式在背後執行並接受指令 - Use the test network 使用測試網路 - Accept connections from outside (default: 1 if no -proxy or -connect) 是否接受外來連線(預設值: 當沒有 -proxy 或 -connect 時為 1) - %s, you must set a rpcpassword in the configuration file: %s It is recommended you use the following random password: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (you do not need to remember this password) The username and password MUST NOT be the same. @@ -3332,7 +2683,7 @@ for example: alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo %s, 你必須要在以下設定檔中設定 RPC 密碼(rpcpassword): %s 建議你使用以下隨機產生的密碼: -rpcuser=dogecoinrpc +rpcuser=bitcoinrpc rpcpassword=%s (你不用記住這個密碼) 使用者名稱(rpcuser)和密碼(rpcpassword)不可以相同! @@ -3342,707 +2693,686 @@ rpcpassword=%s alertnotify=echo %%s | mail -s "Dogecoin Alert" admin@foo.com - Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) 可接受的加密演算法 (預設值: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH) - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s 設定在 IPv6 網路上以通訊埠 %u 聽候 RPC 連線失敗,退而改用 IPv4 網路: %s - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - 和指定的地址繫結, 並總是在該地址聽候連線. IPv6 請用 "[主機]:通訊埠" 這種格式 + 和指定的位址繫結,並總是在指定位址聽候連線。IPv6 請用 [主機]:通訊埠 這種格式 - - Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. - 無法鎖定資料目錄 %s. 也許狗狗幣已經在執行了. + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15) + 對沒付手續費的交易持續限制一分鐘內最多只能有 <n> 千位元組 (預設值: 15) - 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 %d) + 錯誤: 聽候外來連線失敗(回傳錯誤 %d) + + 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 的手續費!因為它的金額太大,或複雜度太高,或是使用了最近才剛收到的款項。 - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) 當錢包有交易改變時要執行的指令(指令中的 %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) + + + 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 選項控制立刻產生出的區塊數目。 + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + 設定指令碼驗證的執行緒數目 (%u 到 %d,0 表示程式自動決定,小於 0 表示保留處理器核心不用的數目,預設值: 0) + + + Set the processor limit for when generation is on (-1 = unlimited, default: -1) + 當生產位元幣打開時,設定處理器使用數目限制 (-1 表示不限制,預設值: -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. Dogecoin Core is probably already running. + 沒辦法繫結在這台電腦上的 %s 。位元幣核心可能已經在執行了。 + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy) 使用另外的 SOCK5 代理伺服器,來透過 Tor 隱藏服務跟節點聯繫(預設值: 同 -proxy) - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. 警告: -paytxfee 設定了很高的金額!這可是你交易付款所要付的手續費。 - Warning: Please check that your computer's date and time are correct! If your clock is wrong Dogecoin 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. 如果餘額或交易資料有誤,你應該要用備份資料復原回來。 - + (default: 1) + (預設值: 1) + + + (default: wallet.dat) + (預設值: wallet.dat) + + <category> can be: <category> 可以是: - Attempt to recover private keys from a corrupt wallet.dat 嘗試從壞掉的錢包檔 wallet.dat 復原密鑰 - Dogecoin Core Daemon - 狗狗幣核心護靈 + 位元幣核心護靈 - - Dogecoin RPC client version - 狗狗幣 RPC 客戶端軟體版本 - - - Block creation options: 區塊製造選項: - + Clear list of wallet transactions (diagnostic tool; implies -rescan) + 清掉錢包裡交易的列表(診斷用的工具; 也會做 -rescan) + + Connect only to the specified node(s) 只連線到指定節點(可多個) - Connect through SOCKS proxy 透過 SOCKS 代理伺服器來連線 - - Connect to JSON-RPC on <port> (default: 22555 or testnet: 44555) - 連線到埠號 <port> 上的 JSON-RPC 伺服器(預設值: 22555,或若是測試網路: 44555) + Connect to JSON-RPC on <port> (default: 8332 or testnet: 18332) + 連線到埠號 <port> 上的 JSON-RPC 伺服器(預設值: 8332,或若是測試網路: 18332) + + + Connection options: + 連線選項: - Corrupted block database detected 發現區塊資料庫壞掉了 - + Debugging/Testing options: + 除錯與測試選項 + + + Disable safemode, override a real safe mode event (default: 0) + 不進入安全模式,用在真的發生需要進入安全模式的事件時,強制不進入 (預設值: 0) + + Discover own IP address (default: 1 when listening and no -externalip) 找出自己的網際網路地址 (預設: 當有聽候連線且沒有 -externalip 時為 1) - Do not load the wallet and disable wallet RPC calls 不要載入錢包,並且拿掉錢包相關的 RPC 功能呼叫。 - Do you want to rebuild the block database now? 你想要現在重建區塊資料庫嗎? - Error initializing block database 初始化區塊資料庫時發生錯誤 - Error initializing wallet database environment %s! 初始化錢包資料庫環境 %s 時發生錯誤! - Error loading block database 載入區塊資料庫時發生錯誤 - Error opening block database 打開區塊資料庫時發生錯誤 - Error: Disk space is low! 錯誤: 磁碟空間很少! - Error: Wallet locked, unable to create transaction! 錯誤: 錢包被上鎖了,沒辦法製造新的交易! - 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: + 手續費比這個低時會被認為是沒付手續費(轉發用)(預設值: + + Find peers using DNS lookup (default: 1 unless -connect) 是否允許在找節點時使用域名查詢(預設值: 當沒用 -connect 時為 1) - + Force safe mode (default: 0) + 強制進入安全模式 (預設值: 0) + + Generate coins (default: 0) 生產狗狗幣 (預設值: 0) - How many blocks to check at startup (default: 288, 0 = all) 啓動時檢查的區塊數(預設值: 288, 指定 0 表示全部) - - How thorough the block verification is (0-4, default: 3) - 區塊檢查的仔細程度(0 到 4, 預設值: 3) - - - If <category> is not supplied, output all debugging information. 如果沒有提供 <category> 就會輸出所有的除錯資訊。 - + Importing... + 正在匯入中... + + Incorrect or no genesis block found. Wrong datadir for network? 創世區塊不正確或找不到。資料目錄錯了嗎? - Invalid -onion address: '%s' 無效的 -onion 位址: '%s' - Not enough file descriptors available. 檔案描述元不足。 - Prepend debug output with timestamp (default: 1) 在除錯輸出內容前附加時間(預設值: 1) - RPC client options: RPC 客戶端選項: - Rebuild block chain index from current blk000??.dat files 從目前的區塊檔 blk000??.dat 重建區塊鏈的索引 - Select SOCKS version for -proxy (4 or 5, default: 5) 選擇 -proxy 指定代理伺服器的 SOCKS 協定版本(4 或 5, 預設值: 5) - - Send command to Dogecoin server - 傳送指令給狗狗幣伺服器 + Set database cache size in megabytes (%d to %d, default: %d) + 設定資料庫快取大小是多少百萬位元組(MB,範圍: %d 到 %d,預設值: %d) - Set maximum block size in bytes (default: %d) 設定區塊大小上限成多少位元組(預設值: %d) - Set the number of threads to service RPC calls (default: 4) 設定處理 RPC 服務請求的執行緒數目(預設值: 4) - Specify wallet file (within data directory) 指定錢包檔(會在資料目錄中) - - Start Dogecoin server - 啟動狗狗幣伺服器 + Spend unconfirmed change when sending transactions (default: 1) + 傳送交易時可以花還沒確認的零錢(預設值: 1) - This is intended for regression testing tools and app development. 這是設計用來給回歸測試工具和應用程式開發用的。 - - Usage (deprecated, use dogecoin-cli): - 用法(已過時,請改用 dogecoin-cli): + Usage (deprecated, use bitcoin-cli): + 用法(已過時,請改用 bitcoin-cli): - Verifying blocks... 正在驗證區塊資料... - Verifying wallet... 正在驗證錢包資料... - Wait for RPC server to start 等待 RPC 伺服器啟動 - Wallet %s resides outside data directory %s 錢包檔 %s 沒有在資料目錄 %s 裡面 - Wallet options: 錢包選項: - Warning: Deprecated argument -debugnet ignored, use -debug=net 警告: 參數 -debugnet 因為已經淘汰掉了而被忽略,請改用 -debug=net - You need to rebuild the database using -reindex to change -txindex 改變 -txindex 參數後,必須要用 -reindex 參數來重建資料庫 - Imports blocks from external blk000??.dat file 從其它來源的 blk000??.dat 檔匯入區塊 - + Cannot obtain a lock on data directory %s. Dogecoin Core is probably already running. + 沒辦法鎖定資料目錄 %s。位元幣核心可能已經在執行了。 + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) 當收到相關警示,或發現相當長的分支時,所要執行的指令(指令中的 %s 會被取代成警示訊息) - Output debugging information (default: 0, supplying <category> is optional) 輸出除錯資訊(預設值: 0, 可以不指定 <category>) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) 設定高優先度或低手續費的交易資料大小上限成多少位元組(預設值: %d) - - Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0) - 設定指令碼驗證的執行緒數目(最多為 16, 若為 0 表示程式自動決定,小於 0 表示保留不用的處理器核心數目,預設值: 0) - - - Information 資訊 - Invalid amount for -minrelaytxfee=<amount>: '%s' - 設定最少轉發金額 -minrelaytxfee=<金額> 的金額無效: '%s' + 設定最低轉發手續費 -minrelaytxfee=<金額> 的金額無效: '%s' - Invalid amount for -mintxfee=<amount>: '%s' 設定 -mintxfee=<金額> 的金額無效: '%s' - + Limit size of signature cache to <n> entries (default: 50000) + 限制簽章快取大小為 <n> 筆 (預設值: 50000) + + + Log transaction priority and fee per kB when mining blocks (default: 0) + 開採區塊的時候紀錄交易的優先度以及每千位元組(kB)的手續費 (預設值: 0) + + Maintain a full transaction index (default: 0) 維護全部交易的索引(預設值: 0) - 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) - 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) - + 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 server options: + RPC 伺服器選項: + + + Randomly drop 1 of every <n> network messages + 隨機丟掉 <n> 分之一的網路訊息 + + + Randomly fuzz 1 of every <n> network messages + 隨機亂動 <n> 分之一的網路訊息裡的資料 + + + Run a thread to flush wallet periodically (default: 1) + 啟用定期將變動寫入錢包檔的執行緒 (預設值: 1) + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) - + Send command to Dogecoin Core + 傳送指令給位元幣核心 + + Send trace/debug info to console instead of debug.log file 在終端機顯示追蹤或除錯資訊,而不是寫到檔案 debug.log 中 - Set minimum block size in bytes (default: 0) 設定區塊大小下限成多少位元組(預設值: 0) - + Sets the DB_PRIVATE flag in the wallet db environment (default: 1) + 在錢包資料庫環境變數設定 DB_PRIVATE 旗標 (預設值: 1) + + + Show all debugging options (usage: --help -help-debug) + 顯示所有的除錯選項 (用法: --help --help-debug) + + + Show benchmark information (default: 0) + 顯示效能評比資訊 (預設值: 0) + + Shrink debug.log file on client startup (default: 1 when no -debug) 客戶端軟體啓動時把 debug.log 檔縮小(預設值: 當沒有 -debug 時為 1) - Signing transaction failed 簽署交易失敗 - Specify connection timeout in milliseconds (default: 5000) 指定連線在幾毫秒後逾時(預設值: 5000) - + Start Dogecoin Core Daemon + 啟動位元幣核心護靈 + + System error: 系統錯誤: - Transaction amount too small 交易金額太小 - Transaction amounts must be positive 交易金額必須是正的 - Transaction too large 交易位元量太大 - Use UPnP to map the listening port (default: 0) - 是否要使用通用即插即用(UPnP)協定,來設定聽候連線的通訊埠的對應(預設值: 0) + 是否要使用「通用即插即用」協定(UPnP),來設定聽候連線的通訊埠的對應(預設值: 0) - Use UPnP to map the listening port (default: 1 when listening) - 是否要使用通用即插即用(UPnP)協定,來設定聽候連線的通訊埠的對應(預設值: 當有聽候連線時為 1) + 是否要使用「通用即插即用」協定(UPnP),來設定聽候連線的通訊埠的對應(預設值: 當有聽候連線時為 1) - Username for JSON-RPC connections JSON-RPC 連線使用者名稱 - Warning 警告 - Warning: This version is obsolete, upgrade required! 警告: 這個版本已經被淘汰了,必須要升級! - + Zapping all transactions from wallet... + 正在砍掉錢包中的所有交易... + + + on startup + 當啟動時 + + version 版本 - wallet.dat corrupt, salvage failed 錢包檔 weallet.dat 壞掉了,拯救失敗 - Password for JSON-RPC connections JSON-RPC 連線密碼 - Allow JSON-RPC connections from specified IP address 只允許從指定網路地址來的 JSON-RPC 連線 - Send commands to node running on <ip> (default: 127.0.0.1) 傳送指令給在 <ip> 的節點(預設值: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) 當最新區塊改變時要執行的指令(指令中的 %s 會被取代成區塊雜湊值) - Upgrade wallet to latest format 把錢包檔案升級成最新的格式 - Set key pool size to <n> (default: 100) 設定密鑰池大小成 <n> (預設值: 100) - Rescan the block chain for missing wallet transactions 重新掃描區塊鏈,來尋找錢包可能漏掉的交易。 - Use OpenSSL (https) for JSON-RPC connections 在 JSON-RPC 連線使用 OpenSSL (https) - Server certificate file (default: server.cert) 伺服器憑證檔(預設值: server.cert) - Server private key (default: server.pem) 伺服器私鑰檔(預設值: server.pem) - This help message 這些說明訊息 - Unable to bind to %s on this computer (bind returned error %d, %s) 沒辦法和這台電腦上的 %s 繫結(回傳錯誤 %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect 允許對 -addnode, -seednode, -connect 的參數使用域名查詢 - Loading addresses... 載入地址中... - Error loading wallet.dat: Wallet corrupted 載入檔案 wallet.dat 時發生錯誤: 錢包損毀了 - Error loading wallet.dat: Wallet requires newer version of Dogecoin - 載入 wallet.dat 檔案時發生錯誤: 這個錢包需要新版的狗狗幣軟體 + 載入 wallet.dat 檔案時發生錯誤: 這個錢包需要新版的位元幣軟體 - Wallet needed to be rewritten: restart Dogecoin to complete - 錢包需要重寫: 請重啟狗狗幣來完成 + 錢包需要重寫: 請重新啓動位元幣軟體來完成 - Error loading wallet.dat 載入錢包檔 wallet.dat 時發生錯誤 - Invalid -proxy address: '%s' 無效的 -proxy 地址: '%s' - Unknown network specified in -onlynet: '%s' 在 -onlynet 指定了不明的網路別: '%s' - Unknown -socks proxy version requested: %i 在 -socks 指定了不明的代理協定版本: %i - Cannot resolve -bind address: '%s' - 無法解析 -bind 地址: '%s' + 沒辦法解析 -bind 位址: '%s' - Cannot resolve -externalip address: '%s' - 無法解析 -externalip 地址: '%s' + 沒辦法解析 -externalip 位址: '%s' - Invalid amount for -paytxfee=<amount>: '%s' 設定 -paytxfee=<金額> 的金額無效: '%s' - Invalid amount 無效的金額 - Insufficient funds 累積金額不足 - Loading block index... 正在載入區塊索引... - Add a node to connect to and attempt to keep the connection open - 加入一個要連線的節線, 並試著保持對它的連線暢通 + 增加一個要連線的節線,並試著保持對它的連線暢通 - - Unable to bind to %s on this computer. Dogecoin Core is probably already running. - 無法和這台電腦上的 %s 繫結. 也許狗狗幣已經在執行了. - - - Loading wallet... 正在載入錢包資料... - Cannot downgrade wallet 沒辦法把錢包格式降級 - Cannot write default address 無法寫入預設地址 - Rescanning... 正在重新掃描... - Done loading 載入完成 - To use the %s option 為了要使用 %s 選項 - Error 錯誤 - You must set rpcpassword=<password> in the configuration file: %s If the file does not exist, create it with owner-readable-only file permissions. @@ -4051,4 +3381,4 @@ If the file does not exist, create it with owner-readable-only file permissions. 如果還沒有這個檔案,請在造出來的時候,設定檔案權限成只有主人才能讀取。 - + \ No newline at end of file diff --git a/src/qt/macdockiconhandler.mm b/src/qt/macdockiconhandler.mm index 64291c918..74fb64ace 100644 --- a/src/qt/macdockiconhandler.mm +++ b/src/qt/macdockiconhandler.mm @@ -62,6 +62,8 @@ MacDockIconHandler::MacDockIconHandler() : QObject() this->setMainWindow(NULL); #if QT_VERSION < 0x050000 qt_mac_set_dock_menu(this->m_dockMenu); +#elif QT_VERSION >= 0x050200 + this->m_dockMenu->setAsDockMenu(); #endif [pool release]; } diff --git a/src/qt/optionsdialog.cpp b/src/qt/optionsdialog.cpp index 2e1ebf24f..e8365fc25 100644 --- a/src/qt/optionsdialog.cpp +++ b/src/qt/optionsdialog.cpp @@ -14,7 +14,7 @@ #include "monitoreddatamapper.h" #include "optionsmodel.h" -#include "main.h" // for CTransaction::nMinTxFee +#include "main.h" // for CTransaction::nMinTxFee and MAX_SCRIPTCHECK_THREADS #include "netbase.h" #include "txdb.h" // for -dbcache defaults @@ -37,6 +37,8 @@ OptionsDialog::OptionsDialog(QWidget *parent) : /* Main elements init */ ui->databaseCache->setMinimum(nMinDbCache); ui->databaseCache->setMaximum(nMaxDbCache); + ui->threadsScriptVerif->setMinimum(-(int)boost::thread::hardware_concurrency()); + ui->threadsScriptVerif->setMaximum(MAX_SCRIPTCHECK_THREADS); /* Network elements init */ #ifndef USE_UPNP @@ -94,6 +96,9 @@ OptionsDialog::OptionsDialog(QWidget *parent) : #endif } } +#if QT_VERSION >= 0x040700 + ui->thirdPartyTxUrls->setPlaceholderText("https://example.com/tx/%s"); +#endif ui->unit->setModel(new BitcoinUnits(this)); ui->transactionFee->setSingleStep(CTransaction::nMinTxFee); @@ -149,6 +154,7 @@ void OptionsDialog::setModel(OptionsModel *model) connect(ui->connectSocks, SIGNAL(clicked(bool)), this, SLOT(showRestartWarning())); /* Display */ connect(ui->lang, SIGNAL(valueChanged()), this, SLOT(showRestartWarning())); + connect(ui->thirdPartyTxUrls, SIGNAL(textChanged(const QString &)), this, SLOT(showRestartWarning())); } void OptionsDialog::setMapper() @@ -161,6 +167,7 @@ void OptionsDialog::setMapper() /* Wallet */ mapper->addMapping(ui->transactionFee, OptionsModel::Fee); mapper->addMapping(ui->spendZeroConfChange, OptionsModel::SpendZeroConfChange); + mapper->addMapping(ui->coinControlFeatures, OptionsModel::CoinControlFeatures); /* Network */ mapper->addMapping(ui->mapPortUpnp, OptionsModel::MapPortUPnP); @@ -180,7 +187,7 @@ void OptionsDialog::setMapper() mapper->addMapping(ui->lang, OptionsModel::Language); mapper->addMapping(ui->unit, OptionsModel::DisplayUnit); mapper->addMapping(ui->displayAddresses, OptionsModel::DisplayAddresses); - mapper->addMapping(ui->coinControlFeatures, OptionsModel::CoinControlFeatures); + mapper->addMapping(ui->thirdPartyTxUrls, OptionsModel::ThirdPartyTxUrls); } void OptionsDialog::enableOkButton() diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp index f3b63dbdf..dc00733ee 100644 --- a/src/qt/optionsmodel.cpp +++ b/src/qt/optionsmodel.cpp @@ -30,6 +30,11 @@ OptionsModel::OptionsModel(QObject *parent) : Init(); } +void OptionsModel::addOverriddenOption(const std::string &option) +{ + strOverriddenByCommandLine += QString::fromStdString(option) + "=" + QString::fromStdString(mapArgs[option]) + " "; +} + // Writes all missing QSettings with their default values void OptionsModel::Init() { @@ -60,6 +65,10 @@ void OptionsModel::Init() settings.setValue("bDisplayAddresses", false); bDisplayAddresses = settings.value("bDisplayAddresses", false).toBool(); + if (!settings.contains("strThirdPartyTxUrls")) + settings.setValue("strThirdPartyTxUrls", "http://dogechain.info/tx/%s|https://chain.so/tx/DOGE/%s"); + strThirdPartyTxUrls = settings.value("strThirdPartyTxUrls", "").toString(); + if (!settings.contains("fCoinControlFeatures")) settings.setValue("fCoinControlFeatures", false); fCoinControlFeatures = settings.value("fCoinControlFeatures", false).toBool(); @@ -73,38 +82,39 @@ void OptionsModel::Init() // by command-line and show this in the UI. // Main + if (!settings.contains("nDatabaseCache")) + settings.setValue("nDatabaseCache", (qint64)nDefaultDbCache); + if (!SoftSetArg("-dbcache", settings.value("nDatabaseCache").toString().toStdString())) + addOverriddenOption("-dbcache"); + + if (!settings.contains("nThreadsScriptVerif")) + settings.setValue("nThreadsScriptVerif", DEFAULT_SCRIPTCHECK_THREADS); + if (!SoftSetArg("-par", settings.value("nThreadsScriptVerif").toString().toStdString())) + addOverriddenOption("-par"); + + // Wallet #ifdef ENABLE_WALLET if (!settings.contains("nTransactionFee")) - settings.setValue("nTransactionFee", 0); + settings.setValue("nTransactionFee", (qint64)DEFAULT_TRANSACTION_FEE); nTransactionFee = settings.value("nTransactionFee").toLongLong(); // if -paytxfee is set, this will be overridden later in init.cpp if (mapArgs.count("-paytxfee")) - strOverriddenByCommandLine += "-paytxfee "; + addOverriddenOption("-paytxfee"); if (!settings.contains("bSpendZeroConfChange")) settings.setValue("bSpendZeroConfChange", true); if (!SoftSetBoolArg("-spendzeroconfchange", settings.value("bSpendZeroConfChange").toBool())) - strOverriddenByCommandLine += "-spendzeroconfchange "; + addOverriddenOption("-spendzeroconfchange"); #endif - if (!settings.contains("nDatabaseCache")) - settings.setValue("nDatabaseCache", (qint64)nDefaultDbCache); - if (!SoftSetArg("-dbcache", settings.value("nDatabaseCache").toString().toStdString())) - strOverriddenByCommandLine += "-dbcache "; - - if (!settings.contains("nThreadsScriptVerif")) - settings.setValue("nThreadsScriptVerif", 0); - if (!SoftSetArg("-par", settings.value("nThreadsScriptVerif").toString().toStdString())) - strOverriddenByCommandLine += "-par "; - // Network if (!settings.contains("fUseUPnP")) #ifdef USE_UPNP settings.setValue("fUseUPnP", true); #else settings.setValue("fUseUPnP", false); -#endif +#endif if (!SoftSetBoolArg("-upnp", settings.value("fUseUPnP").toBool())) - strOverriddenByCommandLine += "-upnp "; + addOverriddenOption("-upnp"); if (!settings.contains("fUseProxy")) settings.setValue("fUseProxy", false); @@ -112,18 +122,18 @@ void OptionsModel::Init() settings.setValue("addrProxy", "127.0.0.1:9050"); // Only try to set -proxy, if user has enabled fUseProxy if (settings.value("fUseProxy").toBool() && !SoftSetArg("-proxy", settings.value("addrProxy").toString().toStdString())) - strOverriddenByCommandLine += "-proxy "; + addOverriddenOption("-proxy"); if (!settings.contains("nSocksVersion")) settings.setValue("nSocksVersion", 5); // Only try to set -socks, if user has enabled fUseProxy if (settings.value("fUseProxy").toBool() && !SoftSetArg("-socks", settings.value("nSocksVersion").toString().toStdString())) - strOverriddenByCommandLine += "-socks "; + addOverriddenOption("-socks"); // Display if (!settings.contains("language")) settings.setValue("language", ""); if (!SoftSetArg("-lang", settings.value("language").toString().toStdString())) - strOverriddenByCommandLine += "-lang"; + addOverriddenOption("-lang"); language = settings.value("language").toString(); } @@ -199,6 +209,8 @@ QVariant OptionsModel::data(const QModelIndex & index, int role) const return nDisplayUnit; case DisplayAddresses: return bDisplayAddresses; + case ThirdPartyTxUrls: + return strThirdPartyTxUrls; case Language: return settings.value("language"); case CoinControlFeatures: @@ -300,6 +312,13 @@ bool OptionsModel::setData(const QModelIndex & index, const QVariant & value, in bDisplayAddresses = value.toBool(); settings.setValue("bDisplayAddresses", bDisplayAddresses); break; + case ThirdPartyTxUrls: + if (strThirdPartyTxUrls != value.toString()) { + strThirdPartyTxUrls = value.toString(); + settings.setValue("strThirdPartyTxUrls", strThirdPartyTxUrls); + setRestartRequired(true); + } + break; case Language: if (settings.value("language") != value) { settings.setValue("language", value); diff --git a/src/qt/optionsmodel.h b/src/qt/optionsmodel.h index a3487ddd2..f05e3e92d 100644 --- a/src/qt/optionsmodel.h +++ b/src/qt/optionsmodel.h @@ -36,6 +36,7 @@ public: Fee, // qint64 DisplayUnit, // BitcoinUnits::Unit DisplayAddresses, // bool + ThirdPartyTxUrls, // QString Language, // QString CoinControlFeatures, // bool ThreadsScriptVerif, // int @@ -56,6 +57,7 @@ public: bool getMinimizeOnClose() { return fMinimizeOnClose; } int getDisplayUnit() { return nDisplayUnit; } bool getDisplayAddresses() { return bDisplayAddresses; } + QString getThirdPartyTxUrls() { return strThirdPartyTxUrls; } bool getProxySettings(QNetworkProxy& proxy) const; bool getCoinControlFeatures() { return fCoinControlFeatures; } const QString& getOverriddenByCommandLine() { return strOverriddenByCommandLine; } @@ -71,10 +73,14 @@ private: QString language; int nDisplayUnit; bool bDisplayAddresses; + QString strThirdPartyTxUrls; bool fCoinControlFeatures; /* settings that were overriden by command-line */ QString strOverriddenByCommandLine; + /// Add option to list of GUI options overridden through command line/config file + void addOverriddenOption(const std::string &option); + signals: void displayUnitChanged(int unit); void transactionFeeChanged(qint64); diff --git a/src/qt/paymentrequest.proto b/src/qt/paymentrequest.proto index b2281c4c7..964d6e173 100644 --- a/src/qt/paymentrequest.proto +++ b/src/qt/paymentrequest.proto @@ -1,22 +1,23 @@ // -// Simple Bitcoin Payment Protocol messages +// Simple Dogecoin Payment Protocol messages +// Derived fromthe Bitcoin Payment Protocol // // Use fields 100+ for extensions; -// to avoid conflicts, register extensions at: -// https://en.bitcoin.it/wiki/Payment_Request +// to avoid conflicts, register extensions via pull-req at: +// https://github.com/dogecoin/dips // package payments; -option java_package = "org.bitcoin.protocols.payments"; +option java_package = "com.dogecoin.protocols.payments"; option java_outer_classname = "Protos"; -// Generalized form of "send payment to this/these bitcoin addresses" +// Generalized form of "send payment to this/these dogecoin addresses" message Output { - optional uint64 amount = 1 [default = 0]; // amount is integer-number-of-satoshis - required bytes script = 2; // usually one of the standard Script forms + optional uint64 amount = 1 [default = 0]; // amount is integer-number-of-satoshis + required bytes script = 2; // usually one of the standard Script forms } message PaymentDetails { - optional string network = 1 [default = "main"]; // "main" or "test" + optional string genesis = 1 [default = "1a91e3dace36e2be3bf030a65679fe821aa1d6ef92e7c9902eb318182c355691"]; // Hash of the network genesis block repeated Output outputs = 2; // Where payment should be sent required uint64 time = 3; // Timestamp; when payment request created optional uint64 expires = 4; // Timestamp; when this request should be considered invalid diff --git a/src/qt/paymentserver.cpp b/src/qt/paymentserver.cpp index 98130062f..d0428c144 100644 --- a/src/qt/paymentserver.cpp +++ b/src/qt/paymentserver.cpp @@ -178,6 +178,9 @@ void PaymentServer::LoadRootCAs(X509_STORE* _store) // and the items in savedPaymentRequest will be handled // when uiReady() is called. // +// Warning: ipcSendCommandLine() is called early in init, +// so don't use "emit message()", but "QMessageBox::"! +// bool PaymentServer::ipcParseCommandLine(int argc, char* argv[]) { for (int i = 1; i < argc; i++) @@ -205,14 +208,19 @@ bool PaymentServer::ipcParseCommandLine(int argc, char* argv[]) else if (QFile::exists(arg)) // Filename { savedPaymentRequests.append(arg); - + PaymentRequestPlus request; + if (readPaymentRequest(arg, request)) { - if (request.getDetails().network() == "main") + if (request.getDetails().genesis() == "1a91e3dace36e2be3bf030a65679fe821aa1d6ef92e7c9902eb318182c355691") + { SelectParams(CChainParams::MAIN); - else + } + else if (request.getDetails().genesis() == "bb0a78264637406b6360aad926284d544d7049f45189db5664f3c4d07350559e") + { SelectParams(CChainParams::TESTNET); + } } } else @@ -411,7 +419,15 @@ void PaymentServer::handleURIOrFile(const QString& s) { SendCoinsRecipient recipient; if (GUIUtil::parseBitcoinURI(s, &recipient)) - emit receivedPaymentRequest(recipient); + { + CBitcoinAddress address(recipient.address.toStdString()); + if (!address.IsValid()) { + emit message(tr("URI handling"), tr("Invalid payment address %1").arg(recipient.address), + CClientUIInterface::MSG_ERROR); + } + else + emit receivedPaymentRequest(recipient); + } else emit message(tr("URI handling"), tr("URI can not be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters."), @@ -425,12 +441,14 @@ void PaymentServer::handleURIOrFile(const QString& s) { PaymentRequestPlus request; SendCoinsRecipient recipient; - if (readPaymentRequest(s, request) && processPaymentRequest(request, recipient)) - emit receivedPaymentRequest(recipient); - else + if (!readPaymentRequest(s, request)) + { emit message(tr("Payment request file handling"), - tr("Payment request file can not be read or processed! This can be caused by an invalid payment request file."), + tr("Payment request file can not be read! This can be caused by an invalid payment request file."), CClientUIInterface::ICON_WARNING); + } + else if (processPaymentRequest(request, recipient)) + emit receivedPaymentRequest(recipient); return; } @@ -482,6 +500,35 @@ bool PaymentServer::processPaymentRequest(PaymentRequestPlus& request, SendCoins if (!optionsModel) return false; + if (request.IsInitialized()) { + const payments::PaymentDetails& details = request.getDetails(); + + // Payment request network matches client network? + if ((details.genesis() == "1a91e3dace36e2be3bf030a65679fe821aa1d6ef92e7c9902eb318182c355691" && TestNet()) || + (details.genesis() == "bb0a78264637406b6360aad926284d544d7049f45189db5664f3c4d07350559e" && !TestNet())) + { + emit message(tr("Payment request rejected"), tr("Payment request network doesn't match client network."), + CClientUIInterface::MSG_ERROR); + + return false; + } + + // Expired payment request? + if (details.has_expires() && (int64_t)details.expires() < GetTime()) + { + emit message(tr("Payment request rejected"), tr("Payment request has expired."), + CClientUIInterface::MSG_ERROR); + + return false; + } + } + else { + emit message(tr("Payment request error"), tr("Payment request is not initialized."), + CClientUIInterface::MSG_ERROR); + + return false; + } + recipient.paymentRequest = request; recipient.message = GUIUtil::HtmlEscape(request.getDetails().memo()); @@ -497,11 +544,11 @@ bool PaymentServer::processPaymentRequest(PaymentRequestPlus& request, SendCoins // Append destination address addresses.append(QString::fromStdString(CBitcoinAddress(dest).ToString())); } - else if (!recipient.authenticatedMerchant.isEmpty()){ + else if (!recipient.authenticatedMerchant.isEmpty()) { // Insecure payments to custom bitcoin addresses are not supported // (there is no good way to tell the user where they are paying in a way // they'd have a chance of understanding). - emit message(tr("Payment request error"), + emit message(tr("Payment request rejected"), tr("Unverified payment requests to custom payment scripts are unsupported."), CClientUIInterface::MSG_ERROR); return false; @@ -510,11 +557,10 @@ bool PaymentServer::processPaymentRequest(PaymentRequestPlus& request, SendCoins // Extract and check amounts CTxOut txOut(sendingTo.second, sendingTo.first); if (txOut.IsDust(CTransaction::nMinRelayTxFee)) { - QString msg = tr("Requested payment amount of %1 is too small (considered dust).") - .arg(BitcoinUnits::formatWithUnit(optionsModel->getDisplayUnit(), sendingTo.second)); + emit message(tr("Payment request error"), tr("Requested payment amount of %1 is too small (considered dust).") + .arg(BitcoinUnits::formatWithUnit(optionsModel->getDisplayUnit(), sendingTo.second)), + CClientUIInterface::MSG_ERROR); - qDebug() << "PaymentServer::processPaymentRequest : " << msg; - emit message(tr("Payment request error"), msg, CClientUIInterface::MSG_ERROR); return false; } @@ -581,8 +627,8 @@ void PaymentServer::fetchPaymentACK(CWallet* wallet, SendCoinsRecipient recipien refund_to->set_script(&s[0], s.size()); } else { - // This should never happen, because sending coins should have just unlocked the wallet - // and refilled the keypool + // This should never happen, because sending coins should have + // just unlocked the wallet and refilled the keypool. qDebug() << "PaymentServer::fetchPaymentACK : Error getting refund key, refund_to not set"; } } @@ -594,7 +640,7 @@ void PaymentServer::fetchPaymentACK(CWallet* wallet, SendCoinsRecipient recipien netManager->post(netRequest, serData); } else { - // This should never happen, either: + // This should never happen, either. qDebug() << "PaymentServer::fetchPaymentACK : Error serializing payment message"; } } @@ -620,17 +666,15 @@ void PaymentServer::netRequestFinished(QNetworkReply* reply) { PaymentRequestPlus request; SendCoinsRecipient recipient; - if (request.parse(data) && processPaymentRequest(request, recipient)) + if (!request.parse(data)) { - emit receivedPaymentRequest(recipient); - } - else - { - qDebug() << "PaymentServer::netRequestFinished : Error processing payment request"; + qDebug() << "PaymentServer::netRequestFinished : Error parsing payment request"; emit message(tr("Payment request error"), - tr("Payment request can not be parsed or processed!"), + tr("Payment request can not be parsed!"), CClientUIInterface::MSG_ERROR); } + else if (processPaymentRequest(request, recipient)) + emit receivedPaymentRequest(recipient); return; } diff --git a/src/qt/receivecoinsdialog.cpp b/src/qt/receivecoinsdialog.cpp index 7539645b4..f2c76c835 100644 --- a/src/qt/receivecoinsdialog.cpp +++ b/src/qt/receivecoinsdialog.cpp @@ -5,20 +5,21 @@ #include "receivecoinsdialog.h" #include "ui_receivecoinsdialog.h" -#include "walletmodel.h" -#include "bitcoinunits.h" #include "addressbookpage.h" -#include "optionsmodel.h" -#include "guiutil.h" -#include "receiverequestdialog.h" #include "addresstablemodel.h" +#include "bitcoinunits.h" +#include "guiutil.h" +#include "optionsmodel.h" +#include "receiverequestdialog.h" #include "recentrequeststablemodel.h" +#include "walletmodel.h" #include #include +#include #include -#include #include +#include ReceiveCoinsDialog::ReceiveCoinsDialog(QWidget *parent) : QDialog(parent), @@ -60,23 +61,26 @@ void ReceiveCoinsDialog::setModel(WalletModel *model) if(model && model->getOptionsModel()) { + model->getRecentRequestsTableModel()->sort(RecentRequestsTableModel::Date, Qt::DescendingOrder); connect(model->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit())); updateDisplayUnit(); - ui->recentRequestsView->setModel(model->getRecentRequestsTableModel()); - ui->recentRequestsView->setAlternatingRowColors(true); - ui->recentRequestsView->setSelectionBehavior(QAbstractItemView::SelectRows); - ui->recentRequestsView->setSelectionMode(QAbstractItemView::ContiguousSelection); - ui->recentRequestsView->horizontalHeader()->resizeSection(RecentRequestsTableModel::Date, 130); - ui->recentRequestsView->horizontalHeader()->resizeSection(RecentRequestsTableModel::Label, 120); -#if QT_VERSION < 0x050000 - ui->recentRequestsView->horizontalHeader()->setResizeMode(RecentRequestsTableModel::Message, QHeaderView::Stretch); -#else - ui->recentRequestsView->horizontalHeader()->setSectionResizeMode(RecentRequestsTableModel::Message, QHeaderView::Stretch); -#endif - ui->recentRequestsView->horizontalHeader()->resizeSection(RecentRequestsTableModel::Amount, 100); + QTableView* tableView = ui->recentRequestsView; - model->getRecentRequestsTableModel()->sort(RecentRequestsTableModel::Date, Qt::DescendingOrder); + tableView->verticalHeader()->hide(); + tableView->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); + tableView->setModel(model->getRecentRequestsTableModel()); + tableView->setAlternatingRowColors(true); + tableView->setSelectionBehavior(QAbstractItemView::SelectRows); + tableView->setSelectionMode(QAbstractItemView::ContiguousSelection); + tableView->setColumnWidth(RecentRequestsTableModel::Date, DATE_COLUMN_WIDTH); + tableView->setColumnWidth(RecentRequestsTableModel::Label, LABEL_COLUMN_WIDTH); + + connect(tableView->selectionModel(), + SIGNAL(selectionChanged(QItemSelection, QItemSelection)), this, + SLOT(recentRequestsView_selectionChanged(QItemSelection, QItemSelection))); + // Last 2 columns are set by the columnResizingFixer, when the table geometry is ready. + columnResizingFixer = new GUIUtil::TableViewLastColumnResizingFixer(tableView, AMOUNT_MINIMUM_COLUMN_WIDTH, DATE_COLUMN_WIDTH); } } @@ -161,6 +165,14 @@ void ReceiveCoinsDialog::on_recentRequestsView_doubleClicked(const QModelIndex & dialog->show(); } +void ReceiveCoinsDialog::recentRequestsView_selectionChanged(const QItemSelection &selected, const QItemSelection &deselected) +{ + // Enable Show/Remove buttons only if anything is selected. + bool enable = !ui->recentRequestsView->selectionModel()->selectedRows().isEmpty(); + ui->showRequestButton->setEnabled(enable); + ui->removeRequestButton->setEnabled(enable); +} + void ReceiveCoinsDialog::on_showRequestButton_clicked() { if(!model || !model->getRecentRequestsTableModel() || !ui->recentRequestsView->selectionModel()) @@ -185,6 +197,14 @@ void ReceiveCoinsDialog::on_removeRequestButton_clicked() model->getRecentRequestsTableModel()->removeRows(firstIndex.row(), selection.length(), firstIndex.parent()); } +// We override the virtual resizeEvent of the QWidget to adjust tables column +// sizes as the tables width is proportional to the dialogs width. +void ReceiveCoinsDialog::resizeEvent(QResizeEvent *event) +{ + QWidget::resizeEvent(event); + columnResizingFixer->stretchColumnWidth(RecentRequestsTableModel::Message); +} + void ReceiveCoinsDialog::keyPressEvent(QKeyEvent *event) { if (event->key() == Qt::Key_Return) diff --git a/src/qt/receivecoinsdialog.h b/src/qt/receivecoinsdialog.h index 12d223578..663cb157a 100644 --- a/src/qt/receivecoinsdialog.h +++ b/src/qt/receivecoinsdialog.h @@ -6,16 +6,20 @@ #define RECEIVECOINSDIALOG_H #include +#include +#include #include #include #include #include +#include "guiutil.h" + namespace Ui { class ReceiveCoinsDialog; } -class WalletModel; class OptionsModel; +class WalletModel; QT_BEGIN_NAMESPACE class QModelIndex; @@ -27,6 +31,13 @@ class ReceiveCoinsDialog : public QDialog Q_OBJECT public: + enum ColumnWidths { + DATE_COLUMN_WIDTH = 130, + LABEL_COLUMN_WIDTH = 120, + AMOUNT_MINIMUM_COLUMN_WIDTH = 160, + MINIMUM_COLUMN_WIDTH = 130 + }; + explicit ReceiveCoinsDialog(QWidget *parent = 0); ~ReceiveCoinsDialog(); @@ -42,17 +53,20 @@ protected: private: Ui::ReceiveCoinsDialog *ui; + GUIUtil::TableViewLastColumnResizingFixer *columnResizingFixer; WalletModel *model; QMenu *contextMenu; void copyColumnToClipboard(int column); + virtual void resizeEvent(QResizeEvent *event); private slots: void on_receiveButton_clicked(); void on_showRequestButton_clicked(); void on_removeRequestButton_clicked(); void on_recentRequestsView_doubleClicked(const QModelIndex &index); + void recentRequestsView_selectionChanged(const QItemSelection &selected, const QItemSelection &deselected); void updateDisplayUnit(); - void showMenu(const QPoint &); + void showMenu(const QPoint &point); void copyLabel(); void copyMessage(); void copyAmount(); diff --git a/src/qt/receiverequestdialog.cpp b/src/qt/receiverequestdialog.cpp index b5e45341d..062638f2b 100644 --- a/src/qt/receiverequestdialog.cpp +++ b/src/qt/receiverequestdialog.cpp @@ -16,6 +16,7 @@ #include #include #include +#include #if QT_VERSION < 0x050000 #include #endif @@ -29,26 +30,27 @@ #endif QRImageWidget::QRImageWidget(QWidget *parent): - QLabel(parent) + QLabel(parent), contextMenu(0) { - setContextMenuPolicy(Qt::ActionsContextMenu); - + contextMenu = new QMenu(); QAction *saveImageAction = new QAction(tr("&Save Image..."), this); connect(saveImageAction, SIGNAL(triggered()), this, SLOT(saveImage())); - addAction(saveImageAction); + contextMenu->addAction(saveImageAction); QAction *copyImageAction = new QAction(tr("&Copy Image"), this); connect(copyImageAction, SIGNAL(triggered()), this, SLOT(copyImage())); - addAction(copyImageAction); + contextMenu->addAction(copyImageAction); } QImage QRImageWidget::exportImage() { + if(!pixmap()) + return QImage(); return pixmap()->toImage().scaled(EXPORT_IMAGE_SIZE, EXPORT_IMAGE_SIZE); } void QRImageWidget::mousePressEvent(QMouseEvent *event) { - if(event->button() == Qt::LeftButton) + if(event->button() == Qt::LeftButton && pixmap()) { event->accept(); QMimeData *mimeData = new QMimeData; @@ -64,6 +66,8 @@ void QRImageWidget::mousePressEvent(QMouseEvent *event) void QRImageWidget::saveImage() { + if(!pixmap()) + return; QString fn = GUIUtil::getSaveFileName(this, tr("Save QR Code"), QString(), tr("PNG Image (*.png)"), NULL); if (!fn.isEmpty()) { @@ -73,9 +77,18 @@ void QRImageWidget::saveImage() void QRImageWidget::copyImage() { + if(!pixmap()) + return; QApplication::clipboard()->setImage(exportImage()); } +void QRImageWidget::contextMenuEvent(QContextMenuEvent *event) +{ + if(!pixmap()) + return; + contextMenu->exec(event->globalPos()); +} + ReceiveRequestDialog::ReceiveRequestDialog(QWidget *parent) : QDialog(parent), ui(new Ui::ReceiveRequestDialog), diff --git a/src/qt/receiverequestdialog.h b/src/qt/receiverequestdialog.h index 295a73031..5614ac635 100644 --- a/src/qt/receiverequestdialog.h +++ b/src/qt/receiverequestdialog.h @@ -15,6 +15,9 @@ namespace Ui { class ReceiveRequestDialog; } class OptionsModel; +QT_BEGIN_NAMESPACE +class QMenu; +QT_END_NAMESPACE /* Label widget for QR code. This image can be dragged, dropped, copied and saved * to disk. @@ -33,6 +36,10 @@ public slots: protected: virtual void mousePressEvent(QMouseEvent *event); + virtual void contextMenuEvent(QContextMenuEvent *event); + +private: + QMenu *contextMenu; }; class ReceiveRequestDialog : public QDialog diff --git a/src/qt/res/fonts/ComicNeue-Bold-Oblique.ttf b/src/qt/res/fonts/ComicNeue-Bold-Oblique.ttf new file mode 100644 index 000000000..013bbfbf4 Binary files /dev/null and b/src/qt/res/fonts/ComicNeue-Bold-Oblique.ttf differ diff --git a/src/qt/res/fonts/ComicNeue-Bold.ttf b/src/qt/res/fonts/ComicNeue-Bold.ttf new file mode 100644 index 000000000..d70924aff Binary files /dev/null and b/src/qt/res/fonts/ComicNeue-Bold.ttf differ diff --git a/src/qt/res/fonts/ComicNeue-Light-Oblique.ttf b/src/qt/res/fonts/ComicNeue-Light-Oblique.ttf new file mode 100644 index 000000000..bb1f16a78 Binary files /dev/null and b/src/qt/res/fonts/ComicNeue-Light-Oblique.ttf differ diff --git a/src/qt/res/fonts/ComicNeue-Light.ttf b/src/qt/res/fonts/ComicNeue-Light.ttf new file mode 100644 index 000000000..6cc7d4281 Binary files /dev/null and b/src/qt/res/fonts/ComicNeue-Light.ttf differ diff --git a/src/qt/res/fonts/ComicNeue-Regular-Oblique.ttf b/src/qt/res/fonts/ComicNeue-Regular-Oblique.ttf new file mode 100644 index 000000000..a950b8951 Binary files /dev/null and b/src/qt/res/fonts/ComicNeue-Regular-Oblique.ttf differ diff --git a/src/qt/res/fonts/ComicNeue-Regular.ttf b/src/qt/res/fonts/ComicNeue-Regular.ttf new file mode 100644 index 000000000..6704d7dc5 Binary files /dev/null and b/src/qt/res/fonts/ComicNeue-Regular.ttf differ diff --git a/src/qt/res/icons/bitcoin.ico b/src/qt/res/icons/bitcoin.ico index 64af71e62..256d81070 100755 Binary files a/src/qt/res/icons/bitcoin.ico and b/src/qt/res/icons/bitcoin.ico differ diff --git a/src/qt/res/icons/bitcoin_testnet.ico b/src/qt/res/icons/bitcoin_testnet.ico index 7606fedeb..6b1529e30 100755 Binary files a/src/qt/res/icons/bitcoin_testnet.ico and b/src/qt/res/icons/bitcoin_testnet.ico differ diff --git a/src/qt/res/images/wallet_bgcoin.png b/src/qt/res/images/wallet_bgcoin.png index d03984f1e..a29b4f952 100755 Binary files a/src/qt/res/images/wallet_bgcoin.png and b/src/qt/res/images/wallet_bgcoin.png differ diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 580bbabb9..682295eb1 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -271,8 +271,8 @@ void RPCConsole::setClientModel(ClientModel *model) setNumConnections(model->getNumConnections()); connect(model, SIGNAL(numConnectionsChanged(int)), this, SLOT(setNumConnections(int))); - setNumBlocks(model->getNumBlocks(), model->getNumBlocksOfPeers()); - connect(model, SIGNAL(numBlocksChanged(int,int)), this, SLOT(setNumBlocks(int,int))); + setNumBlocks(model->getNumBlocks()); + connect(model, SIGNAL(numBlocksChanged(int)), this, SLOT(setNumBlocks(int))); updateTrafficStats(model->getTotalBytesRecv(), model->getTotalBytesSent()); connect(model, SIGNAL(bytesChanged(quint64,quint64)), this, SLOT(updateTrafficStats(quint64, quint64))); @@ -331,6 +331,13 @@ void RPCConsole::clear() tr("Type help for an overview of available commands.")), true); } +void RPCConsole::reject() +{ + // Ignore escape keypress if this is not a seperate window + if(windowType() != Qt::Widget) + QDialog::reject(); +} + void RPCConsole::message(int category, const QString &message, bool html) { QTime time = QTime::currentTime(); @@ -352,11 +359,9 @@ void RPCConsole::setNumConnections(int count) ui->numberOfConnections->setText(QString::number(count)); } -void RPCConsole::setNumBlocks(int count, int countOfPeers) +void RPCConsole::setNumBlocks(int count) { ui->numberOfBlocks->setText(QString::number(count)); - // If there is no current countOfPeers available display N/A instead of 0, which can't ever be true - ui->totalBlocks->setText(countOfPeers == 0 ? tr("N/A") : QString::number(countOfPeers)); if(clientModel) ui->lastBlockTime->setText(clientModel->getLastBlockDate().toString()); } diff --git a/src/qt/rpcconsole.h b/src/qt/rpcconsole.h index e5da01546..091a6d294 100644 --- a/src/qt/rpcconsole.h +++ b/src/qt/rpcconsole.h @@ -47,11 +47,12 @@ private slots: public slots: void clear(); + void reject(); void message(int category, const QString &message, bool html = false); /** Set number of connections shown in the UI */ void setNumConnections(int count); /** Set number of blocks shown in the UI */ - void setNumBlocks(int count, int countOfPeers); + void setNumBlocks(int count); /** Go forward or back in history */ void browseHistory(int offset); /** Scroll console view to end */ diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 1d1b30fca..a01db3cac 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -377,26 +377,8 @@ void SendCoinsDialog::pasteEntry(const SendCoinsRecipient &rv) bool SendCoinsDialog::handlePaymentRequest(const SendCoinsRecipient &rv) { - QString strSendCoins = tr("Send Coins"); - if (rv.paymentRequest.IsInitialized()) { - // Expired payment request? - const payments::PaymentDetails& details = rv.paymentRequest.getDetails(); - if (details.has_expires() && (int64_t)details.expires() < GetTime()) - { - emit message(strSendCoins, tr("Payment request expired"), - CClientUIInterface::MSG_WARNING); - return false; - } - } - else { - CBitcoinAddress address(rv.address.toStdString()); - if (!address.IsValid()) { - emit message(strSendCoins, tr("Invalid payment address %1").arg(rv.address), - CClientUIInterface::MSG_WARNING); - return false; - } - } - + // Just paste the entry, all pre-checks + // are done in paymentserver.cpp. pasteEntry(rv); return true; } diff --git a/src/qt/sendcoinsentry.cpp b/src/qt/sendcoinsentry.cpp index 0cb17c510..30a09772a 100644 --- a/src/qt/sendcoinsentry.cpp +++ b/src/qt/sendcoinsentry.cpp @@ -195,8 +195,10 @@ void SendCoinsEntry::setValue(const SendCoinsRecipient &value) ui->messageTextLabel->setVisible(!recipient.message.isEmpty()); ui->messageLabel->setVisible(!recipient.message.isEmpty()); - ui->payTo->setText(recipient.address); - ui->addAsLabel->setText(recipient.label); + ui->addAsLabel->clear(); + ui->payTo->setText(recipient.address); // this may set a label from addressbook + if (!recipient.label.isEmpty()) // if a label had been set from the addressbook, dont overwrite with an empty label + ui->addAsLabel->setText(recipient.label); ui->payAmount->setValue(recipient.amount); } } diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp index 0407ebba2..15eebe2d8 100644 --- a/src/qt/splashscreen.cpp +++ b/src/qt/splashscreen.cpp @@ -5,8 +5,12 @@ #include "splashscreen.h" #include "clientversion.h" +#include "init.h" #include "ui_interface.h" #include "util.h" +#ifdef ENABLE_WALLET +#include "wallet.h" +#endif #include #include @@ -111,14 +115,33 @@ static void InitMessage(SplashScreen *splash, const std::string &message) Q_ARG(QColor, QColor(55,55,55))); } +static void ShowProgress(SplashScreen *splash, const std::string &title, int nProgress) +{ + InitMessage(splash, title + strprintf("%d", nProgress) + "%"); +} + +#ifdef ENABLE_WALLET +static void ConnectWallet(SplashScreen *splash, CWallet* wallet) +{ + wallet->ShowProgress.connect(boost::bind(ShowProgress, splash, _1, _2)); +} +#endif + void SplashScreen::subscribeToCoreSignals() { // Connect signals to client uiInterface.InitMessage.connect(boost::bind(InitMessage, this, _1)); +#ifdef ENABLE_WALLET + uiInterface.LoadWallet.connect(boost::bind(ConnectWallet, this, _1)); +#endif } void SplashScreen::unsubscribeFromCoreSignals() { // Disconnect signals from client uiInterface.InitMessage.disconnect(boost::bind(InitMessage, this, _1)); +#ifdef ENABLE_WALLET + if(pwalletMain) + pwalletMain->ShowProgress.disconnect(boost::bind(ShowProgress, this, _1, _2)); +#endif } diff --git a/src/qt/transactiondesc.cpp b/src/qt/transactiondesc.cpp index 7017bf344..773379ec8 100644 --- a/src/qt/transactiondesc.cpp +++ b/src/qt/transactiondesc.cpp @@ -20,6 +20,7 @@ QString TransactionDesc::FormatTxStatus(const CWalletTx& wtx) { + AssertLockHeld(cs_main); if (!IsFinalTx(wtx, chainActive.Height() + 1)) { if (wtx.nLockTime < LOCKTIME_THRESHOLD) @@ -45,268 +46,263 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx, int vout, int u { QString strHTML; + LOCK2(cs_main, wallet->cs_wallet); + strHTML.reserve(4000); + strHTML += ""; + + int64_t nTime = wtx.GetTxTime(); + int64_t nCredit = wtx.GetCredit(); + int64_t nDebit = wtx.GetDebit(); + int64_t nNet = nCredit - nDebit; + + strHTML += "" + tr("Status") + ": " + FormatTxStatus(wtx); + int nRequests = wtx.GetRequestCount(); + if (nRequests != -1) { - LOCK(wallet->cs_wallet); - strHTML.reserve(4000); - strHTML += ""; + if (nRequests == 0) + strHTML += tr(", has not been successfully broadcast yet"); + else if (nRequests > 0) + strHTML += tr(", broadcast through %n node(s)", "", nRequests); + } + strHTML += "
"; - int64_t nTime = wtx.GetTxTime(); - int64_t nCredit = wtx.GetCredit(); - int64_t nDebit = wtx.GetDebit(); - int64_t nNet = nCredit - nDebit; + strHTML += "" + tr("Date") + ": " + (nTime ? GUIUtil::dateTimeStr(nTime) : "") + "
"; - strHTML += "" + tr("Status") + ": " + FormatTxStatus(wtx); - int nRequests = wtx.GetRequestCount(); - if (nRequests != -1) + // + // From + // + if (wtx.IsCoinBase()) + { + strHTML += "" + tr("Source") + ": " + tr("Generated") + "
"; + } + else if (wtx.mapValue.count("from") && !wtx.mapValue["from"].empty()) + { + // Online transaction + strHTML += "" + tr("From") + ": " + GUIUtil::HtmlEscape(wtx.mapValue["from"]) + "
"; + } + else + { + // Offline transaction + if (nNet > 0) { - if (nRequests == 0) - strHTML += tr(", has not been successfully broadcast yet"); - else if (nRequests > 0) - strHTML += tr(", broadcast through %n node(s)", "", nRequests); - } - strHTML += "
"; - - strHTML += "" + tr("Date") + ": " + (nTime ? GUIUtil::dateTimeStr(nTime) : "") + "
"; - - // - // From - // - if (wtx.IsCoinBase()) - { - strHTML += "" + tr("Source") + ": " + tr("Generated") + "
"; - } - else if (wtx.mapValue.count("from") && !wtx.mapValue["from"].empty()) - { - // Online transaction - strHTML += "" + tr("From") + ": " + GUIUtil::HtmlEscape(wtx.mapValue["from"]) + "
"; - } - else - { - // Offline transaction - if (nNet > 0) - { - // Credit - BOOST_FOREACH(const CTxOut& txout, wtx.vout) - { - if (wallet->IsMine(txout)) - { - CTxDestination address; - if (ExtractDestination(txout.scriptPubKey, address) && IsMine(*wallet, address)) - { - if (wallet->mapAddressBook.count(address)) - { - strHTML += "" + tr("From") + ": " + tr("unknown") + "
"; - strHTML += "" + tr("To") + ": "; - strHTML += GUIUtil::HtmlEscape(CBitcoinAddress(address).ToString()); - if (!wallet->mapAddressBook[address].name.empty()) - strHTML += " (" + tr("own address") + ", " + tr("label") + ": " + GUIUtil::HtmlEscape(wallet->mapAddressBook[address].name) + ")"; - else - strHTML += " (" + tr("own address") + ")"; - strHTML += "
"; - } - } - break; - } - } - } - } - - // - // To - // - if (wtx.mapValue.count("to") && !wtx.mapValue["to"].empty()) - { - // Online transaction - std::string strAddress = wtx.mapValue["to"]; - strHTML += "" + tr("To") + ": "; - CTxDestination dest = CBitcoinAddress(strAddress).Get(); - if (wallet->mapAddressBook.count(dest) && !wallet->mapAddressBook[dest].name.empty()) - strHTML += GUIUtil::HtmlEscape(wallet->mapAddressBook[dest].name) + " "; - strHTML += GUIUtil::HtmlEscape(strAddress) + "
"; - } - - // - // Amount - // - if (wtx.IsCoinBase() && nCredit == 0) - { - // - // Coinbase - // - int64_t nUnmatured = 0; - BOOST_FOREACH(const CTxOut& txout, wtx.vout) - nUnmatured += wallet->GetCredit(txout); - strHTML += "" + tr("Credit") + ": "; - if (wtx.IsInMainChain()) - strHTML += BitcoinUnits::formatWithUnit(unit, nUnmatured)+ " (" + tr("matures in %n more block(s)", "", wtx.GetBlocksToMaturity()) + ")"; - else - strHTML += "(" + tr("not accepted") + ")"; - strHTML += "
"; - } - else if (nNet > 0) - { - // // Credit - // - strHTML += "" + tr("Credit") + ": " + BitcoinUnits::formatWithUnit(unit, nNet) + "
"; - } - else - { - bool fAllFromMe = true; - BOOST_FOREACH(const CTxIn& txin, wtx.vin) - fAllFromMe = fAllFromMe && wallet->IsMine(txin); - - bool fAllToMe = true; BOOST_FOREACH(const CTxOut& txout, wtx.vout) - fAllToMe = fAllToMe && wallet->IsMine(txout); - - if (fAllFromMe) { - // - // Debit - // - BOOST_FOREACH(const CTxOut& txout, wtx.vout) + if (wallet->IsMine(txout)) { - if (wallet->IsMine(txout)) - continue; - - if (!wtx.mapValue.count("to") || wtx.mapValue["to"].empty()) + CTxDestination address; + if (ExtractDestination(txout.scriptPubKey, address) && IsMine(*wallet, address)) { - // Offline transaction - CTxDestination address; - if (ExtractDestination(txout.scriptPubKey, address)) + if (wallet->mapAddressBook.count(address)) { + strHTML += "" + tr("From") + ": " + tr("unknown") + "
"; strHTML += "" + tr("To") + ": "; - if (wallet->mapAddressBook.count(address) && !wallet->mapAddressBook[address].name.empty()) - strHTML += GUIUtil::HtmlEscape(wallet->mapAddressBook[address].name) + " "; strHTML += GUIUtil::HtmlEscape(CBitcoinAddress(address).ToString()); + if (!wallet->mapAddressBook[address].name.empty()) + strHTML += " (" + tr("own address") + ", " + tr("label") + ": " + GUIUtil::HtmlEscape(wallet->mapAddressBook[address].name) + ")"; + else + strHTML += " (" + tr("own address") + ")"; strHTML += "
"; } } - - strHTML += "" + tr("Debit") + ": " + BitcoinUnits::formatWithUnit(unit, -txout.nValue) + "
"; + break; } - - if (fAllToMe) - { - // Payment to self - int64_t nChange = wtx.GetChange(); - int64_t nValue = nCredit - nChange; - strHTML += "" + tr("Debit") + ": " + BitcoinUnits::formatWithUnit(unit, -nValue) + "
"; - strHTML += "" + tr("Credit") + ": " + BitcoinUnits::formatWithUnit(unit, nValue) + "
"; - } - - int64_t nTxFee = nDebit - wtx.GetValueOut(); - if (nTxFee > 0) - strHTML += "" + tr("Transaction fee") + ": " + BitcoinUnits::formatWithUnit(unit, -nTxFee) + "
"; - } - else - { - // - // Mixed debit transaction - // - BOOST_FOREACH(const CTxIn& txin, wtx.vin) - if (wallet->IsMine(txin)) - strHTML += "" + tr("Debit") + ": " + BitcoinUnits::formatWithUnit(unit, -wallet->GetDebit(txin)) + "
"; - BOOST_FOREACH(const CTxOut& txout, wtx.vout) - if (wallet->IsMine(txout)) - strHTML += "" + tr("Credit") + ": " + BitcoinUnits::formatWithUnit(unit, wallet->GetCredit(txout)) + "
"; } } + } - strHTML += "" + tr("Net amount") + ": " + BitcoinUnits::formatWithUnit(unit, nNet, true) + "
"; + // + // To + // + if (wtx.mapValue.count("to") && !wtx.mapValue["to"].empty()) + { + // Online transaction + std::string strAddress = wtx.mapValue["to"]; + strHTML += "" + tr("To") + ": "; + CTxDestination dest = CBitcoinAddress(strAddress).Get(); + if (wallet->mapAddressBook.count(dest) && !wallet->mapAddressBook[dest].name.empty()) + strHTML += GUIUtil::HtmlEscape(wallet->mapAddressBook[dest].name) + " "; + strHTML += GUIUtil::HtmlEscape(strAddress) + "
"; + } + // + // Amount + // + if (wtx.IsCoinBase() && nCredit == 0) + { // - // Message + // Coinbase // - if (wtx.mapValue.count("message") && !wtx.mapValue["message"].empty()) - strHTML += "
" + tr("Message") + ":
" + GUIUtil::HtmlEscape(wtx.mapValue["message"], true) + "
"; - if (wtx.mapValue.count("comment") && !wtx.mapValue["comment"].empty()) - strHTML += "
" + tr("Comment") + ":
" + GUIUtil::HtmlEscape(wtx.mapValue["comment"], true) + "
"; - - strHTML += "" + tr("Transaction ID") + ": " + TransactionRecord::formatSubTxId(wtx.GetHash(), vout) + "
"; - - // Message from normal dogecoin:URI (dogecoin:D12...?message=example) - foreach (const PAIRTYPE(string, string)& r, wtx.vOrderForm) - if (r.first == "Message") - strHTML += "
" + tr("Message") + ":
" + GUIUtil::HtmlEscape(r.second, true) + "
"; - + int64_t nUnmatured = 0; + BOOST_FOREACH(const CTxOut& txout, wtx.vout) + nUnmatured += wallet->GetCredit(txout); + strHTML += "" + tr("Credit") + ": "; + if (wtx.IsInMainChain()) + strHTML += BitcoinUnits::formatWithUnit(unit, nUnmatured)+ " (" + tr("matures in %n more block(s)", "", wtx.GetBlocksToMaturity()) + ")"; + else + strHTML += "(" + tr("not accepted") + ")"; + strHTML += "
"; + } + else if (nNet > 0) + { // - // PaymentRequest info: + // Credit // - foreach (const PAIRTYPE(string, string)& r, wtx.vOrderForm) + strHTML += "" + tr("Credit") + ": " + BitcoinUnits::formatWithUnit(unit, nNet) + "
"; + } + else + { + bool fAllFromMe = true; + BOOST_FOREACH(const CTxIn& txin, wtx.vin) + fAllFromMe = fAllFromMe && wallet->IsMine(txin); + + bool fAllToMe = true; + BOOST_FOREACH(const CTxOut& txout, wtx.vout) + fAllToMe = fAllToMe && wallet->IsMine(txout); + + if (fAllFromMe) { - if (r.first == "PaymentRequest") - { - PaymentRequestPlus req; - req.parse(QByteArray::fromRawData(r.second.data(), r.second.size())); - QString merchant; - if (req.getMerchant(PaymentServer::getCertStore(), merchant)) - strHTML += "" + tr("Merchant") + ": " + GUIUtil::HtmlEscape(merchant) + "
"; - } - } - - if (wtx.IsCoinBase()) - { - quint32 numBlocksToMaturity = COINBASE_MATURITY + 1; - - if (wtx.GetDepthInMainChain() >= COINBASE_MATURITY_SWITCH) - { - numBlocksToMaturity = COINBASE_MATURITY_NEW + 1; - } - strHTML += "
" + tr("Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to \"not accepted\" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours.").arg(QString::number(numBlocksToMaturity)) + "
"; - } - - // - // Debug view - // - if (fDebug) - { - strHTML += "

" + tr("Debug information") + "

"; - BOOST_FOREACH(const CTxIn& txin, wtx.vin) - if(wallet->IsMine(txin)) - strHTML += "" + tr("Debit") + ": " + BitcoinUnits::formatWithUnit(unit, -wallet->GetDebit(txin)) + "
"; + // + // Debit + // BOOST_FOREACH(const CTxOut& txout, wtx.vout) - if(wallet->IsMine(txout)) - strHTML += "" + tr("Credit") + ": " + BitcoinUnits::formatWithUnit(unit, wallet->GetCredit(txout)) + "
"; - - strHTML += "
" + tr("Transaction") + ":
"; - strHTML += GUIUtil::HtmlEscape(wtx.ToString(), true); - - strHTML += "
" + tr("Inputs") + ":"; - strHTML += "
    "; - { - LOCK(wallet->cs_wallet); - BOOST_FOREACH(const CTxIn& txin, wtx.vin) - { - COutPoint prevout = txin.prevout; + if (wallet->IsMine(txout)) + continue; - CCoins prev; - if(pcoinsTip->GetCoins(prevout.hash, prev)) + if (!wtx.mapValue.count("to") || wtx.mapValue["to"].empty()) + { + // Offline transaction + CTxDestination address; + if (ExtractDestination(txout.scriptPubKey, address)) { - if (prevout.n < prev.vout.size()) - { - strHTML += "
  • "; - const CTxOut &vout = prev.vout[prevout.n]; - CTxDestination address; - if (ExtractDestination(vout.scriptPubKey, address)) - { - if (wallet->mapAddressBook.count(address) && !wallet->mapAddressBook[address].name.empty()) - strHTML += GUIUtil::HtmlEscape(wallet->mapAddressBook[address].name) + " "; - strHTML += QString::fromStdString(CBitcoinAddress(address).ToString()); - } - strHTML = strHTML + " " + tr("Amount") + "=" + BitcoinUnits::formatWithUnit(unit, vout.nValue); - strHTML = strHTML + " IsMine=" + (wallet->IsMine(vout) ? tr("true") : tr("false")) + "
  • "; - } + strHTML += "" + tr("To") + ": "; + if (wallet->mapAddressBook.count(address) && !wallet->mapAddressBook[address].name.empty()) + strHTML += GUIUtil::HtmlEscape(wallet->mapAddressBook[address].name) + " "; + strHTML += GUIUtil::HtmlEscape(CBitcoinAddress(address).ToString()); + strHTML += "
    "; } } + + strHTML += "" + tr("Debit") + ": " + BitcoinUnits::formatWithUnit(unit, -txout.nValue) + "
    "; } - strHTML += "
"; + if (fAllToMe) + { + // Payment to self + int64_t nChange = wtx.GetChange(); + int64_t nValue = nCredit - nChange; + strHTML += "" + tr("Debit") + ": " + BitcoinUnits::formatWithUnit(unit, -nValue) + "
"; + strHTML += "" + tr("Credit") + ": " + BitcoinUnits::formatWithUnit(unit, nValue) + "
"; + } + + int64_t nTxFee = nDebit - wtx.GetValueOut(); + if (nTxFee > 0) + strHTML += "" + tr("Transaction fee") + ": " + BitcoinUnits::formatWithUnit(unit, -nTxFee) + "
"; + } + else + { + // + // Mixed debit transaction + // + BOOST_FOREACH(const CTxIn& txin, wtx.vin) + if (wallet->IsMine(txin)) + strHTML += "" + tr("Debit") + ": " + BitcoinUnits::formatWithUnit(unit, -wallet->GetDebit(txin)) + "
"; + BOOST_FOREACH(const CTxOut& txout, wtx.vout) + if (wallet->IsMine(txout)) + strHTML += "" + tr("Credit") + ": " + BitcoinUnits::formatWithUnit(unit, wallet->GetCredit(txout)) + "
"; + } + } + + strHTML += "" + tr("Net amount") + ": " + BitcoinUnits::formatWithUnit(unit, nNet, true) + "
"; + + // + // Message + // + if (wtx.mapValue.count("message") && !wtx.mapValue["message"].empty()) + strHTML += "
" + tr("Message") + ":
" + GUIUtil::HtmlEscape(wtx.mapValue["message"], true) + "
"; + if (wtx.mapValue.count("comment") && !wtx.mapValue["comment"].empty()) + strHTML += "
" + tr("Comment") + ":
" + GUIUtil::HtmlEscape(wtx.mapValue["comment"], true) + "
"; + + strHTML += "" + tr("Transaction ID") + ": " + TransactionRecord::formatSubTxId(wtx.GetHash(), vout) + "
"; + + // Message from normal dogecoin:URI (dogecoin:D12...?message=example) + foreach (const PAIRTYPE(string, string)& r, wtx.vOrderForm) + if (r.first == "Message") + strHTML += "
" + tr("Message") + ":
" + GUIUtil::HtmlEscape(r.second, true) + "
"; + + // + // PaymentRequest info: + // + foreach (const PAIRTYPE(string, string)& r, wtx.vOrderForm) + { + if (r.first == "PaymentRequest") + { + PaymentRequestPlus req; + req.parse(QByteArray::fromRawData(r.second.data(), r.second.size())); + QString merchant; + if (req.getMerchant(PaymentServer::getCertStore(), merchant)) + strHTML += "" + tr("Merchant") + ": " + GUIUtil::HtmlEscape(merchant) + "
"; + } + } + + if (wtx.IsCoinBase()) + { + quint32 numBlocksToMaturity = COINBASE_MATURITY + 1; + + if (wtx.GetDepthInMainChain() >= COINBASE_MATURITY_SWITCH) + { + numBlocksToMaturity = COINBASE_MATURITY_NEW + 1; + } + strHTML += "
" + tr("Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to \"not accepted\" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours.").arg(QString::number(numBlocksToMaturity)) + "
"; + } + + // + // Debug view + // + if (fDebug) + { + strHTML += "

" + tr("Debug information") + "

"; + BOOST_FOREACH(const CTxIn& txin, wtx.vin) + if(wallet->IsMine(txin)) + strHTML += "" + tr("Debit") + ": " + BitcoinUnits::formatWithUnit(unit, -wallet->GetDebit(txin)) + "
"; + BOOST_FOREACH(const CTxOut& txout, wtx.vout) + if(wallet->IsMine(txout)) + strHTML += "" + tr("Credit") + ": " + BitcoinUnits::formatWithUnit(unit, wallet->GetCredit(txout)) + "
"; + + strHTML += "
" + tr("Transaction") + ":
"; + strHTML += GUIUtil::HtmlEscape(wtx.ToString(), true); + + strHTML += "
" + tr("Inputs") + ":"; + strHTML += "
    "; + + BOOST_FOREACH(const CTxIn& txin, wtx.vin) + { + COutPoint prevout = txin.prevout; + + CCoins prev; + if(pcoinsTip->GetCoins(prevout.hash, prev)) + { + if (prevout.n < prev.vout.size()) + { + strHTML += "
  • "; + const CTxOut &vout = prev.vout[prevout.n]; + CTxDestination address; + if (ExtractDestination(vout.scriptPubKey, address)) + { + if (wallet->mapAddressBook.count(address) && !wallet->mapAddressBook[address].name.empty()) + strHTML += GUIUtil::HtmlEscape(wallet->mapAddressBook[address].name) + " "; + strHTML += QString::fromStdString(CBitcoinAddress(address).ToString()); + } + strHTML = strHTML + " " + tr("Amount") + "=" + BitcoinUnits::formatWithUnit(unit, vout.nValue); + strHTML = strHTML + " IsMine=" + (wallet->IsMine(vout) ? tr("true") : tr("false")) + "
  • "; + } + } } - strHTML += "
    "; + strHTML += "
"; } + + strHTML += "
"; return strHTML; } diff --git a/src/qt/transactionrecord.cpp b/src/qt/transactionrecord.cpp index c343e442e..eba650a7d 100644 --- a/src/qt/transactionrecord.cpp +++ b/src/qt/transactionrecord.cpp @@ -150,6 +150,7 @@ QList TransactionRecord::decomposeTransaction(const CWallet * void TransactionRecord::updateStatus(const CWalletTx &wtx) { + AssertLockHeld(cs_main); // Determine transaction status // Find the block the tx is in @@ -234,6 +235,7 @@ void TransactionRecord::updateStatus(const CWalletTx &wtx) bool TransactionRecord::statusUpdateNeeded() { + AssertLockHeld(cs_main); return status.cur_num_blocks != chainActive.Height(); } diff --git a/src/qt/transactionrecord.h b/src/qt/transactionrecord.h index 1e669127a..af6fd403b 100644 --- a/src/qt/transactionrecord.h +++ b/src/qt/transactionrecord.h @@ -79,7 +79,7 @@ public: }; /** Number of confirmation recommended for accepting a transaction */ - static const int RecommendedNumConfirmations = 3; + static const int RecommendedNumConfirmations = 6; TransactionRecord(): hash(), time(0), type(Other), address(""), debit(0), credit(0), idx(0) diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp index 959987461..8cf2b0a1b 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -24,7 +24,6 @@ #include #include #include -#include // Amount column is right-aligned it contains numbers static int column_alignments[] = { @@ -78,7 +77,7 @@ public: qDebug() << "TransactionTablePriv::refreshWallet"; cachedWallet.clear(); { - LOCK(wallet->cs_wallet); + LOCK2(cs_main, wallet->cs_wallet); for(std::map::iterator it = wallet->mapWallet.begin(); it != wallet->mapWallet.end(); ++it) { if(TransactionRecord::showTransaction(it->second)) @@ -96,7 +95,7 @@ public: { qDebug() << "TransactionTablePriv::updateWallet : " + QString::fromStdString(hash.ToString()) + " " + QString::number(status); { - LOCK(wallet->cs_wallet); + LOCK2(cs_main, wallet->cs_wallet); // Find transaction in wallet std::map::iterator mi = wallet->mapWallet.find(hash); @@ -187,13 +186,19 @@ public: { TransactionRecord *rec = &cachedWallet[idx]; + // Get required locks upfront. This avoids the GUI from getting + // stuck if the core is holding the locks for a longer time - for + // example, during a wallet rescan. + // // If a status update is needed (blocks came in since last check), // update the status of this transaction from the wallet. Otherwise, // simply re-use the cached status. - if(rec->statusUpdateNeeded()) + TRY_LOCK(cs_main, lockMain); + if(lockMain) { + TRY_LOCK(wallet->cs_wallet, lockWallet); + if(lockWallet && rec->statusUpdateNeeded()) { - LOCK(wallet->cs_wallet); std::map::iterator mi = wallet->mapWallet.find(rec->hash); if(mi != wallet->mapWallet.end()) @@ -213,7 +218,7 @@ public: QString describe(TransactionRecord *rec, int unit) { { - LOCK(wallet->cs_wallet); + LOCK2(cs_main, wallet->cs_wallet); std::map::iterator mi = wallet->mapWallet.find(rec->hash); if(mi != wallet->mapWallet.end()) { @@ -228,17 +233,12 @@ TransactionTableModel::TransactionTableModel(CWallet* wallet, WalletModel *paren QAbstractTableModel(parent), wallet(wallet), walletModel(parent), - priv(new TransactionTablePriv(wallet, this)), - cachedNumBlocks(0) + priv(new TransactionTablePriv(wallet, this)) { columns << QString() << tr("Date") << tr("Type") << tr("Address") << tr("Amount"); priv->refreshWallet(); - QTimer *timer = new QTimer(this); - connect(timer, SIGNAL(timeout()), this, SLOT(updateConfirmations())); - timer->start(MODEL_UPDATE_DELAY); - connect(walletModel->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit())); } @@ -257,16 +257,12 @@ void TransactionTableModel::updateTransaction(const QString &hash, int status) void TransactionTableModel::updateConfirmations() { - if(chainActive.Height() != cachedNumBlocks) - { - cachedNumBlocks = chainActive.Height(); - // Blocks came in since last poll. - // Invalidate status (number of confirmations) and (possibly) description - // for all rows. Qt is smart enough to only actually request the data for the - // visible rows. - emit dataChanged(index(0, Status), index(priv->size()-1, Status)); - emit dataChanged(index(0, ToAddress), index(priv->size()-1, ToAddress)); - } + // Blocks came in since last poll. + // Invalidate status (number of confirmations) and (possibly) description + // for all rows. Qt is smart enough to only actually request the data for the + // visible rows. + emit dataChanged(index(0, Status), index(priv->size()-1, Status)); + emit dataChanged(index(0, ToAddress), index(priv->size()-1, ToAddress)); } int TransactionTableModel::rowCount(const QModelIndex &parent) const @@ -568,6 +564,8 @@ QVariant TransactionTableModel::data(const QModelIndex &index, int role) const return rec->credit + rec->debit; case TxIDRole: return rec->getTxID(); + case TxHashRole: + return QString::fromStdString(rec->hash.ToString()); case ConfirmedRole: return rec->status.countsForBalance; case FormattedAmountRole: diff --git a/src/qt/transactiontablemodel.h b/src/qt/transactiontablemodel.h index 7b9cf09cb..333e6bc6e 100644 --- a/src/qt/transactiontablemodel.h +++ b/src/qt/transactiontablemodel.h @@ -50,6 +50,8 @@ public: AmountRole, /** Unique identifier */ TxIDRole, + /** Transaction hash */ + TxHashRole, /** Is transaction confirmed? */ ConfirmedRole, /** Formatted amount, without brackets when unconfirmed */ @@ -69,7 +71,6 @@ private: WalletModel *walletModel; QStringList columns; TransactionTablePriv *priv; - int cachedNumBlocks; QString lookupAddress(const std::string &address, bool tooltip) const; QVariant addressColor(const TransactionRecord *wtx) const; diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp index 0dd324bb2..d4d29416c 100644 --- a/src/qt/transactionview.cpp +++ b/src/qt/transactionview.cpp @@ -20,6 +20,7 @@ #include #include +#include #include #include #include @@ -28,10 +29,10 @@ #include #include #include +#include #include -#include -#include #include +#include TransactionView::TransactionView(QWidget *parent) : QWidget(parent), model(0), transactionProxyModel(0), @@ -131,20 +132,20 @@ TransactionView::TransactionView(QWidget *parent) : QAction *copyTxIDAction = new QAction(tr("Copy transaction ID"), this); QAction *editLabelAction = new QAction(tr("Edit label"), this); QAction *showDetailsAction = new QAction(tr("Show transaction details"), this); - QAction *viewOnDogechain = new QAction(tr("Show transaction on Dogechain"), this); contextMenu = new QMenu(); contextMenu->addAction(copyAddressAction); contextMenu->addAction(copyLabelAction); contextMenu->addAction(copyAmountAction); contextMenu->addAction(copyTxIDAction); - contextMenu->addSeparator(); contextMenu->addAction(editLabelAction); contextMenu->addAction(showDetailsAction); - contextMenu->addSeparator(); - contextMenu->addAction(viewOnDogechain); + + mapperThirdPartyTxUrls = new QSignalMapper(this); // Connect actions + connect(mapperThirdPartyTxUrls, SIGNAL(mapped(QString)), this, SLOT(openThirdPartyTxUrl(QString))); + connect(dateWidget, SIGNAL(activated(int)), this, SLOT(chooseDate(int))); connect(typeWidget, SIGNAL(activated(int)), this, SLOT(chooseType(int))); connect(addressWidget, SIGNAL(textChanged(QString)), this, SLOT(changedPrefix(QString))); @@ -159,7 +160,6 @@ TransactionView::TransactionView(QWidget *parent) : connect(copyTxIDAction, SIGNAL(triggered()), this, SLOT(copyTxID())); connect(editLabelAction, SIGNAL(triggered()), this, SLOT(editLabel())); connect(showDetailsAction, SIGNAL(triggered()), this, SLOT(showDetails())); - connect(viewOnDogechain, SIGNAL(triggered()), this, SLOT(viewOnDogechain())); } void TransactionView::setModel(WalletModel *model) @@ -175,6 +175,7 @@ void TransactionView::setModel(WalletModel *model) transactionProxyModel->setSortRole(Qt::EditRole); + transactionView->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); transactionView->setModel(transactionProxyModel); transactionView->setAlternatingRowColors(true); transactionView->setSelectionBehavior(QAbstractItemView::SelectRows); @@ -183,15 +184,31 @@ void TransactionView::setModel(WalletModel *model) transactionView->sortByColumn(TransactionTableModel::Status, Qt::DescendingOrder); transactionView->verticalHeader()->hide(); - transactionView->horizontalHeader()->resizeSection(TransactionTableModel::Status, 23); - transactionView->horizontalHeader()->resizeSection(TransactionTableModel::Date, 120); - transactionView->horizontalHeader()->resizeSection(TransactionTableModel::Type, 120); -#if QT_VERSION < 0x050000 - transactionView->horizontalHeader()->setResizeMode(TransactionTableModel::ToAddress, QHeaderView::Stretch); -#else - transactionView->horizontalHeader()->setSectionResizeMode(TransactionTableModel::ToAddress, QHeaderView::Stretch); -#endif - transactionView->horizontalHeader()->resizeSection(TransactionTableModel::Amount, 100); + transactionView->setColumnWidth(TransactionTableModel::Status, STATUS_COLUMN_WIDTH); + transactionView->setColumnWidth(TransactionTableModel::Date, DATE_COLUMN_WIDTH); + transactionView->setColumnWidth(TransactionTableModel::Type, TYPE_COLUMN_WIDTH); + transactionView->setColumnWidth(TransactionTableModel::Amount, AMOUNT_MINIMUM_COLUMN_WIDTH); + + columnResizingFixer = new GUIUtil::TableViewLastColumnResizingFixer(transactionView, AMOUNT_MINIMUM_COLUMN_WIDTH, MINIMUM_COLUMN_WIDTH); + + if (model->getOptionsModel()) + { + // Add third party transaction URLs to context menu + QStringList listUrls = model->getOptionsModel()->getThirdPartyTxUrls().split("|", QString::SkipEmptyParts); + for (int i = 0; i < listUrls.size(); ++i) + { + QString host = QUrl(listUrls[i].trimmed(), QUrl::StrictMode).host(); + if (!host.isEmpty()) + { + QAction *thirdPartyTxUrlAction = new QAction(host, this); // use host as menu item label + if (i == 0) + contextMenu->addSeparator(); + contextMenu->addAction(thirdPartyTxUrlAction); + connect(thirdPartyTxUrlAction, SIGNAL(triggered()), mapperThirdPartyTxUrls, SLOT(map())); + mapperThirdPartyTxUrls->setMapping(thirdPartyTxUrlAction, listUrls[i].trimmed()); + } + } + } } } @@ -392,18 +409,13 @@ void TransactionView::showDetails() } } - -void TransactionView::viewOnDogechain() +void TransactionView::openThirdPartyTxUrl(QString url) { - QModelIndexList selection = transactionView->selectionModel()->selectedRows(); + if(!transactionView || !transactionView->selectionModel()) + return; + QModelIndexList selection = transactionView->selectionModel()->selectedRows(0); if(!selection.isEmpty()) - { - QString format("http://dogechain.info/tx/"); - QString munged = selection.at(0).data(TransactionTableModel::TxIDRole).toString(); - format += munged.left(munged.lastIndexOf("-")); - - QDesktopServices::openUrl(QUrl(format)); - } + QDesktopServices::openUrl(QUrl::fromUserInput(url.replace("%s", selection.at(0).data(TransactionTableModel::TxHashRole).toString()))); } QWidget *TransactionView::createDateRangeWidget() @@ -460,3 +472,11 @@ void TransactionView::focusTransaction(const QModelIndex &idx) transactionView->setCurrentIndex(targetIdx); transactionView->setFocus(); } + +// We override the virtual resizeEvent of the QWidget to adjust tables column +// sizes as the tables width is proportional to the dialogs width. +void TransactionView::resizeEvent(QResizeEvent* event) +{ + QWidget::resizeEvent(event); + columnResizingFixer->stretchColumnWidth(TransactionTableModel::ToAddress); +} diff --git a/src/qt/transactionview.h b/src/qt/transactionview.h index f0e07c179..7a89fa11c 100644 --- a/src/qt/transactionview.h +++ b/src/qt/transactionview.h @@ -5,6 +5,8 @@ #ifndef TRANSACTIONVIEW_H #define TRANSACTIONVIEW_H +#include "guiutil.h" + #include class TransactionFilterProxy; @@ -17,6 +19,7 @@ class QFrame; class QLineEdit; class QMenu; class QModelIndex; +class QSignalMapper; class QTableView; QT_END_NAMESPACE @@ -44,6 +47,14 @@ public: Range }; + enum ColumnWidths { + STATUS_COLUMN_WIDTH = 23, + DATE_COLUMN_WIDTH = 120, + TYPE_COLUMN_WIDTH = 120, + AMOUNT_MINIMUM_COLUMN_WIDTH = 120, + MINIMUM_COLUMN_WIDTH = 23 + }; + private: WalletModel *model; TransactionFilterProxy *transactionProxyModel; @@ -55,6 +66,7 @@ private: QLineEdit *amountWidget; QMenu *contextMenu; + QSignalMapper *mapperThirdPartyTxUrls; QFrame *dateRangeWidget; QDateTimeEdit *dateFrom; @@ -62,6 +74,10 @@ private: QWidget *createDateRangeWidget(); + GUIUtil::TableViewLastColumnResizingFixer *columnResizingFixer; + + virtual void resizeEvent(QResizeEvent* event); + private slots: void contextualMenu(const QPoint &); void dateRangeChanged(); @@ -71,7 +87,7 @@ private slots: void copyLabel(); void copyAmount(); void copyTxID(); - void viewOnDogechain(); + void openThirdPartyTxUrl(QString url); signals: void doubleClicked(const QModelIndex&); diff --git a/src/qt/utilitydialog.cpp b/src/qt/utilitydialog.cpp index cd686c39e..66ae2add7 100644 --- a/src/qt/utilitydialog.cpp +++ b/src/qt/utilitydialog.cpp @@ -38,9 +38,9 @@ void AboutDialog::setModel(ClientModel *model) * 32 and 64 bit builds. On other architectures, 32/64 bit may be more ambigious. */ #if defined(__x86_64__) - version += tr(" (%1-bit)").arg(64); + version += " " + tr("(%1-bit)").arg(64); #elif defined(__i386__ ) - version += tr(" (%1-bit)").arg(32); + version += " " + tr("(%1-bit)").arg(32); #endif ui->versionLabel->setText(version); } @@ -72,10 +72,11 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent) : coreOptions = QString::fromStdString(HelpMessage(HMM_BITCOIN_QT)); uiOptions = tr("UI options") + ":\n" + - " -lang= " + tr("Set language, for example \"de_DE\" (default: system locale)") + "\n" + - " -min " + tr("Start minimized") + "\n" + - " -splash " + tr("Show splash screen on startup (default: 1)") + "\n" + - " -choosedatadir " + tr("Choose data directory on startup (default: 0)"); + " -choosedatadir " + tr("Choose data directory on startup (default: 0)") + "\n" + + " -lang= " + tr("Set language, for example \"de_DE\" (default: system locale)") + "\n" + + " -min " + tr("Start minimized") + "\n" + + " -rootcertificates= " + tr("Set SSL root certificates for payment request (default: -system-)") + "\n" + + " -splash " + tr("Show splash screen on startup (default: 1)"); ui->helpMessageLabel->setFont(GUIUtil::bitcoinAddressFont()); diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index db9b99fff..0459d8baf 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -98,11 +98,24 @@ void WalletModel::updateStatus() void WalletModel::pollBalanceChanged() { + // Get required locks upfront. This avoids the GUI from getting stuck on + // periodical polls if the core is holding the locks for a longer time - + // for example, during a wallet rescan. + TRY_LOCK(cs_main, lockMain); + if(!lockMain) + return; + TRY_LOCK(wallet->cs_wallet, lockWallet); + if(!lockWallet) + return; + if(chainActive.Height() != cachedNumBlocks) { // Balance and number of transactions might have changed cachedNumBlocks = chainActive.Height(); + checkBalanceChanged(); + if(transactionTableModel) + transactionTableModel->updateConfirmations(); } } @@ -419,8 +432,17 @@ static void NotifyAddressBookChanged(WalletModel *walletmodel, CWallet *wallet, Q_ARG(int, status)); } +// queue notifications to show a non freezing progress dialog e.g. for rescan +static bool fQueueNotifications = false; +static std::vector > vQueueNotifications; static void NotifyTransactionChanged(WalletModel *walletmodel, CWallet *wallet, const uint256 &hash, ChangeType status) { + if (fQueueNotifications) + { + vQueueNotifications.push_back(make_pair(hash, status)); + return; + } + QString strHash = QString::fromStdString(hash.GetHex()); qDebug() << "NotifyTransactionChanged : " + strHash + " status= " + QString::number(status); @@ -429,12 +451,32 @@ static void NotifyTransactionChanged(WalletModel *walletmodel, CWallet *wallet, Q_ARG(int, status)); } +static void ShowProgress(WalletModel *walletmodel, const std::string &title, int nProgress) +{ + // emits signal "showProgress" + QMetaObject::invokeMethod(walletmodel, "showProgress", Qt::QueuedConnection, + Q_ARG(QString, QString::fromStdString(title)), + Q_ARG(int, nProgress)); + + if (nProgress == 0) + fQueueNotifications = true; + + if (nProgress == 100) + { + fQueueNotifications = false; + BOOST_FOREACH(const PAIRTYPE(uint256, ChangeType)& notification, vQueueNotifications) + NotifyTransactionChanged(walletmodel, NULL, notification.first, notification.second); + std::vector >().swap(vQueueNotifications); // clear + } +} + void WalletModel::subscribeToCoreSignals() { // Connect signals to wallet wallet->NotifyStatusChanged.connect(boost::bind(&NotifyKeyStoreStatusChanged, this, _1)); wallet->NotifyAddressBookChanged.connect(boost::bind(NotifyAddressBookChanged, this, _1, _2, _3, _4, _5, _6)); wallet->NotifyTransactionChanged.connect(boost::bind(NotifyTransactionChanged, this, _1, _2, _3)); + wallet->ShowProgress.connect(boost::bind(ShowProgress, this, _1, _2)); } void WalletModel::unsubscribeFromCoreSignals() @@ -443,6 +485,7 @@ void WalletModel::unsubscribeFromCoreSignals() wallet->NotifyStatusChanged.disconnect(boost::bind(&NotifyKeyStoreStatusChanged, this, _1)); wallet->NotifyAddressBookChanged.disconnect(boost::bind(NotifyAddressBookChanged, this, _1, _2, _3, _4, _5, _6)); wallet->NotifyTransactionChanged.disconnect(boost::bind(NotifyTransactionChanged, this, _1, _2, _3)); + wallet->ShowProgress.disconnect(boost::bind(ShowProgress, this, _1, _2)); } // WalletModel::UnlockContext implementation @@ -490,7 +533,7 @@ bool WalletModel::getPubKey(const CKeyID &address, CPubKey& vchPubKeyOut) const // returns a list of COutputs from COutPoints void WalletModel::getOutputs(const std::vector& vOutpoints, std::vector& vOutputs) { - LOCK(wallet->cs_wallet); + LOCK2(cs_main, wallet->cs_wallet); BOOST_FOREACH(const COutPoint& outpoint, vOutpoints) { if (!wallet->mapWallet.count(outpoint.hash)) continue; @@ -503,7 +546,7 @@ void WalletModel::getOutputs(const std::vector& vOutpoints, std::vect bool WalletModel::isSpent(const COutPoint& outpoint) const { - LOCK(wallet->cs_wallet); + LOCK2(cs_main, wallet->cs_wallet); return wallet->IsSpent(outpoint.hash, outpoint.n); } @@ -513,7 +556,7 @@ void WalletModel::listCoins(std::map >& mapCoins) std::vector vCoins; wallet->AvailableCoins(vCoins); - LOCK(wallet->cs_wallet); // ListLockedCoins, mapWallet + LOCK2(cs_main, wallet->cs_wallet); // ListLockedCoins, mapWallet std::vector vLockedCoins; wallet->ListLockedCoins(vLockedCoins); @@ -545,25 +588,25 @@ void WalletModel::listCoins(std::map >& mapCoins) bool WalletModel::isLockedCoin(uint256 hash, unsigned int n) const { - LOCK(wallet->cs_wallet); + LOCK2(cs_main, wallet->cs_wallet); return wallet->IsLockedCoin(hash, n); } void WalletModel::lockCoin(COutPoint& output) { - LOCK(wallet->cs_wallet); + LOCK2(cs_main, wallet->cs_wallet); wallet->LockCoin(output); } void WalletModel::unlockCoin(COutPoint& output) { - LOCK(wallet->cs_wallet); + LOCK2(cs_main, wallet->cs_wallet); wallet->UnlockCoin(output); } void WalletModel::listLockedCoins(std::vector& vOutpts) { - LOCK(wallet->cs_wallet); + LOCK2(cs_main, wallet->cs_wallet); wallet->ListLockedCoins(vOutpts); } diff --git a/src/qt/walletmodel.h b/src/qt/walletmodel.h index 28a9169e2..ccf590aae 100644 --- a/src/qt/walletmodel.h +++ b/src/qt/walletmodel.h @@ -237,6 +237,9 @@ signals: // Coins sent: from wallet, to recipient, in (serialized) transaction: void coinsSent(CWallet* wallet, SendCoinsRecipient recipient, QByteArray transaction); + // Show progress dialog e.g. for rescan + void showProgress(const QString &title, int nProgress); + public slots: /* Wallet status might have changed */ void updateStatus(); diff --git a/src/qt/walletview.cpp b/src/qt/walletview.cpp index 1a9c7866d..1cef48344 100644 --- a/src/qt/walletview.cpp +++ b/src/qt/walletview.cpp @@ -24,6 +24,7 @@ #include #include #include +#include #include #include @@ -127,6 +128,9 @@ void WalletView::setWalletModel(WalletModel *walletModel) // Ask for passphrase if needed connect(walletModel, SIGNAL(requireUnlock()), this, SLOT(unlockWallet())); + + // Show progress dialog + connect(walletModel, SIGNAL(showProgress(QString,int)), this, SLOT(showProgress(QString,int))); } } @@ -277,3 +281,26 @@ void WalletView::usedReceivingAddresses() dlg->setModel(walletModel->getAddressTableModel()); dlg->show(); } + +void WalletView::showProgress(const QString &title, int nProgress) +{ + if (nProgress == 0) + { + progressDialog = new QProgressDialog(title, "", 0, 100); + progressDialog->setWindowModality(Qt::ApplicationModal); + progressDialog->setMinimumDuration(0); + progressDialog->setCancelButton(0); + progressDialog->setAutoClose(false); + progressDialog->setValue(0); + } + else if (nProgress == 100) + { + if (progressDialog) + { + progressDialog->close(); + progressDialog->deleteLater(); + } + } + else if (progressDialog) + progressDialog->setValue(nProgress); +} diff --git a/src/qt/walletview.h b/src/qt/walletview.h index ecfa06ac5..9cfa8d676 100644 --- a/src/qt/walletview.h +++ b/src/qt/walletview.h @@ -18,6 +18,7 @@ class WalletModel; QT_BEGIN_NAMESPACE class QModelIndex; +class QProgressDialog; QT_END_NAMESPACE /* @@ -60,6 +61,8 @@ private: TransactionView *transactionView; + QProgressDialog *progressDialog; + public slots: /** Switch to overview (home) page */ void gotoOverviewPage(); @@ -97,6 +100,9 @@ public slots: /** Re-emit encryption status signal */ void updateEncryptionStatus(); + /** Show progress dialog e.g. for rescan */ + void showProgress(const QString &title, int nProgress); + signals: /** Signal that we want to show the main window */ void showNormalIfMinimized(); diff --git a/src/qt/winshutdownmonitor.cpp b/src/qt/winshutdownmonitor.cpp new file mode 100644 index 000000000..b7526f0ae --- /dev/null +++ b/src/qt/winshutdownmonitor.cpp @@ -0,0 +1,57 @@ +// Copyright (c) 2014 The Bitcoin developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#include "winshutdownmonitor.h" + +#if defined(Q_OS_WIN) && QT_VERSION >= 0x050000 +#include "init.h" + +#include + +#include + +// If we don't want a message to be processed by Qt, return true and set result to +// the value that the window procedure should return. Otherwise return false. +bool WinShutdownMonitor::nativeEventFilter(const QByteArray &eventType, void *pMessage, long *pnResult) +{ + Q_UNUSED(eventType); + + MSG *pMsg = static_cast(pMessage); + + switch(pMsg->message) + { + case WM_QUERYENDSESSION: + { + // Initiate a client shutdown after receiving a WM_QUERYENDSESSION and block + // Windows session end until we have finished client shutdown. + StartShutdown(); + *pnResult = FALSE; + return true; + } + + case WM_ENDSESSION: + { + *pnResult = FALSE; + return true; + } + } + + return false; +} + +void WinShutdownMonitor::registerShutdownBlockReason(const QString& strReason, const HWND& mainWinId) +{ + typedef BOOL (WINAPI *PSHUTDOWNBRCREATE)(HWND, LPCWSTR); + PSHUTDOWNBRCREATE shutdownBRCreate = (PSHUTDOWNBRCREATE)GetProcAddress(GetModuleHandleA("User32.dll"), "ShutdownBlockReasonCreate"); + if (shutdownBRCreate == NULL) { + qDebug() << "registerShutdownBlockReason : GetProcAddress for ShutdownBlockReasonCreate failed"; + return; + } + + if (shutdownBRCreate(mainWinId, strReason.toStdWString().c_str())) + qDebug() << "registerShutdownBlockReason : Successfully registered: " + strReason; + else + qDebug() << "registerShutdownBlockReason : Failed to register: " + strReason; +} +#endif diff --git a/src/qt/winshutdownmonitor.h b/src/qt/winshutdownmonitor.h new file mode 100644 index 000000000..4c76d2c81 --- /dev/null +++ b/src/qt/winshutdownmonitor.h @@ -0,0 +1,29 @@ +// Copyright (c) 2014 The Bitcoin developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#ifndef WINSHUTDOWNMONITOR_H +#define WINSHUTDOWNMONITOR_H + +#ifdef WIN32 +#include +#include + +#if QT_VERSION >= 0x050000 +#include // for HWND + +#include + +class WinShutdownMonitor : public QAbstractNativeEventFilter +{ +public: + /** Implements QAbstractNativeEventFilter interface for processing Windows messages */ + bool nativeEventFilter(const QByteArray &eventType, void *pMessage, long *pnResult); + + /** Register the reason for blocking shutdown on Windows to allow clean client exit */ + static void registerShutdownBlockReason(const QString& strReason, const HWND& mainWinId); +}; +#endif +#endif + +#endif // WINSHUTDOWNMONITOR_H diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp index cb4f16a09..59c72e539 100644 --- a/src/rpcblockchain.cpp +++ b/src/rpcblockchain.cpp @@ -6,6 +6,8 @@ #include "rpcserver.h" #include "main.h" #include "sync.h" +#include "checkpoints.h" +#include "auxpow.h" #include @@ -14,6 +16,9 @@ using namespace json_spirit; using namespace std; +// from rpcraw.cpp +void TxToJSON(const CTransaction& tx, const uint256 hashBlock, Object& entry); + void ScriptPubKeyToJSON(const CScript& scriptPubKey, Object& out, bool fIncludeHex); double GetDifficulty(const CBlockIndex* blockindex) @@ -59,12 +64,44 @@ Object blockToJSON(const CBlock& block, const CBlockIndex* blockindex) result.push_back(Pair("height", blockindex->nHeight)); result.push_back(Pair("version", block.nVersion)); result.push_back(Pair("merkleroot", block.hashMerkleRoot.GetHex())); + if (block.nVersion & BLOCK_VERSION_AUXPOW) { + // this block includes auxpow + Object auxpow; + auxpow.push_back(Pair("size", (int)::GetSerializeSize(*block.auxpow, SER_NETWORK, PROTOCOL_VERSION))); + + Object coinbasetx; + TxToJSON(*block.auxpow, 0, coinbasetx); + auxpow.push_back(Pair("coinbasetx", Value(coinbasetx))); + + Array coinbaseMerkle; + BOOST_FOREACH(const uint256 &hash, block.auxpow->vMerkleBranch) + coinbaseMerkle.push_back(hash.GetHex()); + auxpow.push_back(Pair("coinbaseMerkleBranch", coinbaseMerkle)); + auxpow.push_back(Pair("coinbaseIndex", block.auxpow->nIndex)); + + Array chainMerkle; + BOOST_FOREACH(const uint256 &hash, block.auxpow->vChainMerkleBranch) + chainMerkle.push_back(hash.GetHex()); + auxpow.push_back(Pair("chainMerkleBranch", chainMerkle)); + auxpow.push_back(Pair("chainIndex", (boost::uint64_t)block.auxpow->nChainIndex)); + + Object parent_block; + parent_block.push_back(Pair("hash", block.auxpow->parentBlockHeader.GetHash().GetHex())); + parent_block.push_back(Pair("version", (boost::uint64_t)block.auxpow->parentBlockHeader.nVersion)); + parent_block.push_back(Pair("previousblockhash", block.auxpow->parentBlockHeader.hashPrevBlock.GetHex())); + parent_block.push_back(Pair("merkleroot", block.auxpow->parentBlockHeader.hashMerkleRoot.GetHex())); + parent_block.push_back(Pair("time", (boost::int64_t)block.auxpow->parentBlockHeader.nTime)); + parent_block.push_back(Pair("bits", HexBits(block.auxpow->parentBlockHeader.nBits))); + parent_block.push_back(Pair("nonce", (boost::uint64_t)block.auxpow->parentBlockHeader.nNonce)); + auxpow.push_back(Pair("parent_block", Value(parent_block))); + result.push_back(Pair("auxpow", Value(auxpow))); + } Array txs; BOOST_FOREACH(const CTransaction&tx, block.vtx) txs.push_back(tx.GetHash().GetHex()); result.push_back(Pair("tx", txs)); - result.push_back(Pair("time", (boost::int64_t)block.GetBlockTime())); - result.push_back(Pair("nonce", (boost::uint64_t)block.nNonce)); + result.push_back(Pair("time", block.GetBlockTime())); + result.push_back(Pair("nonce", (uint64_t)block.nNonce)); result.push_back(Pair("bits", HexBits(block.nBits))); result.push_back(Pair("difficulty", GetDifficulty(blockindex))); result.push_back(Pair("chainwork", blockindex->nChainWork.GetHex())); @@ -174,7 +211,7 @@ Value getrawmempool(const Array& params, bool fHelp) Object info; info.push_back(Pair("size", (int)e.GetTxSize())); info.push_back(Pair("fee", ValueFromAmount(e.GetFee()))); - info.push_back(Pair("time", (boost::int64_t)e.GetTime())); + info.push_back(Pair("time", e.GetTime())); info.push_back(Pair("height", (int)e.GetHeight())); info.push_back(Pair("startingpriority", e.GetPriority(e.GetHeight()))); info.push_back(Pair("currentpriority", e.GetPriority(chainActive.Height()))); @@ -314,11 +351,11 @@ Value gettxoutsetinfo(const Array& params, bool fHelp) CCoinsStats stats; if (pcoinsTip->GetStats(stats)) { - ret.push_back(Pair("height", (boost::int64_t)stats.nHeight)); + ret.push_back(Pair("height", (int64_t)stats.nHeight)); ret.push_back(Pair("bestblock", stats.hashBlock.GetHex())); - ret.push_back(Pair("transactions", (boost::int64_t)stats.nTransactions)); - ret.push_back(Pair("txouts", (boost::int64_t)stats.nTransactionOutputs)); - ret.push_back(Pair("bytes_serialized", (boost::int64_t)stats.nSerializedSize)); + ret.push_back(Pair("transactions", (int64_t)stats.nTransactions)); + ret.push_back(Pair("txouts", (int64_t)stats.nTransactionOutputs)); + ret.push_back(Pair("bytes_serialized", (int64_t)stats.nSerializedSize)); ret.push_back(Pair("hash_serialized", stats.hashSerialized.GetHex())); ret.push_back(Pair("total_amount", ValueFromAmount(stats.nTotalAmount))); } @@ -429,3 +466,38 @@ Value verifychain(const Array& params, bool fHelp) return VerifyDB(nCheckLevel, nCheckDepth); } +Value getblockchaininfo(const Array& params, bool fHelp) +{ + if (fHelp || params.size() != 0) + throw runtime_error( + "getblockchaininfo\n" + "Returns an object containing various state info regarding block chain processing.\n" + "\nResult:\n" + "{\n" + " \"chain\": \"xxxx\", (string) current chain (main, testnet3, regtest)\n" + " \"blocks\": xxxxxx, (numeric) the current number of blocks processed in the server\n" + " \"bestblockhash\": \"...\", (string) the hash of the currently best block\n" + " \"difficulty\": xxxxxx, (numeric) the current difficulty\n" + " \"verificationprogress\": xxxx, (numeric) estimate of verification progress [0..1]\n" + " \"chainwork\": \"xxxx\" (string) total amount of work in active chain, in hexadecimal\n" + "}\n" + "\nExamples:\n" + + HelpExampleCli("getblockchaininfo", "") + + HelpExampleRpc("getblockchaininfo", "") + ); + + proxyType proxy; + GetProxy(NET_IPV4, proxy); + + Object obj; + std::string chain = Params().DataDir(); + if(chain.empty()) + chain = "main"; + obj.push_back(Pair("chain", chain)); + obj.push_back(Pair("blocks", (int)chainActive.Height())); + obj.push_back(Pair("bestblockhash", chainActive.Tip()->GetBlockHash().GetHex())); + obj.push_back(Pair("difficulty", (double)GetDifficulty())); + obj.push_back(Pair("verificationprogress", Checkpoints::GuessVerificationProgress(chainActive.Tip()))); + obj.push_back(Pair("chainwork", chainActive.Tip()->nChainWork.GetHex())); + return obj; +} diff --git a/src/rpcclient.cpp b/src/rpcclient.cpp index 92ef2ec9e..d46d164bb 100644 --- a/src/rpcclient.cpp +++ b/src/rpcclient.cpp @@ -129,53 +129,53 @@ Array RPCConvertValues(const std::string &strMethod, const std::vector 0) ConvertTo(params[0]); if (strMethod == "getaddednodeinfo" && n > 0) ConvertTo(params[0]); if (strMethod == "setgenerate" && n > 0) ConvertTo(params[0]); - if (strMethod == "setgenerate" && n > 1) ConvertTo(params[1]); - if (strMethod == "getnetworkhashps" && n > 0) ConvertTo(params[0]); - if (strMethod == "getnetworkhashps" && n > 1) ConvertTo(params[1]); + if (strMethod == "setgenerate" && n > 1) ConvertTo(params[1]); + if (strMethod == "getnetworkhashps" && n > 0) ConvertTo(params[0]); + if (strMethod == "getnetworkhashps" && n > 1) ConvertTo(params[1]); if (strMethod == "sendtoaddress" && n > 1) ConvertTo(params[1]); if (strMethod == "settxfee" && n > 0) ConvertTo(params[0]); - if (strMethod == "getreceivedbyaddress" && n > 1) ConvertTo(params[1]); - if (strMethod == "getreceivedbyaccount" && n > 1) ConvertTo(params[1]); - if (strMethod == "listreceivedbyaddress" && n > 0) ConvertTo(params[0]); + if (strMethod == "getreceivedbyaddress" && n > 1) ConvertTo(params[1]); + if (strMethod == "getreceivedbyaccount" && n > 1) ConvertTo(params[1]); + if (strMethod == "listreceivedbyaddress" && n > 0) ConvertTo(params[0]); if (strMethod == "listreceivedbyaddress" && n > 1) ConvertTo(params[1]); - if (strMethod == "listreceivedbyaccount" && n > 0) ConvertTo(params[0]); + if (strMethod == "listreceivedbyaccount" && n > 0) ConvertTo(params[0]); if (strMethod == "listreceivedbyaccount" && n > 1) ConvertTo(params[1]); - if (strMethod == "getbalance" && n > 1) ConvertTo(params[1]); - if (strMethod == "getblockhash" && n > 0) ConvertTo(params[0]); + if (strMethod == "getbalance" && n > 1) ConvertTo(params[1]); + if (strMethod == "getblockhash" && n > 0) ConvertTo(params[0]); if (strMethod == "move" && n > 2) ConvertTo(params[2]); - if (strMethod == "move" && n > 3) ConvertTo(params[3]); + if (strMethod == "move" && n > 3) ConvertTo(params[3]); if (strMethod == "sendfrom" && n > 2) ConvertTo(params[2]); - if (strMethod == "sendfrom" && n > 3) ConvertTo(params[3]); - if (strMethod == "listtransactions" && n > 1) ConvertTo(params[1]); - if (strMethod == "listtransactions" && n > 2) ConvertTo(params[2]); - if (strMethod == "listaccounts" && n > 0) ConvertTo(params[0]); - if (strMethod == "walletpassphrase" && n > 1) ConvertTo(params[1]); + if (strMethod == "sendfrom" && n > 3) ConvertTo(params[3]); + if (strMethod == "listtransactions" && n > 1) ConvertTo(params[1]); + if (strMethod == "listtransactions" && n > 2) ConvertTo(params[2]); + if (strMethod == "listaccounts" && n > 0) ConvertTo(params[0]); + if (strMethod == "walletpassphrase" && n > 1) ConvertTo(params[1]); if (strMethod == "getblocktemplate" && n > 0) ConvertTo(params[0]); - if (strMethod == "listsinceblock" && n > 1) ConvertTo(params[1]); + if (strMethod == "listsinceblock" && n > 1) ConvertTo(params[1]); if (strMethod == "sendmany" && n > 1) ConvertTo(params[1]); - if (strMethod == "sendmany" && n > 2) ConvertTo(params[2]); - if (strMethod == "addmultisigaddress" && n > 0) ConvertTo(params[0]); + if (strMethod == "sendmany" && n > 2) ConvertTo(params[2]); + if (strMethod == "addmultisigaddress" && n > 0) ConvertTo(params[0]); if (strMethod == "addmultisigaddress" && n > 1) ConvertTo(params[1]); - if (strMethod == "createmultisig" && n > 0) ConvertTo(params[0]); + if (strMethod == "createmultisig" && n > 0) ConvertTo(params[0]); if (strMethod == "createmultisig" && n > 1) ConvertTo(params[1]); - if (strMethod == "listunspent" && n > 0) ConvertTo(params[0]); - if (strMethod == "listunspent" && n > 1) ConvertTo(params[1]); + if (strMethod == "listunspent" && n > 0) ConvertTo(params[0]); + if (strMethod == "listunspent" && n > 1) ConvertTo(params[1]); if (strMethod == "listunspent" && n > 2) ConvertTo(params[2]); if (strMethod == "getblock" && n > 1) ConvertTo(params[1]); - if (strMethod == "getrawtransaction" && n > 1) ConvertTo(params[1]); + if (strMethod == "getrawtransaction" && n > 1) ConvertTo(params[1]); if (strMethod == "createrawtransaction" && n > 0) ConvertTo(params[0]); if (strMethod == "createrawtransaction" && n > 1) ConvertTo(params[1]); if (strMethod == "signrawtransaction" && n > 1) ConvertTo(params[1], true); if (strMethod == "signrawtransaction" && n > 2) ConvertTo(params[2], true); if (strMethod == "sendrawtransaction" && n > 1) ConvertTo(params[1], true); - if (strMethod == "gettxout" && n > 1) ConvertTo(params[1]); + if (strMethod == "gettxout" && n > 1) ConvertTo(params[1]); if (strMethod == "gettxout" && n > 2) ConvertTo(params[2]); if (strMethod == "lockunspent" && n > 0) ConvertTo(params[0]); if (strMethod == "lockunspent" && n > 1) ConvertTo(params[1]); if (strMethod == "importprivkey" && n > 2) ConvertTo(params[2]); - if (strMethod == "verifychain" && n > 0) ConvertTo(params[0]); - if (strMethod == "verifychain" && n > 1) ConvertTo(params[1]); - if (strMethod == "keypoolrefill" && n > 0) ConvertTo(params[0]); + if (strMethod == "verifychain" && n > 0) ConvertTo(params[0]); + if (strMethod == "verifychain" && n > 1) ConvertTo(params[1]); + if (strMethod == "keypoolrefill" && n > 0) ConvertTo(params[0]); if (strMethod == "getrawmempool" && n > 0) ConvertTo(params[0]); return params; @@ -266,11 +266,12 @@ std::string HelpMessageCli(bool mainProgram) strUsage += " -rpcconnect= " + _("Send commands to node running on (default: 127.0.0.1)") + "\n"; strUsage += " -rpcport= " + _("Connect to JSON-RPC on (default: 22555 or testnet: 44555)") + "\n"; strUsage += " -rpcwait " + _("Wait for RPC server to start") + "\n"; - strUsage += " -rpcuser= " + _("Username for JSON-RPC connections") + "\n"; - strUsage += " -rpcpassword= " + _("Password for JSON-RPC connections") + "\n"; if(mainProgram) { + strUsage += " -rpcuser= " + _("Username for JSON-RPC connections") + "\n"; + strUsage += " -rpcpassword= " + _("Password for JSON-RPC connections") + "\n"; + strUsage += "\n" + _("SSL options: (see the Bitcoin Wiki for SSL setup instructions)") + "\n"; strUsage += " -rpcssl " + _("Use OpenSSL (https) for JSON-RPC connections") + "\n"; } diff --git a/src/rpcdump.cpp b/src/rpcdump.cpp index c1dccb87a..53eee1c4b 100644 --- a/src/rpcdump.cpp +++ b/src/rpcdump.cpp @@ -154,7 +154,7 @@ Value importwallet(const Array& params, bool fHelp) EnsureWalletIsUnlocked(); ifstream file; - file.open(params[0].get_str().c_str()); + file.open(params[0].get_str().c_str(), std::ios::in | std::ios::ate); if (!file.is_open()) throw JSONRPCError(RPC_INVALID_PARAMETER, "Cannot open wallet dump file"); @@ -162,7 +162,12 @@ Value importwallet(const Array& params, bool fHelp) bool fGood = true; + int64_t nFilesize = std::max((int64_t)1, (int64_t)file.tellg()); + file.seekg(0, file.beg); + + pwalletMain->ShowProgress(_("Importing..."), 0); // show progress dialog in GUI while (file.good()) { + pwalletMain->ShowProgress("", std::max(1, std::min(99, (int)(((double)file.tellg() / (double)nFilesize) * 100)))); std::string line; std::getline(file, line); if (line.empty() || line[0] == '#') @@ -208,11 +213,15 @@ Value importwallet(const Array& params, bool fHelp) nTimeBegin = std::min(nTimeBegin, nTime); } file.close(); + pwalletMain->ShowProgress("", 100); // hide progress dialog in GUI CBlockIndex *pindex = chainActive.Tip(); while (pindex && pindex->pprev && pindex->nTime > nTimeBegin - 7200) pindex = pindex->pprev; + if (!pwalletMain->nTimeFirstKey || nTimeBegin < pwalletMain->nTimeFirstKey) + pwalletMain->nTimeFirstKey = nTimeBegin; + LogPrintf("Rescanning last %i blocks\n", chainActive.Height() - pindex->nHeight + 1); pwalletMain->ScanForWalletTransactions(pindex); pwalletMain->MarkDirty(); diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp index 114b33ecb..563c24cfc 100644 --- a/src/rpcmining.cpp +++ b/src/rpcmining.cpp @@ -5,6 +5,7 @@ #include "rpcserver.h" #include "chainparams.h" +#include "auxpow.h" #include "init.h" #include "net.h" #include "main.h" @@ -91,7 +92,7 @@ Value GetNetworkHashPS(int lookup, int height) { uint256 workDiff = pb->nChainWork - pb0->nChainWork; int64_t timeDiff = maxTime - minTime; - return (boost::int64_t)(workDiff.getdouble() / timeDiff); + return (int64_t)(workDiff.getdouble() / timeDiff); } Value getnetworkhashps(const Array& params, bool fHelp) @@ -207,6 +208,7 @@ Value setgenerate(const Array& params, bool fHelp) else // Not -regtest: start generate thread, return immediately { mapArgs["-gen"] = (fGenerate ? "1" : "0"); + mapArgs ["-genproclimit"] = itostr(nGenProcLimit); GenerateBitcoins(fGenerate, pwalletMain, nGenProcLimit); } @@ -228,8 +230,8 @@ Value gethashespersec(const Array& params, bool fHelp) ); if (GetTimeMillis() - nHPSTimerStart > 8000) - return (boost::int64_t)0; - return (boost::int64_t)dHashesPerSec; + return (int64_t)0; + return (int64_t)dHashesPerSec; } #endif @@ -628,3 +630,290 @@ Value submitblock(const Array& params, bool fHelp) return Value::null; } + +#ifdef ENABLE_WALLET +Value getworkaux(const Array& params, bool fHelp) +{ + if (fHelp || params.size() < 1) + throw runtime_error( + "getworkaux \n" + "getworkaux '' \n" + "getworkaux 'submit' \n" + "getworkaux '' *\n" + " get work with auxiliary data in coinbase, for multichain mining\n" + " is the merkle root of the auxiliary chain block hashes, concatenated with the aux chain merkle tree size and a nonce\n" + " is the aux chain index in the aux chain merkle tree\n" + " is the optional merkle branch of the aux chain\n" + "If is not specified, returns formatted hash data to work on:\n" + " \"midstate\" : precomputed hash state after hashing the first half of the data\n" + " \"data\" : block data\n" + " \"hash1\" : formatted hash buffer for second hash\n" + " \"target\" : little endian hash target\n" + "If is specified and 'submit', tries to solve the block for this (parent) chain and returns true if it was successful." + "If is specified and empty first argument, returns the aux merkle root, with size and nonce." + "If and are specified, creates an auxiliary proof of work for the chain specified and returns:\n" + " \"aux\" : merkle root of auxiliary chain block hashes\n" + " \"auxpow\" : aux proof of work to submit to aux chain\n" + ); + + if (vNodes.empty()) + throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Dogecoin is not connected!"); + + if (IsInitialBlockDownload()) + throw JSONRPCError(RPC_CLIENT_IN_INITIAL_DOWNLOAD, "Dogecoin is downloading blocks..."); + + // We use height plus one because we're testing the next block + if ((chainActive.Tip()->nHeight+1) < GetAuxPowStartBlock()) { + throw JSONRPCError(RPC_METHOD_NOT_FOUND, "getworkaux method is not available until switch-over block."); + } + + static map > mapNewBlock; + static vector vNewBlockTemplate; + static CReserveKey reservekey(pwalletMain); + + if (params.size() == 1) + { + static vector vchAuxPrev; + vector vchAux = ParseHex(params[0].get_str()); + + // Update block + static unsigned int nTransactionsUpdatedLast; + static CBlockIndex* pindexPrev; + static uint64_t nStart; + static CBlockTemplate* pblocktemplate; + if (pindexPrev != chainActive.Tip() || + (mempool.GetTransactionsUpdated() != nTransactionsUpdatedLast && GetTime() - nStart > 60)) + { + if (pindexPrev != chainActive.Tip()) + { + // Deallocate old blocks since they're obsolete now + mapNewBlock.clear(); + BOOST_FOREACH(CBlockTemplate* pblocktemplate, vNewBlockTemplate) + delete pblocktemplate; + vNewBlockTemplate.clear(); + } + nTransactionsUpdatedLast = mempool.GetTransactionsUpdated(); + pindexPrev = chainActive.Tip(); + vchAuxPrev = vchAux; + nStart = GetTime(); + + // Create new block + pblocktemplate = CreateNewBlockWithKey(*pMiningKey); + if (!pblocktemplate) + throw JSONRPCError(-7, "Out of memory"); + vNewBlockTemplate.push_back(pblocktemplate); + } + CBlock* pblock = &pblocktemplate->block; // pointer for convenience + + // Update nTime + pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime()); + pblock->nNonce = 0; + + // Update nExtraNonce + static unsigned int nExtraNonce = 0; + IncrementExtraNonceWithAux(pblock, pindexPrev, nExtraNonce, vchAux); + + // Save + mapNewBlock[pblock->hashMerkleRoot] = make_pair(pblock, nExtraNonce); + + // Prebuild hash buffers + char pmidstate[32]; + char pdata[128]; + char phash1[64]; + FormatHashBuffers(pblock, pmidstate, pdata, phash1); + + uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256(); + + Object result; + result.push_back(Pair("midstate", HexStr(BEGIN(pmidstate), END(pmidstate)))); + result.push_back(Pair("data", HexStr(BEGIN(pdata), END(pdata)))); + result.push_back(Pair("hash1", HexStr(BEGIN(phash1), END(phash1)))); + result.push_back(Pair("target", HexStr(BEGIN(hashTarget), END(hashTarget)))); + return result; + } + else + { + if (params[0].get_str() != "submit" && params[0].get_str() != "") + throw JSONRPCError(-8, " must be the empty string or 'submit' if work is being submitted"); + // Parse parameters + vector vchData = ParseHex(params[1].get_str()); + if (vchData.size() != 128) + throw JSONRPCError(-8, "Invalid parameter"); + CBlock* pdata = (CBlock*)&vchData[0]; + + // Byte reverse + for (int i = 0; i < 128/4; i++) + ((unsigned int*)pdata)[i] = ByteReverse(((unsigned int*)pdata)[i]); + + // Get saved block + if (!mapNewBlock.count(pdata->hashMerkleRoot)) + return false; + CBlock* pblock = mapNewBlock[pdata->hashMerkleRoot].first; + unsigned int nExtraNonce = mapNewBlock[pdata->hashMerkleRoot].second; + + pblock->nTime = pdata->nTime; + pblock->nNonce = pdata->nNonce; + + // Get the aux merkle root from the coinbase + CScript script = pblock->vtx[0].vin[0].scriptSig; + opcodetype opcode; + CScript::const_iterator pc = script.begin(); + script.GetOp(pc, opcode); + script.GetOp(pc, opcode); + script.GetOp(pc, opcode); + if (opcode != OP_2) + throw runtime_error("invalid aux pow script"); + vector vchAux; + script.GetOp(pc, opcode, vchAux); + + RemoveMergedMiningHeader(vchAux); + + unsigned int nHeight = chainActive.Tip()->nHeight+1; // Height first in coinbase required for block.version=2 + pblock->vtx[0].vin[0].scriptSig = MakeCoinbaseWithAux(nHeight, nExtraNonce, vchAux); + pblock->hashMerkleRoot = pblock->BuildMerkleTree(); + + if (params.size() > 2) + { + // Requested aux proof of work + int nChainIndex = params[2].get_int(); + + CAuxPow pow(pblock->vtx[0]); + + for (unsigned int i = 3 ; i < params.size() ; i++) + { + uint256 nHash; + nHash.SetHex(params[i].get_str()); + pow.vChainMerkleBranch.push_back(nHash); + } + + pow.SetMerkleBranch(pblock); + pow.nChainIndex = nChainIndex; + pow.parentBlockHeader = *pblock; + CDataStream ss(SER_GETHASH, PROTOCOL_VERSION); + ss << pow; + Object result; + result.push_back(Pair("auxpow", HexStr(ss.begin(), ss.end()))); + return result; + } + else + { + if (params[0].get_str() == "submit") + { + return CheckWork(pblock, *pwalletMain, reservekey); + } + else + { + Object result; + result.push_back(Pair("aux", HexStr(vchAux.begin(), vchAux.end()))); + result.push_back(Pair("hash", pblock->GetHash().GetHex())); + return result; + } + } + } +} + +Value getauxblock(const Array& params, bool fHelp) +{ + if (fHelp || (params.size() != 0 && params.size() != 2)) + throw runtime_error( + "getauxblock [ ]\n" + " create a new block" + "If , is not specified, returns a new block hash.\n" + "If , is specified, tries to solve the block based on " + "the aux proof of work and returns true if it was successful."); + + if (vNodes.empty()) + throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Dogecoin is not connected!"); + + if (IsInitialBlockDownload()) + throw JSONRPCError(RPC_CLIENT_IN_INITIAL_DOWNLOAD, "Dogecoin is downloading blocks..."); + + // We use height plus one because we're testing the next block + if ((chainActive.Tip()->nHeight+1) < GetAuxPowStartBlock()) { + throw JSONRPCError(RPC_METHOD_NOT_FOUND, "getauxblock method is not available until switch-over block."); + } + + static map mapNewBlock; + static vector vNewBlockTemplate; + static CReserveKey reservekey(pwalletMain); + + if (params.size() == 0) + { + // Update block + static unsigned int nTransactionsUpdatedLast; + static CBlockIndex* pindexPrev; + static uint64_t nStart; + static CBlock* pblock; + static CBlockTemplate* pblocktemplate; + if (pindexPrev != chainActive.Tip() || + (mempool.GetTransactionsUpdated() != nTransactionsUpdatedLast && GetTime() - nStart > 60)) + { + if (pindexPrev != chainActive.Tip()) + { + // Deallocate old blocks since they're obsolete now + mapNewBlock.clear(); + BOOST_FOREACH(CBlockTemplate* pblocktemplate, vNewBlockTemplate) + delete pblocktemplate; + vNewBlockTemplate.clear(); + } + nTransactionsUpdatedLast = mempool.GetTransactionsUpdated(); + pindexPrev = chainActive.Tip(); + nStart = GetTime(); + + // Create new block with nonce = 0 and extraNonce = 1 + pblocktemplate = CreateNewBlockWithKey(*pMiningKey); + if (!pblocktemplate) + throw JSONRPCError(-7, "Out of memory"); + + pblock = &pblocktemplate->block; + // Update nTime + pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime()); + pblock->nNonce = 0; + + + // Update nExtraNonce + static unsigned int nExtraNonce = 0; + IncrementExtraNonce(pblock, pindexPrev, nExtraNonce); + + // Sets the version + pblock->SetAuxPow(new CAuxPow()); + + // Save + mapNewBlock[pblock->GetHash()] = pblock; + + vNewBlockTemplate.push_back(pblocktemplate); + } + + uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256(); + + Object result; + result.push_back(Pair("target", HexStr(BEGIN(hashTarget), END(hashTarget)))); + result.push_back(Pair("hash", pblock->GetHash().GetHex())); + result.push_back(Pair("chainid", pblock->GetChainID())); + return result; + } + else + { + uint256 hash; + hash.SetHex(params[0].get_str()); + vector vchAuxPow = ParseHex(params[1].get_str()); + CDataStream ss(vchAuxPow, SER_GETHASH, PROTOCOL_VERSION); + CAuxPow* pow = new CAuxPow(); + ss >> *pow; + if (!mapNewBlock.count(hash)) + return ::error("getauxblock() : block not found"); + + CBlock* pblock = mapNewBlock[hash]; + pblock->SetAuxPow(pow); + + if (!CheckWork(pblock, *pwalletMain, reservekey)) + { + return false; + } + else + { + return true; + } + } +} +#endif diff --git a/src/rpcmisc.cpp b/src/rpcmisc.cpp index 0a70937d5..267516c82 100644 --- a/src/rpcmisc.cpp +++ b/src/rpcmisc.cpp @@ -46,8 +46,9 @@ Value getinfo(const Array& params, bool fHelp) " \"testnet\": true|false, (boolean) if the server is using testnet or not\n" " \"keypoololdest\": xxxxxx, (numeric) the timestamp (seconds since GMT epoch) of the oldest pre-generated key in the key pool\n" " \"keypoolsize\": xxxx, (numeric) how many new keys are pre-generated\n" - " \"paytxfee\": x.xxxx, (numeric) the transaction fee set in doge\n" " \"unlocked_until\": ttt, (numeric) the timestamp in seconds since epoch (midnight Jan 1 1970 GMT) that the wallet is unlocked for transfers, or 0 if the wallet is locked\n" + " \"paytxfee\": x.xxxx, (numeric) the transaction fee set in doge/kb\n" + " \"relayfee\": x.xxxx, (numeric) minimum relay fee for non-free transactions in doge/kb\n" " \"errors\": \"...\" (string) any error messages\n" "}\n" "\nExamples:\n" @@ -68,20 +69,21 @@ Value getinfo(const Array& params, bool fHelp) } #endif obj.push_back(Pair("blocks", (int)chainActive.Height())); - obj.push_back(Pair("timeoffset", (boost::int64_t)GetTimeOffset())); + obj.push_back(Pair("timeoffset", GetTimeOffset())); obj.push_back(Pair("connections", (int)vNodes.size())); obj.push_back(Pair("proxy", (proxy.first.IsValid() ? proxy.first.ToStringIPPort() : string()))); obj.push_back(Pair("difficulty", (double)GetDifficulty())); obj.push_back(Pair("testnet", TestNet())); #ifdef ENABLE_WALLET if (pwalletMain) { - obj.push_back(Pair("keypoololdest", (boost::int64_t)pwalletMain->GetOldestKeyPoolTime())); + obj.push_back(Pair("keypoololdest", pwalletMain->GetOldestKeyPoolTime())); obj.push_back(Pair("keypoolsize", (int)pwalletMain->GetKeyPoolSize())); } - obj.push_back(Pair("paytxfee", ValueFromAmount(nTransactionFee))); if (pwalletMain && pwalletMain->IsCrypted()) - obj.push_back(Pair("unlocked_until", (boost::int64_t)nWalletUnlockTime)); + obj.push_back(Pair("unlocked_until", nWalletUnlockTime)); + obj.push_back(Pair("paytxfee", ValueFromAmount(nTransactionFee))); #endif + obj.push_back(Pair("relayfee", ValueFromAmount(CTransaction::nMinRelayTxFee))); obj.push_back(Pair("errors", GetWarnings("statusbar"))); return obj; } @@ -174,7 +176,7 @@ Value validateaddress(const Array& params, bool fHelp) // // Used by addmultisigaddress / createmultisig: // -CScript _createmultisig(const Array& params) +CScript _createmultisig_redeemScript(const Array& params) { int nRequired = params[0].get_int(); const Array& keys = params[1].get_array(); @@ -226,6 +228,11 @@ CScript _createmultisig(const Array& params) } CScript result; result.SetMultisig(nRequired, pubkeys); + + if (result.size() > MAX_SCRIPT_ELEMENT_SIZE) + throw runtime_error( + strprintf("redeemScript exceeds size limit: %d > %d", result.size(), MAX_SCRIPT_ELEMENT_SIZE)); + return result; } @@ -253,15 +260,15 @@ Value createmultisig(const Array& params, bool fHelp) "\nExamples:\n" "\nCreate a multisig address from 2 addresses\n" - + HelpExampleCli("createmultisig", "2 \"[\\\"16sSauSf5pF2UkUwvKGq4qjNRzBZYqgEL5\\\",\\\"171sgjn4YtPu27adkKGrdDwzRTxnRkBfKV\\\"]\"") + + + HelpExampleCli("createmultisig", "2 \"[\\\"D9fLaux2pNqp9w4BnU6Rj51PovyzbUaBpk\\\",\\\"DSYgpp3zaDj5wq5Tz1CYEif1QB98zbC2V3\\\"]\"") + "\nAs a json rpc call\n" - + HelpExampleRpc("icreatemultisig", "2, \"[\\\"16sSauSf5pF2UkUwvKGq4qjNRzBZYqgEL5\\\",\\\"171sgjn4YtPu27adkKGrdDwzRTxnRkBfKV\\\"]\"") + + HelpExampleRpc("createmultisig", "2, \"[\\\"D9fLaux2pNqp9w4BnU6Rj51PovyzbUaBpk\\\",\\\"DSYgpp3zaDj5wq5Tz1CYEif1QB98zbC2V3\\\"]\"") ; throw runtime_error(msg); } // Construct using pay-to-script-hash: - CScript inner = _createmultisig(params); + CScript inner = _createmultisig_redeemScript(params); CScriptID innerID = inner.GetID(); CBitcoinAddress address(innerID); diff --git a/src/rpcnet.cpp b/src/rpcnet.cpp index a23877f3a..f5d8fad49 100644 --- a/src/rpcnet.cpp +++ b/src/rpcnet.cpp @@ -10,10 +10,6 @@ #include "protocol.h" #include "sync.h" #include "util.h" -#ifdef ENABLE_WALLET -#include "init.h" // for getinfo -#include "wallet.h" // for getinfo -#endif #include #include "json/json_spirit_value.h" @@ -120,11 +116,11 @@ Value getpeerinfo(const Array& params, bool fHelp) if (!(stats.addrLocal.empty())) obj.push_back(Pair("addrlocal", stats.addrLocal)); obj.push_back(Pair("services", strprintf("%08x", stats.nServices))); - obj.push_back(Pair("lastsend", (boost::int64_t)stats.nLastSend)); - obj.push_back(Pair("lastrecv", (boost::int64_t)stats.nLastRecv)); - obj.push_back(Pair("bytessent", (boost::int64_t)stats.nSendBytes)); - obj.push_back(Pair("bytesrecv", (boost::int64_t)stats.nRecvBytes)); - obj.push_back(Pair("conntime", (boost::int64_t)stats.nTimeConnected)); + obj.push_back(Pair("lastsend", stats.nLastSend)); + obj.push_back(Pair("lastrecv", stats.nLastRecv)); + obj.push_back(Pair("bytessent", stats.nSendBytes)); + obj.push_back(Pair("bytesrecv", stats.nRecvBytes)); + obj.push_back(Pair("conntime", stats.nTimeConnected)); obj.push_back(Pair("pingtime", stats.dPingTime)); if (stats.dPingWait > 0.0) obj.push_back(Pair("pingwait", stats.dPingWait)); @@ -333,8 +329,59 @@ Value getnettotals(const Array& params, bool fHelp) ); Object obj; - obj.push_back(Pair("totalbytesrecv", static_cast< boost::uint64_t>(CNode::GetTotalBytesRecv()))); - obj.push_back(Pair("totalbytessent", static_cast(CNode::GetTotalBytesSent()))); - obj.push_back(Pair("timemillis", static_cast(GetTimeMillis()))); + obj.push_back(Pair("totalbytesrecv", CNode::GetTotalBytesRecv())); + obj.push_back(Pair("totalbytessent", CNode::GetTotalBytesSent())); + obj.push_back(Pair("timemillis", GetTimeMillis())); + return obj; +} + +Value getnetworkinfo(const Array& params, bool fHelp) +{ + if (fHelp || params.size() != 0) + throw runtime_error( + "getnetworkinfo\n" + "Returns an object containing various state info regarding P2P networking.\n" + "\nResult:\n" + "{\n" + " \"version\": xxxxx, (numeric) the server version\n" + " \"protocolversion\": xxxxx, (numeric) the protocol version\n" + " \"timeoffset\": xxxxx, (numeric) the time offset\n" + " \"connections\": xxxxx, (numeric) the number of connections\n" + " \"proxy\": \"host:port\", (string, optional) the proxy used by the server\n" + " \"relayfee\": x.xxxx, (numeric) minimum relay fee for non-free transactions in btc/kb\n" + " \"localaddresses\": [, (array) list of local addresses\n" + " \"address\": \"xxxx\", (string) network address\n" + " \"port\": xxx, (numeric) network port\n" + " \"score\": xxx (numeric) relative score\n" + " ]\n" + "}\n" + "\nExamples:\n" + + HelpExampleCli("getnetworkinfo", "") + + HelpExampleRpc("getnetworkinfo", "") + ); + + proxyType proxy; + GetProxy(NET_IPV4, proxy); + + Object obj; + obj.push_back(Pair("version", (int)CLIENT_VERSION)); + obj.push_back(Pair("protocolversion",(int)PROTOCOL_VERSION)); + obj.push_back(Pair("timeoffset", GetTimeOffset())); + obj.push_back(Pair("connections", (int)vNodes.size())); + obj.push_back(Pair("proxy", (proxy.first.IsValid() ? proxy.first.ToStringIPPort() : string()))); + obj.push_back(Pair("relayfee", ValueFromAmount(CTransaction::nMinRelayTxFee))); + Array localAddresses; + { + LOCK(cs_mapLocalHost); + BOOST_FOREACH(const PAIRTYPE(CNetAddr, LocalServiceInfo) &item, mapLocalHost) + { + Object rec; + rec.push_back(Pair("address", item.first.ToString())); + rec.push_back(Pair("port", item.second.nPort)); + rec.push_back(Pair("score", item.second.nScore)); + localAddresses.push_back(rec); + } + } + obj.push_back(Pair("localaddresses", localAddresses)); return obj; } diff --git a/src/rpcprotocol.cpp b/src/rpcprotocol.cpp index e91f5602f..18392a718 100644 --- a/src/rpcprotocol.cpp +++ b/src/rpcprotocol.cpp @@ -52,15 +52,7 @@ string HTTPPost(const string& strMsg, const map& mapRequestHeader static string rfc1123Time() { - char buffer[64]; - time_t now; - time(&now); - struct tm* now_gmt = gmtime(&now); - string locale(setlocale(LC_TIME, NULL)); - setlocale(LC_TIME, "C"); // we want POSIX (aka "C") weekday/month strings - strftime(buffer, sizeof(buffer), "%a, %d %b %Y %H:%M:%S +0000", now_gmt); - setlocale(LC_TIME, locale.c_str()); - return string(buffer); + return DateTimeStrFormat("%a, %d %b %Y %H:%M:%S +0000", GetTime()); } string HTTPReply(int nStatus, const string& strMsg, bool keepalive) @@ -222,7 +214,7 @@ int ReadHTTPMessage(std::basic_istream& stream, mapnHeight)); - entry.push_back(Pair("time", (boost::int64_t)pindex->nTime)); - entry.push_back(Pair("blocktime", (boost::int64_t)pindex->nTime)); + entry.push_back(Pair("time", (int64_t)pindex->nTime)); + entry.push_back(Pair("blocktime", (int64_t)pindex->nTime)); } else entry.push_back(Pair("confirmations", 0)); @@ -400,17 +400,16 @@ Value decoderawtransaction(const Array& params, bool fHelp) "\nReturn a JSON object representing the serialized, hex-encoded transaction.\n" "\nArguments:\n" - "1. \"txid\" (string, required) The transaction hex string\n" + "1. \"hex\" (string, required) The transaction hex string\n" "\nResult:\n" "{\n" - " \"hex\" : \"data\", (string) The serialized, hex-encoded data for 'txid'\n" - " \"txid\" : \"id\", (string) The transaction ID (same as provided)\n" + " \"txid\" : \"id\", (string) The transaction id\n" " \"version\" : n, (numeric) The version\n" " \"locktime\" : ttt, (numeric) The lock time\n" " \"vin\" : [ (array of json objects)\n" " {\n" - " \"txid\": \"id\", (string) The transaction ID\n" + " \"txid\": \"id\", (string) The transaction id\n" " \"vout\": n, (numeric) The output number\n" " \"scriptSig\": { (json object) The script\n" " \"asm\": \"asm\", (string) asm\n" @@ -422,7 +421,7 @@ Value decoderawtransaction(const Array& params, bool fHelp) " ],\n" " \"vout\" : [ (array of json objects)\n" " {\n" - " \"value\" : x.xxx, (numeric) The value in doge\n" + " \"value\" : x.xxx, (numeric) The value in DOGE\n" " \"n\" : n, (numeric) index\n" " \"scriptPubKey\" : { (json object)\n" " \"asm\" : \"asm\", (string) the asm\n" @@ -430,17 +429,13 @@ Value decoderawtransaction(const Array& params, bool fHelp) " \"reqSigs\" : n, (numeric) The required sigs\n" " \"type\" : \"pubkeyhash\", (string) The type, eg 'pubkeyhash'\n" " \"addresses\" : [ (json array of string)\n" - " \"12tvKAXCxZjSmdNbao16dKXC8tRWfcF5oc\" (string) Dogecoin address\n" + " \"DJ7zB7c5BsB9UJLy1rKQtY7c6CQfGiaRLM\" (string) Dogecoin address\n" " ,...\n" " ]\n" " }\n" " }\n" " ,...\n" " ],\n" - " \"blockhash\" : \"hash\", (string) the block hash\n" - " \"confirmations\" : n, (numeric) The confirmations\n" - " \"time\" : ttt, (numeric) The transaction time in seconds since epoch (Jan 1 1970 GMT)\n" - " \"blocktime\" : ttt (numeric) The block time in seconds since epoch (Jan 1 1970 GMT)\n" "}\n" "\nExamples:\n" @@ -536,7 +531,7 @@ Value signrawtransaction(const Array& params, bool fHelp) " \"privatekey\" (string) private key in base58-encoding\n" " ,...\n" " ]\n" - "4. \"sighashtype\" (string, optional, default=ALL) The signature has type. Must be one of\n" + "4. \"sighashtype\" (string, optional, default=ALL) The signature hash type. Must be one of\n" " \"ALL\"\n" " \"NONE\"\n" " \"SINGLE\"\n" @@ -722,7 +717,7 @@ Value signrawtransaction(const Array& params, bool fHelp) { txin.scriptSig = CombineSignatures(prevPubKey, mergedTx, i, txin.scriptSig, txv.vin[i].scriptSig); } - if (!VerifyScript(txin.scriptSig, prevPubKey, mergedTx, i, SCRIPT_VERIFY_P2SH | SCRIPT_VERIFY_STRICTENC, 0)) + if (!VerifyScript(txin.scriptSig, prevPubKey, mergedTx, i, STANDARD_SCRIPT_VERIFY_FLAGS, 0)) fComplete = false; } @@ -777,25 +772,23 @@ Value sendrawtransaction(const Array& params, bool fHelp) } uint256 hashTx = tx.GetHash(); - bool fHave = false; CCoinsViewCache &view = *pcoinsTip; CCoins existingCoins; - { - fHave = view.GetCoins(hashTx, existingCoins); - if (!fHave) { - // push to local node - CValidationState state; - if (!AcceptToMemoryPool(mempool, state, tx, false, NULL, !fOverrideFees)) - throw JSONRPCError(RPC_DESERIALIZATION_ERROR, "TX rejected"); // TODO: report validation state + bool fHaveMempool = mempool.exists(hashTx); + bool fHaveChain = view.GetCoins(hashTx, existingCoins) && existingCoins.nHeight < 1000000000; + if (!fHaveMempool && !fHaveChain) { + // push to local node and sync with wallets + CValidationState state; + if (AcceptToMemoryPool(mempool, state, tx, false, NULL, !fOverrideFees)) + SyncWithWallets(hashTx, tx, NULL); + else { + if(state.IsInvalid()) + throw JSONRPCError(RPC_TRANSACTION_REJECTED, strprintf("%i: %s", state.GetRejectCode(), state.GetRejectReason())); + else + throw JSONRPCError(RPC_TRANSACTION_ERROR, state.GetRejectReason()); } - } - if (fHave) { - if (existingCoins.nHeight < 1000000000) - throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "transaction already in block chain"); - // Not in block, but already in the memory pool; will drop - // through to re-relay it. - } else { - SyncWithWallets(hashTx, tx, NULL); + } else if (fHaveChain) { + throw JSONRPCError(RPC_TRANSACTION_ALREADY_IN_CHAIN, "transaction already in block chain"); } RelayTransaction(tx, hashTx); diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp index 044caf304..31c73b539 100644 --- a/src/rpcserver.cpp +++ b/src/rpcserver.cpp @@ -40,6 +40,8 @@ static map > deadlineTimers; static ssl::context* rpc_ssl_context = NULL; static boost::thread_group* rpc_worker_group = NULL; static boost::asio::io_service::work *rpc_dummy_work = NULL; +static std::vector rpc_allow_subnets; //!< List of subnets to allow RPC connections from +static std::vector< boost::shared_ptr > rpc_acceptors; void RPCTypeCheck(const Array& params, const list& typesExpected, @@ -224,85 +226,100 @@ Value stop(const Array& params, bool fHelp) static const CRPCCommand vRPCCommands[] = { // name actor (function) okSafeMode threadSafe reqWallet // ------------------------ ----------------------- ---------- ---------- --------- + /* Overall control/query calls */ + { "getinfo", &getinfo, true, false, false }, /* uses wallet if enabled */ { "help", &help, true, true, false }, { "stop", &stop, true, true, false }, - { "getblockcount", &getblockcount, true, false, false }, - { "getbestblockhash", &getbestblockhash, true, false, false }, - { "getconnectioncount", &getconnectioncount, true, false, false }, - { "getpeerinfo", &getpeerinfo, true, false, false }, - { "ping", &ping, true, false, false }, + + /* P2P networking */ + { "getnetworkinfo", &getnetworkinfo, true, false, false }, { "addnode", &addnode, true, true, false }, { "getaddednodeinfo", &getaddednodeinfo, true, true, false }, + { "getconnectioncount", &getconnectioncount, true, false, false }, { "getnettotals", &getnettotals, true, true, false }, - { "getdifficulty", &getdifficulty, true, false, false }, - { "getinfo", &getinfo, true, false, false }, - { "getrawmempool", &getrawmempool, true, false, false }, + { "getpeerinfo", &getpeerinfo, true, false, false }, + { "ping", &ping, true, false, false }, + + /* Block chain and UTXO */ + { "getblockchaininfo", &getblockchaininfo, true, false, false }, + { "getbestblockhash", &getbestblockhash, true, false, false }, + { "getblockcount", &getblockcount, true, false, false }, { "getblock", &getblock, false, false, false }, { "getblockhash", &getblockhash, false, false, false }, - { "getrawtransaction", &getrawtransaction, false, false, false }, - { "createrawtransaction", &createrawtransaction, false, false, false }, - { "decoderawtransaction", &decoderawtransaction, false, false, false }, - { "decodescript", &decodescript, false, false, false }, - { "signrawtransaction", &signrawtransaction, false, false, false }, - { "sendrawtransaction", &sendrawtransaction, false, false, false }, - { "gettxoutsetinfo", &gettxoutsetinfo, true, false, false }, + { "getdifficulty", &getdifficulty, true, false, false }, + { "getrawmempool", &getrawmempool, true, false, false }, { "gettxout", &gettxout, true, false, false }, + { "gettxoutsetinfo", &gettxoutsetinfo, true, false, false }, { "verifychain", &verifychain, true, false, false }, /* Mining */ - { "getnetworkhashps", &getnetworkhashps, true, false, false }, - { "getmininginfo", &getmininginfo, true, false, false }, { "getblocktemplate", &getblocktemplate, true, false, false }, + { "getmininginfo", &getmininginfo, true, false, false }, + { "getnetworkhashps", &getnetworkhashps, true, false, false }, { "submitblock", &submitblock, false, false, false }, - { "validateaddress", &validateaddress, true, false, false }, + + /* Raw transactions */ + { "createrawtransaction", &createrawtransaction, false, false, false }, + { "decoderawtransaction", &decoderawtransaction, false, false, false }, + { "decodescript", &decodescript, false, false, false }, + { "getrawtransaction", &getrawtransaction, false, false, false }, + { "sendrawtransaction", &sendrawtransaction, false, false, false }, + { "signrawtransaction", &signrawtransaction, false, false, false }, /* uses wallet if enabled */ + + /* Utility functions */ { "createmultisig", &createmultisig, true, true , false }, + { "validateaddress", &validateaddress, true, false, false }, /* uses wallet if enabled */ { "verifymessage", &verifymessage, false, false, false }, #ifdef ENABLE_WALLET /* Wallet */ - { "getnewaddress", &getnewaddress, true, false, true }, + { "addmultisigaddress", &addmultisigaddress, false, false, true }, + { "backupwallet", &backupwallet, true, false, true }, + { "dumpprivkey", &dumpprivkey, true, false, true }, + { "dumpwallet", &dumpwallet, true, false, true }, + { "encryptwallet", &encryptwallet, false, false, true }, { "getaccountaddress", &getaccountaddress, true, false, true }, - { "getrawchangeaddress", &getrawchangeaddress, true, false, true }, - { "setaccount", &setaccount, true, false, true }, { "getaccount", &getaccount, false, false, true }, { "getaddressesbyaccount", &getaddressesbyaccount, true, false, true }, - { "sendtoaddress", &sendtoaddress, false, false, true }, - { "getreceivedbyaddress", &getreceivedbyaddress, false, false, true }, - { "getreceivedbyaccount", &getreceivedbyaccount, false, false, true }, - { "listreceivedbyaddress", &listreceivedbyaddress, false, false, true }, - { "listreceivedbyaccount", &listreceivedbyaccount, false, false, true }, - { "backupwallet", &backupwallet, true, false, true }, - { "keypoolrefill", &keypoolrefill, true, false, true }, - { "walletpassphrase", &walletpassphrase, true, false, true }, - { "walletpassphrasechange", &walletpassphrasechange, false, false, true }, - { "walletlock", &walletlock, true, false, true }, - { "encryptwallet", &encryptwallet, false, false, true }, { "getbalance", &getbalance, false, false, true }, + { "getnewaddress", &getnewaddress, true, false, true }, + { "getrawchangeaddress", &getrawchangeaddress, true, false, true }, + { "getreceivedbyaccount", &getreceivedbyaccount, false, false, true }, + { "getreceivedbyaddress", &getreceivedbyaddress, false, false, true }, + { "gettransaction", &gettransaction, false, false, true }, { "getunconfirmedbalance", &getunconfirmedbalance, false, false, true }, + { "getwalletinfo", &getwalletinfo, true, false, true }, + { "importprivkey", &importprivkey, false, false, true }, + { "importwallet", &importwallet, false, false, true }, + { "keypoolrefill", &keypoolrefill, true, false, true }, + { "listaccounts", &listaccounts, false, false, true }, + { "listaddressgroupings", &listaddressgroupings, false, false, true }, + { "listlockunspent", &listlockunspent, false, false, true }, + { "listreceivedbyaccount", &listreceivedbyaccount, false, false, true }, + { "listreceivedbyaddress", &listreceivedbyaddress, false, false, true }, + { "listsinceblock", &listsinceblock, false, false, true }, + { "listtransactions", &listtransactions, false, false, true }, + { "listunspent", &listunspent, false, false, true }, + { "lockunspent", &lockunspent, false, false, true }, { "move", &movecmd, false, false, true }, { "sendfrom", &sendfrom, false, false, true }, { "sendmany", &sendmany, false, false, true }, - { "addmultisigaddress", &addmultisigaddress, false, false, true }, - { "gettransaction", &gettransaction, false, false, true }, - { "listtransactions", &listtransactions, false, false, true }, - { "listaddressgroupings", &listaddressgroupings, false, false, true }, - { "signmessage", &signmessage, false, false, true }, - { "listaccounts", &listaccounts, false, false, true }, - { "listsinceblock", &listsinceblock, false, false, true }, - { "dumpprivkey", &dumpprivkey, true, false, true }, - { "dumpwallet", &dumpwallet, true, false, true }, - { "importprivkey", &importprivkey, false, false, true }, - { "importwallet", &importwallet, false, false, true }, - { "listunspent", &listunspent, false, false, true }, - { "lockunspent", &lockunspent, false, false, true }, - { "listlockunspent", &listlockunspent, false, false, true }, + { "sendtoaddress", &sendtoaddress, false, false, true }, + { "setaccount", &setaccount, true, false, true }, { "settxfee", &settxfee, false, false, true }, + { "signmessage", &signmessage, false, false, true }, + { "walletlock", &walletlock, true, false, true }, + { "walletpassphrasechange", &walletpassphrasechange, false, false, true }, + { "walletpassphrase", &walletpassphrase, true, false, true }, /* Wallet-enabled mining */ { "getgenerate", &getgenerate, true, false, false }, - { "setgenerate", &setgenerate, true, true, false }, { "gethashespersec", &gethashespersec, true, false, false }, + { "getwork", &getwork, true, false, true }, + { "setgenerate", &setgenerate, true, true, false }, { "getwork", &getwork, true, false, true }, + { "getworkaux", &getworkaux, true, false, true }, + { "getauxblock", &getauxblock, true, false, true } #endif // ENABLE_WALLET }; @@ -348,25 +365,33 @@ void ErrorReply(std::ostream& stream, const Object& objError, const Value& id) stream << HTTPReply(nStatus, strReply, false) << std::flush; } -bool ClientAllowed(const boost::asio::ip::address& address) +CNetAddr BoostAsioToCNetAddr(boost::asio::ip::address address) { + CNetAddr netaddr; // Make sure that IPv4-compatible and IPv4-mapped IPv6 addresses are treated as IPv4 addresses if (address.is_v6() && (address.to_v6().is_v4_compatible() || address.to_v6().is_v4_mapped())) - return ClientAllowed(address.to_v6().to_v4()); + address = address.to_v6().to_v4(); - if (address == asio::ip::address_v4::loopback() - || address == asio::ip::address_v6::loopback() - || (address.is_v4() - // Check whether IPv4 addresses match 127.0.0.0/8 (loopback subnet) - && (address.to_v4().to_ulong() & 0xff000000) == 0x7f000000)) - return true; + if(address.is_v4()) + { + boost::asio::ip::address_v4::bytes_type bytes = address.to_v4().to_bytes(); + netaddr.SetRaw(NET_IPV4, &bytes[0]); + } + else + { + boost::asio::ip::address_v6::bytes_type bytes = address.to_v6().to_bytes(); + netaddr.SetRaw(NET_IPV6, &bytes[0]); + } + return netaddr; +} - const string strAddress = address.to_string(); - const vector& vAllow = mapMultiArgs["-rpcallowip"]; - BOOST_FOREACH(string strAllow, vAllow) - if (WildcardMatch(strAddress, strAllow)) +bool ClientAllowed(const boost::asio::ip::address& address) +{ + CNetAddr netaddr = BoostAsioToCNetAddr(address); + BOOST_FOREACH(const CSubNet &subnet, rpc_allow_subnets) + if (subnet.Match(netaddr)) return true; return false; } @@ -425,7 +450,7 @@ template static void RPCAcceptHandler(boost::shared_ptr< basic_socket_acceptor > acceptor, ssl::context& context, bool fUseSSL, - AcceptedConnection* conn, + boost::shared_ptr< AcceptedConnection > conn, const boost::system::error_code& error); /** @@ -437,7 +462,7 @@ static void RPCListen(boost::shared_ptr< basic_socket_acceptor* conn = new AcceptedConnectionImpl(acceptor->get_io_service(), context, fUseSSL); + boost::shared_ptr< AcceptedConnectionImpl > conn(new AcceptedConnectionImpl(acceptor->get_io_service(), context, fUseSSL)); acceptor->async_accept( conn->sslStream.lowest_layer(), @@ -447,7 +472,7 @@ static void RPCListen(boost::shared_ptr< basic_socket_acceptor static void RPCAcceptHandler(boost::shared_ptr< basic_socket_acceptor > acceptor, ssl::context& context, const bool fUseSSL, - AcceptedConnection* conn, + boost::shared_ptr< AcceptedConnection > conn, const boost::system::error_code& error) { // Immediately start accepting new connections, except when we're cancelled or our socket is closed. if (error != asio::error::operation_aborted && acceptor->is_open()) RPCListen(acceptor, context, fUseSSL); - AcceptedConnectionImpl* tcp_conn = dynamic_cast< AcceptedConnectionImpl* >(conn); + AcceptedConnectionImpl* tcp_conn = dynamic_cast< AcceptedConnectionImpl* >(conn.get()); - // TODO: Actually handle errors if (error) { - delete conn; + // TODO: Actually handle errors + LogPrintf("%s: Error: %s\n", __func__, error.message()); } - // Restrict callers by IP. It is important to // do this before starting client thread, to filter out // certain DoS and misbehaving clients. @@ -481,17 +505,41 @@ static void RPCAcceptHandler(boost::shared_ptr< basic_socket_acceptorstream() << HTTPReply(HTTP_FORBIDDEN, "", false) << std::flush; - delete conn; + conn->close(); } else { - ServiceConnection(conn); + ServiceConnection(conn.get()); conn->close(); - delete conn; } } void StartRPCThreads() { + rpc_allow_subnets.clear(); + rpc_allow_subnets.push_back(CSubNet("127.0.0.0/8")); // always allow IPv4 local subnet + rpc_allow_subnets.push_back(CSubNet("::1")); // always allow IPv6 localhost + if (mapMultiArgs.count("-rpcallowip")) + { + const vector& vAllow = mapMultiArgs["-rpcallowip"]; + BOOST_FOREACH(string strAllow, vAllow) + { + CSubNet subnet(strAllow); + if(!subnet.IsValid()) + { + uiInterface.ThreadSafeMessageBox( + strprintf("Invalid -rpcallowip subnet specification: %s", strAllow), + "", CClientUIInterface::MSG_ERROR); + StartShutdown(); + return; + } + rpc_allow_subnets.push_back(subnet); + } + } + std::string strAllowed; + BOOST_FOREACH(const CSubNet &subnet, rpc_allow_subnets) + strAllowed += subnet.ToString() + " "; + LogPrint("rpc", "Allowing RPC connections from: %s\n", strAllowed); + strRPCUserColonPass = mapArgs["-rpcuser"] + ":" + mapArgs["-rpcpassword"]; if (((mapArgs["-rpcpassword"] == "") || (mapArgs["-rpcuser"] == mapArgs["-rpcpassword"])) && Params().RequireRPCPassword()) @@ -551,12 +599,12 @@ void StartRPCThreads() asio::ip::address bindAddress = loopback ? asio::ip::address_v6::loopback() : asio::ip::address_v6::any(); ip::tcp::endpoint endpoint(bindAddress, GetArg("-rpcport", Params().RPCPort())); boost::system::error_code v6_only_error; - boost::shared_ptr acceptor(new ip::tcp::acceptor(*rpc_io_service)); bool fListening = false; std::string strerr; try { + boost::shared_ptr acceptor(new ip::tcp::acceptor(*rpc_io_service)); acceptor->open(endpoint.protocol()); acceptor->set_option(boost::asio::ip::tcp::acceptor::reuse_address(true)); @@ -568,13 +616,13 @@ void StartRPCThreads() RPCListen(acceptor, *rpc_ssl_context, fUseSSL); + rpc_acceptors.push_back(acceptor); fListening = true; } catch(boost::system::system_error &e) { strerr = strprintf(_("An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s"), endpoint.port(), e.what()); } - try { // If dual IPv6/IPv4 failed (or we're opening loopback interfaces only), open IPv4 separately if (!fListening || loopback || v6_only_error) @@ -582,7 +630,7 @@ void StartRPCThreads() bindAddress = loopback ? asio::ip::address_v4::loopback() : asio::ip::address_v4::any(); endpoint.address(bindAddress); - acceptor.reset(new ip::tcp::acceptor(*rpc_io_service)); + boost::shared_ptr acceptor(new ip::tcp::acceptor(*rpc_io_service)); acceptor->open(endpoint.protocol()); acceptor->set_option(boost::asio::ip::tcp::acceptor::reuse_address(true)); acceptor->bind(endpoint); @@ -590,6 +638,7 @@ void StartRPCThreads() RPCListen(acceptor, *rpc_ssl_context, fUseSSL); + rpc_acceptors.push_back(acceptor); fListening = true; } } @@ -626,7 +675,25 @@ void StopRPCThreads() { if (rpc_io_service == NULL) return; + // First, cancel all timers and acceptors + // This is not done automatically by ->stop(), and in some cases the destructor of + // asio::io_service can hang if this is skipped. + boost::system::error_code ec; + BOOST_FOREACH(const boost::shared_ptr &acceptor, rpc_acceptors) + { + acceptor->cancel(ec); + if (ec) + LogPrintf("%s: Warning: %s when cancelling acceptor", __func__, ec.message()); + } + rpc_acceptors.clear(); + BOOST_FOREACH(const PAIRTYPE(std::string, boost::shared_ptr) &timer, deadlineTimers) + { + timer.second->cancel(ec); + if (ec) + LogPrintf("%s: Warning: %s when cancelling timer", __func__, ec.message()); + } deadlineTimers.clear(); + rpc_io_service->stop(); if (rpc_worker_group != NULL) rpc_worker_group->join_all(); @@ -733,7 +800,7 @@ static string JSONRPCExecBatch(const Array& vReq) void ServiceConnection(AcceptedConnection *conn) { bool fRun = true; - while (fRun) + while (fRun && !ShutdownRequested()) { int nProto = 0; map mapHeaders; diff --git a/src/rpcserver.h b/src/rpcserver.h index 0dd583c8e..03797b7f2 100644 --- a/src/rpcserver.h +++ b/src/rpcserver.h @@ -19,6 +19,7 @@ #include "json/json_spirit_writer_template.h" class CBlockIndex; +class CNetAddr; /* Start RPC threads */ void StartRPCThreads(); @@ -50,6 +51,9 @@ void RPCTypeCheck(const json_spirit::Object& o, */ void RPCRunLater(const std::string& name, boost::function func, int64_t nSeconds); +//! Convert boost::asio address to CNetAddr +extern CNetAddr BoostAsioToCNetAddr(boost::asio::ip::address address); + typedef json_spirit::Value(*rpcfn_type)(const json_spirit::Array& params, bool fHelp); class CRPCCommand @@ -130,6 +134,9 @@ extern json_spirit::Value getwork(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value getblocktemplate(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value submitblock(const json_spirit::Array& params, bool fHelp); +extern json_spirit::Value getworkaux(const json_spirit::Array& params, bool fHelp); +extern json_spirit::Value getauxblock(const json_spirit::Array& params, bool fHelp); + extern json_spirit::Value getnewaddress(const json_spirit::Array& params, bool fHelp); // in rpcwallet.cpp extern json_spirit::Value getaccountaddress(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value getrawchangeaddress(const json_spirit::Array& params, bool fHelp); @@ -163,6 +170,9 @@ extern json_spirit::Value walletlock(const json_spirit::Array& params, bool fHel extern json_spirit::Value encryptwallet(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value validateaddress(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value getinfo(const json_spirit::Array& params, bool fHelp); +extern json_spirit::Value getwalletinfo(const json_spirit::Array& params, bool fHelp); +extern json_spirit::Value getblockchaininfo(const json_spirit::Array& params, bool fHelp); +extern json_spirit::Value getnetworkinfo(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value getrawtransaction(const json_spirit::Array& params, bool fHelp); // in rcprawtransaction.cpp extern json_spirit::Value listunspent(const json_spirit::Array& params, bool fHelp); diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp index 5ac0c9088..4ceedd7fd 100644 --- a/src/rpcwallet.cpp +++ b/src/rpcwallet.cpp @@ -49,7 +49,7 @@ void WalletTxToJSON(const CWalletTx& wtx, Object& entry) { entry.push_back(Pair("blockhash", wtx.hashBlock.GetHex())); entry.push_back(Pair("blockindex", wtx.nIndex)); - entry.push_back(Pair("blocktime", (boost::int64_t)(mapBlockIndex[wtx.hashBlock]->nTime))); + entry.push_back(Pair("blocktime", (int64_t)(mapBlockIndex[wtx.hashBlock]->nTime))); } uint256 hash = wtx.GetHash(); entry.push_back(Pair("txid", hash.GetHex())); @@ -57,8 +57,8 @@ void WalletTxToJSON(const CWalletTx& wtx, Object& entry) BOOST_FOREACH(const uint256& conflict, wtx.GetConflicts()) conflicts.push_back(conflict.GetHex()); entry.push_back(Pair("walletconflicts", conflicts)); - entry.push_back(Pair("time", (boost::int64_t)wtx.GetTxTime())); - entry.push_back(Pair("timereceived", (boost::int64_t)wtx.nTimeReceived)); + entry.push_back(Pair("time", wtx.GetTxTime())); + entry.push_back(Pair("timereceived", (int64_t)wtx.nTimeReceived)); BOOST_FOREACH(const PAIRTYPE(string,string)& item, wtx.mapValue) entry.push_back(Pair(item.first, item.second)); } @@ -318,7 +318,7 @@ Value sendtoaddress(const Array& params, bool fHelp) " to which you're sending the transaction. This is not part of the \n" " transaction, just kept in your wallet.\n" "\nResult:\n" - "\"transactionid\" (string) The transaction id. (view at https://blockchain.info/tx/[transactionid])\n" + "\"transactionid\" (string) The transaction id.\n" "\nExamples:\n" + HelpExampleCli("sendtoaddress", "\"1M72Sfpbz1BPpXFHz9m3CdqATR44Jvaydd\" 0.1") + HelpExampleCli("sendtoaddress", "\"1M72Sfpbz1BPpXFHz9m3CdqATR44Jvaydd\" 0.1 \"donation\" \"seans outpost\"") @@ -747,7 +747,7 @@ Value sendfrom(const Array& params, bool fHelp) " to which you're sending the transaction. This is not part of the transaction, \n" " it is just kept in your wallet.\n" "\nResult:\n" - "\"transactionid\" (string) The transaction id. (view at https://blockchain.info/tx/[transactionid])\n" + "\"transactionid\" (string) The transaction id.\n" "\nExamples:\n" "\nSend 10.01 doge from the default account to the address, must have at least 1 confirmation\n" + HelpExampleCli("sendfrom", "\"\" \"1M72Sfpbz1BPpXFHz9m3CdqATR44Jvaydd\" 10.01") + @@ -807,7 +807,7 @@ Value sendmany(const Array& params, bool fHelp) "4. \"comment\" (string, optional) A comment\n" "\nResult:\n" "\"transactionid\" (string) The transaction id for the send. Only 1 transaction is created regardless of \n" - " the number of addresses. See https://blockchain.info/tx/[transactionid]\n" + " the number of addresses.\n" "\nExamples:\n" "\nSend two amounts to two different addresses:\n" + HelpExampleCli("sendmany", "\"tabby\" \"{\\\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\\\":0.01,\\\"1353tsE8YMTA4EuV7dgUXGjNFf9KpVvKHz\\\":0.02}\"") + @@ -871,7 +871,7 @@ Value sendmany(const Array& params, bool fHelp) } // Defined in rpcmisc.cpp -extern CScript _createmultisig(const Array& params); +extern CScript _createmultisig_redeemScript(const Array& params); Value addmultisigaddress(const Array& params, bool fHelp) { @@ -908,7 +908,7 @@ Value addmultisigaddress(const Array& params, bool fHelp) strAccount = AccountFromValue(params[2]); // Construct using pay-to-script-hash: - CScript inner = _createmultisig(params); + CScript inner = _createmultisig_redeemScript(params); CScriptID innerID = inner.GetID(); pwalletMain->AddCScript(inner); @@ -1167,7 +1167,7 @@ void AcentryToJSON(const CAccountingEntry& acentry, const string& strAccount, Ar Object entry; entry.push_back(Pair("account", acentry.strAccount)); entry.push_back(Pair("category", "move")); - entry.push_back(Pair("time", (boost::int64_t)acentry.nTime)); + entry.push_back(Pair("time", acentry.nTime)); entry.push_back(Pair("amount", ValueFromAmount(acentry.nCreditDebit))); entry.push_back(Pair("otheraccount", acentry.strOtherAccount)); entry.push_back(Pair("comment", acentry.strComment)); @@ -1209,8 +1209,7 @@ Value listtransactions(const Array& params, bool fHelp) " category of transactions.\n" " \"blockindex\": n, (numeric) The block index containing the transaction. Available for 'send' and 'receive'\n" " category of transactions.\n" - " \"txid\": \"transactionid\", (string) The transaction id (see https://blockchain.info/tx/[transactionid]. Available \n" - " for 'send' and 'receive' category of transactions.\n" + " \"txid\": \"transactionid\", (string) The transaction id. Available for 'send' and 'receive' category of transactions.\n" " \"time\": xxx, (numeric) The transaction time in seconds since epoch (midnight Jan 1 1970 GMT).\n" " \"timereceived\": xxx, (numeric) The time received in seconds since epoch (midnight Jan 1 1970 GMT). Available \n" " for 'send' and 'receive' category of transactions.\n" @@ -1375,7 +1374,7 @@ Value listsinceblock(const Array& params, bool fHelp) " \"blockhash\": \"hashvalue\", (string) The block hash containing the transaction. Available for 'send' and 'receive' category of transactions.\n" " \"blockindex\": n, (numeric) The block index containing the transaction. Available for 'send' and 'receive' category of transactions.\n" " \"blocktime\": xxx, (numeric) The block time in seconds since epoch (1 Jan 1970 GMT).\n" - " \"txid\": \"transactionid\", (string) The transaction id (see https://blockchain.info/tx/[transactionid]. Available for 'send' and 'receive' category of transactions.\n" + " \"txid\": \"transactionid\", (string) The transaction id. Available for 'send' and 'receive' category of transactions.\n" " \"time\": xxx, (numeric) The transaction time in seconds since epoch (Jan 1 1970 GMT).\n" " \"timereceived\": xxx, (numeric) The time received in seconds since epoch (Jan 1 1970 GMT). Available for 'send' and 'receive' category of transactions.\n" " \"comment\": \"...\", (string) If a comment is associated with the transaction.\n" @@ -1447,7 +1446,7 @@ Value gettransaction(const Array& params, bool fHelp) " \"blockhash\" : \"hash\", (string) The block hash\n" " \"blockindex\" : xx, (numeric) The block index\n" " \"blocktime\" : ttt, (numeric) The time in seconds since epoch (1 Jan 1970 GMT)\n" - " \"txid\" : \"transactionid\", (string) The transaction id, see also https://blockchain.info/tx/[transactionid]\n" + " \"txid\" : \"transactionid\", (string) The transaction id.\n" " \"time\" : ttt, (numeric) The transaction time in seconds since epoch (1 Jan 1970 GMT)\n" " \"timereceived\" : ttt, (numeric) The time received in seconds since epoch (1 Jan 1970 GMT)\n" " \"details\" : [\n" @@ -1747,7 +1746,7 @@ Value lockunspent(const Array& params, bool fHelp) throw runtime_error( "lockunspent unlock [{\"txid\":\"txid\",\"vout\":n},...]\n" "\nUpdates list of temporarily unspendable outputs.\n" - "Temporarily lock (lock=true) or unlock (lock=false) specified transaction outputs.\n" + "Temporarily lock (unlock=false) or unlock (unlock=true) specified transaction outputs.\n" "A locked transaction output will not be chosen by automatic coin selection, when spending dogecoins.\n" "Locks are stored in memory only. Nodes start with zero locked outputs, and the locked output list\n" "is always cleared (by virtue of process exit) when a node stops or fails.\n" @@ -1888,4 +1887,33 @@ Value settxfee(const Array& params, bool fHelp) return true; } +Value getwalletinfo(const Array& params, bool fHelp) +{ + if (fHelp || params.size() != 0) + throw runtime_error( + "getwalletinfo\n" + "Returns an object containing various wallet state info.\n" + "\nResult:\n" + "{\n" + " \"walletversion\": xxxxx, (numeric) the wallet version\n" + " \"balance\": xxxxxxx, (numeric) the total bitcoin balance of the wallet\n" + " \"txcount\": xxxxxxx, (numeric) the total number of transactions in the wallet\n" + " \"keypoololdest\": xxxxxx, (numeric) the timestamp (seconds since GMT epoch) of the oldest pre-generated key in the key pool\n" + " \"keypoolsize\": xxxx, (numeric) how many new keys are pre-generated\n" + " \"unlocked_until\": ttt, (numeric) the timestamp in seconds since epoch (midnight Jan 1 1970 GMT) that the wallet is unlocked for transfers, or 0 if the wallet is locked\n" + "}\n" + "\nExamples:\n" + + HelpExampleCli("getwalletinfo", "") + + HelpExampleRpc("getwalletinfo", "") + ); + Object obj; + obj.push_back(Pair("walletversion", pwalletMain->GetVersion())); + obj.push_back(Pair("balance", ValueFromAmount(pwalletMain->GetBalance()))); + obj.push_back(Pair("txcount", (int)pwalletMain->mapWallet.size())); + obj.push_back(Pair("keypoololdest", pwalletMain->GetOldestKeyPoolTime())); + obj.push_back(Pair("keypoolsize", (int)pwalletMain->GetKeyPoolSize())); + if (pwalletMain->IsCrypted()) + obj.push_back(Pair("unlocked_until", nWalletUnlockTime)); + return obj; +} diff --git a/src/script.cpp b/src/script.cpp index 2ac446328..db0724b27 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -5,7 +5,6 @@ #include "script.h" -#include "bignum.h" #include "core.h" #include "hash.h" #include "key.h" @@ -25,22 +24,13 @@ typedef vector valtype; static const valtype vchFalse(0); static const valtype vchZero(0); static const valtype vchTrue(1, 1); -static const CBigNum bnZero(0); -static const CBigNum bnOne(1); -static const CBigNum bnFalse(0); -static const CBigNum bnTrue(1); -static const size_t nMaxNumSize = 4; +static const CScriptNum bnZero(0); +static const CScriptNum bnOne(1); +static const CScriptNum bnFalse(0); +static const CScriptNum bnTrue(1); bool CheckSig(vector vchSig, const vector &vchPubKey, const CScript &scriptCode, const CTransaction& txTo, unsigned int nIn, int nHashType, int flags); -CBigNum CastToBigNum(const valtype& vch) -{ - if (vch.size() > nMaxNumSize) - throw runtime_error("CastToBigNum() : overflow"); - // Get rid of extra leading zeros - return CBigNum(CBigNum(vch).getvch()); -} - bool CastToBool(const valtype& vch) { for (unsigned int i = 0; i < vch.size(); i++) @@ -296,9 +286,12 @@ bool IsCanonicalSignature(const valtype &vchSig, unsigned int flags) { if (nLenS > 1 && (S[0] == 0x00) && !(S[1] & 0x80)) return error("Non-canonical signature: S value excessively padded"); - if (flags & SCRIPT_VERIFY_EVEN_S) { - if (S[nLenS-1] & 1) - return error("Non-canonical signature: S value odd"); + if (flags & SCRIPT_VERIFY_LOW_S) { + // If the S value is above the order of the curve divided by two, its + // complement modulo the order could have been used instead, which is + // one byte shorter when encoded correctly. + if (!CKey::CheckSignatureElement(S, nLenS, true)) + return error("Non-canonical signature: S value is unnecessarily high"); } return true; @@ -306,7 +299,6 @@ bool IsCanonicalSignature(const valtype &vchSig, unsigned int flags) { bool EvalScript(vector >& stack, const CScript& script, const CTransaction& txTo, unsigned int nIn, unsigned int flags, int nHashType) { - CAutoBN_CTX pctx; CScript::const_iterator pc = script.begin(); CScript::const_iterator pend = script.end(); CScript::const_iterator pbegincodehash = script.begin(); @@ -380,7 +372,7 @@ bool EvalScript(vector >& stack, const CScript& script, co case OP_16: { // ( -- value) - CBigNum bn((int)opcode - (int)(OP_1 - 1)); + CScriptNum bn((int)opcode - (int)(OP_1 - 1)); stack.push_back(bn.getvch()); } break; @@ -556,7 +548,7 @@ bool EvalScript(vector >& stack, const CScript& script, co case OP_DEPTH: { // -- stacksize - CBigNum bn(stack.size()); + CScriptNum bn(stack.size()); stack.push_back(bn.getvch()); } break; @@ -606,7 +598,7 @@ bool EvalScript(vector >& stack, const CScript& script, co // (xn ... x2 x1 x0 n - ... x2 x1 x0 xn) if (stack.size() < 2) return false; - int n = CastToBigNum(stacktop(-1)).getint(); + int n = CScriptNum(stacktop(-1)).getint(); popstack(stack); if (n < 0 || n >= (int)stack.size()) return false; @@ -654,7 +646,7 @@ bool EvalScript(vector >& stack, const CScript& script, co // (in -- in size) if (stack.size() < 1) return false; - CBigNum bn(stacktop(-1).size()); + CScriptNum bn(stacktop(-1).size()); stack.push_back(bn.getvch()); } break; @@ -705,7 +697,7 @@ bool EvalScript(vector >& stack, const CScript& script, co // (in -- out) if (stack.size() < 1) return false; - CBigNum bn = CastToBigNum(stacktop(-1)); + CScriptNum bn(stacktop(-1)); switch (opcode) { case OP_1ADD: bn += bnOne; break; @@ -738,9 +730,9 @@ bool EvalScript(vector >& stack, const CScript& script, co // (x1 x2 -- out) if (stack.size() < 2) return false; - CBigNum bn1 = CastToBigNum(stacktop(-2)); - CBigNum bn2 = CastToBigNum(stacktop(-1)); - CBigNum bn; + CScriptNum bn1(stacktop(-2)); + CScriptNum bn2(stacktop(-1)); + CScriptNum bn(0); switch (opcode) { case OP_ADD: @@ -783,9 +775,9 @@ bool EvalScript(vector >& stack, const CScript& script, co // (x min max -- out) if (stack.size() < 3) return false; - CBigNum bn1 = CastToBigNum(stacktop(-3)); - CBigNum bn2 = CastToBigNum(stacktop(-2)); - CBigNum bn3 = CastToBigNum(stacktop(-1)); + CScriptNum bn1(stacktop(-3)); + CScriptNum bn2(stacktop(-2)); + CScriptNum bn3(stacktop(-1)); bool fValue = (bn2 <= bn1 && bn1 < bn3); popstack(stack); popstack(stack); @@ -882,7 +874,7 @@ bool EvalScript(vector >& stack, const CScript& script, co if ((int)stack.size() < i) return false; - int nKeysCount = CastToBigNum(stacktop(-i)).getint(); + int nKeysCount = CScriptNum(stacktop(-i)).getint(); if (nKeysCount < 0 || nKeysCount > 20) return false; nOpCount += nKeysCount; @@ -893,7 +885,7 @@ bool EvalScript(vector >& stack, const CScript& script, co if ((int)stack.size() < i) return false; - int nSigsCount = CastToBigNum(stacktop(-i)).getint(); + int nSigsCount = CScriptNum(stacktop(-i)).getint(); if (nSigsCount < 0 || nSigsCount > nKeysCount) return false; int isig = ++i; @@ -934,8 +926,22 @@ bool EvalScript(vector >& stack, const CScript& script, co fSuccess = false; } - while (i-- > 0) + // Clean up stack of actual arguments + while (i-- > 1) popstack(stack); + + // A bug causes CHECKMULTISIG to consume one extra argument + // whose contents were not checked in any way. + // + // Unfortunately this is a potential source of mutability, + // so optionally verify it is exactly equal to zero prior + // to removing it from the stack. + if (stack.size() < 1) + return false; + if ((flags & SCRIPT_VERIFY_NULLDUMMY) && stacktop(-1).size()) + return error("CHECKMULTISIG dummy argument not null"); + popstack(stack); + stack.push_back(fSuccess ? vchTrue : vchFalse); if (opcode == OP_CHECKMULTISIGVERIFY) @@ -1670,7 +1676,7 @@ bool SignSignature(const CKeyStore &keystore, const CScript& fromPubKey, CTransa } // Test solution - return VerifyScript(txin.scriptSig, fromPubKey, txTo, nIn, SCRIPT_VERIFY_P2SH | SCRIPT_VERIFY_STRICTENC, 0); + return VerifyScript(txin.scriptSig, fromPubKey, txTo, nIn, STANDARD_SCRIPT_VERIFY_FLAGS, 0); } bool SignSignature(const CKeyStore &keystore, const CTransaction& txFrom, CTransaction& txTo, unsigned int nIn, int nHashType) diff --git a/src/script.h b/src/script.h index 657ac0b38..0d8a8544b 100644 --- a/src/script.h +++ b/src/script.h @@ -6,7 +6,6 @@ #ifndef H_BITCOIN_SCRIPT #define H_BITCOIN_SCRIPT -#include "bignum.h" #include "key.h" #include "util.h" @@ -25,6 +24,155 @@ class CTransaction; static const unsigned int MAX_SCRIPT_ELEMENT_SIZE = 520; // bytes static const unsigned int MAX_OP_RETURN_RELAY = 40; // bytes +class scriptnum_error : public std::runtime_error +{ +public: + explicit scriptnum_error(const std::string& str) : std::runtime_error(str) {} +}; + +class CScriptNum +{ +// Numeric opcodes (OP_1ADD, etc) are restricted to operating on 4-byte integers. +// The semantics are subtle, though: operands must be in the range [-2^31 +1...2^31 -1], +// but results may overflow (and are valid as long as they are not used in a subsequent +// numeric operation). CScriptNum enforces those semantics by storing results as +// an int64 and allowing out-of-range values to be returned as a vector of bytes but +// throwing an exception if arithmetic is done or the result is interpreted as an integer. +public: + + explicit CScriptNum(const int64_t& n) + { + m_value = n; + } + + explicit CScriptNum(const std::vector& vch) + { + if (vch.size() > nMaxNumSize) + throw scriptnum_error("CScriptNum(const std::vector&) : overflow"); + m_value = set_vch(vch); + } + + inline bool operator==(const int64_t& rhs) const { return m_value == rhs; } + inline bool operator!=(const int64_t& rhs) const { return m_value != rhs; } + inline bool operator<=(const int64_t& rhs) const { return m_value <= rhs; } + inline bool operator< (const int64_t& rhs) const { return m_value < rhs; } + inline bool operator>=(const int64_t& rhs) const { return m_value >= rhs; } + inline bool operator> (const int64_t& rhs) const { return m_value > rhs; } + + inline bool operator==(const CScriptNum& rhs) const { return operator==(rhs.m_value); } + inline bool operator!=(const CScriptNum& rhs) const { return operator!=(rhs.m_value); } + inline bool operator<=(const CScriptNum& rhs) const { return operator<=(rhs.m_value); } + inline bool operator< (const CScriptNum& rhs) const { return operator< (rhs.m_value); } + inline bool operator>=(const CScriptNum& rhs) const { return operator>=(rhs.m_value); } + inline bool operator> (const CScriptNum& rhs) const { return operator> (rhs.m_value); } + + inline CScriptNum operator+( const int64_t& rhs) const { return CScriptNum(m_value + rhs);} + inline CScriptNum operator-( const int64_t& rhs) const { return CScriptNum(m_value - rhs);} + inline CScriptNum operator+( const CScriptNum& rhs) const { return operator+(rhs.m_value); } + inline CScriptNum operator-( const CScriptNum& rhs) const { return operator-(rhs.m_value); } + + inline CScriptNum& operator+=( const CScriptNum& rhs) { return operator+=(rhs.m_value); } + inline CScriptNum& operator-=( const CScriptNum& rhs) { return operator-=(rhs.m_value); } + + inline CScriptNum operator-() const + { + assert(m_value != std::numeric_limits::min()); + return CScriptNum(-m_value); + } + + inline CScriptNum& operator=( const int64_t& rhs) + { + m_value = rhs; + return *this; + } + + inline CScriptNum& operator+=( const int64_t& rhs) + { + assert(rhs == 0 || (rhs > 0 && m_value <= std::numeric_limits::max() - rhs) || + (rhs < 0 && m_value >= std::numeric_limits::min() - rhs)); + m_value += rhs; + return *this; + } + + inline CScriptNum& operator-=( const int64_t& rhs) + { + assert(rhs == 0 || (rhs > 0 && m_value >= std::numeric_limits::min() + rhs) || + (rhs < 0 && m_value <= std::numeric_limits::max() + rhs)); + m_value -= rhs; + return *this; + } + + int getint() const + { + if (m_value > std::numeric_limits::max()) + return std::numeric_limits::max(); + else if (m_value < std::numeric_limits::min()) + return std::numeric_limits::min(); + return m_value; + } + + std::vector getvch() const + { + return serialize(m_value); + } + + static std::vector serialize(const int64_t& value) + { + if(value == 0) + return std::vector(); + + std::vector result; + const bool neg = value < 0; + uint64_t absvalue = neg ? -value : value; + + while(absvalue) + { + result.push_back(absvalue & 0xff); + absvalue >>= 8; + } + + +// - If the most significant byte is >= 0x80 and the value is positive, push a +// new zero-byte to make the significant byte < 0x80 again. + +// - If the most significant byte is >= 0x80 and the value is negative, push a +// new 0x80 byte that will be popped off when converting to an integral. + +// - If the most significant byte is < 0x80 and the value is negative, add +// 0x80 to it, since it will be subtracted and interpreted as a negative when +// converting to an integral. + + if (result.back() & 0x80) + result.push_back(neg ? 0x80 : 0); + else if (neg) + result.back() |= 0x80; + + return result; + } + + static const size_t nMaxNumSize = 4; + +private: + static int64_t set_vch(const std::vector& vch) + { + if (vch.empty()) + return 0; + + int64_t result = 0; + for (size_t i = 0; i != vch.size(); ++i) + result |= static_cast(vch[i]) << 8*i; + + // If the input vector's most significant byte is 0x80, remove it from + // the result's msb and return a negative. + if (vch.back() & 0x80) + return -(result & ~(0x80 << (8 * (vch.size() - 1)))); + + return result; + } + + int64_t m_value; +}; + /** Signature hash types/flags */ enum { @@ -40,10 +188,30 @@ enum SCRIPT_VERIFY_NONE = 0, SCRIPT_VERIFY_P2SH = (1U << 0), // evaluate P2SH (BIP16) subscripts SCRIPT_VERIFY_STRICTENC = (1U << 1), // enforce strict conformance to DER and SEC2 for signatures and pubkeys - SCRIPT_VERIFY_EVEN_S = (1U << 2), // enforce even S values in signatures (depends on STRICTENC) + SCRIPT_VERIFY_LOW_S = (1U << 2), // enforce low S values (& vch) { if (vch.size() <= 4) - return strprintf("%d", CBigNum(vch).getint()); + return strprintf("%d", CScriptNum(vch).getint()); else return HexStr(vch); } @@ -261,26 +429,10 @@ protected: } else { - CBigNum bn(n); - *this << bn.getvch(); + *this << CScriptNum::serialize(n); } return *this; } - - CScript& push_uint64(uint64_t n) - { - if (n >= 1 && n <= 16) - { - push_back(n + (OP_1 - 1)); - } - else - { - CBigNum bn(n); - *this << bn.getvch(); - } - return *this; - } - public: CScript() { } CScript(const CScript& b) : std::vector(b.begin(), b.end()) { } @@ -303,35 +455,15 @@ public: } - //explicit CScript(char b) is not portable. Use 'signed char' or 'unsigned char'. - explicit CScript(signed char b) { operator<<(b); } - explicit CScript(short b) { operator<<(b); } - explicit CScript(int b) { operator<<(b); } - explicit CScript(long b) { operator<<(b); } - explicit CScript(long long b) { operator<<(b); } - explicit CScript(unsigned char b) { operator<<(b); } - explicit CScript(unsigned int b) { operator<<(b); } - explicit CScript(unsigned short b) { operator<<(b); } - explicit CScript(unsigned long b) { operator<<(b); } - explicit CScript(unsigned long long b) { operator<<(b); } + CScript(int64_t b) { operator<<(b); } explicit CScript(opcodetype b) { operator<<(b); } explicit CScript(const uint256& b) { operator<<(b); } - explicit CScript(const CBigNum& b) { operator<<(b); } + explicit CScript(const CScriptNum& b) { operator<<(b); } explicit CScript(const std::vector& b) { operator<<(b); } - //CScript& operator<<(char b) is not portable. Use 'signed char' or 'unsigned char'. - CScript& operator<<(signed char b) { return push_int64(b); } - CScript& operator<<(short b) { return push_int64(b); } - CScript& operator<<(int b) { return push_int64(b); } - CScript& operator<<(long b) { return push_int64(b); } - CScript& operator<<(long long b) { return push_int64(b); } - CScript& operator<<(unsigned char b) { return push_uint64(b); } - CScript& operator<<(unsigned int b) { return push_uint64(b); } - CScript& operator<<(unsigned short b) { return push_uint64(b); } - CScript& operator<<(unsigned long b) { return push_uint64(b); } - CScript& operator<<(unsigned long long b) { return push_uint64(b); } + CScript& operator<<(int64_t b) { return push_int64(b); } CScript& operator<<(opcodetype opcode) { @@ -363,7 +495,7 @@ public: return *this; } - CScript& operator<<(const CBigNum& b) + CScript& operator<<(const CScriptNum& b) { *this << b.getvch(); return *this; diff --git a/src/serialize.h b/src/serialize.h index 4a9ff579f..134174659 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -1038,10 +1038,7 @@ public: if (nReadPosNext >= vch.size()) { if (nReadPosNext > vch.size()) - { setstate(std::ios::failbit, "CDataStream::ignore() : end of data"); - nSize = vch.size() - nReadPos; - } nReadPos = 0; vch.clear(); return (*this); diff --git a/src/test/Checkpoints_tests.cpp b/src/test/Checkpoints_tests.cpp index 980bfce48..a0515a8a9 100644 --- a/src/test/Checkpoints_tests.cpp +++ b/src/test/Checkpoints_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2011-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + // // Unit tests for block-chain checkpoints // diff --git a/src/test/DoS_tests.cpp b/src/test/DoS_tests.cpp index c92a18500..49b62d959 100644 --- a/src/test/DoS_tests.cpp +++ b/src/test/DoS_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2011-2014 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + // // Unit tests for denial-of-service detection/prevention code // @@ -21,7 +25,6 @@ // Tests this internal-to-main.cpp method: extern bool AddOrphanTx(const CTransaction& tx); extern unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans); -extern void Misbehaving(NodeId nodeid, int howmuch); extern std::map mapOrphanTransactions; extern std::map > mapOrphanTransactionsByPrev; diff --git a/src/test/Makefile.am b/src/test/Makefile.am index c695002f9..c2925eb02 100644 --- a/src/test/Makefile.am +++ b/src/test/Makefile.am @@ -15,7 +15,8 @@ JSON_TEST_FILES = \ data/base58_keys_invalid.json \ data/script_invalid.json \ data/tx_invalid.json \ - data/tx_valid.json + data/tx_valid.json \ + data/sighash.json RAW_TEST_FILES = data/alertTests.raw @@ -61,6 +62,7 @@ test_dogecoin_SOURCES = \ transaction_tests.cpp \ uint256_tests.cpp \ util_tests.cpp \ + scriptnum_tests.cpp \ sighash_tests.cpp \ $(JSON_TEST_FILES) $(RAW_TEST_FILES) diff --git a/src/test/README b/src/test/README.md similarity index 87% rename from src/test/README rename to src/test/README.md index 77f7faa81..7efce6f05 100644 --- a/src/test/README +++ b/src/test/README.md @@ -1,3 +1,4 @@ +# Notes The sources in this directory are unit test cases. Boost includes a unit testing framework, and since bitcoin already uses boost, it makes sense to simply use this framework rather than require developers to @@ -17,5 +18,4 @@ uint256_tests.cpp. For further reading, I found the following website to be helpful in explaining how the boost unit test framework works: - -http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/ +[http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/](http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/). \ No newline at end of file diff --git a/src/test/accounting_tests.cpp b/src/test/accounting_tests.cpp index bfdb95927..e2a75da34 100644 --- a/src/test/accounting_tests.cpp +++ b/src/test/accounting_tests.cpp @@ -1,4 +1,6 @@ - +// Copyright (c) 2012-2014 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "wallet.h" #include "walletdb.h" diff --git a/src/test/alert_tests.cpp b/src/test/alert_tests.cpp index a4ee6cac5..fc3a17184 100644 --- a/src/test/alert_tests.cpp +++ b/src/test/alert_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + // // Unit tests for alert system // diff --git a/src/test/allocator_tests.cpp b/src/test/allocator_tests.cpp index 490dff87e..2752a0b21 100644 --- a/src/test/allocator_tests.cpp +++ b/src/test/allocator_tests.cpp @@ -1,4 +1,6 @@ - +// Copyright (c) 2012-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "util.h" diff --git a/src/test/base32_tests.cpp b/src/test/base32_tests.cpp index 580e87f65..87473585e 100644 --- a/src/test/base32_tests.cpp +++ b/src/test/base32_tests.cpp @@ -1,4 +1,6 @@ - +// Copyright (c) 2012-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "util.h" diff --git a/src/test/base58_tests.cpp b/src/test/base58_tests.cpp index 94e84049b..b81a19cfd 100644 --- a/src/test/base58_tests.cpp +++ b/src/test/base58_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2011-2014 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "base58.h" #include "data/base58_encode_decode.json.h" @@ -229,7 +233,7 @@ BOOST_AUTO_TEST_CASE(base58_keys_valid_gen) continue; } CBitcoinAddress addrOut; - BOOST_CHECK_MESSAGE(boost::apply_visitor(CBitcoinAddressVisitor(&addrOut), dest), "encode dest: " + strTest); + BOOST_CHECK_MESSAGE(addrOut.Set(dest), "encode dest: " + strTest); BOOST_CHECK_MESSAGE(addrOut.ToString() == exp_base58string, "mismatch: " + strTest); } } @@ -237,7 +241,7 @@ BOOST_AUTO_TEST_CASE(base58_keys_valid_gen) // Visiting a CNoDestination must fail CBitcoinAddress dummyAddr; CTxDestination nodest = CNoDestination(); - BOOST_CHECK(!boost::apply_visitor(CBitcoinAddressVisitor(&dummyAddr), nodest)); + BOOST_CHECK(!dummyAddr.Set(nodest)); SelectParams(CChainParams::MAIN); } diff --git a/src/test/base64_tests.cpp b/src/test/base64_tests.cpp index c59c29066..d4a23d9aa 100644 --- a/src/test/base64_tests.cpp +++ b/src/test/base64_tests.cpp @@ -1,4 +1,6 @@ - +// Copyright (c) 2011-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "util.h" diff --git a/src/test/bignum_tests.cpp b/src/test/bignum_tests.cpp index 205b15adc..d5ee8c977 100644 --- a/src/test/bignum_tests.cpp +++ b/src/test/bignum_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2012-2014 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "bignum.h" #include @@ -35,11 +39,8 @@ BOOST_AUTO_TEST_SUITE(bignum_tests) // stack buffer overruns. // // For more accurate diagnostics, you can use an undefined arithmetic operation -// detector such as the clang-based tool: -// -// "IOC: An Integer Overflow Checker for C/C++" -// -// Available at: http://embed.cs.utah.edu/ioc/ +// detector such as the clang's undefined behaviour checker. +// See also: http://clang.llvm.org/docs/UsersManual.html#controlling-code-generation // // It might also be useful to use Google's AddressSanitizer to detect // stack buffer overruns, which valgrind can't currently detect. diff --git a/src/test/bip32_tests.cpp b/src/test/bip32_tests.cpp index 2bcca2433..9cf07fc38 100644 --- a/src/test/bip32_tests.cpp +++ b/src/test/bip32_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include #include "base58.h" diff --git a/src/test/bloom_tests.cpp b/src/test/bloom_tests.cpp index e4e16e44a..c09b46959 100644 --- a/src/test/bloom_tests.cpp +++ b/src/test/bloom_tests.cpp @@ -1,8 +1,13 @@ +// Copyright (c) 2012-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "bloom.h" #include "base58.h" #include "key.h" #include "main.h" +#include "auxpow.h" #include "serialize.h" #include "uint256.h" #include "util.h" diff --git a/src/test/canonical_tests.cpp b/src/test/canonical_tests.cpp index c521f2cf9..23dd74296 100644 --- a/src/test/canonical_tests.cpp +++ b/src/test/canonical_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2012-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + // // Unit tests for canonical signatures // @@ -89,4 +93,21 @@ BOOST_AUTO_TEST_CASE(script_noncanon) } } +BOOST_AUTO_TEST_CASE(script_signstrict) +{ + for (int i=0; i<100; i++) { + CKey key; + key.MakeNewKey(i & 1); + std::vector sig; + uint256 hash = GetRandHash(); + + BOOST_CHECK(key.Sign(hash, sig)); // Generate a random signature. + BOOST_CHECK(key.GetPubKey().Verify(hash, sig)); // Check it. + sig.push_back(0x01); // Append a sighash type. + + BOOST_CHECK(IsCanonicalSignature(sig, SCRIPT_VERIFY_STRICTENC | SCRIPT_VERIFY_LOW_S)); + BOOST_CHECK(IsCanonicalSignature_OpenSSL(sig)); + } +} + BOOST_AUTO_TEST_SUITE_END() diff --git a/src/test/checkblock_tests.cpp b/src/test/checkblock_tests.cpp index d47a33fd4..b2c7cb885 100644 --- a/src/test/checkblock_tests.cpp +++ b/src/test/checkblock_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2013-2014 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + // // Unit tests for block.CheckBlock() // @@ -5,6 +9,7 @@ #include "main.h" +#include "auxpow.h" #include @@ -15,8 +20,7 @@ BOOST_AUTO_TEST_SUITE(CheckBlock_tests) -bool -read_block(const std::string& filename, CBlock& block) +bool read_block(const std::string& filename, CBlock& block) { namespace fs = boost::filesystem; fs::path testFile = fs::current_path() / "data" / filename; diff --git a/src/test/compress_tests.cpp b/src/test/compress_tests.cpp index 4d1691477..719955ba8 100644 --- a/src/test/compress_tests.cpp +++ b/src/test/compress_tests.cpp @@ -1,4 +1,6 @@ - +// Copyright (c) 2012-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "main.h" #include "util.h" diff --git a/src/test/data/README.md b/src/test/data/README.md new file mode 100644 index 000000000..f69a021ca --- /dev/null +++ b/src/test/data/README.md @@ -0,0 +1,14 @@ +Description +------------ + +This directory contains data-driven tests for various aspects of Bitcoin. + +License +-------- + +The data files in this directory are + + Copyright (c) 2012-2014 The Bitcoin Core developers + Distributed under the MIT/X11 software license, see the accompanying + file COPYING or http://www.opensource.org/licenses/mit-license.php. + diff --git a/src/test/data/script_invalid.json b/src/test/data/script_invalid.json index 761cc4a00..6b7d8372b 100644 --- a/src/test/data/script_invalid.json +++ b/src/test/data/script_invalid.json @@ -1,8 +1,18 @@ [ +["", "DEPTH", "Test the test: we should have an empty stack after scriptSig evaluation"], +[" ", "DEPTH", "and multiple spaces should not change that."], +[" ", "DEPTH"], +[" ", "DEPTH"], + ["", ""], ["", "NOP"], +["", "NOP DEPTH"], ["NOP", ""], +["NOP", "DEPTH"], ["NOP","NOP"], +["NOP","NOP DEPTH"], + +["DEPTH", ""], ["0x4c01","0x01 NOP", "PUSHDATA1 with not enough bytes"], ["0x4d0200ff","0x01 NOP", "PUSHDATA2 with not enough bytes"], @@ -257,7 +267,10 @@ ["1","0xba", "0xba == OP_NOP10 + 1"], ["2147483648", "1ADD 1", "We cannot do math on 5-byte integers"], +["2147483648", "NEGATE 1", "We cannot do math on 5-byte integers"], ["-2147483648", "1ADD 1", "Because we use a sign bit, -2147483648 is also 5 bytes"], +["2147483647", "1ADD 1SUB 1", "We cannot do math on 5-byte integers, even if the result is 4-bytes"], +["2147483648", "1SUB 1", "We cannot do math on 5-byte integers, even if the result is 4-bytes"], ["1", "1 ENDIF", "ENDIF without IF"], ["1", "IF 1", "IF without ENDIF"], @@ -321,6 +334,22 @@ ["NOP", "HASH160 1"], ["NOP", "HASH256 1"], +["", +"0 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG", +"202 CHECKMULTISIGS, fails due to 201 op limit"], + +["1", +"0 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY 0 0 CHECKMULTISIGVERIFY"], + +["", +"NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG", +"Fails due to 201 sig op limit"], + +["1", +"NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY"], + + + ["NOP 0x01 1", "HASH160 0x14 0xda1745e9b549bd0bfa1a569971c77eba30cd5a4b EQUAL", "Tests for Script.IsPushOnly()"], ["NOP1 0x01 1", "HASH160 0x14 0xda1745e9b549bd0bfa1a569971c77eba30cd5a4b EQUAL"], diff --git a/src/test/data/script_valid.json b/src/test/data/script_valid.json index e4c181cae..65b2f13b5 100644 --- a/src/test/data/script_valid.json +++ b/src/test/data/script_valid.json @@ -1,4 +1,16 @@ [ +["", "DEPTH 0 EQUAL", "Test the test: we should have an empty stack after scriptSig evaluation"], +[" ", "DEPTH 0 EQUAL", "and multiple spaces should not change that."], +[" ", "DEPTH 0 EQUAL"], +[" ", "DEPTH 0 EQUAL"], +["1 2", "2 EQUALVERIFY 1 EQUAL", "Similarly whitespace around and between symbols"], +["1 2", "2 EQUALVERIFY 1 EQUAL"], +[" 1 2", "2 EQUALVERIFY 1 EQUAL"], +["1 2 ", "2 EQUALVERIFY 1 EQUAL"], +[" 1 2 ", "2 EQUALVERIFY 1 EQUAL"], + +["1", ""], + ["0x01 0x0b", "11 EQUAL", "push 1 byte"], ["0x02 0x417a", "'Az' EQUAL"], ["0x4b 0x417a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a7a", @@ -97,6 +109,9 @@ ["8388608", "SIZE 4 EQUAL"], ["2147483647", "SIZE 4 EQUAL"], ["2147483648", "SIZE 5 EQUAL"], +["549755813887", "SIZE 5 EQUAL"], +["549755813888", "SIZE 6 EQUAL"], +["9223372036854775807", "SIZE 8 EQUAL"], ["-1", "SIZE 1 EQUAL"], ["-127", "SIZE 1 EQUAL"], ["-128", "SIZE 2 EQUAL"], @@ -106,6 +121,9 @@ ["-8388608", "SIZE 4 EQUAL"], ["-2147483647", "SIZE 4 EQUAL"], ["-2147483648", "SIZE 5 EQUAL"], +["-549755813887", "SIZE 5 EQUAL"], +["-549755813888", "SIZE 6 EQUAL"], +["-9223372036854775807", "SIZE 8 EQUAL"], ["'abcdefghijklmnopqrstuvwxyz'", "SIZE 26 EQUAL"], @@ -306,6 +324,9 @@ ["8388608", "0x04 0x00008000 EQUAL"], ["2147483647", "0x04 0xFFFFFF7F EQUAL"], ["2147483648", "0x05 0x0000008000 EQUAL"], +["549755813887", "0x05 0xFFFFFFFF7F EQUAL"], +["549755813888", "0x06 0xFFFFFFFF7F EQUAL"], +["9223372036854775807", "0x08 0xFFFFFFFFFFFFFF7F EQUAL"], ["-1", "0x01 0x81 EQUAL", "Numbers are little-endian with the MSB being a sign bit"], ["-127", "0x01 0xFF EQUAL"], ["-128", "0x02 0x8080 EQUAL"], @@ -315,6 +336,10 @@ ["-8388608", "0x04 0x00008080 EQUAL"], ["-2147483647", "0x04 0xFFFFFFFF EQUAL"], ["-2147483648", "0x05 0x0000008080 EQUAL"], +["-4294967295", "0x05 0xFFFFFFFF80 EQUAL"], +["-549755813887", "0x05 0xFFFFFFFFFF EQUAL"], +["-549755813888", "0x06 0x000000008080 EQUAL"], +["-9223372036854775807", "0x08 0xFFFFFFFFFFFFFFFF EQUAL"], ["2147483647", "1ADD 2147483648 EQUAL", "We can do math on 4-byte integers, and compare 5-byte ones"], ["2147483647", "1ADD 1"], @@ -402,6 +427,70 @@ ["NOP", "NOP9 1"], ["NOP", "NOP10 1"], +["", "0 0 0 CHECKMULTISIG VERIFY DEPTH 0 EQUAL", "CHECKMULTISIG is allowed to have zero keys and/or sigs"], +["", "0 0 0 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 0 1 CHECKMULTISIG VERIFY DEPTH 0 EQUAL", "Zero sigs means no sigs are checked"], +["", "0 0 0 1 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], + +["", "0 0 0 CHECKMULTISIG VERIFY DEPTH 0 EQUAL", "CHECKMULTISIG is allowed to have zero keys and/or sigs"], +["", "0 0 0 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 0 1 CHECKMULTISIG VERIFY DEPTH 0 EQUAL", "Zero sigs means no sigs are checked"], +["", "0 0 0 1 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], + +["", "0 0 'a' 'b' 2 CHECKMULTISIG VERIFY DEPTH 0 EQUAL", "Test from up to 20 pubkeys, all not checked"], +["", "0 0 'a' 'b' 'c' 3 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 4 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 5 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 6 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 7 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 8 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 9 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 10 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 11 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 12 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 13 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 14 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 15 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 16 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 17 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 18 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 19 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG VERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 1 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 2 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 3 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 4 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 5 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 6 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 7 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 8 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 9 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 10 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 11 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 12 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 13 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 14 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 15 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 16 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 17 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 18 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 19 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], +["", "0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY DEPTH 0 EQUAL"], + +["", +"0 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG 0 0 CHECKMULTISIG", +"nOpCount is incremented by the number of keys evaluated in addition to the usual one op per op. In this case we have zero keys, so we can execute 201 CHECKMULTISIGS"], + +["1", +"0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY 0 0 0 CHECKMULTISIGVERIFY"], + +["", +"NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIG", +"Even though there are no signatures being checked nOpCount is incremented by the number of keys."], + +["1", +"NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY 0 0 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 20 CHECKMULTISIGVERIFY"], + ["0 0x01 1", "HASH160 0x14 0xda1745e9b549bd0bfa1a569971c77eba30cd5a4b EQUAL", "Very basic P2SH"], ["0x4c 0 0x01 1", "HASH160 0x14 0xda1745e9b549bd0bfa1a569971c77eba30cd5a4b EQUAL"], diff --git a/src/test/data/sighash.json b/src/test/data/sighash.json new file mode 100644 index 000000000..f49c46fab --- /dev/null +++ b/src/test/data/sighash.json @@ -0,0 +1,503 @@ +[ + ["raw_transaction, script, input_index, hashType, signature_hash (result)"], + ["e3a8c49c046ecf07d0813d5df20ff7cb50f671213c1a78759d3362414702deafbf02dbf5190200000000ffffffffc51be6b5deb5677436d85b81b37ec7e694cbf751837e407af793a09b40a76a59000000000653656a515300ffffffff6b74addc003ce433a3c386fe2dc2c9ab95ea4a261d771f4f360111dda6f9f7ba02000000056a6a53ab52fd556578c67880b479a8ac3465aab20baeed52d964529d30459600596d0690a5a9a311f70000000003516a63ffffffff03d737550000000000056aab63656a23b59f0300000000005b1782030000000008005353ac6a51ac6a00000000", "6a", 3, -138787571, "eb0f4de9612aab22e4ec05d4e7a19fea30fc570959c2e3cbe9cfc861fd72487f"], + ["99cd0bc5048e1b01982736ccdbcbf5d7cbb5df5b9fc229b52f573ac3f84e8ede751bc12195030000000200ab7932083480d3332a0a09f1683ac07e771e9924b7eb07afece185d32b35dc77d8e8fe31880100000000ffffffff62016d432f7fa5450553b2ce8383dc70fbbaa565ec2c1ba516be4e657aa596bc000000000363ac51db4d495e7cf856ddf06d59dedf6cb872d7f0c4aea5fd3babc3df7e64f2df201bd85b11bd020000000551ac536a535f00fe3804347e55050000000009ab52acacab52ab65abe92127040000000003abab52169478010000000008ac516a52ac655100ef0bc2050000000006ac53006a516a793a8cb8", "65656a6a525353", 0, -1908692932, "09a9e6776d4680f2e963d8ae463d9ef8e6899ee0bc3ecb7620c3c4ff0c10e89e"], + ["a5c3a495040e45ee89b5a0509cc77188b8a84160fea5b41d047538a5884a07de72548de150020000000165026a473ebd861371fdef9c51649bbf86e1a2ee6d3ca8da39f469b5e308b64751d23d6b400000000001539f49fa2a5647619abe2133afc61366a98cc23d0f5e77bb6f9f684d66310776a53e29bebd000000000951656552000000abacffffffffa43c5e901fea25a629d5ffc954c0a17cd1fd8b972b9fda08bf806910fafc3ba60200000006636aacab6a51ffffffff0413b9cd0100000000056351ab53659a5ac005000000000452650053daa96d020000000001655fb6400300000000075252536300655100000000", "abacab65abab6352ab", 3, -1716273502, "d7037ad65c9b74da27b7a71e28d0c595a341d2812809c076b2f3415d44fa4d0f"], + ["d9482e44048855d0011976ce74d77e315eb8fce83810cbd1de19b90a9491c9f2f6510d7346000000000752ac636a53ac51ffffffff57c3dae1fda2fda71b55061971cc4f47e0b9651a522cd0c49ab2750a7e3ce6050100000000b76ef859848700e948d1a14f7ae989d22e515251df970aadd0b6bbf4f9fd3a905d00ad8e0200000006535153ac006334f610377ae67317fa576f216a9a36bfecb5cefae768acc08d52244b665b9747f32a4a8d0300000001abffffffff03aa6b080100000000056a635251ab5a0afc0300000000025353fd67a5010000000008ab656aac00536aac00000000", "ac6352ab63ab", 3, -1632825620, "3c51ee106b2c95d1ce722d80f0f048d2ab60838c5d4519c3ff3cdac064365b91"], + ["a5a236210475a9fc16177c4b109df3b92b12463a8fa75c6548312eed2397651b522cc968650100000000bccdf6ed7e61c0e5111cbd56726469c132efd9e4751c574f8a8a87823a858a4228ef887800000000046553abacffffffff5b1bf2a8d720f98e9ea51348656fa0b4676305982faaa9073dca0311aa22bee100000000036552631a871beaabe5ff805aff45007f86761aa0734e73003e35561d607200c96cc0eea1b1f7f60300000007ab65acab520065ffffffff01ca025a040000000006acab526563ab00000000", "63", 1, 995870219, "51531b9322e9e2082a2d63b59b985ef44329af9200b18408ec6fa2394ee7176b"], + ["127fa0340336278930caf6b38e1e13dd2bae06a5e08be7e6e9d9731523951745f6f40e8878020000000100fffffffff464261df6ea6d5de8b5c2dd56d5c0ac595860c5073defb3f1dab3dc517ec57101000000096500526a65ab6565acb6bae35fade56f24cd502fe0ac6288301feb840058873470dde75ab3495fdf425aeeea56010000000653006a635151ffffffff025e5fd60200000000025353783c9601000000000753536aacabac5100000000", "abab", 2, -443481952, "6e3a29c35a20457504e82ac034515206a9e93a5016f50c386fd54d6ea26d9340"], + ["da2729ee016c220f4828b77256f484dc6880daf03fedb923ea4c043c9492bde5e129d0a30300000000056a6a536352ffffffff03867457050000000000e0a70b0400000000026565ad9ae40000000000056a655153abaa2eca28", "acacab53ac00acabab", 0, -974021439, "0f109bc8c9f2ebbf177696380c9e0fafb9bda8ca4c3ce47525b5f3b1f2c91a91"], + ["667aafe10256829fb85d59e5261e0b7bc06415b99849c7264690a85dbd384e7ca606ba9ea9030000000900ab6a6a5353526aabffffffff7632a9f1e98d5667ca6108795dd2cfd87974db612150ae64d9c6bd9dbd9e594203000000026565ffffffff04bf3af505000000000363535167e05f000000000000768734000000000005ab52635253d30e3f0300000000076551ab655152631f2ae508", "53acac6a51ab6a65", 1, 1483992582, "743ea009e2c046438e5f9e0be7af21293bbd0aa47c21e93b87cb958fed606c13"], + ["21c289070383b2f9d22b7aac0bac6e524851edb945b8c53a68929edc621c87382b6539be8c030000000500655265ab59e7c95db7dd657aa91dd34c48899656ae835913598e44e0ab40bd74c9ddcbb316f2b0870100000002655169c9a6efe022571893075da97b31bef964ce935573a7b709bfafe52d0df6ac284083634b010000000453515300ffffffff040c9137040000000001652a3b0d0200000000026a52ec5aa904000000000263acbf6dda010000000009636a63006363ac656a00000000", "525300", 1, 1565224310, "19a467462b2b092162d53ce6f3c79571ac77f34508482a24621a99d74ea62304"], + ["ea865e6a03c83551d3a367f00c93adecf27b5505df71b9ea805035aa0cafbd2c4452120b9e01000000076351ac00ab6a51ffffffff605e4126f5c9f65e203a206802d273630b5e229747037a463d4ba76221a7f4b00300000005ab6365526ad74c67ae394a27c6793b0fc6f8db5dafe5857af60def46ba483bec5db788a7dda802ac060300000009635352630051635253ca2865350499dbcb00000000000552655252659994060400000000060065ab00ab63808c330500000000090000006a51acac5152542e68040000000001acca5714e3", "65ac636a", 2, 762279333, "2ffdd16d76dffff0a65d495693f1fb6f5a0ad2d0b97b0c8dc53f15c04c9d0705"], + ["0e40ece0025e4f4f2ca80b1b8c55f8e0bcc60f10389821d570e0ced7669cbfd6c25530a28b00000000026351ffffffffd0738ad8eba0d7d34ed9e76ad972f68c7bc76d0996c687eb064025ad065dc25800000000090052ab6553ab6a53acffffffff01b7ede3040000000009ab526aac52526551009512b141", "53005300ab5251abab", 0, 1949495003, "9043df8b64b46f4a3fc629b98a2367ffb0fae8ee02fc3962a99c74027c8ffdc2"], + ["e93a60a302628559123ba866778c82d47fa1778c53023aed6bab1f9f02ca9c817d2cf02ce302000000036565abffffffffeea3f2ad3386c467c79fc87abd215f724b6fbcdad78b7500e2842cc6c192eeb1020000000953ab5263acacac006affffffff019d7ec505000000000000000000", "53636a", 0, 604472197, "79a62ee72ef5b9bfb7da0cbca1b7ed1746224507464969098870207275c23b15"], + ["3c4626000249b3c9e7bfa47ab5c5d4196f0ab7b0eb2e5bdacdaa9d002ca40adfa7ac8ef0d90200000000ffffffff7b07f04afbe8e061db5887800f369c86fcebbb8eb2c303e7afe9390140ca20370300000007656565656a536affffffff04314f580200000000086a006a5300acab00fc781e040000000003ababab53e20d0400000000085251535353535351ef563d050000000002acabdb55f91b", "65abab63", 0, 1798092030, "1fcd9ff23c9519e7eb01e5842968deb70cdfd3d96668bc65888df13fc9f26033"], + ["5d39ed92035276f10fb4ca2139705ca44afa7b6f346bd7314bcf06796d12d8c7c0cd75c65c0300000008ac65535163ab636affffffff977603255ed27b4b4ca2ee51349290df4ba031749c716f13a1d41bc2668a9f5c0200000006516a53ac00abffffffff2985ea49bc25332b90daf5ec3c72cba8e8e73c37df791ee024594cf4168a358f030000000100ffffffff04673028000000000004ab53006310b24003000000000363ac534920950200000000055252636aac3091a00100000000096300526aababab6353f1b413d5", "00ab53536a6352", 2, 1302719954, "b131a2295a9adcd042accbcfd0a6dea4b38f226a35bcd61df2293f669f02e543"], + ["2c56b20d03fe92358d7795ff6e08751cfc95e4cfaf715f8db05ab9c96dfc464bbeb56dd7b70000000001acffffffff335d171ece7e3db8efdbcedbf80862df73288033c30c8d6b879922562c1b9ebb00000000086a536a6365536300ffffffffb117b8c304a60e9dbe5e4c1edd08dad922aba5351593ec04844056c5eaf9598d03000000045352ac63ec00993404b5f7770500000000006ed5af040000000005655153ab51712622010000000003ac6a53886c5c04000000000365525200000000", "6a6365abab5363", 1, -149016983, "8e6e5539a1206dc84dce28bd63d27ae5e20978f80a8daa2d9de628a8d987a753"], + ["02fb4e5503bde0f96af2041966890a812fe96ff473b05af8892bfb79a140c9f771ffcb00040000000003ab6aac7de517e273c62618bb9b665d4e7099358e84ca89f4940153ccc6fd00131f996c3e4b4b850200000004636aac516fd35b7df76ab6d1259ef6673d9042af80b9594577acf845a165f8bafc247faa7c6fd8670100000004006a5253ffffffff02830dd1050000000002635356810605000000000000000000", "6a63510000", 2, 798779169, "40db50b022d9036ce998d1a8912288f2e050e45766c7d9db3eae0014c4e96879"], + ["caeab9f202499a69e3ce4a864c319b28e670e326904680c8653c1246d1c020c7041424992e000000000465515200ffffffff28506d07befd0e0500eb2509fe5729b5193df94e8110c19207cf733d3b5bed3403000000055352515265ffffffff04a67aad05000000000163f06e100300000000026a0036af84040000000008516a6aac6565516ad8f80a040000000003ac53534f352e89", "6aab520051", 0, 1809136475, "8da5049376997651ea0842547a898c324e2a95ef7eda04db755d7c8a17c23899"], + ["48b65dc004ebdf965a548e14638cba287c0fea96d7b97d9bca46a5c589cd7f640ca36d3b7501000000086365ab6a6a636552ffffffff9b7a4bbb6c65858c88712e0d4a557179bc6b65bb110db77b5a0bf55b264d777e0000000006655200006563ffffffff47f96f7c6b41693cbc8960d90318b73d13769fdd8a11788871462f7fb8041bb703000000090051ac5200655151acffffffffbfb2c9c12f28e4ea7dd21fe1cfd8f96abdd5874308b6744eb8d7666a3d73e70300000000066a6aab510053ed38cc31011feaa802000000000965516a5251ab6563516cb9c382", "0053ab0053", 3, -2081536660, "950c5b352c2e575d914e0eac12086df2820787f15037d45ec6abf7fe9be9ba41"], + ["25c3136602d611a9fb7e160e359398a56d13703e5901b1879b48352c1b7ef096e1f361fd6c02000000005c6d0177fbc3def8f503bbea65e8e6069c7ec95fd1a0fd76e51ad8abbe8269b32de2070a01000000026551e90d1a6301777f3600000000000000000000", "00", 0, -495212582, "ce6e3144e588c1eb560c5d106946f12e6892c4c6b9dd0717c0d3be4911194eee"], + ["b2cef5a301b1bacf3e4ec0403ad7e8addbe814dc6b248699af966f5385ccf2969af73c517b030000000452655352f95b9222042dcc2503000000000165b7b12503000000000015400d030000000004515152ac8841220200000000003c16d130", "63ac6a", 0, -253634870, "d84c3332b447750a00ce0c5f6d6bdd5a3b022944d7e1defadd94a088eb1fb9cd"], + ["8b93f5f00401f46c5282168cb3c5ab998eee6c960c13e2bab22463191fa5432aa08c187e66010000000163ffffffff8551e5e32dd626924fbed7b32b8716c70d593aacd0cd10dfef2120bcda3899050300000009ab0063516a006aac63fffffffffd797937a0b8dde36037c50bcd8796814375d53de43961f3c2434f4b064df577030000000553655265abffffffffb42352f22f62d288d5c9662b632aa855729cb1d170f0cc57dc2bc273000dc9bf0000000001528cef350a046564740300000000025165be07ab04000000000751635365006553c5c8a303000000000070c6870500000000016500000000", "6351", 3, 40616380, "2a324a9a68cd7323bd7e7a99d65717eac5a93a26ef2db78ea427bf1c5b5c529e"], + ["f190b24b022db4b51d28d1e7d3dfc904f3815bb874abc28f207f74f2b2f1898682c4b5f1b7010000000652ab6a51516a7ae876d61528ac73f52ed7120fc86b91277d81cd058a582312c960ee1fdedef5aab8a3f50100000007ab5165006553631bcc1bd401378dcb0400000000016328b2f77c", "ab51655200ab", 1, 1172605404, "ed09a664d81e27ee8412a36d4f719542c38f0eb2e294f77c2295383b32b661a5"], + ["114e957b041111f1e5c27e7e9c37e391d6f8f006e9d9b5d88067524079e5eb2e8a178fbd8001000000016affffffffd6afcf72da195866853841c808dd33bd5829b8ae14f12789b3c4ccd42d33114e0200000003ac6a63ffffffffb696093f3ed25afa104dad04892abb21fea87c1173f2cc9476b3f51b696c7a440300000005536a6a6500ffffffff72edf10658098bcd121b796b8fc19e2061761f24d893d61e92a676f5ef3965d90000000008630063536a635352ffffffff03b441a004000000000652ab65635100a0f7350400000000090063515153ab6aababcfd093020000000008536351ab52ac636ad0966e4e", "0065ac5363655251ab", 2, -38255456, "a5110decb3440510f5800edf6a715d7848e81657ffae3278820e69ec15e735c3"], + ["2f7e387901990ee0418ea5596e6891947f571da71bc3e45a1305ee819a7c8cec25c6570ad30300000000c7e9745d01cf14990200000000016a00000000", "536a6a6365535363ac", 0, 573180570, "8a7810620dd626532647d4a0362dc5e181d91f93f25996ca6e5f70ab2c487ac7"], + ["f848250e0405d09ab1fddcd1c9e68e2e6de6ab8712f2cf2ec5adcdebc5859e9632d7b7a990020000000665abab00ac52ffffffff90bc2a96668c8fde5537a74789f042df53b28a289df3ffea3217bd607c8c3c83030000000452635252ffffffff19a0aafe175b4b2a3a49450b9224915528f5c4cf1177633123d7aed9369bcf9a0100000009006a53006552516aacffffffff5d87907ef8a622d009f2cbdc205354ea3b8ca4d8a0259af299a58e82702c5b740300000009636a0065520053006affffffff010b3d3f030000000006ab63ab6a6aab00000000", "51ac", 0, -875280397, "2559a670c5608151afb5a77aeb5a07982d40e0890c36be1a2c3f1c1c615e5279"], + ["b7272038044a0c3c4cb3c9189d4103d0607298feaa0b36a32fb35c68e43ab942bf67caa2cd030000000100ffffffff3b8b8ac062ba51507e52b71681baab5b170eca74135a4c463b82f94aec12692500000000009a3bf1dd915c8ad6d3fbd1aa0768019db355203a2739fa942f7186a6acd3729146089d01010000000863acacac630051abffffffffe057ccd3f86fccea6ae8dac2f64fc5ff35a93acf895eb2ab3f9a713d490447070200000006acac516a00534ff24c2f01554cac0200000000016300000000", "", 1, -1309551655, "0f2138df5578c47cc6d766a3935de82a27b875d52f44f580ec731a573d34c0e4"], + ["4f014e9f018239a389d35143093f64abd889a5f3c18264c5f7b236e028c5d054e89f073f6e010000000165ffffffff04f990570000000000086a00ab006351656a994bde050000000004ac6565ab3244d0050000000006abac6500ab5154916401000000000003776481", "5165005153ac", 0, 1063584552, "9f3f7f45fc10c3f03c62d17ce63c34b013ddc48743aafb8a6ecaffac52f9eaa0"], + ["308499a802acafb5364c036796ac745b42f364795311407f546e6c9ca2e11f376b704b60cc00000000026353ffffffff07ab760cb59eca588b4d3ea3a9d0affe641645546ec8d656518da595f2eeedf60200000004656a6565b352b1250436d22b010000000006ab6353ac51635ce09b050000000008acab63ac636a5263e7f2f7000000000003ab51ac78eee90500000000036aac6500000000", "52", 1, -1188518293, "ef5c6731e467d17b45f34e58d383166dc8c360506858a54f04c8e303e1173c67"], + ["fd97c6b601ade9320d16e31d801bd9e3b9527bdf1c6012cb5e1b3c7e2596c7da598e21fb1d030000000452ac526376c32f3701fc7db805000000000265abc7ccb062", "ab5353ac6551006a", 0, 1887002806, "528b7c588c1b41c99e3a50845959528337d9b404a92bb8e7651f37e4db47b52b"], + ["090f2c7801f3b3dce87778460cd5a9e8e34919507bf8e7e75f0f1f6e9b7ed053e37bd2493e02000000075152ab51535165ffffffff0479038f020000000003536a52e514750100000000086aac51ab53ab5163417c01050000000003006a00b027a60400000000030052abf286303c", "63ab6a6563", 0, 463922432, "e19224826215c5cbdbbde85eecef452b473cb18b6b286fda2e505cf4b418c0a5"], + ["82b7a756018d64b12fc81f74655b81edd1c02a631105735274333f07c36bde63e554db35aa0200000005006a525151ffffffff01da121c04000000000353635100000000", "636553ab5353", 0, -641251291, "dfe92adda77abae3a67d518dd995bfc005e0cdd18fb8cf71e021a3eab3a2638d"], + ["aae6092e026ec918a4ded2ace4e670671e68069b6e3d32cee864d382be0501e4094ed703d40200000007656a656a536a6a5dacbf1aa160232204707c8b9e6e284cfba2b32f88ffdbaf5ad62db06897e54c91eae470030000000800ac636552526a519023a97a0347aad8040000000008525153526352525327537f000000000006ab0063ab52007d6093010000000001001d3da2aa", "6aabab", 0, -1338671457, "3c4240a1e7cb5a521620ffc8cb8a2e87f8ed29e81e73583ca118e6a6857b9695"], + ["d61cd19c0459b9e21dd409b8925cd34224fa4cf6c415afa81c55358f76f562afd9f8e883310100000005ac516a6551ffffffffe942988dfb9eaac7a921fa0cf5620b7ad99482f9c856e9a6f56b807f0a5dd4b700000000035165aba886dbfa6da03faffa52942ba8c052ffa47c5e9e1894c1193d054c67d369786791594871000000000353abaca8182f6fab0ea74f651d75984dd5b03ab93876b51b3c022965d53e4f445618bf6c5da6d60300000000a847157403f71f53040000000007acab51acab65ac5646300500000000066a6551ac5365be8e19020000000005635352520025ab5f46", "5151530051", 2, -590849001, "c575b392b02805c6ccc8a2c48c59138b154d4f7348201f827ff8c67b1787a480"], + ["a136e58202c302277c672b54ae263fa471c597dae0a9720f74f5330b4f9766461e44abaa7f0200000006535200ac52636d3d1f464cf19aae2eef4ea260619959782d239479e8c0bda9c5ef512df78c1cf132e8ed0300000003acac63ffffffff04f79784030000000000cf0b710100000000086552ab5263515263baaf6e050000000002ac53ebcc0b0500000000056a636a65510fd0df4c", "ab655352526a52", 1, 1472531727, "3af5fa3c83e43b72ddcd51663b73c7ebd57bf1cf40b35555acb1054aa4ab603f"], + ["2e697bb9027f76187d797578fe1a7c559a18b802b4510690face18809148452441c66f8a940200000002acacc504bf88e0e81b1320b73953ca6da98094b2f66b9cabe92bc23762d9285cdbabafbea30a0000000000ffffffff02aa41c6000000000006ab51ab636a6a4aa108040000000003ac6aab00ebc55f", "ac65ac", 0, -1344838351, "9ea3bf35dc83db250e01e482a71e3f108b2539ad930485fd3e55c3eb2370d795"], + ["b4ced0b501577499de624eb7f2f8f0a23c5f8c4ad4a7f07da55ffacfb1127d86d5f58d91b10100000001aceaf31d4904ab098701000000000153a3594f0300000000055163636aacba2e90050000000002536a7a60790100000000007144cd85", "005351ab5300", 0, 1994754820, "8aef89c2ffcf260f30211241a9765835f55fd68ae15e841a5df0e2c5fe734b46"], + ["ac0452f5033e5f123f4c4d4c904e0f7f48d9c24d33ed2b98332b8976591f2cf9042443ebe7000000000563abac535178238ae75e5b0eaee6e4b5d57d117ef8f702f0cd854f02b5cea348aef0e08730978154ed02000000060063abac53ab15f66222712c259446d60d8d2920d32a950639197829419fe6617e1b0391cce584950c0503000000008ace504c03a2a3d70100000000045252006304bec004000000000600abab52ac52ab4cc50500000000010000000000", "0051515153655263", 0, 2137606666, "412e44b73a8f4911706fed77c7551eb8eeef6bb2446d9b9a46d084539cc20373"], + ["07474d6502838ce18d1e21f78975143b62d95b724d43116bddbf71138e4ea7e8c17a82c54202000000065265655265abffffffffb33d0fd612efcd18e97201eeae829c38e6721a194df8d86ba69d1870441b12fe030000000165ffffffff03911a0b03000000000951acac5351525151520acae9050000000001ab855ce001000000000951ab6a6500ac656a5364bc0514", "acabac63ab63515163", 0, 60528522, "42bad80a2bdf54aa710e7d8348981f61bc5c964940a2ed6a1cdf066d10cef229"], + ["3fa1446502bb923b6d953d3a0e0270d50e2f52e64ff69cc8f27fd7397f49be13974c9b1e83010000000863ab5263ac6563637024acc72a0f5d2e1d2406f3cfadbeac84abd35feaa8db0f4f386ba0ce5c7b81eda92d3f0000000004516300004125bd4604ecc21805000000000463ab6351da69d00300000000004e30eb04000000000563000065ab3130d001000000000152248309c6", "6353ab0053656a00", 0, 1284147782, "912852488de2b75b82112242dd22f1c940ef12a28fddc0d0f0d1243e2861683a"], + ["ce32e8ce0186453a1d58999347ab55931cde0b2b95340d4a44b9cea02884e5b8adcc41917d00000000016347f991040319212404000000000153520b4200000000000965006aac65ababab525fcfd1040000000005acab00acac00000000", "51635353", 0, 45430442, "ebae5ebf640800f9e236c99f2e3b352a8db1e03129ed87bdda08378595072e01"], + ["8c6f3144031850c7e5f21b9af65e6f3fbc6ba7a683ca92c8380ca400b67e6ae218464686680300000007ac6a515200ab63fed587ff5bb5383c02c6b366476111023a97a604aadd1167a6267280f7c7244aa36b9c180000000007ac6563516a53abffffffff0b0421529e598289d22e5bc1b55db5bbf124c44bf685aa5892e1b56705d7d9770100000004ab655363ffffffff01662ad80100000000076a5363ab516565078e9d40", "ab", 1, -1016542485, "6c327e2d36c9fd305f0030760d8c75ac26d8ce4c5d01922556baaaf6a36349d2"], + ["8826a5b5049960918c507737e0752ee63ac7168aee9f59534c7bbf857973c44eb45e811c6500000000026563ffffffffd26f2b8d1c4b0c735e1142ef63cd85bf2da777b0b419e506dff7c5a646fa0659010000000151ffffffff8b43a4996cb1e979420ccb2689dca5cc537e846d80017d85a3b48ef26ffb42c60200000000ffffffff7aa61f7315d22bc84fe69db29fbada5eea3b3febb5176afc17707f18be63ffbe0200000000ffffffff0123329a010000000008536365635253ab0053f155a2", "ac5265", 0, 1677225546, "085435c5f62e8dba046c9d4440a51d0cf71a476788a761d43b7b1fcfa38ae11b"], + ["674438570199e4e9992a7c82c5f9525122d755fa0943eedc9ba8fd809c24c962c5433e76070000000000ffffffff03c7a97100000000000352ab5202f8eb0000000000086a630063526a52abc38fe3010000000005acab51635300000000", "5252656a006a520051", 0, 336219604, "78c8b60dd8a8876b16f16ceda31ec7bb4c74a5571799e22f45816d0583201f8a"], + ["602e52dd0149b57b9d85716af14a637d78f3e84c70ff4a0ba68f3db4473a57adf864f14e030000000000ffffffff041a3b97010000000000dc4ea0040000000007655252abac6565201542040000000009abab6563636500ac6322aef3000000000006ac5200526563280bd0cc", "ab00520063ac65ac", 0, -357926874, "cdb613d2c35dc144a70e863d224b9c42bc77836441d67834f008bd8d17777183"], + ["455bc63b03555216c7da32c1f0fe8fb7a0153ec7703a1cbd8b2579a115573acdfbb4915ff5010000000853acac6a63ab52005708fa8075d048ea6830c7623cd468f694724a8517300e6015a2a820e0fd789e9aa567f2030000000153b1b19348ff575027f76a44cc075a6d6f72576ca4c829c47dd781a8fc0d13e6b6cead80130200000006635265acacacffffffff01b02fbb01000000000700ab52ac5351ab00000000", "0065536a6a5352", 0, 1779766600, "3524b6db7e121d5706d149f74b71560a2e887dd940fd3858c445564908e7a95a"], + ["000cd772023f638ff6fc364d96bd4f033644f0e434a3ae3646e69964d82b62319cd9e5935301000000066aab53ac5152ca5b3b283dc5197e389bcd7e0c81a42ce8e2307f980b40ce20e4f18c776bc592b7d9666a000000000753006a5265636adbe30fa30457fc550200000000016a2907210000000000076a5151ab65ab65ae3fd7000000000008525252ab65ab005278453e0400000000006c176d89", "65abac65630063", 1, 1511191968, "8687ae938ee38ee81886819c3127cc6b0156e9c8459cf15570bb7edc42ceaec2"], + ["fdb446ed032c8cc2a111b297b4c97dd2222d3d1f087f081d79e22c71cf459891068ef303e30000000008005163536aacab53ffffffff984cf79f3714f2ecac155c0d8b856f9ab7f546c667f77c6ef193afb9f6f8de8f02000000070000516a6a6aacffffffff307b823b30a367fed084c22778286c7be0b2173079f6cc88beb63bc52153ccb3030000000953655363ab6352ac51ffffffff019ad93903000000000963abac53ac6551516500000000", "6a6551ac", 0, 625181198, "a9c2bc7a30dadc6cb678ef5de37ab350c7fb6500735589c8e55deb5e7043f0d8"], + ["ecddeed703b90c2208a1c64a8b9c8a741ab120d649e6bf4c3b94fedfb506fc8e6d80c206d40000000002516542084f4b71059923c810c5f0e5b80ae96347bc6a488c025c4df96dc47a0a2a67ca37cbb502000000056a526aac65ffffffff1525afb248924e2680293f04b326639901a1c205cb7ae018edb71e707652f5040000000000d9ce60650423d7260400000000001ab50503000000000865acab5253ac5353dc37d30200000000045300526a0fa6a7040000000006636aac536aac00000000", "6a53", 0, -179464695, "5571f232f5cade267c6187cf14c44c20c167892a24b100c752953993fff22be4"], + ["bde9b26302dde9dd38f970b9cc54abe8fb6118775b21d176973688fec1744662a840557a4d0000000006abac63636a52ffffffff8749a4f9568ceee1e2442c492a89d529e5e3a3453915850335736caafe324568000000000765635151ab5251ffffffff03928803000000000005636563515253e3ac0000000000066565ab5253acc18d7b01000000000652005163ac53cf80320c", "", 0, 2052161515, "7601b5ca0ce9e058b5e2c29263e8f42128b7faaf3111ae12aa223f655cfad42f"], + ["a30b933d01fefeb7c6c6a43d97d7aa4bfd3d7b80c539c44f67736487d7147208413fd29ab702000000002d416d79048e68c203000000000050b08d01000000000865006a006aab536332760a01000000000700535265ac6a65ee1a44050000000009ac6563acac0053ab5100000000", "6a636a005352ac53", 0, 13383775, "789ed372f4eb2deb7893b7747d1b4d6e6ab0ed0e8b11051cf15ef7b2ef5903ca"], + ["3a64124e041d2c139f0c9444241a2e53eda1e2888b04cb09f839f6dd278e05d17494ad58020000000007656363510065ab11c0aa6fcb4687be716ae5af7cdfa98940cab58fd8ee0133d1621a340d201a50da4b44530000000004ab535251ffffffff7e1a982df947290025bdfd5f8473c7e8000999bc507c07035a13339061db6f3a0000000009636a51656aacac6a5130e04ef3319a75450de61ef3d1e2869cfa45b4191b6b78134df7eae3342080a8a30b824400000000096a51510000ab63656affffffff01ed1ac50300000000010000000000", "", 3, 1899973329, "7a2668c27ad1894b731ea7c5c8ae4f9a9232e98b68c0f59863166fea9b43201f"], + ["d26b774a03fe852705f286af740f20b0d1fe36005d85ffbc9b78e0d2fb8d698fa850dca0840200000004ac5365acbeec63f2038bc99bfac4d788eda02b16cbd219b2ec433a7f83d972a201e54bc8784cd4c70000000004ab6a005230bc1a794f9245d75cb3a507e9a54dbc4056f499bd4587f255d13859ed7fc6406d5fd77f00000000045363656a0d74beec01c375f8030000000000333ed707", "ac", 0, -2039101317, "0409726a4bbed9672447a68b222e9f8f3441b308fc321658b4ad60eb161d0a9a"], + ["b35020ea03c524b72102ad52ed8d4131ab64c6b73a82426e16629d1ba4df50125bf6abdbcb0200000008ab655351520065acffffffff9987942ead47de9e64f3fa6762ff2431cd85ea8c7efb019240ac1db6b8ed2d0003000000085152ab5251650065998a1e6104edee3ff78ad126d91fe45c73e83596ee29307028fe2eaf763fef3217006b10010000000863ab6a65ac5263aca0215ceb04577d8003000000000765ab65ab00ac65de5579010000000004abac535121840a0500000000070063536a005200284759000000000004ab6365511732add6", "6363ac", 2, -1513887009, "b8aec3c522fe4b1fa2a45d01c633fa528539677fa656cfa572c1b58e65ce8b0a"], + ["b2df8da704d8d75bd426327c1c3230322d9f9a4416ee1973eba35c64778b560033060d38040100000009005265630000525352ffffffffe296fd8480623d260fcce5679ac00b5533089e5d3447445d2d2802e7a5b3dae30100000003526300ffffffff39b6b33c6af261099a01e954dd9a1276f8d6db61b93be889bcb548fff2e1358f0100000008ab00ac0053ab52521f2048dd5eea926148cc05983a2aa94579893151df94bf31165d15dbffb2eaad021eee3e0100000007636552ab6aac5374ff483604a40c2b0500000000086aacab63ac005152e6b063040000000007ac6a53520052006486ef0200000000075352525265525329bc39050000000009635152ac6a63636365d561cd2e", "6353ab", 3, -1562850857, "02ab9e784f1ad908216cdb7cf7e93abee1786e30cd0bd8d1d214e118473ac70a"], + ["777f4e030298b1eb67674c1be2d6c967b07200c3e337badbe431af633ba5860e4d93d0a3f60100000006006300ac63537831cdda39527cc4a4f0b6239b476263e5a0b29cd3e34490682740e6782dd0d00cd1f19c0100000002acabffffffff02e9a22a030000000000326f560500000000030053ab00000000", "ac51", 0, -1056534230, "be5f0943a940aed7fc73dc800305983ad2f94bdc13ff280d62e56b6761f07942"], + ["8426796701aaf7e7f0030cc04b2044f87b819bcd04c103779cc52ad77368330cbdc37329950200000009515165526552abab63ffffffff04ea6821050000000004ab525300f3c5aa0300000000025263ff623f050000000003536a65495db8020000000004ab6a526587901445", "ab526a6a656363", 0, -1904120058, "f0c8d9c43c528438483c28caacac9b895d2f7f03d1f50bd88348ab72b8e98e69"], + ["d858cd2203383d98cd4069480fcd9953b5f090dbbbca0dafa5302e452df936d7c58462091d030000000016bf3195cbdcc418ed88eea193928c2c60704e22ee62762ff494f0e96d8e2da13ae6ca3a020000000953536a6a516a530053b6ca64d4da0d9a318c278f0f095dc97fefb4fda642e806e2ae81bda19d897481de472a1b0000000003ac5152ce42613f01a2c58d0200000000056a0000005100000000", "63ab63ac0000", 2, 1707889199, "9423472e8a494a9f5cc47563a77f390aede574a23f8cdeaa5ddb759c894fdbdd"], + ["79bd6bce010cebce657c731a2019a853d62f6a89a9e76159da762e6036fbbed063f3cd14d300000000025151ffffffff04fb1cf4030000000001accb9d8f030000000009656365ab656a63515216c27c010000000006526aac6551ab9e0776040000000005655252ab63637e60d1", "5152ab6a6a", 0, 35156667, "778d3b075b2a7c27b153fba90f6efe426caf472179fc645399fec30addcedf3a"], + ["972de7d804b6638e14dfa4f34193add99004b6718b792a7a4978d108cb9526c835284b6d940000000009635152635263005365aeeea8edacc67cd7a797d6425583383cfce714e8af425496fbd657d20d10f79f633fa3580200000000ffffffff13ac9585bfbcb3310620fff6a245e4fed451d882d13b61dd8dca1f3e6573c55d0100000002516387b19ecbdc36ea00c3473e2d97e9e966f57e9cbd00fc623dcd8210529b74a29a6000a9d903000000090000acab63ac535163efdc2378019b01660300000000046a00ab5102e09457", "ab53ac5100", 1, 1558660677, "f67f88113a79568ec629d092d5f315caa2ca1777db2d0957a6fe1d0a2d3c508f"], + ["e60a1b9c030c2510751fb6b1d9b8a94d63edd9d5adfeb638b8508d8315e874147d1f9d007d02000000056aacab65510e44a8fe9fe9515225782d09fd52177b96ff84facbabe4f1bca0850e2d6d4ead8b40bcef01000000096a5200ac00656352ac9fc0600c7d0fcbc4b8a71a1fce125704e84198823db770ccfbe28eb502d869f46fb2dbe50200000002ab53ffffffff0414789001000000000753abac65acacab914f3c050000000002ac511adeac03000000000363ac6a2af04a0400000000076a655363ac52abfdb6e477", "5251", 2, 2071552343, "30b7bdfc7269bdedbdda438e05ee27ca58b6ecd7d5bdc84c25fa0dd9da3947cf"], + ["c6759d6e029a3cbfdbbdaa3a80509fff6241698b171d806c591079df80f753adaaa99d7f8d010000000765006365ab6a6a1c60c103c8ed00bc18b2092d93547cbec24b3d895d74f739b2218e1091674fe273fac3360200000005acab5163aca42a334a0437892804000000000451516a53d09b2d050000000003abab512d908402000000000600ac00ab5365848e2f0000000000066aab6565655100000000", "ab65", 1, -1060016741, "6b5c5af14054376d8477fb03469ffa40f42fe412d3944b34f86c5b952a4e69d1"], + ["5e4b163a04c0e31c0c4a7e8c30423e40adfee68823f3294aaab94e9ee7ae3b6147a2014d660200000009ac5152516a52006aacbd5abcfd2dd5c2870cee5ef05afa61acd6fd58bfdfd08e6787b94d15fbeef45993a7335d020000000165ffffffff47351205e68a5e70d3cbdf0f0828fe1ea43dcfebf9bfe3d9383fb642c13050aa0100000007520051526551531ec29fdf72c8e73eae2cb76d93aff244642d552bd0d9e64cc7644781f1f5bb2841afd4f80100000001abffffffff0273a5000000000000005bb82c03000000000451ab6a51e3d33f9a", "00ac65ac6a53ac53", 2, 1801894423, "0ef4d96ad09167bfa7d8aef2f674568d04366a8306879b2ec73ccd41d1f2ecaf"], + ["0fde927702e8c84e2097ffac7ec3371dc36fdeb051103a1b4606a37281519af4e39289833c0200000005536563536a9e762b762094f61140efb32e1c2738e4e468d6f8cb514031feafe0e66d4da4fd20cebdd30100000006ab6a51536500356e0fda01d07cb60500000000076a51ab00ab650000000000", "65515153656a", 0, 125671589, "c303b867f3c94839c389f8506087df866a0a4a762cc0865df3d0fd3589b19292"], + ["8ea5055404b266345a303819bd65e77f2ffae875363442ac9ea031b5d86d40f92c4a15f6520200000000fffffffff6a61612c3804ae106ed5284269256b413a38b27c7b5b0adb3e9f71d529755d8030000000165ffffffffc03d2ac3abca2db7692336631af62d0b93000d60a7b1da2e231ad84b21485b760000000005516a635151edc763a3d021746c78dc1b8cee2183d661a95ca8c5c4c1e58678ce2d87110c600491e7cd0100000002ac6a869974eb034d6e850500000000055165005351a78178020000000004ab005100bd461a0100000000055100006a5200000000", "656565516a6aab", 0, 718034473, "520b8a26205db88065ebd88ea20b735222682df13386d5d857153939780cc162"], + ["0c923aa90294149216312e1be2068df103cc9e1a9370b1186f459813fbc1d1356bdeabf6f502000000036a5100fffffffffe2e00fbfb3a6da9dbde8159a31ea75a7cced13fd394598e8f76ab56471218e001000000095351ac516363abab6a865cc40a023f590e03000000000400636551399b290100000000096563516552ab63526500000000", "ab00ac6a636a", 0, -1041836660, "532eb79b784fe906780279143ebe2d2a64218b8b9432aa19afd76bac9258ad44"], + ["64585f2a0451633ac3545b6f0d2f4a7efc044f230bfa47558f9d598cf7a5fea45d9eaef5ac0300000000026ee00134cf0315450eb6df59b3884a96e9b8c5021336c22c8a1c0ec828944f5473a47f0300000009acab5253526a53636affffffff1764c24974a09e71f173f41937bb34af4c0e3d43451fc5810c6e5db00a17a9610200000009ac52636a526a005165ffffffff032c5d8774d7865d758d2f8088932f4f4d8d0f76921550f1c791e8f99a5b30840300000004536563521761609b043fd2f8000000000000b6c2710400000000070053abab525300109917000000000006ac5365006a52950bd704000000000853ac516a5265abab00000000", "5152ab65abacac", 2, 1202713065, "03d36e46f18863f4fb4a7e6f94af3ef3a50db9b91f41804e75e7bccb3421483b"], + ["f4267b5404470385c1b0a373eb7404a34d5ad2d6886bea45fb0972b5691f91f5fc106a88c6010000000552ac5353acffffffffbfe4d6314af2cf20c521c31fea271711ccd13219c170c917887e23e818bdeba600000000086a6a636353abab00d5d6e6b4ae7ff8c07fc73d172758a76f9f7fae8c1870205e8365f6b276ed292d2821ed340100000000c6caa13620c7a9f424218999f707e0b7bd6d5ecc914220baac06f26cc307a06fe6cc3f6201000000095363526551abab53abe928e8b0019de6780400000000076a65530000005300000000", "655265ab65006565", 2, -120558327, "f8d20d848992b8818c3c7960922d2157135069f54019763eb3ad49d5d3858539"], + ["5eff06cb034bce6c94a8bc62790d04880063d442bf4c368d7fc69493bd658373301af85a7a0300000003ab0063ffffffff1c8ca682236fd9feb15eaef9250f5e7073d310504bc87c97f7500eae37c6327a0300000009ab53ab526551516565ffffffffd72cdff2cc27304a51407c0d72b5033d826368597e8e73b1a6c8a7541dd33930030000000265ab5aa6f670022b8f5904000000000551acab6a52c94b7a030000000007ab5351ac6a00ac6cbfe3ee", "63006a0051ac526a63", 0, 1605585967, "e709855fe623f77a64bc0236d65578610bc4e72a4d32587ecbdb9f411d86a885"], + ["23b4b751024b5aba656301c5a94191cca3794f09ae4de307d07628219c85e9675350f8bb590000000000ffffffffb65c742ae4799e6e6d17b7ca4873fd969283f2d823731066986be2ce155f58ae0100000003636a53ffffffff0234bfda0100000000016544799c030000000003ab00abc6eaf988", "6a65", 0, -213630841, "3712a2d87068e93a71cb6b8b9c243ebd8779fd9a6767846691c29f927372521c"], + ["d3b54b7802dd9ed0259011bed3b85db2f44abacc1fe8bae6a845629fe21f90327587450272030000000090987f660c5bf42f9db5319f5f8f9cedbac2655696c4bb47631182277c23413e896fd92e0000000001acffffffff01a27bd6040000000008656353abab51635200000000", "0065", 0, 1401698578, "408a9ccea8155fb83cdac2fdd128a6f283b31400cc35ac8c1225c31961f63d3c"], + ["2e158a2b03eecfd0e62444fa3a3de5a88a269f0753c843cd17f283a001267faaed610a4da000000000056a65526a514fc14c63a437235487f96cf7461b18fc31690e7ae27927898729d6f8a5a6dddbcc22ab1000000000085100ac5252ac65ab27beea66561e0c51dfa9af536643e77171de7bf1a0593b5ca9908c861ca4540f75c81c8d02000000003d07b8f20155f3780500000000066a526365ac5100000000", "6a6a51", 2, -1884544938, "49519ea285394968ef9b675e3aa69c9cdcd3082bb91eddd385a1fdb6724473de"], + ["e20ce4420163e48cd0d50db2523471f0fdc82f8b19f6d7fc63524c9677fbedf5bc977e6dac0300000007655100ac536551ffffffff048e906c000000000005abab52ab63c2b2e4010000000000d551db040000000001ac6045e80100000000016a4dc2a502", "ab53", 0, -918082509, "dec8e05ffa806649dcab090502cb7851d4bad2cea2b97cfadc7bac7f31af5991"], + ["fe79366802a80919606e916e2112819284311c82e11a53a8d56ae34dc8841e060740ee82610000000001acaec2ae103aa182bc8c9dcbc143d84fdbc8d6f020d524295fc6f333f2b54ebf3ca7285fcb02000000056552525200ffffffff01f75eb6030000000005acab52ab5300000000", "ac6aac63", 1, -743916946, "7661b687cbd66adda63ebb5e2654912eddc2ddf5e268322d6114394e14b89e64"], + ["d54f866b015d73c5fb10d46a0622f5b57555547c34e61c7ebf440d61c3f2243bd0f57f373c000000000752516553636365ffffffff01a4802a000000000006ac516aabacab00000000", "656a53", 0, 181614854, "443a002ec4d0728932d2a4a9a446f9c25e733f9d4fdb584a00b181617216274e"], + ["6cd6ef2d037026a192aa585b137f0e3cce89be40832099ca7e9f53d909de5dcfa16fa6789300000000075363abac0053003848143f5944d8030689d753c4695aa0ea96b34daebdf95510d3806b4c28fe29d1be02e00000000003636a63ffffffffab80dc5d153e3eb2bd41ccf486113574910350f53e2d8119d12f6a4cb20528e4030000000152945ee04303a22dc60200000000046365ac5184d0150200000000025263e4033c010000000003ab6a5121bc3b12", "636563", 1, 259596197, "11f7129b15a6b71e1e1aac028e92787f0666f0676e62282306cf2b4943dcbed3"], + ["2681b78b04d967d83b1700e7c8e227ad59600ac04229a6127d3f64e1b7eb17142a0d06834903000000076352656a51535208e438603bfa940846e288561596e232c68447c2470e9b2e0ace6ec765f47f48cec7ed5b0300000009ab65526a53abac51acffffffff01c11b347fe16e7970bcfe418b7abfa2eef3d176680f4365c3e4ef552307f3f103000000006d1eebce1f4f4645d0cbccecf32a37c8f931aef67b3f148d69f1ec6f959d22054c6c3fc303000000045352ab52da96a3fe021a2280040000000002abac7aeac102000000000351abacc7ee08a5", "52635165005165", 2, 193702587, "bdcafa05b7f6250e93cb300745ea7b34b76d1d54d4c364ee3257532ca72969c8"], + ["86e1cc500332562f636ba1d50e91f05a319cd04dc3e53bbe92090c41ac998c28e68f1d462603000000020065ffffffff99204f517e873bf546ef0c96730f4da3de07433e1d04d74918d1ebace11cdeff000000000353ab52f3d80d8e280717ccc8e2754190790783618af4c9b06c2c4cf0342442ce3415b848c621300200000009ab63ab516a516aab00ffffffff032b006c0200000000016aa7c1950000000000066a5165ac5353358f780200000000046500ac65379fd2b0", "6363530052", 2, -1263177268, "8a98e79f40cf39e7f0dd57e25b07ecc045350622d0167b7085c8e7d3c36578a9"], + ["0fec044f04bd448f4f640f7102f7999bfd422ce53f4b93907d4441c36a5e452f776dab03af03000000066553acac6353ffffffffe8fbc22a53cc8049ce3dfa7293f81a716ed8c3ddb286d0a28c0935c7827e3f8101000000086a00520051ab63517b1bd9f010f26af73d11405fda74f1ae67d2ed6312029a15451534e1be714f36478dd6710000000002ac65cdc228361ab281dfc9a55a75daade611369e5e46a01755e17989fb93bacdcc9882a4b096030000000865536a63656aac53c73450c104c71a8e050000000001aba124e203000000000152f0a85e030000000007abac0065ab53654dd2a4040000000007ab53655163ab6a00000000", "53ab5253", 1, -764664008, "6050c536d3d599d41eb2ca1dee2e4f5bd958c95fec1420e9b326be8369bfd37c"], + ["c8704c05023efe61fa0b24f3f570afa247ad73f4eeb8336d2ebbe5fe9f039849cc215a081c02000000007aaceb74afd6f565d7074b851d2178313c7ab0798898f5b14b1fda3f005a44972a1288fd0100000008525252ac63656aacffffffff03e3f04a05000000000663526552656a5b38c4050000000002ab00cd3eb301000000000600ac635151537995335e", "6352", 0, -918271550, "f61aa1762011cb090b5eaf22b6faa2449518a24384ba9205fe1df9e37c097b66"], + ["22386d2a012410368006f6b9feb3712c0a49996798d0a64aca6a6ee355db857a5a93c1fe940100000001536778352b04f40f5a010000000003ab526a5ff7e3020000000003ac5353a7bfe002000000000263638118fc00000000000465acabac00000000", "acab65006553535152", 0, 699752080, "d2da211677108f3fecc3478978547c9e96eda1c36510c9b8c3859084f798c417"], + ["d02a263c0222338e9dea36bb3f9e78c23eb36169a4ef2a39e994bdd8adee6562a4d8ea9fc003000000056a6552acac9f964fc434003f0eb8c84b4fb8dabb20c5d4ece9196ddb110f1336e7024bfa00390476c000000000056a5153ab00e6c3993b0410252602000000000252657028a4040000000009ab5263ac526a6a636571c1ad01000000000365acabb1ded30100000000026a00cd55183f", "526a63", 1, -1182198347, "f013d878a04dc785ef3cc9401f7550c3f5a73c2736eeea10aa63f3a8880a4ef2"], + ["469db126043cece211c739cd1a2cc41deef9a26464162754b323b3c495c3900d2b46688eca010000000152bd6e42ce995d059f0cbd42dec6376dfd1d5d3bbb1d95cc9c5def04318cb20daea9a5d53e0000000004526553acffd3686a6b0dad08c473cad33f20866ccf3eccc4445f383d629068bc90e09026029ec1ce000000000252520ca015303debbb172194987a8b147f9a5663a0191152907ac75d77023a5928fbfd058c6502000000026a6affffffff04c76e7602000000000952655263530000ab52e7522005000000000951acab65ab0065630006286c020000000004526352635c43490000000000076a6565ab6500ac00000000", "516553", 3, 1146029695, "6176f4ae55db438e218165791d4f2b54c33354b6eddbaec1954f36b2e301283c"], + ["5f50a4fb03ac8b34db4dd784fa0ea02836ad3bb3d89bb9119fdffebff07754504e1310a51a000000000453510000ffffffff247d5edc5d57ae639d68e067d79316d16fcd46a4454fdbb5c6ee9d1a14475be3000000000553006a6aabc9eeec87155825fa2148f796fb84780f12eec41a4af1f43f8827cd60d6534e71878d2b1b030000000851655153536a52529446e54a014860b6020000000004005252658572e0b9", "516351", 2, 941562463, "6ed25dc551f600b2df063edc29d8cc604100744c587bd3ca4b2e81de593711f1"], + ["0f8090830378e7345f733a5c53584b0b755f2976ea3340a5bc44c1d2c245213f6e849b1b13020000000863ac51ab530053abffffffff3db8db6ada585ad217cd5874daf037897a07050dabe39c41c96811e792c0f679000000000865006a6aab636a526dce569f3580ac3b2049c5bc9873ae98c17565a2d5f804f262381daed40e29886beaf006030000000152ffffffff01e63ca20400000000015126bcf183", "acacabab510065ab", 0, 927575188, "03aa96c84671720ae5631f9fba5baa31baf3d4355bc76be5ec012ffe250fc738"], + ["be532832040b2422444a8ce124dd9bf3cd9d0786cbc6e90b01ec3c31a7cb547800b16d2a630100000004ac006a63ffffffffc331dce3acd7e710cfa36c3810f78195d336274788f7f62e9e2622b2bfb588e800000000035363ac2a2dfa619296a9516d98b048e3d70652d30ec4fc52e93171b15bf85665674eb4527dfeaf0300000001abffffffff4313bb00c27a3ec63062ce81aa2f7d48f9c8fffb7f65631e2b67569c5368960602000000056a52ac6553ffffffff03660176040000000009525353656a650063538cae1800000000000553ac516a6ae0ff6c0400000000030063ac00000000", "6352ab52656a5300", 3, -1976541318, "14ce45ecd7a8d4d6b6520f34ab05e2be52a988634a2e62c32babb944e52e6951"], + ["e3eb55f50317b680593ef71278c3629044a9c676775fdca97072bc043022bd87fc3157b74d0300000002ac6af679a2d1bf782503f92b23757bfbde047810b761c72c6c7bf478b4e1ae05970321e7ac1b0100000005536aabab51ffffffff78039e4ecb761ef3b6ae8aebd33181fb6bd6542926e8ce8e29cd47a33298598002000000075253636aab65acffffffff03593cea0000000000056a6aac5300d4c54e0400000000055351536aab54142f0200000000086351acac6551535200000000", "63", 0, -1701478047, "2ece6d4afba2b3c1f6ec35fb726b8e268d32fa6bd7a033ecced83c6fc3f565c5"], + ["b2d9bd8b045bcd202e8b167e19cf684c98a46771a6ef56643fdca652365897d61cd904d47a0100000004630065650628d5dd372824970dc6737ce221d5ca1f39a7194043fd833a0fab54965a7581f1457b120000000001ac45d03926d63223d0cdccc6e74083b1059b3e9b13ca30353e7fd60522aa0ab51f599d2c3400000000086a515265ac6565513cb195ebbdddcaf1195f9ca9a556ffdfd92f93ae967001377a464976f5333574a80530290100000009acacab6500636a0051ffffffff03f0faed0300000000096a63636a52ab6351abdbb15903000000000753636565535252f4b20902000000000351ab5200000000", "ab526aab00006a", 1, -1360999032, "4a6c0a8e68693c57a744f31d885225db0929c04ff7f63166667e0d923e56b323"], + ["dac6a86703741c743d86d30c4683e549ba30f2f390bb7526f3b181c96c9e3417442a132e49000000000463005300ffffffffb9e54c40c2fb9cb46e70f50198479715b05501ed197eeffd970f3d715a2de50f0300000006ab52ac63ab65d3233952e13361aeace3b02e54e7cda327343bf14ca12f755fb1c53d382bd81449fd3091010000000852536a5263636565ffffffff0112f2e805000000000000000000", "63ab", 1, -2047862808, "e3c4c0a7da6d19ec67cc770eb87f23e6bf764b3fee6e23110f17205c2769288a"], + ["d3c6d0920298ea908d197092e618b2332dffb20cb03986691269b2b8c3e5df19172496257a020000000952ab656a52ab535365ffffffff5fb8494ceab24f504202c3e3dd92d012bb260ea1ed48fd4d42f86b500c4156e00000000006ab5163ab00ab8cc05b0803b45d0a030000000006ab6a656553abb5986301000000000152e3f2eb050000000008636a5100ab65ac52617b16d4", "516a", 0, 2070222956, "984e8bcec34b954a94077b84c86631d1f7df300975fa3a53ada385337fe5739f"], + ["a03dc3ac02bc99c0766ebfe057b54f13c619d1c67dcd5378fbd5c6c0588162ea29eda861c803000000036a6552ea244ce4a323a44a7e2218219ab75cde8bf66956cce9f499925db16666c126a1d1648017030000000151e127628a03ed6c9a030000000006630063525163ec37d4040000000002535273f8d70000000000065263ab51ab5200000000", "00516a6565656aab", 1, 2019192024, "2461311b51c0f1f1c324774b6faed7f6306c630bfc9baa62548fce9a1fa5e911"], + ["37c8332002575fef24711ff142923903535250c7295cbbc6e4f31a8041fd3b00e73be11804000000000300ab632ecf09ae1d11033798848cf4206541d4fab20a0d90e9da8c46dee83eab7e7720290e64ed03000000026a52ffffffff034167b9030000000003ac6563093a04020000000007535352ab5300ac0fb8c4040000000005acac5153ac00000000", "51006563", 0, 122323697, "e7bdbb1d76ad6815e667a5283b571613c1c9779d2b4ce7802805c1a48c25afca"], + ["09ae765d0352f9e40708fba533a1c20c4a9ea1a9d9d4818dbc6ae1855dafa8c9fc0e378fb60100000003ac6500c4adf77214e0f963a091496f51909ebc9b2b456353451eb331cf04cffa4b2f4313e0aa460100000008006a6363ac0000536449817ffc8f1afd2afe24f8d36fd0a627d627d0aea1101973c156f4926fbba7aeafd2c4000000000853636a0000acab00ffffffff0358234c05000000000565ac52ab6abc5c7d020000000003525200068a0f03000000000352636500000000", "636a5153ac530052", 0, -1673891642, "9f252ad0ac61f11009bf2890af0814d01d189358e9cc199b274f28d0de7627c9"], + ["91c15c1904e082f6461f0cccee00a23d89661f5bcd9c43164a4df0cbfe65224bf1f8db283e03000000026363ffffffff1b25d71264e3f83cb8f829b893af1514746cf13fd5e2a8f7fb4829a16038d02e000000000651005365ac65baf8fe41c2ce3edec82cd808334981d9e084104899b3ef410e3ff980b8b484fc5f0dd9db0200000003535100d5da0736bad4f19606fc9b7e8b13b1a9416e360bb284b6043e4ebd57a0773f962e5c261b010000000085f0a24101f24c580300000000076551ab65ab006500000000", "536563ac636a6563", 1, -1539950339, "d06590096397a56b48296baab2216d39e21f6d56fe1247a438000dd07ae3eda2"], + ["c2981dc904f4a9f3bbaa499ff48aeb016593e66e3e2ddea123ee14259b37cd60fc5aa0f778020000000252ab96900b6f0a64f34e2ee3eeefa4e25a2d7e146a98688ca4f846cb841a6138b78744f9783303000000066a636a6a656affffffff4ce48b3885f0aa382a1430c080665f1a8add22ae05fdbfbb8d502f9595555a810000000005abab536a52ffffffffcc47a9f62a72a8bb38ee74d38c1c69f4b4a08c5ae7e4c2c14c4a09eb47a356170200000003650051ffffffff04b343110400000000086563ac63000063000aa1af02000000000865ab63510053ac6a3ad2680500000000004b8f8a050000000009656a6565536565ac6500000000", "abac", 2, -2045231246, "6d1e4abf75fedb654d1fe40ffc0d882330761c145118dc0d973bbc36104045f2"], + ["e05ce97101a843c02eb12b278a81aed88c10dfca5836fae1b870514e1d1a537127e7e05fd90300000008526a5265ac6a52005d46b03503fb3d55050000000002ac651519e800000000000651655100ac631839c20500000000066553535100633d1efdc5", "", 0, 1741914049, "ec3ecaa60a312caf51b1f8c3d69c1fb89f46a5329acdced80861eeb411105a7e"], + ["0e32b49903463eb9f43214b4eca15784d799d95189ba5f98b06cc6a138f95e12002381f81f0300000006630052acab529d546eedadc1143efad74302eaa0e2149f3dd6cd06d256c197e1ad32a38158ac112794ea0300000000fffffffff60e7ff7cf38da0a17df644bd4b8de96f3398da0536b68c463d4c6dd77ca3a8b020000000004ec24f2042c6da20300000000055253516a5305f7da02000000000563636a0053026d7c030000000004ac00ab63f1de230500000000056a52ab6a5200000000", "5265", 2, 544536303, "41de608c049828332ac4d7c0c2bf46545e9b945819ae34d90839a2fdbbac22d1"], + ["6afd4b0b043346f8ddeb5a12ee94f9a952b22a7a610e2e65dafde60d7b4c96734d1af8ba890200000008ac51515365ab65ab4611d996a9ec8cd275c234a0f4a460e3ace4b55b598e0813722e3f4608a93f126873da910000000006000052636563ffffffff98af03dc89dd6bafaf0f825228b8d514e508c8cec7113299488f3f737492c18c0000000004ac535200f6bb84d9e6c024c96683d5613e48cb7396b6b7f99fa55ff4643d82eae14ffb24a5fa939601000000065263526565522225a110037b5bcc000000000003636a51c8ab0f03000000000163f9434500000000000863536563ab53636300000000", "51", 0, -1386647579, "a9b3954d8781278c10c43f81f7205ca90f90c402d9ca892153f2ccfa46c12fd6"], + ["d4ad456f0143a7efc7b3bcfb52c82c405130a19bd224e5df62c7977314af0f84ec9d6c7a82000000000865515163ab5353ab5617d35903c6bbd0010000000004526aab52efc662030000000006ab6a635253ab105a570300000000086a516351ab6a006af320cd53", "6a52acab63ab51", 0, -1730762574, "dac79417c7ee6cb6e7b27459952f7b739641bd492aba82207e5a690c937c0426"], + ["86160161038b612e9701b30964fc5adcc853f4d4561de3565f3a89bd050cb292d0197ddb7703000000076552656a51ab6a5d74dd029538589a86a96149f3ad14d11e31697f32265d76c60aec7269157d434e9e5f02030000000100eefa370e4ac7b2b41dccf288910b1d72234a6f8bde910b03d506d1cfc342932baa2052c6010000000300526a9c2b9a7b021dacba03000000000500516351005c9e8d000000000007ab65536500526300000000", "6aac", 0, -210004965, "b6725e4ef556ac3154d9c3467c989b5df3a711dfe6480ea793a973e54fb18151"], + ["5d240ee802fc446b3062599debb6c774b41ab51df171fd220bcf4f6cbe19fc482112053671020000000451abac6353326a9c2934f31bfd298ff29ea4bc440a12b52be5e5b244f5827066b2dc4ed3ffcfa3a20000000009ac53526a6300516353ffffffff0113971f04000000000352abacb0749101", "6a63", 0, -791726348, "0952e5da02e6229b988cb166457367390e6a097156c1f6b19c1116fec92fec1c"], + ["31882d6b04646f35711ab13181012c814429fab47f769ef13ef88b101301ead933061e7aa401000000026565f7bb2a275691242717fa88e61f531844263266cc29379d6dd1b438df0014fe1a0fc2d58d03000000075365ac6300ababb4c224e0f3d34be093e0f9ca38d9b6728e7025cda985051f7ee2a63ab5382259259902b100000000016affffffffc42c7426db2736b83dd5ba1e3587d81390b6ade164e522142038371521f107f702000000026563be5bde9804f648f50500000000025353bafa92010000000002655255953402000000000952515100ab655200ab2d9e92010000000000fcd185bf", "005352635351ab53", 0, 1657177177, "bf743a87c706c3a1a7e69c2f43325c99b248e1dc236756c0938e1535aefeb4fd"], + ["1ec0b749041909210a30157f1459673b14b31bae82cdde08ea2e7f965709c4f1e15ede47f1020000000100ffffffffece139238e98ee09117c00fcf8f890808589cec2996f7f83aeb61c5eb45ee31a02000000086aacabac63000053ffffffff415c58bf7b4c0585a41b482777160372fb5444d21b9220f75aa2df28608af70c030000000100ffffffff4c9a0997dcb7220b38a24e7f5e6a82abe24bbb0d7bbbbb6369059cc02607d24d01000000090053ab6a65ac515151ffffffff011bea570400000000076553ab5353005331a0fec9", "6565ac0063536a6353", 3, 1830208645, "3006ad9edae7194f3aae0ca4bd3f8b574ee55d1117279a66748e9fa3483f06ff"], + ["a23c247f01759bdb6acd7e1ebaa64ae72677b535f2febc8f01a62f01708ed4fdc4f83af69402000000026aacffffffff03c3b5bd000000000002006a87b910040000000003510053c854340300000000056a516351536384d154", "ac65", 0, 866063865, "841c31accea33b3507bee1f218925dafe9e456a472c1b86a6906527497228308"], + ["997e22a301dd2b76b4eefe6dc617d4e178bf8090eae77045e21c05dc401d578f6c564ae52702000000046aac5365ffffffff043c420e0000000000055152ab51511206b1020000000004ab5363528220a505000000000352acab377b1b00000000000765ac6a535265ab00000000", "6500ac00", 0, 290413624, "e9e32ed181548d20d31c92758d1fa13fdff5aaf4df1d1aa35a2faec5ec664f77"], + ["fe4ba75b0230c3dfd3ec0653fe01344f25c34399717bf44bb67bd04a5845880ff437af3ba10300000002636affffffff7e105fcdba1bca29ad981a53ccefe66ef201f60b4635281e8de4ac283004035101000000095351ac6a00ab516aac845ee87503c14b39020000000002005352775c03000000000663526a65ac523adbb503000000000252ac9b5be94d", "53acab525165", 1, 1286598948, "6357b445739076236f684e67b6f498f420fb88aae513ba09b915611a9ebd1201"], + ["473b60c803ef48a4ae56e3760f5dfbaf26f20e0cfdd10e0fda17357941a3863dc7cb2acb9c0200000006516a63650053fd3cbaa624ac27408fa842863cff13bcc55b3b65b69de24d0eec36049a73be38990a506901000000066aac52635351ffffffff9b7db57f2c2eebd9394df52f8f63deae41f6962b001fa90212265aea34cf9a5303000000085265525300ab6300ffffffff0266f6c30500000000090052ab6a51ac51516a03a1b8000000000008ab6565535263635300000000", "655252006552005351", 0, -526993225, "208beff56bcaefbd5f4d4cca7d151e4c12a5d7578fbfe06a1e3f8cddd31832fc"], + ["98fcfe55027b07d466da0f27f33efb2d40974dce4e1217ec3fd67a26302819952c7acbf37403000000050063ab51ab54e51d02d03bb8f74a0730dd8ae8d74daea072aaef93ced6b08a437afd9634ef455493dd02000000095352ac6a53ac515252f90c1a0b01fb777b0000000000086a65acac6aab636300000000", "abab650065536a6a", 1, -2135240294, "f1b2ee60b75777122a5882fff804e8bd7f1f0c968bd86fbfd00aafc08beec405"], + ["48b7ea7203f526947b21c2e5a6963a8bbd00d4310029e05bf4c60c2d078bca502df65c9bb30200000000ffffffff46944d62cd240e9afd4a3f813ae99fcbd1a36b82124d07129b7345d261b423400100000008abacacac5252006affffffff62d69efd643962f0afc6a829250fba75ff52226aa403a31199203bc7aee231f603000000020051c9e331f80391f8cf000000000003000051c5478e0500000000076aac5100006a51ffe9e6050000000001002c2ea745", "5163ab6a", 2, 1170477884, "b03aab6a42ab9decba24382cefe820756f48c2cf5c2f46bca92cbf5a14250315"], + ["cd8f921303c4dad4d613b4717e4203f5415d34c3f023385be041f7e893df639a0714f7def801000000030000ac38af1baf7c78816931b1ad12b7ecc1ccd7ed926407006c9a0815a937d42cc5b955063bf600000000035365acffffffffcd49f2d6d389b8b7ae9faea3f545d617aebb35adcfb0ea7b5d884dec17561f2900000000025300ffffffff040c95c5020000000003ab63650a253d020000000002526a07eac1050000000004acab0000e8bc2f000000000006ac536a65516300000000", "536552", 0, -362333300, "80157713c0658e7d044f591e3a3b77a5854612976e04e023d765129e1cc1b9ac"], + ["5235d5bc0224e4214eca668591e6b4e637c02cd00381a2093b335a5bd21bcc6d4c4042bd830100000000ffffffff49a0d8f1335d6c4372007c27eb202e6f97fccff27ffce60cc15f281ba87129b702000000026a5200aa80d30179cb60030000000009ab5151006aab006363e7020ec3", "51ac00ac6551ac", 1, -2015215108, "a8d3c0c7459924626fdbcd7506b0aa2557d49e193bd8bfad4fb839791a68715f"], + ["0bd905380419bc9563efc4afe96488a624a8d40eb64f8b4e36211ebf2abf37ca8e37707fe9020000000163ffffffffa55173abf341f02a3bdb47ec05c92eab89a9c7c176235feeafdaa3f58dd2d8d40200000001639f4f293062bd8be3aa1a0f9e4d2fe03a9e40577aebd3487dd2b451d956539a52cb1544910300000003635163fffffffffb2171b4c1aa2a145e5309c8f49225ef698825376e504e179fd491c19fd75b5e0300000009ab63515352005153acf79bab23044ae95f020000000009516a52ac52525363659c0603030000000007006552ab6a51ac5eb2840200000000005446d301000000000000000000", "", 0, -1524657328, "8b392de270505d82dfb2e76fe89e458f6b3dd5aff61a98252709fdc394072dde"], + ["19997df10441a73a5a7c9292a2b837d48d183c6103a6c2e289187db0d59a9e2babfe64113e030000000651ac5200ac63ffffffffb66f54da91c5a137564ebc9316a38f8766a59d26353d6a00dbd5370a57c75a55030000000165ffffffff016ae6b888a01a4585d11f3c0d72ea85cf2de2ad9c1865c13678286d094ed0ef02000000066500ac530052ffffffff71a47710d759ccb3dc1888136e20df5b0a968eca492d5896a838825decac0a4302000000050052ab5151ffffffff02718c13030000000003ab53635e593d01000000000800ac52ac00636aab00000000", "", 0, -231419500, "18e0f1cb0335252593a63de6caf4ccaebfee791035c5cb1e9324da5a199840a9"], + ["6c83d8a704e3ef888fd28e7736257ee4f401ae3cbc68f6bc9aeab1f42dd86c81caa4f6fa65020000000163fffffffff172ef0f81da0dbd8480fbc28425fc8180907afed7a682fa5eaad1625cb3e9c201000000025200abd006373645701be4db376482b6ba4f22a1bcaa810201794bda854f366a517c6304169b0200000008acabab65ab65656affffffff9e428b5a20a87c29551b4553246e9a6ac2726dd13c1217b0dcdb34522e970b950200000005ababac6a00ffffffff042cabb6040000000005ac65650063e21e47020000000000c187e80500000000066500acac5200a681cc0000000000035351ab4578e68f", "6a", 2, 1562480704, "c3d836c99e46d804082624c6ffd9fcba4f45f7482d037de3454589adaa5d7db7"], + ["80066e6c04b89dd7dfe0155cd2beb79ceee8f2c71fea250b811919853b2e917345c7f8f1990100000000ffffffffe11046ceb24f7275a84e78d5441db83fe981ffac0de511763be9c3a4d62fb7f2020000000865ab006a51655163989d73149c8fda1759bc7f48a238ccde3a8db412a08a8b264d57bd6925c831a6851f8063020000000200ab01f0c588219b8d9e0d46dd5ccb6067806af02ebd98b37db392cb2d82fa2225735c8d0f0b010000000651ac51655165ffffffff04158d0e020000000007ac630065ac005200cbe50000000000066365ac53ac656e3046050000000005abac6aacace6f61c000000000008ac525100630051657d182e66", "ac5252ac", 0, -564377265, "14eb7c01fd880383d269c9b6ed85ae5ea5f6d945388a67d9d153ca3ff69ae5ad"], + ["4310244e03ebd8d318d23fb9f3c8adb88b53723cf8909e7fd81c83bb77b6c802e30621760e0000000001abffffffff1f577889f829684f757add1337641f2afe8a3dcd07f939e18f764f170ebb26020300000003ab5253d49a4d59541a9ed549022d26d4b27b135864d758838ef5b3dd9a6bbc635e1720ab104aa50300000002ac00ffffffff04a66b16040000000001acc222750200000000085253535252525151aa707c01000000000152c859080100000000015100000000", "52ac51ab53", 1, -937029773, "cba820ddeebeaa6b73d7befa46753f80882c02cdf4ab96ec92f4337d75131059"], + ["81b8b41402eee4b5261d3bfef6dc5a4d7dcfee4d533534f896fda7e690974f8de47c9612c30000000005536a53535239b80c4b0921076ce05056826706025b183dc2ccbf82df06dd28879532187794b37f07b4030000000200ab977c631202740d3a020000000004ac656a53bea602050000000009526300ac6565536a53878080fb", "ab53acac516a6a", 0, 127602936, "5c17060bd51eb2ed5da38def687ef873e4dcd8864a557d6efd6c1faaaa63eb31"], + ["77326668023dd1813873639e047cd8663837e144c24e87869ee8ff01da65dbacd2a9fd1254030000000153ffffffff7d2696bcb711a175c9bb3980d4201942222ecc5c5683580ea91748bde085dc5b00000000090065ac6365ab656365ffffffff0471004c0200000000066a6551ac5351a49137010000000008656365656aab00ac358a5d030000000006abac53ac515338a97801000000000852ab6363006565acb9abf105", "526a5363", 0, -16648922, "2d7474e6bcd2de402afcb135cc60757a5e4e91faa06fed7381285ceda54732ed"], + ["afde7be2021724ec52809e2a2c537320a4add24a3cb5168cf93294373d44499588c652c17d03000000040063abac3910ad5c169562a887a00d188a2ef1fe32db3c1015a4e5beb3b783b0ff4f2e52057517640200000005ab51ab51ab4483d1340363dc49040000000001633b0347050000000002abac85b1bc010000000001ac00000000", "635165656a00acac6a", 1, 1480789114, "8b252fd20e7d80984baf31faf01664ff99df920bb39fb384b1ecebfc7711c7e1"], + ["a34443a30319c37d6029f99e7663c7a470e50d50b9baa6ae11df340c771ce53e0d99c1a8e50300000008000065ac535252acffffffff2fec1e391a65ab41008f822513cca74dba79ee01eaca5444e0c752a18d5460a100000000046a6a5353ffffffff5e39f3722981132f6a927a77390b3601f2a23c13fe4180e017ed17398f5ff1960100000003ab5152ed8a595d0325097505000000000963ab65006563ab535109dcbd01000000000030d9da010000000005516a51535200000000", "abacab5151516aac53", 2, 67870304, "2f6fea4f57ddcec774dcf6d2dd44da6d8b360242b5351d61625284444c49a537"], + ["247bd7ad01ef5f71f9b32bfe947ea38e5a3403303c261fc997e8e73db447f483151ad12e9d030000000852ab536a51ab5165b1fcb98902dceada04000000000363ac65c3293203000000000365655200000000", "abac", 0, 1483435430, "ad0c83d63a3ff1776916c1215ee976806719b58e888cab042408a3c95e3be11f"], + ["c23f087704864659fb58dd342b7d8865a88706844a64114c5eb4eae270b2dab3cd4ad8dd730000000009656a63526563ab535292efcf854ccbe1f087538fb6454d4193c177bb4a8c55bf203a141b8d9c4a5779378306a202000000065165526a6aab9dd5204220ea16d2f2477ee02905ee83b942ac64db7d091f054a56d063304e29a7d59b4d020000000200abb106db90071e3aecf2489357eeed01c3db3b19c9914f3ff9c2eb1da4a234ee0630036986010000000700ab53006553acffffffff013293ba030000000008ac656aab5300656abe833085", "ac5252abab63535263", 3, 755186809, "9307553129cd116f49531f102241a9354abc72a32efe35dc9dcd073cf1b9e945"], + ["83a8f5b801dfa7d4ea67af73275ea652fabc70e23fc96aa3827fe49e08e6bc7c223a058db1020000000151ffffffff0143001f020000000006516365ac53acba929765", "656a", 0, -756837497, "d1d716b7d77a05698f09a3ff0628d21060068b32f49ebfe72b3f8c673472d1a5"], + ["83e97b02021550532f9c3761c47d5080704fa6f007805c6c885f0ad6403a868261c6a718ce01000000076aacac635165abffffffffcd9c4bc7506b228d432ae8a80bc2e8aa350d9a86773ff3c3d445f065ffea983c0300000006acab52ac510069e5fb6c01c929b104000000000663515200ab5292504870", "6aab006500536aac63", 0, 1849529674, "59dd6365f32f85bab86cd48a1fc33c51ef240b78fdea114cf2cdbc96a29c1a34"], + ["78cffbe7015bf2602274e0995553b432c48690503504779ad09bb20d0578cd8d9c88e0738c030000000452516353ce635819029ceb29010000000009ac656a5100ac51536327cbee0500000000046553636500000000", "6a65ac", 0, -1960619182, "2ebaab3801c963f5b48ce6424eac65a51a6463d58bff3f2e990725006233db3e"], + ["f64983cf02314fc8fb86744809f29e7e843fd1da7a681d692ef9547d5383662570dc36be530200000003ac5265ffffffff90dfe2f5a68010bcf71f68497dc1de774c3aff5afbe17956bcc17dddfcbec0620300000006636a00ab005226835af4025c8a0c0300000000076a53acacac53537b706e04000000000951ac5100635100635300000000", "", 1, -537348900, "18ca003b49e729f14ce723714d268480f81fcc989ac0d8863f40c3810a9452d9"], + ["567eb9eb03fbe5e8cc74a050df0ef569e9e513e130d34bb9b5dc52dfcde8088d0af470b2fa0000000002516affffffff92f33ae896cc0cc33bacbd9973d2951f69f6f71284c38e6d8705d83462ea8313030000000663516551516affffffff90cd9ee758ba9f7c9759b1a6ca9955d44657aba49d701ed7765333379e4150060100000005535363ab65072802f103dfbafd0200000000095353636aab536a6552852b910300000000035263ac6ff117050000000002635300000000", "005252525363ac53ac", 2, -504192381, "ab431d1ce70b104eb31838372e9784bed2d3ab535e012dbb3687bb75c5859a99"], + ["a5466c06019f0a751a966e5ef2a8e621610eabc18c51c826818c5f5ff78ab81df7d93f49a80100000004006a5200ffffffff02149c310200000000025352eb593200000000000000000000", "6352656363ac63", 0, 1686947016, "2593b7a7005b7a31c82cc7e638ca936798beb69d80a860410ab203b82a375b6f"], + ["0ab2f1cd0204857c8ad6bd72cac33ae6955721cb230ba65da16d5068d8ab48567812b2f823020000000165bf232268f70914e03633f2658b1d5e1e8a56c95f14bab87a6e79162554c43f628c177e5f0200000002536affffffff03e11f910300000000076552516a00ac65814de2050000000005ab65acac658bc0e905000000000252ac00000000", "51536563ac", 1, -810756047, "d756a5ea54b248b8d778a15a59198e0e47ade180cd8bc2e2c3334dee74057bbf"], + ["7ea257230325fbb5155da4467ceb27a01b5f1020000131d2009f060a764d3ed91477e05c460000000002ac65260915c935c6941652ccacec1b41c99048cf4a23a93684da031b183565dea3a8d26afeb70100000004000000ac1eb4dba78f59b5ff021a53ccff989bb361cd902219a067bf910e9b43818db9132eebeed401000000070000ac65ab650025573095034f5c22010000000001ab7324a303000000000152069c96010000000003525300d3478658", "53005351536a5353", 2, -1850088693, "20a186f198d112bc8a4815971cd90024a95b251d529ee7a8ffd972a234d6c3c9"], + ["f77df898042733132e447549ba378892ae4b7726c873317547e8bffaf4769532e04d54d41f0100000008536a00005351ac53805be68d22970fb72e7821fe387f8124698da35c732367cd45bbc4ab04d8e6339705b3b40200000001acfbce6147b4c82a6d00df85398a4a10d1d5192cfe9be4ac6fea2d35c632be2a37227a668c0300000005536a65ab65ffffffff81c58d9bdca7c2ae29797f6d3e56cf50e7c2010a75a67f7eb2e4e7ffdaf4e8ed00000000016a18beed13040edefe010000000005ab5263006a7c88eb0000000000009e1b21020000000007005365ac6a52ac4cac9a0200000000046a6a536a00000000", "51", 2, 641783348, "48390696c4e0f13983bbcfea2f1818e3713ade7d27cff6c803bec9c181415715"], + ["d30f39e102d4c341379a39943f9203229549275c3e82f853f893f3a3ff2dc07254e87630b4020000000652ac6551ab532deb3b955431b6e241a648a19fdf57ad6a21cd2dbd900b9d832b5ebf99725ae53979b6cd0100000005ac00536a6a33d7cd77019b699201000000000665655153526500000000", "0000ab52655265636a", 0, 349924594, "a984fc372c481734b334217312b66e339a5f25555a3dcdd66bb53098872894be"], + ["a212c0c3017b886f46106282239c3723e6b47c1d51ded999aae83db4cf230862ffe4dfd710010000000451ac52537fe201590134b0e20200000000065152655163004df88c2f", "6352ab6563ab655265", 0, -1240857885, "92168e863c07b6b8020bc26ea237d1ef672b04a957cc0e153c9132995bc21b5d"], + ["70bb0ca502e14ce2a1db88bb364493f1fc5e68e14f215ea341b25422dd313381398960504f000000000863536353ac5352654231612ab0d7a83395bdd0d76119d241c3a7d2f0a5f0b1efa34ff282007d8082a9181ef10300000002ac655684ef2a043e62640300000000015267149c0500000000056300005363ef59ae0000000000001e83b3050000000001515df7a110", "65", 1, 945485660, "3a37c7cb8a6d8e9a69b558108fb716ed33ec6f2cdae16534ad8558d3fba5a836"], + ["8acf7bf1042aa31952fac45ed3b24bec0feefe60c1964d7ef7ac6c0e9ca18a1806dfee697303000000040000ac63985118d1f271f7e694976b97ce7364cbe333239125ea8730f6ac749b3fd39d6ae459d6690200000007ab63656aab00514f1a1cba688434624e973ff1aaa5754c497f58884fdd3c4b3eb3061dcb8566803bc83bed010000000265aca1499591228cf02e1fc7241af211b21a696ef3cd63c11a35c9cb5e73501ed0f68e53077b0300000000ffffffff0255ab0a010000000009ab536365526a5365ac75cd31000000000009ac5200655265ac636500000000", "6500acac6a6a6aac", 2, 1644798996, "9704cec852097d9cbb8db1d1aaf8acb7bd8cd27b46ae518901c5ec69ad934c58"], + ["c6f195d3046ee126c51e36fb692653686d2bd4af543b294d54425cc70a4e2f2c762365ca17000000000163ab4e27e631906283c51d499f8fbd6dd6fd19400742151530c5dddbd0ef8e0eb6af01e3790100000007516a00636a6300f02850a407ac8218735343ba9e500026840f23eeafd5fb7b4f54e6215ba24b10b3651cb600000000020065ffffffff78e52be97b0c50fd1705222fbc2c7b7077f4da51fcabfc68e231f88acba3f8500200000006ac00006563abffffffff02768a6805000000000200ac24771f0200000000035351005c8e40aa", "ab53ab51", 1, 665647540, "5142403ae9101a50e41b99183917f5ab2351e1084db9dbb42b4666f7cf4be494"], + ["8a024ddd0344d2305935cfc770301186256dc5e4d7c7aa5abf583b87eff84d427d7200ce4a00000000066365005251525e5bf32d0b95aabad88fd9cedd83edc66aa09f802e65b1913b90fe78ebf9426478f0274302000000086a5352abab6aac63bdc64a9bd57740195756449870a19288a6084e7dafdc02168ec2465a9c2db7ce490546890000000001acffffffff02b0a20e010000000000f2003e0400000000096a6aab006a526a6aab00000000", "5153526500", 0, -728462456, "888d66bce9997e2e43b4f424759446266a977b3e7efc171c5c8edda40b79aee9"], + ["2cd42a7e0297ad3ac6fed46d4ff74a3c1009bbdddf68d75ab22115eb4e57a2c35b0000ed800300000006ab65536a63632596cce2dd0fcaec4f25b9ecec32c1284378043a7b32238f84dbdb3f3566e44847f7cbed000000000453516565ffffffff04d57e280500000000025251899b130500000000016a147581040000000006630052535151cc513c03000000000700656552ac6a00dfc412d1", "526aab5363ab516a", 1, -1902652323, "93ca7a084e02da1dafcb6676d00c53e56821892aea0712415d018da0cb6e8162"], + ["e00b06570235f5a41c42590ab417d7eb1fa4ea93a2f7aa2494daa4641224511b1e1af0c4fc03000000036a6563b5fcf262634aabcbe2a48fe5b8145d72cb3c138fdc7f49bab883b2ca8ac3f6e16cf933c80100000000ffffffff0166d17a050000000007abac536aac536a00000000", "00", 0, -1172607444, "0123e78c84c2888d12f0f6ee0f38ca01ad52a304f0453c04dce4acfebd973b0d"], + ["b6af122501fae3def63823ad7a322c17c30310c9844bda0463dd7d629f0cb802e1d4132d710000000009ac53ac536aac53ab5188610fa601c4109802000000000000000000", "ac51ab6a5252ac6a52", 0, -495736195, "434d09643330a9fc9fe4db00a8cf4b290531d6321213d3723ec6ef2561f8db49"], + ["d41732ce030f5b912e23fcdf40a0c40971396f0d67cc5d53ecb78af14fe514aa611bd05d4a0100000000ffffffff68484e0e876e26d5794a89d360b8c912e57fbe6c1ce69b9e9c458391350b9e2e03000000095351ac005251ac00656ffc546957632ee1bc536e61ffaee71ee069e0615a1ec52a7f2ba42b41cdfdc5991984e40100000006ac6563526a51ffffffff01dc834a030000000001650c271d75", "0063", 0, -1649073549, "eb163b66e1f728aab11668cdbeb3376b7981496d5ec005b11ab7f6fb4e244006"], + ["ebc9926e04aa2444b5c7dfbb078ad0d741d66f182ac1964bd04a7934908fafb6eaac97c04e0300000004005252000fe3d96866b4733f3756bdccd86cc55a2f9193f48a0f2392c7d8658a2ac5dae243c8486a0100000001abffffffff92545c0387996fb47056d67965617f45cf5cf50b8325b624102e24db1887cb2c0100000004ab515253b4ebc91c79640b07b38db76c416652db8671f0484bd737af7c89032eed5c2e99dd79027e0300000009656a6a6363516551acffffffff04badefc00000000000763656a0065ac528fe3ad000000000008ac65510052516351c6784602000000000463656500f42b150400000000056aab6500520a68ee66", "63acab51ac", 2, 1868751267, "eda4cbcbe3e6692f61816f65ba7fad1c81a7a355147182c6aed9a6b0e7840978"], + ["981cb40302abbc60e004443cbdc4d852011a181bc953df039a925a6db7137b2c779b9769a60200000006ac656a65ac0078803e844d237acb70570f212fb1ac3bf1e512f7efb12cb3fd517ecc08c9bb172233c5ca000000000400510051fefc7a45024bdf2f050000000007515352525253abfc9dd2020000000000522c5b85", "656aab536552", 1, -696592228, "a893e6c7b1f1de2b4c923a2959a0669766a6a23501831d116bbe441f2de76a1f"], + ["50b230970220b0ae8c0ae83154df3e61d9a5fa2c0321fdf608bae458a6c5b4cd7788f92acc00000000010002ffc955a0e03b519a5411100ae697b56c0811d22e5f0808e5d217ce353a74db7706bbfc0100000008ac52525300525251ffffffff0335edc9020000000000617dc904000000000652acab6365527f727901000000000765525252525365c18aa2cf", "5153acac636a", 0, -1588717976, "7ffd1bd49f8ea441f5266b8803c9ffc6c48aa26fc3c9e99528297e308e8cc94d"], + ["0e86ef7b0427c03221d9a6a5bad499ebe10996d10373d41e5f5ed299f50d78cb770bbf5aa30000000007abab6a6a525163ffffffff044e489ef1951cff9c932fef731aeb5444df58d7bdf60244b43d68fab56b00ce010000000600abac6a0063ffffffffe5f7465b2d4874c4cf1d5d4eb5c71191b515e43b3d59f0497b995f0774cd7f1f0100000009510051635153ab5265c4fdb1d5c690726b99548de91e64891591b918b9f2848baf9e875d2cd37312be5252de2202000000026553ffffffff033f66210400000000095252acab00005153515f65b7040000000005ab51636363d03723010000000007ac5100abab005100000000", "6a516a51acabab", 1, 2130428804, "fbfde170e6cdfe8ca1825d30d161f73633c468e62298168bbde0b81810e44fca"], + ["75fc6e9e04c8be50aba3e0a60ce71f1cbb7e26c956bbf6bacafd33cc60fefaefef68cd9230010000000952655100ac00006aab839bd3b5c6bd001f3b77df66df909f3fe59324eecc3eb8a05186d32b0f372825aad54f700300000004ab5353ac4bc31782e0b077bd8d46e115ad93be1d72c1bdd029241ce705d586cbf7b112b15e42483103000000070053acac6351acffffffffdb1f08814ed248ebe71d3635ac5f0e29294c80c0add4a4fa97b1914b55f40ea20100000009ac5265656a53525165808747b20185f752040000000002656500000000", "ab53", 2, 166337136, "6e9b64b3f116cfb7f6bbcf08f2689118cdbb696d50f091e27baef8c911b2ffb8"], + ["06d1eee302947c42c09a3cbdf3836dbe3c310fc31563fe288c310c271cf64843f08484b2c0030000000553ac63ac00ffffffffe65fea0d9e6d762861d8077c68eb634191847d69e28ce8a739b16f103ce717a40300000006abab53ac6353ffffffff026b9dc903000000000017de1800000000000551ab51006a5c1fc3c4", "6552acac52ab5352ac", 1, -2147146882, "7ac358c794bd04caabacec83da7ae700e1b3b71305b210b33704ae6e28fa581e"], + ["bef50c73035f164bef1085ba83e3e2b0a6fd31a203a09fe5cb6256b31b2cda967cc1c9ce190300000006ab000051ab005efd75befbefa4ea12200c561a4b9923bc56c6f2e6f18e2c52f20c7aadeea4fd9e396203020000000863515300ab52656affffffff61b5a0af9021dbe327a21c27b149107a5b1f7f8b3c283d898c01a930738405ee010000000963006a6553ab53acacb568a88e04ef9432030000000007006aacacacab5306236a02000000000163afb36c0500000000086552ac5151656a51cf5c170000000000000051d6fb", "53acac53", 0, 235024937, "511a1b470487b9ad7dfbba309e8b7d345e078e2b77f7c998259e3eb90c8e2b86"], + ["d9517d2a01fd96a85582149bd4c7afc362b51160ce53fcfc7eae226cc88e7a415b4cfdb13b02000000066352516aabacffffffff02c81e490500000000046a6aabac86afca0000000000030053ab00000000", "00ab0063ab006a65ab", 0, 531156938, "7a8373a7ce8e0119105ee61fa7289cca6cafbf7b242811945a800cb9d1881668"], + ["4bbcb4910420342ac5d501a0c96748658cc1ab438c0ee8d13f1d38d079b8b3b4ac95e726400200000009510053ab5200acac00579fb097f96d4d3b9157e0491f2642156b1393f5fc45d3575dc76a73c3091cf36e73f09901000000095300ab5252acac63ac486dcb68218d9d9aef57d3b04b56d2689b5733e7f4659fc31719737a0238696cf844a86603000000086a6aac526a516a00ffffffffb3c4b1abd5bb931ef4e4f811632f119f62cca649feeaea8967abb6964a5c01690000000004ab6a00ab9e93c51602bbc84201000000000000f65e0400000000046a00005300000000", "ac", 3, -457768943, "b8e5e0cec8fbe6e8738311c107b686c2d1b5fb98c89b97c1271902c2a49c4993"], + ["f39cd4dd033beba1cbd3f05f0bec7b59121e11c34d33245ff6b2b6bde944f69e9b40b31260000000000452006352ffffffff1594206dea4ec6533e77e0a552d4671b61e48ee47cb923a2145a0ca3224a27440100000008ac53635100656a657e0157169a067478c6b1cca94cb06175d7d5ac927bbc32a7933890fde570f5245a9d935a030000000253ac1f60f76704c625e50300000000036a51635aae0d05000000000352ac632d1ce6010000000001ab84904d0300000000025200c407affb", "6a656a6a6553abac", 0, -1074696571, "1e641cee60cbb5df15ae8426e7d9f852a6bf0b7ccfc786e9dd4d9720fd578c2f"], + ["e3a128a80247a5b0f441af2618cfeeeddf248a6466417869c76fd747ec9417ec032b9dfd80000000000163ffffffffb4181f3cd484e1198f97599f154102457db35b2fda9b359156f5cb00fb1f606602000000036500ab59a026ba046486b002000000000014dfc40400000000066552ac65abac8a0be704000000000651ab52ababac1e09c6030000000004005351ac17a9aac8", "ab000053006a6a6352", 1, 1089478126, "ba008aa73ce86abd486223a3e60de84b7d500660802018238bb8d78998c095c7"], + ["3b7015db02108a2e659ddfdc31de336c5ad60447254c3b83e26de669dd6c352e1d143652f0030000000251ababe1c959421c45fdc6b8f7656cf0a858508940cbdb23a3a15eaf1693368a07670db9137503000000036a516550b9401604dbc88a010000000000a0b10a030000000002006301e69205000000000551516363ac627bf6020000000008ab5153636a65536300000000", "", 1, 495914768, "76744576c02754bca436978d07921ab221dd15cb8e3d463c0c7d9c5e3209447f"], + ["ddcfca6a044a9c4793235d42b7ad2644e235e03bc9d25435ae80d3febf8080463b11aad2f5010000000663ac53530053ffffffffc1dd13bb774136a317f51a893bc4baf9b345fa7619438d4f8808770bf85b813000000000086553526a52636300f28ec9b146192bd216aaee9c845cdbb3744b0fc8476e9f533a6756b2748c5a53f20d42400100000006510052656a6affffffffb311f6a17f1e9ed08c78ef7d8e9a0abefac49921ff19eafb1c23d87ceec9957b0300000005ab536a5153ffffffff02031cfb020000000006515252536565fbf49b050000000002650000000000", "6aab51655252ac", 2, -1551272205, "31ef6b9fc8c37e25b642300be74dbc222510ba8bac3614a54fff370cd8fe6222"], + ["edcd6fb3032037815d167d0762e91fff823e442217a0a0c02df542d4fed4df2d0dc59b7f8301000000096a00536363536a52520427db23188546f80271c43a4c3e93a139bb4442dd9cf165bf82ad37f4cdc9d7ecf17dd4000000000452635252bd872e479d283d1844bf86454168e3c687392d55c584a83f075d1e9eca61705d42d688fe0300000005acac5252accb0aeff1041e93d70300000000066a63ac63abac133ffb040000000002acacb80de50000000000096a53ac525153006a654ce8fc020000000002abac00000000", "6a536a", 0, 1496112435, "434d1c76fb689b69325996c1ef470ce0c841c0d95c8447e59113fc77ddeef0ee"], + ["4fc6c9a3019a62c59134409cbc71cb5e295bd310d2bab9185ee5ad571364753e085082c475010000000152ffffffff04025486040000000003655251d5c90501000000000452006aacf065150200000000055251abac6ae1fb24000000000007ab5200516aac0000000000", "63", 0, 490050437, "b0442e810253cce8a9065cb96f3134878ff5d008c0f19da07c5f28fe1edb3975"], + ["964cb21001ac890ebbabaad64e8c5395325655dbde4c58b0d1c36545d0619ff3f25a20000301000000026353bff17d2c04aae40e010000000000dc4b1802000000000751ac52ab00acac040c9504000000000563acab65ab673e0c00000000000565ab5365537f08db99", "6500ab5265", 0, 1760289536, "f7d1bb9dd6f5f6982bd7005ed6202fbddcbb817139c88c5dcf79da0eb5c468c3"], + ["92eb30e80368a2516c2503aec2e69c9513f6903953729767ac66dc5059132036e9e45794b10200000004656a6a52e45e0b2638edd527f6871ef3215a27339c1e44a9ad3cf9b0d55bdb8cb21638e4a9eed87e01000000046365acabef2ef9defe7c1da8fb78020d5b8929dc9bd8db130cacc6ac07a829cea02b5463ab064f2e0100000007ac6a6500ab53ac72392f31034506d1020000000009ab5151536500ac63abb4bae5040000000007ab6563656a6a00908d0a02000000000352ab6a00000000", "5251", 2, 459484055, "aae7905f128aec1b789b04f08a881fa74b4afe4138f0c0d90e30a8e91fcbd7d0"], + ["c58355b004d2145c4a7c4a7bde4c4a7c7df96fef6bd331dff6ece9ab324023f1f86b79f4250000000004005151ac75617015ae9a5c31730f1e2f76a09cc6756d07bbbbca9ca8991d06128988ec7b9b945d150000000004ac516aabffffffff878e63cff85254646bd9a00f4790320c9e1a34648e4472b3e001cd6c8c577d900100000008ac00ab00ac005300b4a66261998f4e45246e34f14c5bfc89f6d5d19c2594c2d84a959c461cbc857d5b1426210200000005515151ab63ffffffff01cb756d010000000002abac00000000", "526a", 1, 1271517815, "5f59b2f6230301e28c731fc9a9fc45397ac15a8eb999c1f34615fadce4c60e76"], + ["08299f8e0268205473146411cd694eb0942fe978876516216b27c856de56b3ca9a751857210000000000ffffffff7a3032192a04bc1f5abfed2177911e74c8e24070f4ea1e8c12901c437944f57400000000075200ab52acac529764f17e03397c99010000000009516a63acac6aacac637ad76a000000000007abac51536563ac26947e0000000000015200000000", "", 1, 1437815428, "e7125e4fb5e854b5718504e87fa795c5d8f75fcc08eff4b965318f7f276bf472"], + ["f8a82dcd04c7d2fbe6e8d1e4c2f9ce99f3e45210290e12a396d0fcf8441d62c7d3efd73b4d0300000001acffffffff627824507a63d5c3f1d83789c85a5dfea4a2584662e1f043585dc57364498bfd0200000003ab5265ffffffff06547f4c10c70c6cb9914aba67c833edf83fb34212f2627ff5edef1c8a8aa93b020000000651abab5252007a3158046d3f8853487e8e8ce11c3ebf3d511818e610f63a00d0a1855b4296f59fea6e180100000002acacc0c8d9ad044c408302000000000465ab0052b3c6d5000000000000b43ccb02000000000963ab51ab5151ac6a65ff3d510200000000016300000000", "ab6aab536363", 1, 1083697987, "99d3864be2df00db2ef470346e9992833ffdfdce1929fe277cb06b036896dd18"], + ["550b7fc50459d858a8128963b9b188abd32a73389bd5f3d055e5662ca1838099668d19729300000000030052abfc17b1d3ebb8b8af02f177afdff5728d872ef2780ef0ba50bf60bd8fa6b4f135f57140c902000000096a526500636a000063ffffffffbf0271843c8c83679a11d2bf3328a4e1746b40a01830da1b0817f3921829cd140100000001acffffffffed94324cc499b7d4505b9a43e7da707a42dd1ad99ae7923f5a59528bd9e53d8e010000000565ab6565abcf5271fd02e445cf050000000008ab6aab53ac635300001c760000000000026551b1d38c56", "6a00", 0, 808351614, "5c1d2b4d15a0adb1105e3e3d8f9d9f4a3e83aadd3ebd99a034c68e3070803526"], + ["3c190e0104311b26f4f3d81413942bc8246a9ca7c8cdaaa4247103cd7cbf89f120e5e4b77d0300000008005152ab5353ac6affffffff5d128288069672de1d542f975738064dff951a1d0490e106298243bf71fcfa2602000000040053abacffffffffcc83e387747be1ecfa7e172238212c68f0356607ba32cb4ea5388a8181bff98e0000000003acac51ffffffff59ed65132c456a5242191b7f49435b35480f69c8d7858e009a8cd1901ec1f8fa010000000165ffffffff021d6887010000000002acac14b2a00200000000026563a79d0563", "516a51", 2, -1574365388, "883754201b53f73eb2ad4cc792cbec678e5571159a97e98a551bd9504f32f6ed"], + ["532663790105a443eb2722268b8ee1a58c5a41c94845d0a2bd5c6428e58cc8783e29adc94b010000000763526352636563ffffffff02cb5be9040000000008536a6551536aac6a1630f1000000000002636a00000000", "", 0, 1229452413, "80a21837fd2d2972002f6c8b2250690020d4b8c33ed209c74fcfa2a90e707e7c"], + ["204722ad0269b6ea6d429f34825ed167e076522d40c70873c4286707d3f526dc8ab548124a02000000009695ce76c73204e84ddee4f8716a42542186de8ce095a619c0669ca3a2b350c998d9ea9d01000000036563abffffffff0302aa3204000000000353ab53f38a00020000000007acac52536551006c81c1050000000000bc38adb4", "ac6a6aacab53", 0, -1645115737, "2681c50d30b10ccd109e6d816a44a97d4372f433ea95915c577d50f654e35e1f"], + ["82dce2de01f0f70222a92d35473c97cca3a06ef248e1c147fe44b8447baadbb74e4bf2808f0100000000ffffffff011a0c5801000000000953536a00515351ab65848576d2", "", 0, -1003089181, "98b7af3fed5f8b1c7e0f279f521b094bc245b220349dc8062c3037e1d6d74b03"], + ["22e322c604bd09b488132b7a8ce3bf8b065e16a2eb25f2ab1c6425e655440c4903c9384c9b02000000056500ab53acffffffff97a677792a2f578568ae4181a30cc8426f467c63a4a57f8bc9941969b0cee6b5030000000765006a5165ab65ffffffffb38f7e5c8986eb9b67290bcb1b052853326c414d32be4d41a83c9648ca0bc4530100000005005251ab63ffffffffced338c08e8ee02556788ac99612c4f3556065772cae61489de678a664af5bc00100000002536affffffff047890d700000000000153e3cbcb02000000000900abac5163656500535333e10200000000096365ac636565ac6a5394446304000000000700ab5365ac516a6bf3bf47", "ab51", 0, -958380932, "21bd3a6dd35fc49883747962b74af457847a65486dd89e396b1205bf25d3f1f0"], + ["88f6f07104c41c139ac58229704fe319486d3d42af88be1251b7d482aee41559ccc1e03924020000000553636a000050fe6084b45eb0af540c8f4c8a776e96ff7d18f561aa944feef56c6f488bf96c647aed96020000000152ffffffff11b0e85035e9cadb2c93df72539f6915833488658501d5924e719cee9998eafa010000000351abacffffffff6f064a00180a47680adf37429b1c65f36e2de9248c86de890ed3752d6b6edf0b0000000008acac65516a6a6a51ffffffff020354ac040000000008656a005353ab535328aeb8020000000005000051536a00000000", "51635353acac005100", 0, 260003540, "fb8684f5796b332e4aea1cd8c4749e60d6eb61495de2a3d9d76ff35d11482253"], + ["6b745bb4031200a4817ffebded655c332a8958f501f7dcd81f0a774f9f086b90bafab7bf52030000000853acacab6a6a655135cc423317b402062bbb1eefc65668c742c7d099ab6c0104b8bb86b2e981e0331be1d97003000000008ae09842f7d7d0106e80d76c906398897ae6d5d4de59af6b598c93b01df1948caccf34810300000001ab280704b901991242030000000006006a00ab526a00000000", "", 1, 1511627831, "aed567c822031f2138a2a3404fac40a0eeb3753fe080b7432e782d64ca6cd180"], + ["fd1c81e6011fd0c7444d61e6044f27a11b627d19574fcbd829df298758e3aab01ab1ea40e10100000000a2bfaa1104401269050000000000353ff5000000000002525355834b0200000000025252ab61120000000000016a00000000", "", 0, 765760647, "bbbe927cab7929738864cc654778d437948d7844afbfd8124565b1ad28063f56"], + ["ceeee90904a86e6a3ad0b99b7efd6063fea7a496130bec8b6f7b87774217d746c4101c975402000000036351631bbb567eaacb11f788dd82297dc75a6e7ff078270f897e674194c09fed70f3562c402a230000000008ac6a5263636363ab6616d962f49677d9ee10b122d53b7e2a80e780614e1f672d3491d29f444a1b37ec7471d500000000065252acac000003099b81a66f8cdb6905fc7ea1e3f61376973bd5db213d49e59f6c6372e35c207f2678f2010000000465535300ffffffff0131274f0400000000016300000000", "535200", 1, -937873087, "b4b847c477a5b646897233b8f25089eee407747158f8b521b0e9dd9b33910047"], + ["91f79999041155455ddba57f3999d5a1445d8c728df3a25add32211ceb9538ed94abffe5e2020000000353ab53ffffffffa7a8cc85499ff1ab940bb160b09178484c937ecfec9e1d723b241afb9c7adf000100000005ab516552ab6ee155139b6d902f481160db5503476ac85cd43ee1cb28ff2d941b0fe9c6355429737e6100000000066300abab6552cad5fb7769ae81f0632ad402743adae108b32a6971d87b84a35801893c26eb0b52abb06702000000095200ab526563ab6a63ffffffff03e2e19c020000000005ab00650051704c0205000000000900acac51ac51ac00abfab48c0400000000056a0063535112351ef6", "00ac5365ab6552", 0, -482138264, "399337dabb387bd1fca77e9cdc66cbc63aa6f728ce75a2ad388b2fdd4867fb41"], + ["12c546b00244305f1286c558e4243b6ab3255bffd2a7e535b22523b674062f401972a55c0f02000000066aab6a656a53fc92da53b2c348fdd1ac31d5384bf9a199e8593085fd228918015eed543c42399891b0fc02000000045152526affffffff0125ea3e000000000007515251acab6aac2640d0be", "5352", 1, -650813791, "00e7c9dbe766a268a8b137bdda997805db896b826672dc86a3a8752f66e4651b"], + ["b059cc21012dae5a75c56e3745736f36a8653d88bbefabb5a67b4d80f08ecb5d3c51efd0680300000002515307bfe8c00303cab6020000000001ab69c4b403000000000363ac001d1cfc0100000000036a656500000000", "5352abacac51ac", 0, 342936123, "565db01b220392549978711bddf4ac408dbaa04f9c3b6eec3193d80bbef7d788"], + ["4ef692d5028205d89e7bac7b10588d72abf28441d0b96812336aac71603f527e2b7c823bb6010000000451656a6affffffffd7d169ea4ab421f4b21695be1741e6788c8d5b24ae03d6e32cfbae3b38b2ebc90300000000ffffffff01f1f38e02000000000465535253709cfeee", "65650053636563006a", 1, 1615119859, "a636cd6125d6970c011e658d278720aa13448e9f36677760ac52ffbddcd3b9e3"], + ["2e8d247e02912eada3cf00ff1278163cdfd8cf063a515e6fd7c2828d3fe181a9024a25c6cb00000000086aacab515353ac006ef17ab75eb51528848964c89b743dcaaddbdd0cdecd48cdea0d241629250cde22620b950100000006ac63acacac00bbe23ee3019d5c8105000000000552ac6aac5100000000", "ab530065636352", 1, 583819542, "7b78fa13904f08f16407d0fb9393b3264f8fb059ca0f9d94ca2db8468fdab434"], + ["de3c6f35012b47fac1ac7cded9864ab52ac88cf068485f79634ddaca79027027e69a8a1497010000000151ffffffff02b36f70040000000003ab6300e99d50000000000002005200000000", "5352ac6552ab53", 0, 653187858, "f599422a85d9ac14b8c0745093fc12ed96dfd1b7c072a51ab22ceeedbdc598a6"], + ["e01c7b5604c8d28720ceae04eb1293a3003a48743062f30fe98f2924fe7837053027549d430300000007acab6353536565dcb5bfd0a4269d856b1616e50fcbf927a2d8b12a2c4ebe04fbcb4ea199460f27bf817dca03000000056a6aac63518f9c1cfd4171a0ebc37a111c99e48e03a744e11a3ca7deac7584b1158bc0da71e5f3b2c70000000005ac5153acabffffffff8333f2e86f6c500a12a41678de452a1176f964e87c79e85038f14935f772c40c0200000004ab5353abffffffff04f51f9b0000000000008c8432010000000002ac63b067860000000000066365ababac6a6ffb7d00000000000000000000", "ab6563ab516aac00", 0, -2119488633, "5736fed4454201344a7bd72f31737bb0ee19f9c67f6ea56194a684e24c83f8b3"], + ["270df0d702cbb51e64c028cb6202aad1ea3519e59876811455894323b3bed4f119009da7170000000004ab520000ffffffff93320a58c554e7b8f53e6169a58ba88a9ef05bf50ea9edb291e69bc11798a5450200000001ab6f1f89840201dcfa04000000000453535263fc4335030000000007ac65656a5353ab00000000", "65", 0, -1119599519, "b5c2e4750540ed547314737d4c588835a5fd3e944dcd90ebc606a4c5b16b6bb9"], + ["ead2fafc02b02fc4c7544d8e3d9ac8ba5d4776b78a0b1a69c4a5410e840524030fbb0a636d0100000008516351ac526aab52ffffffff07da552c6c9a34ed42d5cb4e285cc0d615d8250750e30f6571167f888d69fa7102000000095151655365ab6552abffffffff0142a28a0200000000035363516b738c5b", "6a5163", 1, 1956166093, "0313cec31d80397547ba407b71ea4b65cd5cbc274fffb9c63886dcd0ae421e80"], + ["cbff6b22026c5899da896414bb7f7fa8b63bd9c4453540034a485349608506c8050eca31dc03000000045365006a4f7cc2d685909af9d92c755b2e4cb1f217f1624e144ac1478287532b1216e081a04d4a97010000000251655bc7a92a031792bf040000000006ab63636a5352d3ed160000000000046a6a52526cf3a10000000000003c863d7a", "6a5251ab", 1, -1335114996, "5314aa58d4b1b730a3598c2bd123f333799da31d0d2cd80077dbf136f964e78b"], + ["a4aea1f603d7635d4173ae865a793e98c8832e2a02030c3ad589dd8e2f0c87f573a846389d0300000008ac006aab0065535167473425be8921f02ca42bdfd3cd22c483150db5feb9d5fbf0c36a46bbf20d356cb7633d0200000003ab6a53ffffffff5fdaddafd957bfdd606add2235d70e0484388cc9851a372adcc6001c12fc2ba1020000000951abab0065acac52acffffffff02651754050000000002520022fd5504000000000552ab65526500000000", "635165ababab6a6a6a", 2, 1642630273, "d511aa85b32d4a28bd22c542091a8cbd6340a0d014880840d4be9fe040f28a3d"], + ["765ae2740203c2c5a7d5a3b2ba65e67a9edf63d1502d4dc967f4b9d3d38192aa6760025d5e0300000006acab0053656564375e138bec58b40e68520dd7df6d20b7a1cc55458f3dbfab3556d41623e5951d79e4a80300000002ab51998a7e0003594a480200000000080000536565656351a26471020000000004ac00acac20f35b03000000000000000000", "5352ab65ab5200", 1, 91528625, "58a6a4ab2a602b7ad3e7f8cc39a97bc3b44373adfee85308285c12790e4bfad3"], + ["e9aab50c0104caa8ca2c6c6f1fea82ee46781c4dfb3eb4a7a7ed49b63eb24e9f49d1c0a45700000000036a51651bffb57a045a19ac0500000000066aabac635153d319e10000000000066a63acacab51861509030000000001abebd06505000000000663526a63636a1e5f6048", "51ac6363515351ac", 0, 426643381, "ca59ca20755d5f77a5288c3741a701b545d06556058cb32b32f5cc767e707eb7"], + ["5fc98da3032078b83ffa5149887922ab3562711b1342769c5ea63f0b29e841dc7b18bfea0003000000016365cc98855faa01a23585ec2f113ff7c1edeb2178f9e76b1ce1f718a0db390b93ae2415400300000000ffffffffe1ab124c5c6f54a426efd8f2fcbcf1ad7a946b5978609ff7dedaeea05f2ff0d40300000000ffffffff01ad7b13030000000003656300af75998f", "00536551656aac", 2, -576348942, "91809c597637145e83509af7533ab11642592053d65ec5f42778961e6af64476"], + ["71d3fd9102864614f36bc375bd9f3b0d6e414e01015ac8e0d54dae0d6c0dc2c12b42d8dff5000000000151ffffffff413039cf7f5bea0a6d487e62f2869bbf428ec2f0da7f3a19ad2254225616aa1e0100000003ac63acffffffff018fc8ce02000000000800ac635251ac0000f19bb8ce", "53ac", 0, -931317300, "8ae75977ecc7460ef37fe532fc490faee8bbb0efd655382efeab091b068a0c15"], + ["dfb3c2bf03e57bc82001afc66f31d07e41af400d0ee60f99f3277eae088ab6bafda3d6309401000000020000fddcd7ad9e037fec4a3ba695d7f8564a8008cff0114478a76bbba15feaa8d5e2c2d1839700000000056a52ab5153ffffffffa5f7f3893039925a266b2fdf86228d94e4cd1a054df63d049271d12773b28d160000000008ac6363ab65ac53ab2095767d01e17151000000000004630053511ce72cde", "", 2, -859172694, "4376b5a7c7362df90ca1cb212836fdb574d99ac6b45700beeffe6e7b8c73c307"], + ["7757945a015adf92ddcaddb69b3e48b176f3905a655aca82d6da207869e2a3a670be194153010000000165ffffffff031546360500000000005bda8c000000000008005351530065656aeb6f9a05000000000565ac006363469841cc", "", 0, -91691503, "5f5788222f35ada2684a821d2d3015517ee7775728b17b6eb13bc57b149e9fd7"], + ["4cea887f0226f272fa2dfc2767a36fdb77800a29b66c4684332c32527ee9f99d882244ee200200000002ac6a5a795b404a80c334b74181f084d081f8fd733510c7bb7b5381d4b1dba9da97e2fb9b4e38000000000400535251ffffffff01064b8e050000000007ab0063abac515200000000", "ac536a51656a525163", 1, -318644127, "a07ead5b86165699e7b97a209d968f72e01f44193bb669816352d518f1b080f8"], + ["744324b4046805e59f44b82bcfe60cd8364cf46b60386351d12fcdbf1db0c1243da0284d440000000006636365536551ffffffff62e9b3b604858dfd6af289207c4915bc0f33ae96da0431bae3423238e8c6fa8701000000026351a89bce2b9109594fffd7be3b49af99ade8cb247b78d5e5afadc2a6ece76830d917dfc9330000000004ac6a53acae85ff97784cafd5d81358191cf20bb048ac187542d074f179afd79f10d58ea9916b21db0200000000ffffffff03a0ebea030000000007636aab516363631eddd3020000000005536365ac51ad45830000000000036a51ac00000000", "0000ab6aac", 1, 2036247934, "cf0b0f0559d2f38673bd7eb80da3564ceb8de4cac5bdf47b6578362d96183e91"], + ["29d126d604724506f3e547deeec8e64b5421f8d75169a9f2fa915ae991f1628b6d3ac35fa30300000004535353abfffffffff921d6e9d462fd339e7124a64e5bee33c0b8fd9350a412f72daf5dee3049e75e030000000263abffffffff8761c898d7582253daed133073d408cd21d13b68a52f9f13ef9f940421e720ce01000000000bb1bcdfb531e0ef5f7c79ccd27cc585a8a1f1d741b691097c493066945dd0339c43a61d0000000005535263516affffffff0495f4d7010000000001ab0a69db0300000000085100515351ab00515ede6e030000000003630053441ee6050000000002630000000000", "ac", 2, -519274523, "c310dc523c1765219ac945befb7b2ff5017247664b52bd95c5e8d6d71a60bfd5"], + ["01ea420d0375ecf17257e2425631c9bffbf74dc0c8dd67d946b33baad7b768e9aeb208df69000000000451655263b2eb9c8a135b906981c6864273f206326976a9705a5966823ac3bff2609668a84721812a03000000050063536500ffffffff69293217394f0f115c66e29604a39e11c94eaf750b33af1bba35afe59dea2450030000000852ab6a52abac6aabffffffff0438e1fb0100000000086aab53ab51536353c4501b020000000000739f7801000000000553ab51650040604300000000000352515200000000", "ab52acab", 0, -952647150, "6f713c95ebbf17ffc29bce0d60a218c6ff0f932f2476c2d3ed873f742178a9c5"], + ["905e10300372aa366bd51166e4edb4d167c972edd7a7dd1a2880b74893fb81625f1cd238130000000005ac52ab656363d1fe988a4f591e37299438da12db915e3032836e202607bf6fd3b9ce713ba0c36ac6db0300000006acab5163ac522329e1580d19456ae78378206575a1cc81fd8aed0cce18bcc88d4a0409b10cf67b46c80c000000000151ffffffff0369f236020000000006525200acac00120c1e010000000001532a48bd010000000000e5124f83", "6365636a", 1, -485174786, "a0fd34908a18468536d6e08c55c5fd791070dd3685c33aa84ea2a971dbe9457a"], + ["25bd604001fb47eeec6cc6826ebc22dc93b5d2d04d70aaf4beff8f69cdaaf300620d6b68080100000005acab00515113a8779d03693b48000000000002536ade6adb02000000000953ab6a63536aab65522d18ff000000000009acacac535152ab510000000000", "", 0, 1789593639, "d56814697a6be8c3f5a316497ab231acc5f671d5c4f564525bd9fcdc81fca31e"], + ["df14a66d04ef2429622d334584be0cf8d7b1d2f9dac6502402391334e995966e8c789b4cf00100000005ac6a6563acb42d79f2d04601057eafef7ee2c73e472e93f502d62844137b5263e29f878e4024a08eef0000000002ac53bbb00aef9cca3c8f54c783b94bc0c49e114079de3bb21b40502d6aea506eacb886ce8617020000000600006351ac63c478c6d4e93a3c8edf22a878ac52343ccec020fe125161ba93a1152cb1aca7c6c4f2ae5b0300000009656352ab0051005265ffffffff0480e9700100000000080000ab52ac52656341dd3502000000000765ac51ab636500e4c27f050000000001633cc753010000000004636551632dc00393", "6a51526a", 2, 237890431, "6aebde897abff45efb284d59f44483a3e6462b153544eaca33ebda69bb8649f3"], + ["3b1d080f023c449485b9cd04812bec2856b59a3f0b564747e2268fc8ba9ae48e163c1c34b1010000000565526a5253ffffffff0973e39f600ebb1ecce5d25bbf09fd5709388c9f57b9e963da2948f1d655245e01000000016affffffff04d34f930100000000096553536a51ac655252296dcb00000000000963516a65535365536a4726c9010000000006ac0063516553ffa5110200000000045265ac65fae4d03c", "ab6363", 1, 1884015925, "9ae0730ec57517fb4c65dabd5eb55017a1b9168b1ba12d418d4c0c2fef668893"], + ["00993a37037c6424c0cb6b848e9c3bbebbe0808b8dc10dc3087512d1d799fd0f1fe72d4751020000000551526565abffffffffcf3f224f01ac5409b5cc7a756a768f5f62576178b2c4b710f937bb77545a709b03000000050063526363ffffffff20a7ce5465703e1c921d909ae394ebca54e898b90308b26f04b4b8dd687d6c5700000000080063520063ac5265e37f796702b8b05500000000000263aca70486020000000004655251651a634638", "536a00acab00ac5300", 1, -1026455844, "2a404128dc95fbb068d70a60ed3b9e9fe9088971d6a522e12e0051ae95e76e85"], + ["db9757040363b98940ce442452a0f2c1f2b45e0b6759de84aaa65757201511862fae810cd502000000076a6a536365ac6affffffffa34f6b31100b932087d454de3ea40572a6597b31b7e333d18cb341287d2ddc0a000000000153d3da8a5a22fb413b5e34a5624c0c7efa1090d19e7240a8582939f63f6d6fc13e01fa9e270100000003ac6565ffffffff0207e519050000000008656363ac52ab636adffe4000000000000752ab655300ab5150360989", "5163536a", 0, -4814386, "c1cf9a3ccfd82f922862908aa3da708adbb7c4bf6a8bae4b67cd9b304ff8dae8"], + ["3e123e5f01d9781256d89e7ff44b4379bfefcd0600681364f466fedb54cad4b8e2b6d9f91703000000035253004d4e0f8c03bafa2a050000000007ac51ab650000abcfbaba0000000000035163acf7e07c000000000002ac6300000000", "5153", 0, -1817883385, "bda257921df1006965f87334c376b8439410bdbc75bc93736a754af5e6a48bac"], + ["01f3427d03c0404a1e185476de0878c912a6aba322527116e7e19dd68a31a2fa2d83e45b050300000000ffffffff600b616af9ace90358c428e0cc57cebd31dd27201b61efdfe58947d99f69641a0200000003526a65ffffffff5ee582098211779d04c3461f58bf601cb7ad3453bae1a72ff083b1ac0ff92a670300000005ac53ab526affffffff0499c0ec0300000000086a6a535251526563e9d3e400000000000465ababac4d69920500000000056551ab51ab871f6a040000000008ab65ac52006aac5300000000", "ac6a52636aac526552", 2, -2031844324, "009abe0d5edb8e1d033ad819e9e80ae559c86b7e9087c4d9bc34a3fc529829f8"], + ["7d3c43ff026ccd7fbd88ae8638bf409e3abd73757c45b4bd3a3153ad8b92863f511d712d5901000000086352006363ac53ac877524cf4a2b2b82103fdac68d92b7f16d13530a4ce8c5e368b782d56bd01c2ec8ff66570200000006536363ac0052ffffffff021bff560400000000066565636a5251510b8e020000000009ac6a52ac656a5153ab5c807e83", "", 0, 205778060, "19a2d63e183695aa057610b3c881711e61f399de7c41918d1a09cba1b20c460e"], + ["edb2743901c3d3e47076dead5c334dd47864d65c57ca5327c3c43fd33a72ec02fe239de9bd0200000003ab6363dc8a4a80049750c5050000000001abebb68d0400000000070052ac51ac5300b6113d030000000006ab5163655100f4735d050000000002abace3c07cbb", "525163ac636353", 0, 207848452, "f3b6ca6a3edb51942d83ce5ed784461c3b215fc2d24230cbd152bae5f94d89fb"], + ["9eae2e0303110996593232d0db5898ee735b100f69c90880c83daebcee4a9a6f7a05dc8c690300000001ac954f32238f3ea8f421c7b971b5017a20b747b226865ae771406f6cd88993b60fd2d1feff020000000253abc712343b170ff42c136856d167cea89dfd3a30a3353e57aa1cc2e81f12713c5086b355920300000003516551ffffffff02e9453f0200000000086500ab0063006a0028281a050000000001656d3efea5", "ac636a51", 1, 1089798185, "174c21867828d588b6ad8267d4e49859056ff93230888f8486a107f4b803672a"], + ["c756758d04f0af4793cdfcf334f6a38e2a130e09ddd721446bdfd452e28d88f6b796e7357300000000075353526a00656a825e75dbf844e050130620215b27a811cdd66d108665347675a87e28bfae7f0269c6bc3201000000056a6363006548b80cd46806f606271fe0694099d1de30a04a57bfe9c0d64ce88b0565875b1a77cc80590300000001ab0f1870a5625e5252d7bebaaa9820fdd60414ff44204a0995e18bba8e960cab3118bea2330100000009636363ac6a65520000ffffffff040d9b7b00000000000752636aac63656ab02fdb010000000001ab586b89010000000000cdd980030000000002ab5200000000", "00", 2, 1374359060, "61a8404c04ea5a23b0a8762044de90742dcfe17002f7e07a0baeb6893591decf"], + ["654939a203e26204f0c6bfa374303c62dc70e0bc5ba62c6527538c4d547ce966147cd4e25a020000000563abab5300eb9fcabfe0d29408d6c02b431e03d65db20ff0ba158ad151ab4cd05ca961dc37c5c3a2c103000000095253ac00ab52abac53ffffffffa17867ffd384936305ea2e25749e127216faeeac93fdaefb976e55e6dfa0d0d30100000002ab526a5d3f98025177db000000000005636552ab65f7fd390100000000065265515151523c0e4b4d", "", 1, 1861576004, "89b90871798efb16eb5ac2cad727c5b60ea32aa49813bda0753d60db3ab67f6e"], + ["f1b408d501ae6c367a86106b56530d49b64529e4fedce6b7f1c9eeae5eb50ada7097eb6fe802000000016affffffff033fa04f02000000000251002e02b80100000000095253ab6a52ab52abac052f64010000000006ac6a51536aac00000000", "53655253", 0, -1463639958, "6d64e0e0f7c6c7d4c5c359c9eaf9b5d069fa76a51d1d65b0d08e3454c47cf885"], + ["cdafbcfe03410760a1f6c95fbbda6444deeb7f4167a56497f15f3df889c5079facf9c3e21f020000000253acfe3a26ff23b5b0461760f8cb68ced4347681cd7ed659491be5225bac8b8540c116ebd1fd030000000463ab00acc663d4dffc95d7c4ba08632c731e07e07ff316d8e09f8004c8acf5cb7b931da1ebd7c67602000000020065ffffffff01fadccd020000000008655163ac6551ab538079dd98", "acabab6500656565", 2, 320950654, "ec9e4b0ebbd0fd593ecc3bde6f8ef4269dfa398bd06768d88816455d939f27ee"], + ["fec67a5104be981eab850c54cc673f0123bd85d253d1516c2925837804b1d3c68bfa3212a60000000000ffffffffd486864cf28d051bcecf2c2cdaca9b05cc3eb31678bd8ce742ab6b7fec46beb80100000007ab6363ac6353527c1aad24b6fda3cacde19b293ebd6dee0106b6999fc0d6eae2a035d26fa4948e08eab57b010000000951520063656a516351472979a0ae22b9dc57212c37f1fc6cfd019281d78469a2c2066be84f2f0be3c62e9c6e0d0000000009ab5153ab63ab51ab52ffffffff01f6d49e0000000000090051ab00ac6300006aef0f1b80", "52005200", 3, -2082778667, "9d56ddac2f8a08bd9b1c809ffd6f6da0bd34e1aece7a0dc240f82983f64a3ff9"], + ["12a542ff03364540f459ad660d6b4fe78e5e5d64574bfbb414d07c79bcc80ae421c3e8e9b40100000004ab5251ab0a0e903950a9a457e6e5b647da32e8631c6ef01bb8ce9bdabd48a3da9932427f47ab019d0300000000ffffffff5949e7e91743df62373122b225af97bb755f12b648756ead3b5ad178f66deb7b0100000000a8bba176045f111c00000000000800ab51ac6aac00abef93140000000000056553636553577c5a05000000000011659a0000000000060065655163ac00000000", "", 2, 1795284855, "5d75cc1c4c6166c1500cbe3e5a4aa5102e1557267e987d587f2fbc8a42fe119b"], + ["c6f7008c04467ac31e841bfd5822650a408b6e95764dc22ff1d348e1e6cc4b555a578b6b800000000009ab51ac515152516353ffffffffe81cbe5c4bda73c333054f67a031698768f112395cabbb89a193fcd7d5bc648b00000000076a65abab536565ffffffff950f45d91934f07c380f3c8436e46d53a9c08b8928c8519f5ef3b254ecb35a33000000000600ab5263ab652dacb7dad3e137cad747fd51c950876d74704ff7fa9d544fd2eac789769ae8951966bebf020000000852656352ab51ab526cd4f1ac043810b20400000000085152ac5351005351fcec740500000000046551006abf1c8e020000000008ac6a6551ac6563ac678207050000000007ab6a526aac51ab00000000", "65525352516a", 3, 439996387, "95fdc67720108b5ee988e62fdb4dedd90548c9e746272c6e80d7dea9b8206718"], + ["151fc7f303b2435b2e8302b4007c6a5f80030d213c9efb72aff3a2c0b13edc21bdbc6f775d030000000165ffffffff7754194c6620210e1900c941c0868598f077aee971886de338c97fe0212bf91b0200000000ffffffff59acc5ed6ae097487d75a55dd65637122a631ef68475522110433311a585beb10100000008ac6aac6565526300ffffffff03d321580500000000086a5252ab516553000f448c020000000000d8b1de01000000000751ac0052005165437baa67", "", 1, 842503808, "3b91b143faa3b7737ada5bda8daa6778023b36bf2d4810ae2659f6741be48564"], + ["d7001ae302abb199fc7f9928f8b2eeb104530d47559bcab3016bbad12d2fd9110079c2b471010000000251002dab786147b3b8ff1a3506a131de3668cad07be62cd5ee6bfe7301773a3d5e67a75952940000000007005300ac536363ffffffff0493fa7f00000000000463636aac0550a6000000000008ab00ac6563520063a8e31d050000000008636a536365ac536ad3e37c05000000000553000063537a528897", "abac536a6a6552", 1, 2092131897, "d515af9630e6c6d2f13d61428f7e9431d68044e8ab56d1ca45ba217126fecde0"], + ["b05a96d6012d12895a9ed315baced5c8e2d6d4cd310e5f881d9b090450d39c9802a25623850200000003526365ffffffff02ccbfc805000000000265001bbb910300000000065153656353ab00000000", "5251", 0, -1628125507, "2de05d6124134790b401190e58aa4cfd0398264de9a7cdf0e99a02d04d77ac58"], + ["6c08ee0401fbcc6f459a6d5105b1341c6719a48282bf474d676d246f586afdd15d9b0d15b1020000000763ac5252ac6a51ffffffff01c61a7a0400000000056a00656500b1f5f18a", "53ab", 0, -1169807168, "0be089cdb5e9607dde41299c1b582b88359fd01112b10b895e1a6a0d420188ae"], + ["f6b7d04001108a692efe60bac3787dd87176c8046016e9aeecafc12e1fe46fb46773aae5910100000005005353ac536e1feacf0408cea8050000000004515363ac423471020000000008535351635351536a1b14610000000000095253abab53535165ac9215e500000000000000000000", "", 0, 2024241278, "8ac5d2dd63222e30536bf90151fcd07f45fb5ea7b51d149e22d5a946e0ee0264"], + ["e09bf5ea04ef77249c705e1644a28fe2b59f0052e62d01aea703fe7e4ba85a6adfe10c8cf0020000000900ac655153ab5151acffffffffb8b9ef11ed9575463e685dd8828185cf8be569330dd1df6dc6282f9e528be05f0100000003ac6a0054a23aa3e23471f87f1016253864ccb0993c8316bd3796909bd875d709d0ae96a6d66841010000000153ffffffffd2e4dff11ac74d6fdde9bf460ce1d91bad7760c991658ce7e57e6a8cbc28853202000000076353655153ab53ffffffff013aae370100000000016a3df28915", "656a630063630063ab", 1, -1303249495, "e3d7afb0ba49b86ea715b4b3cd93090c6fc8423755500aec6ecf729a31900401"], + ["373faf5e0265eceec8e0ebac268f0b9bbd8bf40c4199ca20287767f2ac9e81a543a70a281702000000026565ffffffff88481db25a7fb46bb24abf107ff79cc370916fd1b40c0b3246972f4b97606a8b0000000008abab655363526552ffffffff04d66a43020000000008ab6a5100516a51ac8adad3010000000008abab5253acacab5288d91303000000000363ab521125ce00000000000552ab52516a00000000", "6aab", 1, 546871591, "c3aa05cfb91b697fe2fc8695e951071e9c94f9c7e0a81231697199d240676ed0"], + ["153d361d03dddeb2e209e5ebe37b3709dc4246a8e0317b960e1cb445ae81c04c59b5ce2c00010000000153ffffffff0470794401408c8ba5cacf08b50c4b829fed7f2a92c148b00bcb69df708baf590200000006515253ac00acffffffffdde3492499641a46ed72e71056e8a0da59a916fecbe87c5b741f5ac619e82fd502000000025265ffffffff02d415f7000000000001accc733001000000000853ac6300ab5352522cbf2f4b", "6a", 0, -1426950682, "f4ec8bbb5e4645f1299f84858e32a29cc702d61ada99e391cbf05d5c8f327fd0"], + ["c8200caa01a80f0f1142767e5de066b624792743c16b953036863abebc65b5bf918fe7b2270100000005acac63516affffffff02b28c4a03000000000865ab006551ab516564ceec01000000000152df5755a1", "6551acacab005251", 0, -175186904, "697bbcbcfaa52d01b0fe0495e94acf1ea0e59988cadee9146cbfc128a937530d"], + ["1c85194c047c63f4ea2b66ebf88f1ce41588ae6e72624af83972708e8836bb172f0da1d0d303000000076a63ab51515100ffffffff88c8f2623761324a540cfe305680bcfb9ee2b6e6a48dacb7b7e97e445fbb00980100000005655351005221a002d7902a662bc92975c62f1daec5ee7b49e3c1ca9d2270646127bffd4ee7a5b67708020000000400ab0051ffffffff304cf06bd6fb81af0c646e38bd2eee1d71d1e9fad74460b9a7037e9703fff1490100000005516a6a52008e85ae57044569bc0500000000066a6a516a63510d9010000000000008ab6a526a6565635385bb32000000000009635353006a0000ac532e5c500400000000076a635365635253d31fe8e5", "65ab", 2, 1438347057, "cf4be9a75703f0c73619740976a736b8b7390b622bcdf443d214aa97981f3cb1"], + ["393d85950456dbac1d773c1d0e259ca0b87e3d27e7213454be91e980f615a1dda8bc15077702000000066aac00006300ffffffffb30225ee8521a644ac127deb0dd042f995fd473d633ffeab780667489866460703000000055152ab53ac604d32967babb5cb1e969c33d3ecc9f5ba2f2cc9d93411879c5d15daa860c967481ab557010000000600ab6a63ac00ba8323a8fa98f6581d5613b87e38ed1a15479e1f461a6530a8a879938d69fbe5dfc303ec0000000002516341aa32b9037af7e20100000000025265c4ac5902000000000400530053b594af0300000000066a63ac65536a00000000", "", 2, 1149957703, "32958de6cc144a65ecb64c850e694dc58f012f834a479667bcab95fcd9cf06d6"], + ["cd22ab9904e7ade87990852fb58cadd3406f8667b3de532633c69e3de4e613453d0e9c5d9000000000086563516a6553ac003fe5d23a12373f91af3a25a38e0304fe6211e8ca8cc9386e5d68d0af8e76e793f619975e02000000016affffffff9d7ba68c690eb992f5f441b7377bf0ecf024cc83d431ebdb0fe9dfc64216be52010000000017ced473eca95e9790e48b919341144a13665f48a7964f4780aac679fb0933689417f269020000000091edeb1e018b314b0500000000086a510065636a535300000000", "", 2, -174570998, "9d111f4a463261d066860748158c61ee7d3b6937da1252aeb323e9abd02bbf30"], + ["01356a7801664e1d83d5ec90430c32988a9b62943c0ab45eaed0c549f7cd7b00df94fbb66f000000000965ac63ac6a52006a536f11273b0222878702000000000553000053ac29b1b502000000000363acab00000000", "51ab6300655251ac", 0, 858172200, "572153dde9165f0a306948f85e94d554e5134387b564c39d5c070635d943bcca"], + ["afa5d186017a951b34d7f69db78064328b63adee5f847af8c6e40f33d7ac31b386975bfe850200000002ababffffffff04f567dd04000000000752516563000063b0f8b900000000000045ad32050000000000a4249e050000000004ab53006300000000", "acac63536a00ab65", 0, 2064791099, "75c678307f90b061754dec405082a0831f6e100292170344f686d61688fcc102"], + ["edea49db0334ce2fcd733d49a783402348a1df90f29c8b59e9905bb48f7a98bf250109939a0300000009536a6565526a51535378b5aae5dbd1cb2abe0f49cf0567e4a8cae8a54b8b5b94b62c133d73000badd94d6eadb8020000000263acffffffff9f60a863f36772f7d3c0834d56bac19faa377238216fd955b5ee872db0ccc5100100000000ffffffff01d4708002000000000851ab6a535163ac6a9fd84334", "53006aab0053ac", 2, -323884096, "f5cda8854f415059296f907225b51aeb3aa1ec19e354b5b1633ae1e1d974b48c"], + ["7bbea58d047da9f238a6a44d23eb1dd4cb464da9e66e2c07b432425c9c2e63f30ff55684e20000000000ffffffff9a8d09c2a47259f36644b1bca0cf6131f1fbbd9b1a1ddce5594b569502b8e9510100000001aca3123f5eb538c3758cfb40400d3b47ab5c8cddecb0729f3f9595ff434a89f2e14d59e8c10300000000ffffffffc1b26813b10bd192338c9969d5778b676440d9bd949df88fc8e249107daec772000000000763525165ab5200eb32b4bb02836257040000000004ab52ac53f5b4af040000000009516a51ab52ac52516500000000", "", 1, -1627036728, "1a3e79bf2e33b6c4a54cf12b0b45b31d6a65c72684144c82885c2b40b4a182ea"], + ["cc8bdc6c013045594d0b8f21b231dbe4f6643d5a5af4a6231e7ff4decb8b2dd93e7fc349d30200000008ab00535100536552f4fa1afc033265bf0200000000085165655352ac6a51f9840705000000000851ab6aac536aab512e421a040000000007ac52ab5300656a00000000", "ac", 0, -1504342751, "f74c764e6dd5d6e760c638fe8e475356b6cbab59fc00d0e2a89142d499951a57"], + ["9572ad1d02bd33b0fb010862bbf67e12cdcc69c290651ef22cbd080944029fe2dbd3a272ea02000000055253ac6a6344ecb23a254d0a785215fb94b28a66937df9e079cab40679f076e3ac165acc5967296cb90100000006515152635263eac74b35035c695b05000000000452516a539ef225010000000004515263abb7815c000000000002ab530afe65da", "65", 0, 122591437, "5a8ae32be5eafb33186bdbde9d4904c1bfd03d5dffa0217c5491f226c5c91321"], + ["15162030024ecb1b17b273c224ef70eaf0ef041a8364e499027fe53af2375d772de8ed6056030000000652535152006affffffff1a442992d6775aca6aa6153f515b66ac95a324a7c3fecad9b13c851801f561b20000000006ab5200ab6365ffffffff03494106030000000001abfaf2660300000000025165a8543a010000000008acac5100536365ac00000000", "53ac6a", 1, -1657821911, "c5ad0e9e66c607627161dd0ef544ef8ef9e0b60c4a14e92818683d8725e671cb"], + ["c7d5d47601f79382cef093316c00a1d58af6dcc99f1952a8316afc5b49f6d6ef0aeb3ed075020000000063bda78202369420030000000005515163abace9ead1050000000002525200000000", "6563516aac65acab65", 0, -1496989436, "7528fead227fc59ec574bd4e5db51b970148903923cf93ee30e897ba8ee7c863"], + ["78390d6b02ff42e2b1ea6319e30541d409d94f979d460c8d610907a6320f492c10c007b3510300000004536a63acffffffffd9edf29bdb913f3a8c2e342c3e3346a8c949bd192e6a1068e17976e95da557a40300000000fd37aa2402fecf310100000000056a655200653c3ffa030000000003ab53ac00000000", "", 1, -275620225, "e9cffc68342d76bcd794739ab0fd25d28d7e8a9380b3ec556ff50f24b2f945eb"], + ["f5b551e7035074d05ede0a0abfd167224bd18e03949cd3db133125414c4f196bfe08e675cb010000000800ab52530052ac65233b1184d464723947fa6291680db6c6b7eca861316a84b9e0b7730d00b9271924bcea8f030000000100ffffffff050843691e7b14b1f8c0f95c8f17c4550c6c38496c4ec72d93404f470c3b18ef020000000753525300acac65dbb78d5201dd9f50020000000009ab536363536a53ab6500000000", "52526363656a", 0, -745366625, "5f7532b7240b63efb38e7c3bf69de98348d80c739ed120f547002ebae18dfb46"], + ["d7abe9f1025273014c62da1ec487294d71b6199f0b5965af3e933201c2376ccd1204c79f220100000002ac53ffffffff7181ef6029f9a59ef1407e79c6f565d67f418f9a74ff409c9486f8f596fbadc5010000000763635265650051ffffffff01e5c841050000000007536a51ab6a63ac00000000", "", 1, 1887813910, "423d5d081235f692d894fd0a916215a3c3b20637d47655d249b9ac52760cf9c4"], + ["badb088703be024dcf2cd6318436e45b0ac48c7a84e67b4b783b80e907b09f5df227d736f40300000004ab515163ffffffff45926ca2036ac71d8f87a7d10ae92b0ea36fc5fcecdbd07df1eca317ba2a1bc902000000026351ffffffff129e8fd19443c7d97711bf490cead6d535a88a9d6013bd8a583d1e16b3ae4c34020000000252abffffffff0420a6d804000000000265ab5012a3040000000008656363acacabac63e8d0930100000000006f236d0000000000056aab5351ac00000000", "65ab53", 0, 1144416057, "0bf7dc18c60a5a48dc3a69f6582a0372a070cde6aec8f269ce188fd4d865cea7"], + ["860c5c38029ecca396101a6890a60169f5055683c0cdb4e83b870df900e029dde91710a0420000000004ac5265ac4ccd364ab3ed7b6f48f1a456e8714abec181bff5a74ae63d224dfda1b87a1793ca950aef03000000026aac53dda305032e1bd305000000000365ac51a4e6f002000000000900ac6a516551006aabacc44403000000000965ab0053ac6aacab529e7643e2", "ac5251", 1, -1342906278, "45bbbdcab638aa8b0a7a3349aff0172e2dfafb64894c6d27e849438a785f3076"], + ["75d0f720026a9042b220d8b08264a8d16b4a4e656e7ed1fa22d4c3932fdb3ffce48eba14ce010000000300526affffffff7c1d48d79ba6a87966fb16d2be0a3c7b9e40439d95f41fdf8405a535d93e9cf600000000086365ab0065636565ffffffff01677ffb01000000000853ac63ac635252ab00000000", "516a65636a", 1, -1670469361, "1f385a3f1bea508f1ca5baf7fafd9354fe4ce56a4d137cc1cec2a4758d72fc03"], + ["ef6a999b0383fee7de813eac04218a6b53469bb67197a915063e625269def35ec238c65f1603000000086aabac0052526a52ffffffffb8a37b715f50cfc83cc2c0b9daca245ebf212756d40e1dfe09a6892f8363b02a0000000006ac6a655152657bc3e6428a52c47fe88ee8c01bbfba7628de337bf1ce3f1d78d8aa7209c1c2c926f30a2801000000020051ffffffff04c340e60300000000055153abababd88b2702000000000665526552515182fdfd0400000000025163a0c09a030000000002635300000000", "000000", 0, -1499563635, "d49c07813f4abf1ec55e1f896e8f474781ef45a9a5b765fb0bcde569f997722c"], + ["752e6d1803114171b7e9b6fcaace6dd0755601562c55d6c4e79946e30585b62b5b04e56a8d020000000452ababab7dc6a00faf6538bbce7849daa3bf3a516b1a3e008c454f17c3f3cebe1feef5d91067687102000000025263ffffffff521566bbfccba5ae34c95fe6f350e48412eec67cb1f7cf64d0515442207a7bfe0300000005acab006351ffffffff042885a20500000000076a0053ab0000acd3a0da04000000000465636553e341f6030000000002536ac7ee4b0000000000025151c2c356e5", "525151535251ab", 1, 607750513, "34e042651d694c0b09f9db36d0cc1c2ee5401b6f7d183f6bee7b3843d90f7129"], + ["7280e967042538fd138c1c8c42fc03dc8ecbf6c1612e94096d9fb9dffff7a5db0a1b54917202000000025265b55f7487a4c6460727cce75f62ffc6ba68c52a46bd7099da29ad31e594f8d00fa25aac050100000000ffffffffff83797c0773c6cb99609ea92253581b39f41091d164f3fe7ce7df05ce9061400200000003635253ffffffffbf862cfd10ad20523356980dba9e40aad15dcaeb86317850f65d185f74009d2a0300000000ffffffff0399ecd30400000000045263536a7cede0040000000001517a8f370400000000065252000052ac00000000", "ab6a5351abab006a65", 1, -705913962, "3c3448103a10bc8be635c98e16145f29904288a21de0f947af08f74bc96dc948"], + ["b99282a2017dbc552e07ee619037774ed94e2b001d83700a51309850f7914a9f43623dc5bf0100000004ab656aacffffffff04b59dfb000000000006ac51530051654f3ae80100000000096500006352abab00ab0f73b10100000000046a00526a5e3ed605000000000353abac00000000", "00ab6a6aac65", 0, 758527476, "14d2cfc9170fd365b4f8a85c351f0d7f8f7c8fa5182b6ecff42ebd8989a76f2f"], + ["f8c4c209019039d90ea5b7a96f75d6b217b133333e747432497798fcac848c51d0a7b648610100000000ffffffff03ff39e3000000000002536321388b030000000003006a007bcad1020000000007636a51ab65536ad9092ae2", "", 0, 1051410154, "8a98345dfa429c6b894c614b501a84bf1730b85488178ffa6db2a12435ca2870"], + ["d380e7d002b44f8a23bb4c5748b7eb4fdb008c95a3c98cea1f1fa7c2d43a9c92968f702e3500000000001b607b8a66a3829f7fe1ec87eff8396ea24306105ecb7df70b4e8b41f633800021016e0a0000000002acacffffffff031e064c010000000008acacac00ac6aac531078f401000000000025b12100000000000300636500000000", "5100ab535351", 1, 1127877664, "9dc890654fbd9b5db29271c445311019da9857bc4d4bd8597e10554256a945b9"], + ["12852fbb01289d625967751fb76144c5f17a2b3cf283f94f409b163a2637c9bd2555e7f66a020000000251636838970d01b667bf020000000009525200655253536a6300000000", "6aab", 0, -654959207, "fd67866582a3363d5d77910197846a804ff2ca631bdd9c06741d6305e7f8edda"], + ["f8bcd0300193a74797cd4dd36071f8e55be357a07588998e1cee1835c1f49bf4fbe84a7d360100000002abaca7e3a55c01d3a0fa030000000006ab53536a526312d1f221", "516a", 0, 1005759862, "73d5e0b462c015fd2ca78de8e9772f650eda8564cc1fd67b0d4bfe5e8104aa76"], + ["2bc952f40460add520bf667791d9adeb5d2ee7dd563c5d1525a35bedb44cdfb636430537c90000000009ab636a535153acab53ffffffffac964566fabeb2e0d186c01a90cb002a3791cda6800921724ace170f440db8b90100000000ffffffffd4cabf5b6dc0efec43fa0803d5945df8e1e2bb13aecbac78e455ba2cc1c0c03a00000000046aac636549f340141f52eaf1b67ac4f3a0fd4cddc77bacd34b648f3f2dd9d2412d20bb861fd7923b020000000352ac5394b65d8a035ae41802000000000863656a00515251524811f3010000000002ab531f39b4050000000008635151ab63abac529b928832", "53ac63", 0, -1910803500, "3c2cf09638d1177bf05c0537cabbccf14665234e3cc329232311533ff04767df"], + ["15240436032a9dd3049a9ed0c412d0059735abbc636e4f65c1c8cc46f4835a3e6180ea8e6202000000046a6a63abffffffff27d7dec94f508f043bbd9e2361872f8072f89268f591d7048e41c6b4ece890210200000005abac6a6300edbbd9b527cb54248828271927ced8c5f9be0516ab9db322e2431ad6c508bff2cba7e3f10000000008ab00abac6353ababffffffff0493be5a0200000000096353510052536363ab774616000000000008655163536a65ac52bc18c30500000000025265d55f1d0500000000075200516a52630000000000", "53006a636a52", 0, 1868774907, "b8a2fca4619997ffc4e0d4da971398af3865f934f6406c3bd606759ef2cd386e"], + ["cc9fc3bb01b2802be8d4b1552579667fcef4d31edc02fbe203fd4433423f2035cbbe1029d70100000006510000abac635732cfc204c861570300000000075153630052ac006dd0cd02000000000863ac6aab65510063759e59050000000008656a6a51ab530051deabac0500000000056a656553522dc72ae0", "52006a65525253ab65", 0, -751948737, "dbe8d81e119b77f1c567391fead881e39f86704427db3c46430a34f02a5ee822"], + ["b6be28d9019453fac14d5fdaa081bc48330ec2991e0f9daef4962be0a71d1dbb64694ee9fa010000000353536abc2fa63301e3a4fd030000000006656a65006aabd951dbb6", "6365", 0, 278368987, "b7970d31c3d1a90bf23f4984a1829e3b313e776985e8af837aff1f8263f54e50"], + ["f051cac904111c36da27f132d5daf55e7c8e063247455fc74a6dc23bbf2072f0f5e7e182ed010000000252acffffffff94fca3ec5530def5d571913ba7373b760c738ac447715366114b7f7bf555d42e030000000163a9f49eaa0628a54f729c3be2e8fc152db5ded03479a7117fb2b48a54dceec64ce4e2d19803000000046aab52ab3048af18683464d5bf31fcbd09cafd88a319e2fca5d9c0825d59140266421fa41d7e0719030000000765656a51516aabffffffff034c8be70500000000010073b2c7000000000005ac65ac5352a1c7990100000000086500ac6a655151ac8f367ac1", "ab655163ac6365", 3, -805357696, "bb0c9469bece0f55dba9ca41d605b8302d19cddebaf10ec1f7d1d040d726b35d"], + ["8b13df2003486d8da9fa3ccfc487b7a54d0fdf9382a148acabbb353cada86b27b6b0e3573103000000046a635252b829c79c5f80aa5c505bc349ace5a77f9eb01f22c8014afa2441aedc63f49f20c6695bdd0000000000ffffffffe2765a77b0615283d0fdbb8b2bd5f9029e2e681fb8a584850c9695b283b07422010000000151e24905ac035e8adb000000000003ababacec74db000000000002636afef5fc02000000000951ac6aab53ab6aab529ffad537", "5251ac6553ab6a006a", 0, -860781016, "f71da1829fd4520fc4021e3579addc67f29345a84122b0ccf8f50b7c737b9414"], + ["39e4ada60378f2e82a7779778dfdd707469c1e1ef64f58219cbf05282e6f7d5d187e6637e7030000000563ac536aacc1a494112a7961dcbacfb8a1cb44c3e3314866fead3fb5ae7ec610fcfff24edc6f613095010000000165ffffffff389a50e080eacbdf3f2445481af217ee39dc18b659523e6d07fbdb0419d747260200000003526a656f47d72001ca3316040000000005535265656a00000000", "acac53", 2, -159736974, "80301c0476e082fd32b770ba10d509f5fa27e5b59f4cac2fa9ab635e8f4a41e1"], + ["93b7a4cb03ef3889f1d2a45e4b040d153c5e7d8dcd385cddda0b04f15d8a70952ce95ca1e9010000000551656a53ab55711e8456ef1d1ace0b160053838599455c4df75f1778d2e05f1ce4c5887d29361802e40100000009ab0053630051526a52ffffffff55d611c10bac07ed9cb2d52698845e8433a56561590530a7bec5354d529a0e810300000005656a51ab63d3f491e903ddc2ef0200000000065300630063534f595c0300000000005362650400000000070065ab63526353e928794f", "6a6a6a526aacab6363", 0, -1544356096, "1c78dfef603749770930c3a9d6be71c9fbc82261ed4f3eadece984a6b1b192ab"], + ["a06116a003c9a9792eff75c13f6e88c34230d45c3be1cf1f39678472d88716662aedf8e21202000000036300acffffffff1d2d25a37459f96a79d096b7556e9179ec3c97ee42eb0615b231a8a3b15f8e550200000000ffffffff5d9bdb2a8551d4f8f056f0fbdec305f2ee76015bd775fa2a035b25ba8312ff0c0000000006656565ab00510f8c5a1f01639f1b05000000000300525200000000", "ac53636a6353ac5300", 0, -1688102228, "0a4a6c914473277db62486807e028481058fbaeabf84b36935a50cda7338affd"], + ["ca60de4a04dd53e41b2cc84fb6916c476bf64b93b3252a078e40e535c5abbbe99668c2add20100000004656a65acd9e33367aab7d80c051be07a0768a567c4035d047e82338044ff65cb74eb9222835e23d00200000009ac006a6a5252536352b7dc7e856e33d61c9bd0c2c1e7f2f2b46b75643a6cb3ee682ff8543a468c9d6c646c36fc0200000009636a6352656a5265009f2e3bd3f7564e1589f56b5bc308836993bce5cf18ddf094870406078e75542fda8f00540100000007636a5253656a531a2dcb36013287ba0400000000016500000000", "6551006300", 0, 2000314547, "c9ef575ad830254dc03149309adb8a3225db8c539ad625633e7b5799432cb41f"], + ["435da3ac024649eda60e4cd7e5b96f0f3b6dee23bd6468bbe785e977530d495b134de9874800000000026a53f28c2c42d468a1199971b27da34feb9ede54d98021c727dce05b2e3c51a98056f596bbf803000000086352006551acac630166e470027676df040000000000d3e7db0000000000040000ab5100000000", "acabac00", 1, -1065024339, "f07b28692e9f73536408a3370d8ea7d5c40fe359af0c48dba517fd9d05d28f49"], + ["a5aef39601f67b6c308b01773a0cffd945baa6810ec078ae9845f4f086816d56149b21d1170000000008ab63abacab655253ffffffff03a2d33d000000000008ac636a6363ab516a6d9c3b02000000000563ab00ac51e8420602000000000951abac000051636aab00000000", "", 0, 426033018, "e2e840e04c28e811ac3653f0b938a65ef0a0ab3e3d1952c2dfc82de98bc5af2e"], + ["3f2f68d602d970449a8c38b360d106d22e16cda18d8a57c4d9804667030bc90b666a73555902000000025300ffffffff2bc074260249a6b8fc12ab2a1170876a63baa484be577ed06bd01e298cb18ca70100000003516aab71a3699f01af8b97050000000006655200ac6a6a00000000", "6a65", 1, -1230078019, "059918bec8954fe958b5e5495ad6922e4738f1c22a13a51d8347af7fc3061c87"], + ["147071f2025d39fcd04a07f63c68f90b117344f0c48188b7c004b84c083856b98dc49639d10300000008656a6551520065ac2f89916fe527d4b3e7b3c578a63ac1b5864e97a9943b7c4c4226ba0061f587ea795e04ea0100000000a72492b40454dd1003000000000953acab63510065526a39ab92020000000009525265636a00516a52bce0ca020000000007656a635351535103fae50000000000085163ab6352ac656a00000000", "6551ac53ac6563ac", 0, -849331243, "93d9d1781b8d92b35524bd8354f7fde245349b2c8ba14812f08069af80de558d"], + ["f1799ad00407c57a77c9f7d670fe1a45e4172829816ec289a1c9e686d40ae0bbd5e004f3e70000000009536a5100515352636affffffffa810a5d9be9ef9f98de16d2eefa5baa07fad376f06650c61b7beb261dbfe07fe00000000095351acac6a00526a6affffffffdac1919c9b93a09c3bb4f60c92dbf1be66bf1db898ea468e28d009db2b9fec0201000000055265ab5252fffffffff48f4479b54b9f8a0dee25f80cd480830f90d8ce53aba6324c98d982ee32cb5f02000000070063536a005352ffffffff01e42f4405000000000663ab5352535153865893", "6a00", 2, -560806132, "505edc571980d9665c1ce14ec094948cd8a238eab87bd031964ab4298eeaa828"], + ["fd881b9d02a7fd46f4fa3ba8ec62a56c7d59760039af477f1f7989c4700ebd6c1961a0cf8b000000000363ab657e75b91bb95c02156f6fe5888eec3a29eb1e3ec5e649f88c4b8912caf8f425b7e030efcd010000000028eb3676031954c7020000000008656aab5200525152389c8c0400000000045265006a1ba433030000000007ac63526a53655121beed7a", "5351", 1, 1665698768, "dc508fec6450549ff82b193240bece15ec288ab762d3a43cd8dcc94a23e2d9b2"], + ["9440da1c032d34725d2d5acaa2e75ea7b1f89e3752acc04d1d958d29b80f125a1eea669a930100000000313ea34bfa398aae6a0c317b0f64e07d04b2155ea54eca452998f7b03a0ce11f1f224a7702000000075251535363ac6ab06f6e949500b3454891492ffcd5bae4bd7054d306891090a17ded558e56006fb426725c03000000007e743734025bcaa2010000000000d74fdf020000000006acac536565531be15012", "ac53656aac5152526a", 1, -1920603221, "55205a6abe6f41c9c1b37593d07670078b799f35888095d4e0c25629bebcccfc"], + ["d8181f2401c739784f8e2d5757b10a80d385866f88504c04198148e40cbf8648f822c7a927000000000452656aabd4968e3903c6e84d030000000007655153ac006aab5611ef00000000000563526a5351ed5e71030000000000bc7ebb2d", "ac6a65", 0, 488259184, "b5880dc2f4dc2f3432b768cdeafa839e042cd857b59b37df10d4aa1950c0bd3c"], + ["e00fdf2503619b76a1aea968494b132490333ba5d5f635f395388c6f94faa1e55c92b74d3e0100000006ab6a53526553a86f197eed1970507488285edb5b6bb76f4bdf427020eaba31fca3000910aac443fe7e410000000002acab260a20fd5a0899d976ea90f57e1dbd3ba0e7018c8ec15aa21ee70ce1dd58e530cf2e03d30300000004ac6a6351ffffffff03e3f2ad040000000005ac526352ababeb6301000000000453515100aadfe3010000000005005153526a00000000", "00ac6353ab", 2, -964111504, "94b3d7263e5a8989a836b2af0439e88ea757af760d90b7fc8820f3b2a82f0cfc"], + ["0e071627017bc066d9ff2d2e68d8c469a3db68c0d5d50461074c526d32611564a9091639470000000000ffffffff03e8f22e0000000000075153ac6a5300ab4c797f030000000005005253ac53e33ba30500000000007a51e40e", "63ac", 0, -522403567, "44f3b65ed59fab408fb97e62babf872142cd9426404089ff154cc8a878461eb1"], + ["315201f8030922e03216f552f965b8abc023fa08774777d56cf5a3a859f413a5ee28bde50c030000000100ffffffffcfe456447de2c0549a217a4442a96f689733ff10a8a66a46d1bbd76e278219d90200000001aba15e0c8a2be8c4d35091845da739dc8e399d41950c617ee35f71d4025466f5ddb4a3d699020000000953ac00536aac5265512ad391b00104969d0400000000085251006a516563ab7011b023", "006365abac", 1, -56345527, "9da3b4bc8d973ee3e490c7e70724544a4c9e8fb89b035ff87db99577926c9132"], + ["2d91b721043c39afdce7ff9c3f2ff42cf07ac66aadd66ea3b77d66545237af6bdc3facd8be000000000363ab00ffffffff72efec3b78511256a0d12ce58c3f2edb1d4bce29a208b7261950cfdca84d535b01000000070051acac535265d11714bebd6f4cdad793216bb5757211ebb8143a8a6282908ab869715402e599875452d100000000010090db03f28e947855b8650b79cab55f73e92a5af90b4e09b8b4efc9be5ee12885247426780100000006acab636a6a65600b5cbc0245047f040000000001520f7009050000000008515200516563655300000000", "ac", 0, -1306016150, "eaecc0427b7e36f55b246cd7694d7084de974ab6078578ff1de47b9a3679a27a"], + ["5c1a43ef03eb1b13cd13ebc8a2fb71d5a8f68283c411d9d15ef53ca008e97083df44c1ab2503000000056a6563656affffffff5ad817dff9db7d9db22afd39995bdc0bb5cbaacd5986ddd82193361c95ad2105030000000600535363abab30397093a598c9677fc1b5572cbaea7b9d3310c8d03af4a0474be8ab91b02ae41e7aab2500000000066a656363650097bd38eb037f5ab2030000000006516a5365abacfb4fe6010000000006ac5363ac6a001375af050000000004acac516a00000000", "ac", 0, -926389277, "40bba7ffccf8750c9c250f0f86220b1138529c6ff429ffd0b59d1bf66c01c1a3"], + ["5726fd440150845562541b3f65bc01bd98c3784f663394d8c345cd31ac88ced866a7dfb59801000000026563ffffffff043df1db0300000000076a006a656a536374c36c0300000000066a6a52526a0099ea46020000000006ab516565abac12b04705000000000751ab516aac6a515e9870bc", "00ac00ac51536a", 0, 81968796, "2a6ddf221af61b34f388439d9fd7eb3fee2d4b08c860bce06e09a891fcf19844"], + ["5f2583370433123b368d14c78344076adb2283252589f8c03ec3656c1b729ae3023bf489af0100000005006353ac63ffffffff5dad5b5b826d63dbc38e0e443be8cae73d5fa6b95bfa1b6ac4381b3828af9a0a0100000006acac656a5265ffffffffed082eedd2c785f34ede0dd96412791f75024fea543e8a6797f3534c6e3ada6e0200000009516a635363ab6aacaca3bfade903fd87b7ee39775a85b8624770b41ae2ee131293d81ef20471553f041af9f8960000000008516aac636aab525329728137031457690300000000046aac65002a6326010000000008526553ab6a51acab68b50500000000000552acac53638c9d3948", "ac6a", 2, -464729619, "b99b1d23dc9bcc32b5160f6f2abd280423b9756a322c24d2e7935b2a3d71b4d9"], + ["9e79cbbe01953406baad18fe4e25f8a5175ef5303b645f5c9c76018b1a8fc8f8c1c20ca0ec02000000035365acffffffff035bce5402000000000253ac0a3ab600000000000152d9906402000000000351526a28ba3090", "000000", 0, 25073651, "0c60b44424464d46b91bed511b4275eefea30679524d8589b9da99dce33ef0cf"], + ["194ee2db0364d6216a6c099ca5abab3454a029c82b99a433b8a9fc04e98e2e01283fd95efe0300000005636a535365ffffffff068c55a6e06d627fadc4e0ae61a6af556a5b935db38865cf799eb2148bc530a50100000007ac000051005300ffffffff511ee0eced8c18d9974bb6a9ce031e90192fcacf063da357be291bb3b26d290100000000096a52ac6a51ac005251bbf20a7503172f0301000000000863ac525253ab5253a0af87030000000008ac006352006a00ab7c772605000000000000000000", "6500", 2, -953428503, "e01adc6515115e40bf9f6b88a53217d1b465372301a65ddecd7ef1648eef76b7"], + ["e6572b9601f0a9f2a1ec02d17b73a6343543d9291d0b3dc11a2bec843356c8e23390dcf34500000000036aac521ce81e450114821904000000000563ac6552659e129d03", "516565", 0, -434207820, "6bf69b482bf57e2724c45df3dee3d90586b44c205c7f1b71aa7c9b92a2a0d3c0"], + ["28e6bbb7014aed577d120a0af472d239fc75079f719e478e88d2ddc083d1cc8385d6938ac8010000000165eb4979f4030185300300000000015277358605000000000553ac6a53000eed0301000000000563525353519859f2df", "", 0, -296064923, "dacae49fe9a6e4699a0d5ef24cb52dfe015e2f516b0237c8ea51db2acd14c430"], + ["defdb9a0037e9c4ec2f3bb6658d67a0c50eece28022e065318bb6bab4f45ea1c391fc1e5ed000000000063d2ad89b6a17c1ba7704365a313dcb88ab35e4d96f29647075b66d9c80220525f4d2e80000000000265529ad207eea79165dde0f9d675168edfcda3149301eaa724854b26d8c2b9fd9244764850530000000001530834d1d202d7869a050000000009ac655151516a6a5200df8d00000000000001ac4a64cb9d", "acac65", 1, -1640238031, "20c43b002acc4841ec4375430a8b06105e51ee571bbd0b947ff72356b4e54e0f"], + ["d3747c140112979e7ff11be5e230922b07bc4c41f232df9fc8ccea99dbeb03ff5f435d06000000000004005165abffffffff01d916d903000000000752526553ac656ab9e05785", "", 0, -938779913, "fb4eb5dc4390908135afbd8525b71afde81e4e8eb36d18a0ce73ecc37af28a38"], + ["519834960128be0faa0c83cdd6fe550662c166ba16d1fd6e7ff64958ba99bc10d5ca658ff40300000000ffffffff0395f1130000000000086300526351ab6aab80483104000000000851ac6551ab63ac6a2ec40b03000000000265ab00000000", "", 0, -840253219, "b5dd7fa836a36a6df01a5d0334c43def989cc9581bcad84e54b1a2511736632e"], + ["c5fc82d601e49b5913fabd6cc8aaec1e22b17c192365672dcbdb9c0c70ab3cf06f61c160370200000009536a63ab00ac53ac65ffffffff027baba1020000000006530063ac53ab788cb602000000000852ac5163ab51525100000000", "6a6363ac", 0, -2041964984, "a1850704d03cf5339589dde674e23588ae919151d3770fdacbf05389c3c1e4db"], + ["9bf5530d03b0333a141d5e4e2a9d30b949e003ebc6f401d380ba72a74460e9b55a265f9e6803000000086a63526a53ac636affffffff3242d6e5ef72811ad8e5ae4258946e36f7c4501461cfd1a1d2996dd7e2986d1e03000000046a655151ffffffff05b7f0fb68f9c7df44ee98f2362d24e9d66ebf9f2e4fbdac4f3007d5f2a7aeb70300000000ffffffff03a7002600000000000453006a6a0abc480500000000025263f81757010000000005515351abab00000000", "636a", 2, -1301126621, "744f447804b0eb67febe7bbd5027ae6fc7494a91224f9f24af63fe7d65d993da"], + ["9518c51302998cba855fe879e3cfa5057d5155c91f9be2cc61151d25089b07e11c7b40d77501000000066a52ab6aab51ffffffff9b95191f193fa38da07d74e34711997882a4b169d8cebff75211675188aa5775020000000653656500abab31e00a4b02a4a6b2050000000007ab51acacab6365df286305000000000463656553df90ce40", "", 0, -1882766620, "8086a471a2f3d3013632bbdb2d979ec6bdf459d71c4f4acbf3a6f85947748963"], + ["da8ce72402551fd36c22696d86052f999be0c9bfb89ff94a38f07dd0eb660650adb4b6b7300000000004ababab52ffffffff79d17a7fc9c4e6427f1233a87b0cefd37079e5b5de5e827e484f659d1e2161ac01000000086363006a6a6aabacf245c3d902715a9e000000000006005253ab006a1f61bb020000000007ac655163ac65536bcdd2c5", "", 1, -220283946, "ff06a254b81b11f4cba3f79ee57619047c9eabbae07a37dce21a48111d3d37b1"], + ["60dae3fd03927937e28cd98052e0bb1e3c879a705ba59a67a3aa67b9c705d4f3fad630eeca020000000600ac6363526affffffff2c1dab9469c141023a920a31d8dace5a81b3843833bfb5093ef9e0a3592b85050100000003ab6a6affffffff211c4fefa32e46456289a1eaa9d4f04db078f821578452a617995961b783425403000000056a5265ac638b51a07202ef6264050000000008ab5263536a6a0052c5a3340400000000050063ac5353f64f7c5a", "", 0, 1139148708, "5b2061f1753301274ea5d34715c630cf54009b578b3769dff9fb58064c043578"], + ["0fc0a8fc044d8d6a368ad6c3c6d52ec028df5c1533d2d29846ff057d8f646ed103d62ffa580100000000ffffffffa60be02c30b12756c4f10b9b385df76427c9d1215473bddd5d578e70f77c7bd70000000008516a635263656351ffffffff3c6e834c50121318a26bc69f14b22431728f53db30becda22dd150a0d0d26a6c010000000553ab52525345b68a0bc10182e08f4c28fe78654a6a0adc2bdbe841a7440057bec91f1dfdc9beec108d000000000563656352525dddb03d040d744b020000000000d8ebec000000000000c66ac00400000000040000ac6a746b0103000000000465656365b0d8ad1e", "655151", 0, 764051495, "c3876bc8080ab5adf0264e04ffdafb8a3a090f6512df189830b9a86832182092"], + ["70b9d26f04888f4cd8da18766998af8d2d173d6a2b870442bc405ace78b87806018905accf0000000009516a51526aabac5253effc2f1467c9266114bc00668cc45b36ac4e51d7f30ea062f6cd35d28888fd2060498a6703000000096a00acacac520051abffffffff13094a9cf8ea967efe9bef58632c8053beb1e9108d5bc3496506f6957ab626d10000000008005152006a63006365c522246774675596625424806d6f26b7ec9ad6100cf150094c759f96eed89b435b6509000000000551006a5251ffffffff04f13d4705000000000700656551abac52090f0e0100000000025363dff023010000000008ab52ac00ab53ab652661f2030000000002510000000000", "0000ac650065", 3, 1379673750, "4899d36d51c3e045c00a0c02ad3a9a8316687e351d8566abda487580b7074b40"], + ["9152155103811bfaf7a1fbbe606c2b85b3a4e72e9ace04b7aca73aa145351dadd5733a2e170000000008ab52ac6a0052535123717d66d25c3eeadbcc06c80ae62dc35ce5dc76d9b36dfbae6ca73a8401ddb05e89412c01000000076363ac5253006574476bd1638a259b61a8ed68c22fa2dc5da69f8bc3e3762bde672f9671c5248192b6e412010000000165ffffffff01ec2031020000000007650065005153632ebb39db", "6351ab00acab525251", 2, -1152498436, "df54103168856362c08e666caa7d0eb38a345ce1997e68375486549c2de8da87"], + ["b43e875a04aafcd6a40141f34b668dfab2dad10c83c57b24bbb8660df3c3965be35e22e8d8030000000853635363526a656affffffff783774357ec79f79eedb4f9b130cb1e8e0c57405fae91010d7a93c6ef2f644330000000000ffffffffe90aedad713483798148942f3615627991df6b186a0d5f9607d56ebbd113afeb020000000453515100f6529884a4c67cf51ec8edc6e08ce9f578c64e01ad4e849f5e20c618fe30b1d13dd9a3e1000000000651abac6a5363ffffffff025b2cb901000000000653ac6365635325cbf803000000000552acab650000000000", "00526365", 1, 100913625, "413ba0b018024bb5e5fd9d2ab0fc9e9f956d35a282cc31a4797f081d12339f70"], + ["78b3412e04a7aa41313f8bee23966e3e490855b594d662e9328af25a644a5f8a473bcc8f330200000006ac6563acac65da2dc0180dbf535a91fc0704a7803e690720026d64fba32fca4e7e08d3324dcfbec1fea703000000066365ab63acacffffffff7e076b5c500fa67d7d5b1ce0613707e9763f58f2b611f82be87b38ecc979c55d0100000004636300abb44b39d672f6137a667851dfa38498c0eadf19b36f5ba868947233b374ba1f8bb51a2b370000000008ac6351ac006363650de2c032026f5d0805000000000300656addff6c010000000009acac526a5351abab0000000000", "", 2, -1495749207, "f90adce99df686836258430270f5de4ee012ce11d973b941414a7409a0d16e79"], + ["3166c71c0116bf73ab69e8882d007121768851948a9b1d408911d2677b10853f543410d5a60200000003ab51003f3afa0f03269dd0020000000003ab005126ccc1020000000004ab6a5265aceb2500000000000900ac63ac5363ac515200000000", "ac52ab", 0, 609284789, "54c8948c27efc2e6f5f4b580ec078e3ffcc4137371919a8df3d6d108cae5780c"], + ["eb770810013f1d9dd7a5d4d0aa0e7c80a4f24fbc697795af9006c1c5e162b490d3c5f3da6b00000000075152ab006a00abdd0807bd01b00169000000000004ac63006a5aa99f47", "abab00ac63", 0, 1540963416, "0b9e18561418295eda0c1f824c7dfceafcb801eebb08a4d5eb9d270f2abb6037"], + ["f461d833048b768fd2e485ff4d5e3e02bf8bf4e65740a46a4ae929d4af6ec848be6916d30701000000065151655152abffffffffc78b8e856e5d139f7433f118727310dbcc3fbc673855212e6d3ea802c018cf15020000000951006a63ac5163ac00d0a0175a53478a3c274440112de7db9a70974529c9ef3c58148b81380ad5c55fc89e3eaa020000000100fffffffff09f1ffc5e4a1b18d84b4cebdbb88ee33833d6121ce4f0e1e09a88689a649857010000000300635153a957e101218bf10500000000015300000000", "5252ac52", 2, 617680009, "f54fe3d35896caf6d4daf0439d5688df8cd759ff370a87cb972e31ab68101017"], + ["bb00e28402e2877d5ab0befeafe94d59e8596fafaa3dea21432009170e54e241742c0d8f2801000000036a535394e03e22a6e4824fed9d5d265ec7342d534234e3fb12c95958e64af50fc97272a1e90fa90100000004ab516552ffffffff04b8223c020000000003abab001680fc01000000000965656500526352636adfbcf1040000000001ab84b6f0050000000002ab00a69e410b", "5152ac5263", 1, -1515997088, "9c25b69f57987b9b2325fba8685492067753fcd8cd527bf954c9dcaed497c834"], + ["ab61882301460816f4be5cf99b5188b05b6f32fe1656580f1a3b611f24a8ef44365389b96400000000015358223bc10258c8f101000000000452ac6563c45d1403000000000753006a536363ac6d3a0546", "005352", 0, -1664585848, "97eec23e32328ece1af0c8c31ee572f2d23745e4bbe3cdb81671aef5fe898c41"], + ["41a5343e04911edc3300b5b8a4ba53ab1d4c50edf60b856ea7ccba90e45b55a89eabfce9750200000003656a5344c22988062626da7b092911eb8cdb42438c496327570aff4424cee2b657696295cb09810000000006525300006a6ac29b93c4b952a89c18e346a26eab12da04d7f3f8a96051be446473c8e7d5a164d164314201000000085263636365ac6a534699005d50498be4ff35aa8cfa20bd988cf4f27c4d982e0dadafec4264fadbd082e4b6e60200000000970c87f401334acf010000000005ab5153516559254237", "536a", 2, 334777545, "92f420c0653f551bcfa0f4eed1f221159fba7d9e7667f5758cdc2a40d467287d"], + ["cdf5759a032a4cc2dbb1d0186b21850563a85b65e2f98109554d34a05bf9da80c9a8653662030000000565ac00516af56396124698dd7ed50ad605717ee70c9478ca54e8e72298206cf2a5a9cb0b9042fb60a00200000002ab00ffffffffe12f9dbdc8da5a8ad13deb83121a08866656772f7f0e11bad308bba71833c41b0300000002ab5121b510f004e42871000000000008530051535265636a30778200000000000953005252ac51ac6a0014ca8003000000000363ac6512328104000000000851acab5163abac6300000000", "5151", 0, -1836115564, "833549270ee9509c34f049fc55ddafd8af374a7af7e71ec464df41bdaacf1f6d"], + ["39337fde04af925a0b7e11f3036ddfa773a0c65fcf5658853de31f38da1cdf27fe603f1848020000000965006365ab51ab5300ffffffff3308cc5fd638a3e933a096370f2dd48b130d7111fa6421827e76235acdeeb0ca0200000002abac96e7a9b6a50cd8ff234f4e1338d4fc36ec99eb1c4b2478b74421c3b5813ec7beb827a03d020000000565ac6a006a54a7ce57a7a4ed4786018f7aefe7925f574668e330f140f9df00c65aff96be989d06ef0a0200000004ab00650089bbb14a014735f40500000000036aac5200000000", "520051ab5353", 1, -1616079411, "5d59a0244b760f9a661914ca358f569535bf664da2a7527ca62f68483ee4185d"], + ["ddd3ea2e015fa1197f041d95240c3a059fc6c4f46979170d845cb49e2e99f8e75f36039d2a0300000006ac52ab5351abc435daac02344eeb050000000004ac5152657dc38400000000000700ab5200ab6aabe23f0bd5", "65516a63", 0, 10254423, "7f5e3be731f8e009e8ddf0cbef070be08808867d6165f4790c2c54ed2a315034"], + ["7a8b11c4037452dc958374a9c3ec146ad37b153c9b2affcf6e3005f854ba1f4be1dc2cc870030000000552536aac00fffffffff4203f2ae174c23004dd7426463fe640a85df4569cefc7b277769662a1d357f40200000005ab00535163ffffffff67d65a47b5e9b17d776725c01d61b2b0b31b3c22b57ce9ca75b3bcb8b55d7a7a0200000005ac526500ac20a1910f036d78f105000000000353ab0030a5db0100000000096a6352005263525251fa64ae01000000000551510065ab00000000", "", 1, -2012237877, "0344d3b4d76aed497143d821b703fcd20a6cc8f1545e9563bd3a8198995b4c1f"], + ["615ea533046d1f240fda18fb815b77ab202652a576dceb48d15713b0ecd0ee3ae2e22c0b830000000003000053f9f7382d4904b3712328f1ac7a411b3455c121e32d2a81b7374fab0b33e4405deaf83e180300000005ab5265005305f90d31d2a926af83ed8d43dc0d2ce56ebc8d51823a55d9dbc962c06ad87e43c1a0459e00000000076aabab00655300cb096d6bcc7dfb4c696e95d065fc2c690f2c4ff1b3d409d6051680091fb4631a2fbf38b90100000001acffffffff04d07c46050000000003ab5251a3d43c030000000005ac6a65ac53537478050000000004526aacabc2bc7e0000000000076365520000526aaafe4e25", "6565ac510052636a", 0, 1090851535, "80f64fb2d2df66e61b1a36c2267f2a05f5fba5439176ef7ba9352914742f9c49"], + ["3f8be3e00283f84ae2cf1ee33426d4cb8e3dd91e375e0468c314ff91376eb87a78fa9d62820100000009ac53656a6500656a65400296ce7f6b4bb646ec0b4ed0e6d85cd89b1cdc0ec6d58b4bb8b8e9432b36c9172a656200000000026a65ffffffff041488b40300000000065363006551abc0acac040000000001ac22585c00000000000500acac52abeb76890000000000046a516a63772facf8", "536363635353", 0, -1650371595, "d42ccf7f5659b6e71a42f40e73068748929acb941b41bce6e451f59132543bf7"], + ["b12df95a038cdcef53ae910afe9c76be9b15ac4db71323092bfff2e7d2af7d9350703a83960100000007acab51526aacabfffffffff8e76854a8792c5a91d2e5741373b96239079ebcd76deec2e137e6eee30cbda50000000003ab65510ca5909b6b0e5d41a0fc33b77802f483c397545ac9a598e585139bf41d6ffb43b4b7d34d0200000008ab5263ac51abab53111a30160187287d0400000000036563ab00000000", "6aac", 0, 819650700, "3aecdd75a504c792fc777d5ee54a141d41a3f975301c9a43eb569b257e5c9b50"], + ["5eabe46b04f66c71299971c11d054badd76f1f78a90fd860d76d28669b4a3cdd6504ad48bf03000000096a65656a00516a5100ffffffff171773a673423d60292f95f2cbcb6f59e3edcd00654f30bc43f1495c43c0a51701000000096563ac0000ab516353b8491c1ab4b59acb988b1e344389bc6d60a916d6c8358ba64f4212a4832a5778ce67873b010000000351ac5133f4d69a847a1e9369d91207efb6bf4c0421a47438ed542c406f63e74e15e7882d9bcbf70000000003ac53516a0cef4a0369f9c004000000000753636552ac00acb01bdc04000000000353ab0047cb66040000000004acacac6500000000", "65ab5351", 0, 2128688414, "cf59fcbe2f006f96be848dae4fc14dec8a40bbdbd3c7d1c92e6079a5d6bee613"], + ["a7062cfe014009df490e77cd56ed384126f734850206b4bfcf3205ab8dabd6a8416e96cd5a010000000553636a006affffffff03b5563a0400000000096a6563abab6a63ac6580ada601000000000553ab5351652bed9e00000000000352ab6500000000", "6a535200", 0, -658861432, "5a6a96695f8fc7198ae7406a5bd6038b57a995d65b6a9978c119af1fff19ed15"], + ["33a5573203665461cf9e108781f2542c9c135d1000840ad75c269c93254719fee7e5263fae030000000800525165ac6a51abffffffffdcb5fe70adac6206adb5e27bd934af78d140d3ab4c48d1595164ecf0754ee7cc02000000076aacab5200ac00ffffffff0b6df1a42d5687020908bc8a5a131b3a6ef25ceeee1cf21a015e75f31c53067702000000086a516363535353abe70e6ca2045d61c3010000000001abe8fa27040000000001ac7524750000000000020065b70abd040000000002ac5397e09afe", "6a", 1, 1436677007, "271df075eaad4c17419abd4b079767df8a4a90638871f7e317d90f00b36b7c93"], + ["39d6dc73039d1358ac3665a4c5108bf41799d8f75e99b1056b405355239c71fb2b7445822a02000000045163ac6afcff150e3471920f78fbf35194dfe3fcb46caf78a43ece357c7895d56d6198da899d973f0300000009abab63535300abac51ffffffff77c5aa602eaac75c5673a9cb39f5c2203bbf899a8af1543a7182f3d579a2a8d00300000007006a6353ac0065ffffffff01e98e0a01000000000076e8f386", "65ab", 1, 2121342681, "6e5597456e03c1ce6f4bd2d7bec7d01712c302601abf6ee8d65f2ed76e4daaf4"], + ["44bfb4d903cc90fe3aa28e2b5b26d0f7a0a3b0e89ef4c5ea276056218899eb9789ddb0030c030000000853ab6551ab536300ffffffff8a73317b00bb7b07d206e38c33f690951d0b43142f6a82dc685e531f22f1db45010000000763655253636563ffffffff91cb1c1e426241092412b44131fbb7769af6a421167a42e92f55d5c2b36fa1d20100000007635200ab65ab65ffffffff049466fc020000000009006a51515253526a63b6f8100000000000096565635263ab006aac18c4ce000000000009abac6a6a65ac53ac65001acb0200000000080053ab6a5300ac6ad1aed514", "abab6552", 0, -340316192, "d6402bf7f893d47b0a00581b0baee6c3b8079731586d142351aa77af990e8b9a"], + ["77893cf20423f13f30c957255367b39d54a26729259dea1567f03faedc31d1e77a82951d1e0300000006656365656563428e3135017fe7a9ce86e9dd18a73ba64bfda289ecf670cb60419a34d913d934ca5b40bd0200000003acab51b68804d64381310781536f119e30b95f4ce7fa2a69171f07c9fe53efbe6c6324c74dede80300000005636aac5251888414c2f5ff5495d62e05a3f943ea654c54a8352072cd37e8b0fb967c9ee96eac5aa2a102000000056a6363abab3452192402f50ffb0400000000085100ac516a0000537b0d7601000000000665516a656a6500000000", "63", 1, 580326537, "930be7e0b9516951a612be2c249693cf00fe3754e4652baa8de6982a3235951d"], + ["e40151c4046081924ccd85a2ce3f3f2835dff293df622da669d636024c784a129a35b109f00200000006536a65635100ffffffff548ba39bb9311a6869d3f386625b9d2a088c7c940088c7d97e93978fe02a0f67020000000800525352636a6351ffffffff21eac8d4473ecddcd6ff41042962eb2847deeb1b04004ef25161ce65db21e776000000000751abab53526a65ffffffff73c1fa4b1930a9b2ca389e436fe466788c85e9a06f875fe4e94cc308eca279f6010000000563656a6aabffffffff023b6b2e02000000000100c29f19030000000008530000000000acac00000000", "006551536a526551", 0, 579532041, "ca2df94b5aea84a329e74c481a3812da73105f4375614297a7cfa0b49b0d1169"], + ["6552972c02a0de25093442bb6ee4f820e5db76d96c3eec63b789f57418508ed96a16d712210000000008abacacac6565ab652413f8443365da6eb77f6992b375d142f8b08f09b39af7b85a7905addf8dc0a2dfab7118010000000152ffffffff0356b47f050000000008ac536a6aac656a638f747a010000000007ac65ab516a656a5504b4020000000007515151ab6353abbd849dfa", "65", 1, -1344835045, "b783f71c0b648cfdb090079aa18d5167426ac3fa2e2d2bbc7d81a91df834953d"], + ["1324dc53022fed90af83ae4f901126233fa1ed3b56ca4f8cc63fa52ba2dc7d754728cb2ba50100000008525200655100ac51fffffffff8558106a5af5cc84d0727d19439823d890eeaf3977089a1193f990f380f109703000000015287985b1701b7271002000000000363635200000000", "515265ac005363", 0, 480458450, "db860f8bd07a2f61d89ad6abccd1756aab9270ec9986927e2a7bf293df4cf6f2"], + ["04309ed304e74a66d3479f863ab53f21e166e695bed625a4034277c8f4b25bf651d054e31e01000000026551ffffffff8b5b85c5b88d1f6d83b30ddf152810037528a0e2f5ea329135768770f4a4b8910100000009ab65636a636565656a92864a9cb8fa1a685156b6d725afd77dcff2eef6842638028ac01e0545bbc4330957122200000000036300abc5ac48fac144e565dbfa93df62eb0bd4e9a799ac8e5d05925b487b2eb3732f2294086fe30100000001abffffffff0426cb04030000000008636a53ab53635253b71f2703000000000753ababac52abac149e35050000000009535363536aab53ab513ee3780500000000055100536aab00000000", "6552ac52ac6a", 2, 1436290362, "02872696befeee3d08a369df970e390d373a7fc9a351ad4e9c2d3dfaa32237d4"], + ["24695ffd02071ca595f25f66eb6ce12e5b47116fd43744c24461d2c1af8a748b933f0c4c4301000000016398c41e722c0d7e661b02c7981d89f21a8fefa74080c6c7d823316a695526bcac542bcba60300000009ac656551636a5300acf7bb31e3015ad48a040000000002ac5200000000", "", 1, 711454088, "c5d8bafcb33f636d56ba58061143f9cc0f3b03ef238e49727435e15f688fc59d"], + ["379acd62034bf12c96bc222f48c6740ad31130b84e2ca0819eb81e00c3d801d50cb33a0a2f030000000600ac63ab5100ffffffff13c63ac6b60342c1fa6f4056ad9454d198b522f248a6251064d98ff6ba7a33990000000004acac656affffffffd7cd2d72cf8892314f30eeaa306d183ffbf1c5a941caefaa9c0a289ef1d467dc010000000400515363ffffffff03990e44050000000003636aab25dfd004000000000951ac51005200ac5252e0f58e00000000000165039022fd", "6aac", 1, 1898723369, "bd52858aa343f4333d458de2aa7efd1c1992961cd02dbda39740146590c26529"], + ["dd5d288203f94ff8e88749f02b59442c9ebe04c8e30bf13659c87eb66e5e1b1b12d48423640200000005636300ab6325f36e57d00d4c53119cfbac964eef56a60ff12874ebd83162c2408dc6d0bb3b2e7ddb4d000000000056e9e50f7a59e975e14db485486f55eeca81e4d54d66b9c5ccbe2ee5989b235e1bc75b31020000000665006a6a51abd46c326f02f4f93c0400000000005223f3050000000006ac006551000000000000", "00516a51536a", 2, 2083993813, "fdfa1c5854bb5f3eadff1a169d67ff819b773b376fdda8ffd6e0d19c1bb87e19"], + ["5a748d3302f93f40c54163b9c9e67b27f877ec1b42222fde1deac047e82845db52c58280c000000000056300ac00638e9f692ee1d9f5563ac2f59c0a04b3f0bf4237f0a690271cc80b5bf8e4454adbeb4bd5c7010000000851ac63515265ab52e98c87f304052d75040000000002656540cf280100000000016357a2460200000000046363abace1432b00000000000853acab63ac5153003b598717", "5200536353636352", 0, 954669619, "8756f44845d4871e0980cd1db0afd1e3c0f6eed81408ccedee258831e6c456ea"], + ["d4acee7a0347acb47d9e47f1da4da42e5eb7ceff6972b87c74a10b315db18edb59e94b33b400000000046351ac63ffffffffc455d5ee0038adbd7a9f00fdd5ba28cce369f183ec80a67516e524649d73ce9c0000000003ac52ac9057ef5137367d2904317ae480e653396048f8a4de0e7472f59e288520ff7a946fcc7fe9020000000763ab65635200521de4b10b041de48f0500000000002026af030000000005ac63ac530086088903000000000765656a636aab6a6883be02000000000000000000", "00ab", 0, -1972867429, "fef168a325eb3adeb628c4c7626185a57d8cd3b81d574aaa5401e6c17770e1af"], + ["8a7d09210449e4034f90ec55b42cbde69d552f05eedd72be75ec2ef08aa08b42e7e6ad49470300000004536a5263e1e0bf9888416913388c2a576583bdd567ceff0c3bd7af2cf99aa3e481f5d219a3a6705203000000046a53ab6affffffff9d8f2b5f242739e7d3503d02594c5199adb50dcc138265ce9faffa280b31f7ab0300000001acffffffff5adc02a0ae900a461f12ff1d07e6da5743795ea9b248d3a0c1cbff954b8c3abf01000000040051ab639b978d8001e8aa4c010000000001634864a5e3", "63acac", 0, 180859782, "e9000b8bf1ae0c5f2cff6b470a3aae04b2fe99b4ace5b8ad4682dc8401930ba0"], + ["f96f987001792eb280288baa850664c134603bf51082837711de6e5a0b77b08224941db094030000000600ac6aac630051f658a80230bf3d0300000000005f3cf3030000000007ac65515151515100000000", "6565525363", 0, 672222878, "14abd81e5c8fce67ac450a1bb63b60c1632320cf4554f295ea865ccaf57dfe45"], + ["22761fcf04b95fe315dd41ada3a13bacbffdc59c10e745ddf580186cd9688351d7b0b5c2f00000000008abac5100abacababed326d6d94cc48f3e7f2bfea9bfdf135d81c4628124f9eff0a94fd81f464a43ec6192646030000000100d31b2982698dfc80dc6c6d0da85fa3093293e22e1764eb7bdc62813eddff3dd3b5009c6a0000000008535252ac006a5263ffffffffc5465c29f9d4cda4740bcca2bd1dcc1baa19e5bc51302eeb87513e8b17fbd813000000000353ac530df01073030c03f504000000000700ac636553ac51b65f35030000000005000065636a3f7b44040000000005516a52526a485e039f", "526553", 0, 1137336213, "9d304e6aaef7c2511e234c33c7406997d0c893ceee2a399c7c549b62e4e49a37"], + ["b739acdc0155024760cba2663ab239ae08e64e33fb3b99ce06e31ef671476b0e2227d767020300000003526aab62c6266a03c5dc6000000000000400006a51c4ca6d030000000001659bcfb3010000000006ac656563ac5300000000", "656a5200acab", 0, -1017048038, "207764b4a67808bbf1c770b83a9c52bb3e2770eee6a1314e8286ec85f8b916e7"], + ["99a2005d021feeb40123546c5d47c84a9daf53518ae28545ebc40f6923ee75b80ac39d8d360100000007005265515263515a3620b187fd1885c007de01fc9bd976ef682d81573d87ec4131a3d10b21929f9511c66002000000076352005263005231d1b36f046af40205000000000963abac52ac65635165eb90190200000000015230485f03000000000152b755010400000000045263526500000000", "656a", 1, -1699902695, "7755c95464858f4036f8c3cf42d666ce2891b6398cf216ba87918cd412b5d2f9"], + ["1b5e2643045c1c93228d062185305ae7a01785692bd2bb88b057a308c12c17ec8f7ef6edb7030000000763ac516363ac6affffffffd774f99537dc019b0c0b4910f95947324d1a65621b8207586a4c9bab12133aff0200000001ab8760905ba5e2979bf57f3e6a12de8c52c7212dc671ccb8a492becfabbe174193a5e2cd960100000002ab63ffffffffce6d68b70d8d441749204cdcd8d0a60997816d0bbb7f491506390b6818a38c87010000000100ffffffff01c7a9bf020000000000581b8bc3", "", 0, -1165869684, "4d7ac570f904a1f53ff7f3afb6aaa4b3685d4c56cc05dbe5d0468f9d3a684b42"], + ["93f5eca104365e35caec1a99511ddd25fec4892c51628d38b40f3eae552b4710695fe15a82000000000365ab51ffffffffdf4a72b171d3da62481a0b3a0f1bd35d13ad64ff51df0f586c9ad749228e476903000000055153ac006349096b9982afb44abe25a4a14834637c3a039769d52b92fec3de01cb2c6067890044b8c302000000065365ac53abacffffffff4c1df8eba52b7a5620f7ca0ccc0ae78e3d5ac1af4a26fd191042e47c6d4b11cb0000000008516a6a6351abac53ffffffff046eddb3050000000005abab65ab51c93275000000000008655352006aab00003c42510200000000055200655163eb3e690200000000015200000000", "65", 2, -1912864644, "7de0cbf33ed6a6c81161ce84b6936351a435c51fcdff589ae2a268258cd00359"], + ["83ace2f501a06d9e2bf3f133b7364efd5140fe5ce8804e36b0c464dcd7b53085e5e62e9f7d0300000003635165ffffffff0288a13602000000000753536a65635363999197030000000002ac53076fbf25", "6552ab51516a0065", 0, -161426522, "6fc76bd61b045e0676b326a8d9276f6db108a7127e6029d5d9513fa485cdacc1"], + ["4257c20f037723434582f14f788aec16ebb34aeaf0969b93e16a37b52e7f81f04ffc170bb40300000003ac00ab4699bd01a8e45c1b5c9f705cba152e7c7ec291d62c0d03c8e2fccb988dca67aee6b8856f00000000086551acac52006a51c4e2c40555b4f61474ece7247197907cbe87cb26f7840cd857c62e3cbbe00a64285ce55e020000000153d40e63f001743f8301000000000565656a516544cea525", "515265636300", 1, 1165183266, "e6696fd2571f7c6f9120a74c0e5234f9c147883258932ba4426a65fc29292ca3"], + ["4d99d41702a92172ea1ca3c51ff60b6b718d8940d34503ae523733bd3645ef8c169cebd4a601000000056365ac5100ffffffff2a1040521af48919903a57fe00d1404a0c60ee5f733588795120907e354c635f03000000025153ffffffff040eb99304000000000863ac6a6563ab51637d6d86040000000006006a6365abac21bb640200000000008f3d560000000000095165abab6aab636552c1e39033", "5363", 1, 222790266, "22044a562cb091321700e6abf7561fc898f2cec61b1c3f9a594023fc47156b69"], + ["b78e9d89043ad8cb43c50254314eb2a32fce3448d569d476c8e45dd311d113a2693ec7084e01000000086a5300ac6a51ac630b5524aafb7bb3ab9551eaa8764f5c05171f0f14b2e8f5817070b66019308b7fc9992c63020000000553ab65536378048672745564dda90b207b816d6b5829ba0d04303592966eabb569d58ef826df5748d70100000002526a7ae507b5391af17fac1f81246cce4135421d4ada9a4d9695998266ef8ede462eff93a119030000000751ac52636553000e84686202ff6b0604000000000363526a3bad38000000000005ab0052ac654610e9e7", "6a00656a00ab5200", 1, 594120114, "443533971704939056d3155d0b3d5c0f8feb1955b59dba30860c0b849ecc9b55"], + ["748a1a4904863cc9a53203c95e0218844df27a2a5d9f6ba8b99f85b899290e0cbb3b44867903000000008fc10de4e6c4fb9ca392da6245c6b618334c69b11f23bbe67c46dd4f646c540755327e81020000000453ac6551188fef04068cdca724a6c6365d86b9dae1b6d1c5f49db02f5f17bf53e71b2cc860ab6bda0100000009ac516a515351635152ffffffffac22d59c9afdf73a3d8b2e2237b588baf836d7d98099539ed2f73366282989080300000004525265ab559e7cf704119e02010000000002006a9a0cdb000000000008ac65abab6a63516363586c05000000000965acab53acabac63520999630100000000056300acac632f8c52a7", "53", 2, 444065044, "f94373c9b329d17530113cce486c2d18ad307e256f01f8fbc78a4825d6279e05"], + ["fa14719f044e676de00b67e91626b74fa47926c934a7ffae82ce4b3780a2b20211a5299b5d03000000004fa87153bdf2bfd4251a659e603b4b3c2bb94a18b3c63ff01c2fb43ae382319442a26fa40200000007515165536300532355cc973c261f08aa6a06e42a1f723b7e5e253cb222ac589241ac0cb6cd07339d7e95e60200000002636a0fb3db851417ced13532e8f9f73351d8874e1ba571cfdb7072438e83c65cc7548a4571c5010000000500acab52650e551bfe01063ccf040000000007abab52ab6a6a650cadd7e6", "", 3, 505831391, "cc304a285b59748bc6574cb1f68b0c8169a5f2e4d248f5e9764a60d37a448f6a"], + ["fa7759b5028739a9988e8d46a0d694485530c0d42d892be36291ee0527f81b2a7dd996464b00000000026365ffffffffdb02d470befb220f7e5df4f6299a3f7c493910339ed2962ef5bb784c2ef55c950000000006520051ac53656c1f65ec02c49add030000000001ab61186205000000000963520000516aab63003437588d", "63abac53ab63656a53", 0, -1890050573, "e606139bf0a2720d7762d42cdafb02eed53935675f4514c90436627e962f2f3c"], + ["582f3dd3034672aff30d5fade125dea0d21b2510e33f44fdd989c47a58319f7e49cfdab75b0300000008536a6a0051536351f307e9e8a13849f138a890a99e79a423f875e7795f83acc564e8b0cc7d01e9534e08ac220000000006536a51536a651275ae6ae58c89bc9a2b496919f51a7b69a059d7c3461602ce1c3359aa8897912b48c0de0200000006abab52ab65ab17b60c1603a8af96020000000005655200ab6aa3400f010000000002656a6aa4d2010000000005ac5263ab6300000000", "ab00656a", 1, -1010163023, "c62b02f5bee1b02814183f280cb6cb8e8d67c93b3dc6267b9a0a584f69b69c9f"], + ["1abc3291019c047a03a83b5f709e448ac2cf74a689e5090b62a391ef89e58a3e58b5dc55590000000004ac636563b55407630375d02e04000000000165df0486020000000004ab6351524733a201000000000800636aac6a5253527107f603", "", 0, -127306773, "27089d2d4bd9d8214d7ba7e942c5809c083d5a74ee76738826a674f8c9bfa259"], + ["c56d13ef0156ae601b05470e02fbbc7b286868651923f7ab1125052ccc2d4c7bebe319f9ae00000000036a5163ffffffff049cad08000000000002516582f90a0200000000036a515297b29b05000000000653acac535200cd578d00000000000251ab68e260ae", "52ab5265", 0, 1600073764, "c3a581bec9c750bb1bf9d2ea1e6d9ae6fa3d35c694dda3ceaed55230061a51d2"], + ["0bdd451a04c52cebf186809a6e8bbff00d6877aae23cae1a04c6fff3d18fb0c3b1fa2667bd0300000000d074642993ab905ad97d409b612aa8a3d77453e49650d2bdf238d3985dbcdab73b5d21440200000003536aacc7fc19b464d435a9860962c543a07bfc5cb4eb4e85eb30a13bfb459d922250ab6fa40f2003000000090000656aab526a6a00ffffffff84f561b63878e118543bf8b2d30c16ca67e5b479cd0e3770112adf1be7c9e40a0100000006acab52536a6affffffff04f7b5d9040000000005ab65526a520cd6c605000000000952ac6a5353656300aba6e77a0100000000026aaca500f104000000000000000000", "", 2, 1196126431, "549331b43e2973d4841822fbef7da6b3bb9b3418b3c4e59006b2dde1a9dd1ea2"], + ["8c1a2903017e5521322aa74aa0da7a3fb94e37eed3952bdc2c22dd20b57d60d7a9519d77220000000002636affffffff0483693d040000000006ab5100636a00d200b503000000000952535151536a530053ac0f540000000000046a6500ab0cafa2020000000008656551acacacab5100000000", "ab6500", 0, 1804399151, "92737610e264c94baa9489e714f3dbe042e8819e716412db2910ff1c380b2585"], + ["57632bdb0115b8af79238908b65f3a83ed2e882d16b459332e9de6c63c9fb33ce4a7dedf230000000002006affffffff01635eee010000000002ab52d64c0204", "656aac", 0, 935871364, "4c61ed181cf3d61d1abe65b39939063a7cd453faa90312603a1f959fba09ad06"], + ["c9434a13041796b53ef29c981d2581b1105874873bbed6053a886bc46eead1d693087f096e01000000045252ac00ffffffff7eb68e7bbd5c628ad11087534c4b47b84e41671e2df2258e0b8ccde56b56a5b90000000009ac65006a535351526afcb9ef20bc01160ee9530bf2952cb66a66b786d79b3bea920f271138d5d3d04688dbfbaf010000000151ffffffffb4a2c53ee8c0f4d25f497bc1976d25566403c24f35a7cfef08667dc1bd95a8a60300000003526351ffffffff0493e73b0100000000036a51654911cf01000000000765530063006a5322d86901000000000551536565537de5ed04000000000263516abb8ba5", "6353", 0, 1404352924, "38c25e452b1e31fd3ed08cebb55b1fb6d5c4934feb414bb7914f7f3d0a65d2e9"], + ["6f7a06c40322c039882deb36eccf22ef2f30d247979e00e5f075d6d67a140bdf85d7adcee700000000055263510053ffffffffc552bf793d78454fd1e80984129ae029f19b64d5724325c66a4ded4023662cff01000000036a5153ffffffff7730514f1218e8c98e362b109185e9d08cbcedc184fb63a3fd8c5a5074b61ae602000000056353ac5353b14209d00250c22d04000000000565526365535c27cf030000000006636a0000ac6a00000000", "536352ac63536563", 2, -2042533830, "daa7e83addc6a3966e9114fc04c8a15ac671dcc02a76010e769ae47d69b8693b"], + ["601faa0c04cedd6ad714aa5b150ce37c0d9addce5a1ffe1a05ceb5122347e75f347a4605f1000000000663ac6aacab63ffffffff49a282b02e69a83a8e94e4b9eff7bd9ca5fff06b8b94c9a4e12131f6327688a3020000000853ac656a65ab6365ffffffffafb98bf15a1a2909047eebef19e899a7636ed419a7e229036c63189f4325b9c1010000000753ac526a515363e3a67b188bd7c9d851e5040ff591b0e9417a0872ce576dcfbd3b889b56b0c3ca04fd7add020000000253abffffffff014668bb01000000000853525165525363521080c675", "525353525365", 1, -1340960666, "8f0762c15d52045591bc5776ed61d4ae19930bc228d80c4ea2638a9bf4181605"], + ["107ec99301d8b15685ad1f4213925734611a603f8ebf0b3d8ad7ef262a48b1239db5ae81d202000000025165ffffffff023b770a050000000006ac536a53ab6a91b8c705000000000552535251ac3295309f", "63006365", 0, 1294644542, "0f8b0c10ab3e7308609720718cacd3a134916cf7cb4f88d40b55456eabbbf517"], + ["57a345dd03b38e0062a4419d0404728932b282b60a7413f76c98528c4007f232a40bc16be00300000002ab6aacf50b1cd04de8722fbfec31475b39e1c86a7799820c66b0124b3d1a5bb61a8f61a3956c0300000000ffffffffdde7dd280dbf370ebe7fe1c5427d75ca1ae660d33474b33c2c6016886dd0b78c000000000965006aac6a5163ababacb66e8502ca8e1e0500000000066a53ac535263235e2a0400000000056a5151ac6300000000", "5153ac52", 1, 1887342309, "42e8c30a815633eed32450eea4227e0518f40555172d1263cea24a18ca5b1dd0"], + ["3a2c726204ef2220f89272c8abc292c678617e1599e713eca8ec2f122460cd29d88b159f810300000002ac51ffffffff6df0c9f84ba322553b155cef98c120ea0a75ccadda1272faa7debb356dd670150300000003abab6a38fc786a4d2574265bbca4d68f4d60bc7e167d46c2382a7a7e6e0fe347ed10c4d5310bce000000000763abab65ac5352ce82b4f364e78ae205d415a9810344f6c7eafa1b561a9a9c4b5713d310636aba429b8d7003000000045163ac63b5a1e99203eafb5b0300000000026351f49ba5040000000003acab527bb30f0200000000056a6563ab524dcbd646", "ab63ab656a", 2, -1064297221, "204d892f3c0e36360f64cc2aba01ad3c9bbb77d4ee7de57072048c540421bb81"], + ["cb1af64c04b8edfc76fd932da8cb8c5f342d3675e276e6fca638be72d57831406399717dbe000000000863515251acab6353c68ff876474e6e9f19e17ba259ed1f2b6bdf21f12e74487df76a7ec181cd3ff23e32d48602000000066552ac00abacffffffff153648d00c48227ece4ebc819d35409983c478ee5609c5e7a9d51b74ec91d64b0000000000ffffffffbc82514310e7af56060fce6334df4df4726f5f2ad166751a1ee260523eb4756d020000000965535300536352ac0055c0de3f03da02ff0400000000095200acab635352ac6a27d3560500000000086a51ab5252ab6353fbaea8040000000005ac6365ac6a2621c691", "ac63ac", 1, 1238901333, "9d9625f63c34803b19d84a6369bb1ed1b43612c6f0ebe2e058de1b0fcdba3e67"], + ["3305ffab04442ebe6e6198c04e073768bfcb760a5ffe402682adaef14a4480516429df3c3a0000000000ffffffff8dd4052dd27680ad2af54146c6425c9e3e8c7d8c965a33251e6fc1c7e991060001000000095251656365005353659fa7b24ffbd72d00f9613278d875d6f72648af5196a5c9525c3c5dd44aa4435978a475fb030000000763525300635265ffffffffb3da165a557b0d09a570ac1368e93b7a5f9025c7b4d0ee13a554e3f3e1e6423d030000000865ac5365636aacabffffffff0293cbbf0000000000045100635232c59a0500000000095152ab6a65ab65ac00e22f0d82", "abac53006a51acab", 3, -972646710, "6781d6ba6d0bb23d701b11bd00f607fef63c3be6a5a91fbdc5748f11ed6d1e5f"], + ["075072c5028cba7c8b0b2fa40e99669a8dfd057864fa9f2669d1e8dd189565023245d405990300000000c80d4081658f4102dbacdadbe697aca9eb564ebb99c3dcee6b71458a5d7fd6488517b1bf0000000006656a6a6aabac7f5db18501d5bdac020000000006abac6a63ac5200000000", "acab53ac5352", 1, 1289081846, "8260c0575132f3a274d5efd61b664220d88012cf4865e95398033b48b7e30c4e"], + ["b6ac696403229a98fae7983f6b2e041a3901f72ec85cfe8a17eb4a5882d1cbc1d3995523dd030000000600515251ab656ab3c0cccfa2bf34dbbc0d0444dec4e6fb36a9d57ffee6e5c86fb4a2a1c4d15dec93d0160200000005ac005363523e4f335e94d3bd9e9bb3a311afb19e19791f771508bdbd0cdca386a384285e56e5a7191700000000096a65acab53636a63ab53659def03802e9b030000000006516a63ac6a65366f6a02000000000152edf92a0300000000065363656300acf6a0fb7c", "", 0, 1987260600, "8abbc7479d48bce838c93773f0f81b72a477c518efe62bd7a9270b04f5d98417"], + ["427540f704a0739c1c595c929cc97401fc20158ba2f1cf7cd86e79c7cc16001518d56188a30200000000859ad0d2bf42b9c98f934bd0f51af0138d8af57226c172fa9eb7c0cac954462c55ce8dad03000000096500acab5200005200fffffffff5530d5f1096386c9cc4e86dd5c0f188813dfeb31d207f853a524998394ab5930100000008525353515100ab51ffffffff23b71a75f7f565079848c7683894f6a32e6132ecb91b9f12c4f2dc0b1962da290000000006630063650051ffffffff027e1b5c02000000000151a343bf0300000000015174931da6", "6a510065536a656aab", 1, 996913884, "5f2fdd6ab9053137b7fff66ef6a5b00623137da9c3db3a50a136c12f9a76772f"], + ["230c93340123e96f6c18fe2f6e79a892b04521b609488e598e43be929ad2b7d1d43670f89602000000026552ffffffff01ec368a040000000004abacab6300000000", "515252", 0, 142165419, "53ab596fa9419f45edf78feba8afe9a0e8629a3454b741e674c531bb7a97cd0f"], + ["c816c81501a7df9f7eca13008462fa47ce7025628e066d5ba277f7ab6ae129d29128a56c480300000002ab65c4ebf8f901d9e453020000000002635301fe99ff", "510000636365ac6351", 0, 1317387707, "fa0be602b7cfbe24776e79fb7a1d8df125a419ab41cdf01a3b1246f98df6ece2"], + ["806b460d0484ea2519bfac798c78f7ca21b41f27161b8a3352e705215c17a3ec9cb9e5aee70300000000ffffffff8a0c8d5065ce81c9d6387cc60415fb17a169be789be3e2019756b6928bb85e7b020000000465ac65009ce00956cb50a39c97a850f71354c5660121adf1704529580029995f5b59b2176817623f0300000006abac52525265ffffffffc09ab5213ebad35e98d42c6840b0e55089bc31a98d5c8e779c5cbd75c3911e2e020000000252538f460e7d023ed8ac050000000001524ea6380200000000060000ac52ac52f712e6f3", "ac5165656500acab", 3, 1896445119, "2830ac2419206d699bc9921fb2778e8a0695cfc5788dc70346b9dc64451cc84b"], + ["dab80f9d01d9e73fd4dd89208121f4c8b702b9e2ad1ce02820d3561eea71327b26f6668248020000000400515253ffffffff036e736d04000000000853ac5351635163ace169d8030000000004656365632ea8c405000000000763516352ac520000000000", "636aac526363515151", 0, 461158976, "2093662af3bf30840d9458bc52dd6fad5990c630154023a89973343120968c0b"], + ["65d9b48b01cf0a7913f57c4f1210847522d84e10b711a50ef744eae17a4da6c2ec498bd6d90300000000ffffffff025123830000000000086a6a63abacab520023ea850100000000076565510053525100000000", "6aab5352", 0, -1823150798, "8d45d5f0d9eb40e961136b3856a89df008aff6848544366bee2c366dcc3b3ab1"], + ["439b899a031d6bfc08a6bfc5c0b39f2b1af12fe47cb593cc53091c898a3919add98c6f74b10200000000ffffffff9f129b0af0ebf36154727cf1005b35e0e5b873df45ce004f80050e7801976abb00000000020052dcb3a5525cb48e525b2f489ea518706d6d03915d3e73c6b46ae7144ac91a34feb11956750000000005515265ababe68d09f1016c1cda0200000000016a44896416", "6a6a", 0, -1119478754, "84672d2f267e59602fde8a5af1159d1b1aef7a188cea8ac7e3ea00db77cfb202"], + ["cfa98969010c66f2b712843a20afdf7a6c929f80abc5899575eb1968c8a583325c871d49f801000000026a5179de7dfc01dca9ca0300000000090063630000636a63ab00000000", "6363", 0, 2137589313, "90b69085c766e1d4651822e9b3c5483b9f010fd018b45feb1c5a6959b61b6a04"], + ["97c98a1b0246280b2b04dda1c9d31450296a56ae63a5c5ad2c9b5f198801a7b6186ceb175c020000000351acab0522007e933268eac3537c9fa3a5da923909b02012a27431ed157d1226c91e6bef79f600010000000652abac6553abffffffff04528d3704000000000652536a6aabac2c41ad0000000000035265abb5f76e050000000000a6ab5c0000000000065265ab5300ab86231b48", "", 0, -842038239, "815e814a8332934c1488abc24f6653e0a6cbce670044616477d39260ff478cef"], + ["8809c86501b4823959af95b08dd51d59a878508d7f9063edc8308d43ecbdf7bf0833cf2b4e030000000353ac65ffffffff0306261b0000000000025152518b2a03000000000033f6e9010000000007ab51006553656a00000000", "5363ac6363ac", 0, 1991090017, "ef77691a76c21778ee6c050b39e55cd21a45f25c12ad1775306bff59141bf799"], + ["4a994202043309d1bebe3527751785b33818a3083d4cccbadeeddd53c85f560aff10bc1c2c0300000005acac5351639ab60640a4da87476bde0bb48fd480e589ed60a018fc3f46aa1efe3e46a423fabbbc5c77020000000765656a526553acffffffffa5a300a62c7f6c10fb28101b3b51a1634e3e43b9d4e967c32aeb465724eb803000000000020053ffffffff06c81bbe969cb85b0a9c7653676aed68446e6b3c4b682a5151e5328355029ca70100000001639a0cb4280376e7110300000000025200936a0900000000000007e6dc000000000002655117c9c942", "ab65006363", 3, 1468928636, "2fdcef844a3ff30e1231978ae882eb04341e90f98093de3313eb7b0c492fe8b4"], + ["0ace8d5b03a42e5fc6f6899634c1c4adc79a9d93fec5c653aace364bcc601940d08dc076010200000009000063ab0065635253ffffffffacbffd9e750806be9bb43f74da55bdd0dcb886c51d8180dad51513783fc4e68403000000056500515263ffffffff9b283cbc9360cdd4b40c4ae841f0b6436bd354cb98124307862e815bbef30250010000000163fbc104b10184cb2b0500000000030051631392223b", "", 1, 1899729173, "5c3ffb3d7c6633d02f6a16a75adb5774522e1c8e2662e38a960980cc8b846a8f"], + ["5d2517d3017472f63677ef12d4b79b462cc00ec3b3520c19ddd2b79554cd405b61c04dcd740000000003ab536a659a21a301a17ff3020000000003ab6aac00000000", "", 0, 1555820275, "66312f192ede0189995b6422fbf2b930b799b072ae6ed1a48ec3233cb540f285"], + ["d604b25c01c6322830fb9d9dc52508fc8a13b0b61fb2a1efdbfbe7a9a7a92b4989ba8192c0010000000400006363ffffffff02a80e8a010000000002ac51fc3d8504000000000000000000", "655263ac0065", 0, -911481810, "f9ba46483c893f210dc3562c38dab650051a27c370f9609df35d2cf7f643cdec"], + ["8f5e97ca047822b4ff20c164f7a5519d60357a315b3c88de0cb91e9e937c4e847765722b2c0000000006ac6365656a51ffffffff10ef136c9b94428d61054d3ebbfa27e1eacdfb64e53b265f6b569d818624bd220000000002ac52aeb326760157c1b1d2040bfdca239b1b45ed25e16a533a5d2b1d3cde85382875e397b4680100000006ac530053526afcb81c53c0f93462cf63c0dc175698bbcbf1a130a2a557f04b14420387a50ff217439bfb000000000500ac535353ffffffff03831be2010000000008536a536351ab6aac7577c8040000000004525352ac86ec9405000000000000000000", "ac535363ab5251", 3, 604118863, "2c982ae35f4c00b3c1e113a7a2bb636c92ccf46d989d80431ce91ae7410a558a"], + ["55038372031421bb1e2cb320ac29c3368bb8d5a43e2b041a062594c58926d7d776b6e9f2d70200000009536aacab006a5300531ab753d40ee493eb99b2d8eeee92844b34fc9914b8e9c6ae1bb5f938e3fb77d59944653b03000000045352516affffffff5e6f47005990fcf5dc8ff3ea672c9fa54c692189ff4defd5cef18693e13403b70000000007acabab006a6a00f3cf4f7703ccb69b0000000000085351655252ac655339a761010000000005ac00535365137230010000000005ac00abacab3ac2b157", "6353515251ab", 2, -30938362, "69698692b8947d687edcc6b80938c302a82ce3f245077845bb54ef114c0c9652"], + ["3544450301138eca722d3f622d7c57e38029882542c0e76ddb29e8f405c49e4935e0d6c88b02000000075252006a005351ffffffff01bd14aa03000000000563525263aca0e552b3", "5252", 0, 1745234263, "ddbf07aa58499405198da8b3cce74a5d746fe5e00940fae22ea19c60ebc989c1"], + ["236276e802d239624009f01184a093bb98fbebca2308e046059055f2a5eca07920ecd60cce010000000563ac526aabffffffffc33feba9a647f41090d14307c8216a0e38b821025f94a3576fce8011ffa09cc801000000076365006aabac653647cb92047635d4010000000003655151e3dd16010000000007526aac53636353cb84030400000000095165536551ac6553ab0a9f1b0400000000066a65ac51655151775f1d", "6aab536aabab536a", 0, -2083221463, "e9632b3ff6f4d0639878acf06cad411f55e66b0955275841177e7a9b8004a74f"], + ["70bd508d03ed8abc916411dd58a7a114c9241ec943924a5586a9a682800b411a84527e6c9e00000000076500ac526a5352d3828f091fca46870a664904142401402f97aa7e316c246696c36847747af2f6985ed822010000000751ac51abab5353c5f526ccac06ba59112f1da8a97739f7dfd37c3d3604ab330b3d3d9688eada2e9eaf3b0102000000026552d22a5af002fe87e600000000000251536222ac05000000000000000000", "ac635200005263", 1, -1995812507, "edd52a3aab7ddb7ca1cf127df9daf67e0d2128f0821e9f1d9a74e5526238b808"], + ["e26dc29304dcb7ce19563a0dc13f81cc8f4c316abca4c2e37a47b73eb84a17905c0d2c415e020000000451abab632ee3e33f1087c2a72422e4874d4a244e74eeab882f64a9bef4b58abd771ea10251138d180000000001ac83abdf3662fc201ef957ff95377716c1e8c517e74b443a7c61360ce7a5dfd86d5817572b010000000553636a63ac20893bc48a6adf5a392a670c8522309c6eb7f25c2717a19dceceae3fdec7c7cbb6823eb00300000009acabac536551ac516affffffff04caee13050000000007ab0053655263ac0982e40100000000086500635351ac6a65e2b83704000000000663ab526563ac6a8ed00000000000036365524907ea7a", "6300ac516a", 0, 268189456, "b1e5551a6a3775261670df5d7e3940e094060ef03a52705d9d5592040956646f"], + ["e5a5ff850473c404662aaff424b987d032bd70b3b6579699cd9fce6742056f8b290900302b00000000076a65515200005299eab300224493c8c7daade0f678a0dc7ef10fe4f59737ebcf2ad43ad46ddaff02214a000000000000692ee491935dbe923dd65ed9ee7291153ba91813f2a7d27eb3ab42a176c1c486a64cd6ff01000000095251526a515251526a7a97575c9679274699e5ed576c21359bc9f035bbc4debefe6378d144d03156219f0288320100000002656affffffff04ade236030000000007650063ac52ac636301340200000000086aab6a6353ab6a6ad08c1404000000000600ac5253ab6afb5e9d040000000006ac52ac630063b621169a", "5165650000", 2, -2066057054, "7fed1ebd9059c1fc780ef50787214166ed2cf4e201f0972c9e64d4dac3c60247"], + ["e98bd0da032a6079ce7a8049edfc0baaf63297b400d15c674c30cd8a81ba784de3ff7d20a302000000076a00ac656a5252ffffffff3976a82b70ac39bef2632571428f70a968a1143adccb1b89243726b030725bcb00000000045263526affffffffe477681917ccfc5bbd7b3be4cb3fa5d0a3b613845fd56c785ed019467e155ff70000000004656553abffffffff0103ddda05000000000665536a6a52522800021b", "6aacac5352006a6aab", 1, -1096746305, "6928ea40302ec5155b18a45a385c2ef982f364d27093b419351fe7b8c158eaf0"], + ["a5f3db8401ff0d4854771af4e5b35cca4dda0efe8f877dda6f8641cf25f124bbfe5692bb620000000001ab18b7bfcf0253440802000000000463abab656fd3e3050000000003655252821e064e", "6a005163ac63", 0, -1438517321, "156dd0ee6f48d7e153bade0dca08f834662f2348e8683a571d796486a38765a4"], + ["64cda1a202a38337e3cab3e43629f785f280570278b8dbd6166e9a872ecf354ae6cf28a9c8010000000010e8afcc193f9fa2a73dab4430343a5d025a05de9e5586f5802f9ab74c053f82969433fb0000000006526a51520063ffffffff038853b102000000000163ec7918010000000001529ccd620100000000046a5363539d46c244", "", 0, -1569344037, "2457df535beca4f123855d2bb1151b0505a8306a2de0b6bb2c4ae8ee417457d7"], + ["a913b1d403f9cefc4fc2a10984f840b402924632171b9b8284b927402f14a97ede556301e70200000009ac6a000052ac6552ac8dee45f49faaeef2c9d37c2305e3ba1ae61998c235389a07566576c039ee9fcfdcafecfe020000000551530053537c8112534eb5c9fffdb48b525ac94c45dbab1b3ffcbc7f57e1933da4c412c33d268eb3b100000000076a535351526500ffffffff014e647e02000000000452ab650006e8047a", "636565ab51ab6352ac", 2, 370500092, "c9a49286196adf822f925d441b0b5c96ba085564e0fecfcccf637c19c21e1fa2"], + ["6e3dba400216e444f6b386f47f2ab67892033d62d78bc5d45a89acf63ee962bcd3a958c01c01000000055251650052f1b5f7f45592ba7d4afdbeea88842585d29a1d4f0d58a96d0581d20e4c0184f6698ff7f30100000005650053ac51ffffffff02af23370400000000020051c1045a020000000009ab65ac636a6a53656a00000000", "abab0051", 0, 1099331724, "40ce02f2f1b2f39f19f340c81eacbd803872b74874f8ea8ec39d89e57402a851"], + ["802680570342187b36aa5225e804e10da24fcf5be10ce92d61dc67c91ba0caf471f01eaab60300000000ffffffff155f59c0c6e5d7842dbd125a6279374cd14a7a0d0373d8b604f59270c5e3430b020000000952ac656a65ac0065ac77da4beafe71718c494596eec86604144a1257bcad925a7f27d135ba4427945265b7712e0100000007526352535152abffffffff015d8109000000000006abab5352535263d3c203", "65005353ac", 2, 1772588701, "37f74e4be65d3ae1b842b2d1350f1b20d7d7efba221ec961b575ab6bea20f6c8"], + ["48dff6cd0111072dae3b9b2aa14ca2bd4c9646ffe74b8ac646e623aa3a473f9ebd0df43c27000000000700acac00525352ffffffff0349d7da040000000000ef9028040000000004516aab53cab1d6010000000000a5816278", "510052", 0, -1052925385, "d64455e8923f771c3992177ebb3cacb4e9984cc2a0e9b1a450d218d5b381e099"], + ["373570c9044e65384f5aaf1d188d418dcfb564cbc877ea88d1a373d2d2f0f0dd766491211d020000000451516a63f0dfeac6cc6eb30e6eb312662820df115b2b2457377ad3a3342374c88fb198f92767c47a020000000352536a6f66865630c5686731bad656367c5e57931f89c6edc91899ba12f1b3feeb9c32a3aee1840100000009656353005151ac63517f51a2e1587c58d2ce419bf31e8d4376e731116897e46fa3df9cd16571e20bc424499480020000000451650053ffffffff04bcbafb000000000000a052f3040000000008ab6aac65acabab00b4851301000000000953516aab515100ac00192ba602000000000000000000", "ab6a63516a", 3, 894093023, "4275e589d576eeb07fd2da23314716eae7603fbe7a5963aa8cd18bebd33fa4fb"], + ["efe2648f045f8b06cb069796ebccc563f21b5164028a55f9c78a1ada89035f5ba71e3167310100000003526a51161898ddff8308559a1534504698c99493d49489563f482e6839df8261390582847842dc030000000152ffffffffa9265440cc2e93f66cf8e4244ea97b9d11344e9c2561d140284877c21544df0c02000000065263ac5263531732b574e77ea2cdb4619d8bcfc586da1671d73684c08b48e1e226c4db9548bc916d6026010000000400ab6300ffffffff02d55efe0100000000026a51d73002010000000008ac6a6a516363516500000000", "6a51ab", 3, -1799378758, "d6fff82d3418883a02e1f3a3ce6ee54b45370f04514684bf8764fa0336d23de8"], + ["5bdf8d4b0473ae8efdb85934284a1b916f9532da97d45f1802134c09ca8996657cc5b362f1000000000765535100526a63ad941164d99cb2516f1b35112fa3b1442912806903764471faf1740241e902a4b266e4d2020000000653ac6565ac53e7acfede79dac2cc622e095b89a89cbbfe9a127a73f1d89cd536842e15d5b052643986ac0200000001001c2528581975813e6760e519663dac36590104aa3d6c099636055e0fd08ccbc4f014a2d10300000008655352ab63005351ffffffff02a573960500000000036a65656879810000000000006e27aa60", "ac635300ab536500", 1, -1698385699, "d79ad39936eaca5ef34b8ed682586e4ae3376f18bc327c19a4c5604bc4d8884d"], + ["e6a0cdeb01a0ea48359ec63af3055e21511814bfc009a6f325e0bac227d5667f8ce80aeb28020000000500516aac51b628103401266fb505000000000763005151ab6a53dc1331c0", "51ac630052ab6563", 0, 994493573, "1b4453ed7952a25b2f1b352af26dbbf3b9e0d66db1fbc96d5a85c62e97a9487d"], + ["ec8167d3032a6eca2f5c5c9bef4ed5ed71cab39583046635448f5ce98c70cfac93abc9b2490000000000ffffffff084971b1bcd8b617b37ed7d9877c40ceb5a8ff7155d15d5fb1dea61518d94d0f0300000000ffffffffdb713dfadf1a9b27266150f6f1b94ce057060d94c30af00606636e0f966c85cf0100000003ab0065ffffffff025835430100000000075253ab510051aba482f500000000000000000000", "6aab0065ab00530000", 0, -1394285180, "9f5d33a032cdfa885dcf8ace1cbcbc3cf5df22d9762492dc11d76a3454feb895"], + ["0c9150d30198605293dc70bbf96b9a153de703297ac7798e0a301485c5e1cfbff5f98723960000000008ab000065ab6aab004ec44fa303f42325000000000004abab6a534a3a32000000000008536aac6a526365aba213ed020000000003ab53630f492a1f", "65525163", 0, -461231573, "1d196565d790bc59eb69d34b946b12dfb6265fc65f5fbf684ac586b26e8fc89d"], + ["131abdf90481b89f2dd0e39cba5daa29900e0ae42be5e2027288ec509c4dc0192352dd749e030000000900655153655163006affffffff0fb65a8095330f5cb296bb90ef9c15822cacf5824db283a3eb4b3ee87ac7267701000000046a516352911c43b26243662622266d5099364b1fbaea58af34aa59a76b41a3c2e687065142716a78020000000152fffffffffdc9fb5a7ca9d5b069c04af6be9e8df4c2689fa5102a22b7b437a2d03b9e73480200000006ab63536563abc0e62a73042a349e030000000008516352ac6551ab65c0f67a030000000008510053ab5163acab4c211d05000000000800ab51ab5200526a0e84fb000000000002006a00000000", "abac", 2, 647406272, "b63c7c6af03b90c6a03ca7b1bced6df7608438c457d0485dc6b6ef9025ba9361"], + ["2c74b95f030b409b30cc0990eba28573c91e441fb6e6b284364b50cdd76f732c68fcf34cbd0100000007ac006a6a6aac659248c9e56181af5813641eae135a58d764c1110d6fc5cbdd98785a21f219b5b478b84775000000000100ffffffff59f221e468734b3b9a5a47c4e17e5b961fdf15fb2c4ceb9aa529a1326f8086de00000000086a6a6a53ab0053528da6bc3e032f6e7d0400000000066a53006a006344cb770200000000035253ab89b2a3040000000005ac6565acac00000000", "ab51", 2, -1692983897, "d11e05cd3603ed40bf0e6abd41808f5b1c170d999729dc6b1958c12fbb40e05a"], + ["bfc4c8af03b3e473765864cf6521d7a3886e33636944a57b79fa93fe8237178650cbeda87602000000005f4306cb8c370f0ea3dbd1f5f7255cb72a6b7e1aca9e6be19f30e4081a882e63235599e301000000086aac536352acacabf3179636c27b2185d27fa67f6dd53b895ea00972afd5926337a9f31de926d47e4125888700000000066563636565abffffffff045dd35e020000000007ab5152abab515289a172030000000006526a51536a51099a5e0400000000095363ac52ac005163654cfe96000000000009ab6a6365510063acac00000000", "", 1, 841982267, "3156d9c47f7f8a99a4a8e30ac53f190dc06033202ab6d6b502b705becfb1d649"], + ["11cc2459024baff5b7678c5b99aa9a1dac588bc51aef247139c4f6bfed0d66245b31de7656030000000553516aab512b5ecd30f3ad35d511072090fe1878099a5905fbdced5b948dd029c58eefc5cd008d8c150000000000ffffffff0446098000000000000600526aab5153aa2416040000000008656a5163abac65acc8052d050000000000ac5e550400000000000c6af03f", "6563", 0, 1741174344, "64893f985aee91fdf8dcaca0c035d96afa0a83abff184fd8c67418a19c61a8cc"], + ["4effcafb02b52608371d1285f06378c2d84cb828a5b338dad4801d190cd918bba3a39c6acd010000000352ab5117fe7c94970140a2de25fd64f15f06691b55ce37ea66d8f0eb94eae6bf53be0d0d8d18a701000000066563ac656351ffffffff026a2ff503000000000100a55ff50300000000085165005351650065fb0632df", "abac526551636a516a", 1, 2100658710, "e56e0ef014d9a76947d6f0ae1f8f892148725924ac4abfa5ded788bc18e6c646"], + ["e1bc53e9034977268532ab28a4d6c1c2b1eb0f774260b335fdcc65d141a533fe936216b71703000000066aac005152abdcc5eb6a82eef8e60b3eee1cba241ecde2a26c26b1e0701a2f0cb5552918b603468ebccb030000000665ac6563ab53ffffffff5b7be4294cef0e568a34900eceba92c2dea0270c8f6a1d9627cc8a76d728d476000000000563ab6a00009b93d35e031f54d0040000000007ab526aac656552eb90f801000000000077cd6e020000000006636300abac5300000000", "53515163ab650000", 1, -1098967261, "ddc07ab6b1d2c06940f0ecd9915586ee3d26a015846a2961b84d4cd5038cf39b"], + ["999d82c501ddbf7b77df57f396d102687c5b39f2fe6f00ef1b2451778d0c897f45be28b7d1000000000965acac53acab51ab6aba02c594041948af040000000004ac65526376c78702000000000263639f82f304000000000763ab6a5151516ade3a360200000000096351ab52656a53630000000000", "6553536a6565526a51", 0, -648454531, "7ab90026cc179ab64299c628f153b2b20b76c049ec277c07eb5bc17febceb509"], + ["d0d0951a04b233929fe85a36a15d087347a9ed5b026cc2db4cba476f0c524e1c999e3291b903000000075263ac0000ac65fffffffff399a75d9e91771d890dac49863b517eeccc06c27dc231b9c7ffc23c180fb60702000000090063006300ac0051ab67163ade96b5e14b510b5c9e32dc70002dbd06fcf37ddfce28692160a1f0c3f792a21c4a00000000055200650053b534c8b2e529d1732bc8409c32f971af3cb2a0f89e6cf8d7397b4b3244145d6d24226f730200000001ac9556f010031a8647050000000009ac53abab636a516aab72e1e0040000000006ac0052ac65ab9bb1970100000000036a630000000000", "ab516aac65abab6363", 0, -1700085374, "614acc72c3e6a1d512139df57b2344e1b59376c11a0eeffdb2d1769caf175b46"], + ["3a8e305e03e7c8ba6b0ba4e3ffb33921daca01123c85c7e2ac14b435a12be6a9e5918e9c330000000009ab65ab65ab52ab63ab8c36b27c391e7115a804d38f78dd50b8ab7e7c6abfacfe977ff68d2f7c0929184e71f7040200000003ac6563ffffffffc0aebe9ea0326bbb4ae4d210e35f164e9fb1af5f19b4f7fa5460f28938dce43103000000096a536552655151ab5230affb4c033c3aa405000000000153249b5905000000000067a440010000000005ab00635252765b3cfe", "ab6a006552ac5151", 1, -1800563378, "f7f18245f33444565fd11dc71af106b42ec056bccd40937c4b4c2ba406370424"], + ["7d1b7fe202d3a84ee832e007b00245ace0edd8466cbc793b6e892574b0bceb7a93ff940f2e0000000000ffffffff52113abbd8cd1679b0d2c9e1e31faa1eea6690412258b495628f1a92e5ee57e801000000046aac6a00bda1a3ef037a462a01000000000077419e010000000004ac52535201fa0402000000000765abab51516a6500000000", "6a63", 1, 1871129339, "4dcfa2f5df7e24877db16ee00b4dd7ef103fe4892e40f64228597bbb665ba908"], + ["72e35fb504a86e99f6ad7e790b165d9d5327cbc8fa9b02e8f7215b3b48cdfd408ac61fae960000000008635263656552526ab8daecf367bf778852df0f0be6788c4e62c88d274fea1ea1c03685c613d1a3096a672d040200000005acacacab6aed42ad51ef28a1e780e3db3646243906478fb9f436fafc5bdf8a526b5e318aace5599501010000000165fffffffff179a39a44f95478f06ecbb2fe59ea665b08afc489ab7e3c239fb7f92f3381870100000006516a656a5151ffffffff04edb8990200000000026a6339ca8604000000000352ab6a50a64d030000000000fe478103000000000400acab639af7f36b", "005100ac53ab6300ac", 1, 1163377420, "81005ec3f783087640684dba7c91d251548706fcd261833e4cf7777446d37c3f"], + ["cf8215930395d98b1f914615e79f4415057f6851b1cf28b149d3b192d713187684f1f2d7c80100000009ab6a53ac6a52650063d0c225afc4433965bdf6b8cffd46dbf94b1d67cda8f882477e2678a1b69fcd44a7ff55aa000000000652005253ababbd088e7f43c3a95573eccafe3f434c5d1bc101d3a2233bdd3827f11b11c14651e7806fad000000000451515353ffffffff02cc24760300000000096aac6300ab53636aaba8746f020000000006536a5165006500000000", "", 2, 879019981, "ba5a4d3355742994542a2e578fc1e7b097bacf8baf2825ba996fec54eba6c009"], + ["f098239c0379e10c7cbdf14d33bdaeb734f0060325d91968b28153a700f141a346d760a46c01000000046a525100ffffffff07cad2d5ab3a7821319e92e5e5a3a11454153f3981731e6bf7e1bd06c6d04c1300000000036a006a806a5ad2ea1026e07d93ff045d5c6c4892d38b5b68a36e7f7ab2ad8b7a2bab0581734a170100000007ab636a5352656affffffff02864775020000000001510a562b0500000000002437f7b6", "", 2, 1027475038, "fb12e9514acb4e86a9fa8e9ec3aec35bc4f35a4d9d595ea48298ddae38e76f0a"], + ["557bb45e03ce6a45f0d24b09a6ec7ab2eb02f3d0bbc4c5a3190c03949047631c84a687725a0300000003ab5251ffffffff9eea31614b38fff1fb0e1ac35686ec157928ae8bacc020b7a03a5588ba4901930100000005ac6a63ab65ffffffff3ad2df7d7320d4fd2893396c94ce5163131d1b75f5a54e864b047fbcd9bffe3803000000096a6aac51ab6aab5300ffffffff0473cce2050000000000fa3ad404000000000152ff603100000000000252ac8695c801000000000000000000", "6aacac51ac635100", 0, -816055048, "c190ca7cb045843f67a558ce9601a6fefcedf54ef6a5a126792d79806dcf563e"], + ["7772b39d0374df41338f19779262be16e04c8c580616e6135f0e3967e5768bbf321af5b537000000000452526553b17bf7174beb15ec4e0a941183c4277637b4846dcd5da6d2e5743e206f9a9ba9c6a6835c0000000004536a006affffffff6795cdf95a9985362b736672b3048c7e3c8e06f5cbfa0201bb6bc76c20dfb3130000000003535363ffffffff018a71610300000000086aac52ac635165ac00000000", "63", 1, -2069136685, "5c3b0690d282489644d9286ac94c54f43363772fdc2e2a3c6ff720ceb376307f"], + ["39e2504302ef3b92242592859fdb3004b30b5c2864092e29bd4d091ed38584680dea09594c00000000095351ac52ab51516a65471778f9b69efd835f2f054d825a30af65406a17be5795d0c47d00092af53cb83573462c0000000005ac630065001a66640003e2f61f010000000000a5b6dd050000000006abab52ab00acab43070400000000096500ab6352ab52ab6500000000", "00520052", 1, -1906917183, "664abe8335444d5daee6310dcc1af404ce663384d85bb7ca4df06539fae1c32f"], + ["ec762f62026031ea0afbe6105b5a2a3ed990445ab0fdfcffdb64049721f609b9394e086b58010000000663ac53abab6a16922537a3d7e5ff33d01f4bbd404db2aff00ef6dc4af718c77ddb0d08687dc92bb9d598030000000100ffffffff02a9bc2a030000000000e34ced0000000000076a636aac5252533c85d0be", "52635252acabac53", 1, 547206019, "fd2bfbad20f3daed45198b47f627d342dcfa4bb659545cfa83cd67a4159f10e5"], + ["12fca70b036245fbf09e82ff5c604a00ad9d1d0a6b4f3c25523396130125bab6c8acbb52670000000004ac65526aadb4279db424ae183c9a7beb144a0ed2a203ed851d59691e7c352d7fecb95ab834545b0d0100000000ffffffffa9112ea62bba57e19bf28951609df99ea8bd58528b0ab9afeceb6aff4f1fb5d901000000066363ab516565c5ff7271042547c70400000000016afcf9dc030000000008ab6553ab52655253bb611701000000000100d623f903000000000653ab5352acabd8a3a13a", "51", 1, -1510124184, "27bab2aba85ad29dfd159f471c834e0b7a0bf891c0be2153fd5315fe081b0481"], + ["ca1a8c2301801c04b8d2a16edc73f70d582f4912cc74d61a24e3c7d7f6ad7b14553ccda91b00000000026552ffffffff0150a698050000000001002229746a", "5353ac6551", 0, -476921820, "e743c719e6310747b9d45dbb1afed9b85d46b5f510adde95c1c3d07fa89c1b78"], + ["429aa461042dc29c0e07d4bba5919f676543b215acba44d628a8e68064ac00f201a0871580000000000965ab510000acac6a00520e8da3bf9dc57e7947e2bf078631aaa0f23942f27980f47901685b6adb86c6676103600100000007525300ab6a656323de7feaa14d24a878c0a084d15b95ad60dd6750c8cc64f1b063011ea1db492b1b78e76a010000000100b2399bd67cf0e150812487de887d8bee8784be7079fa98abb90219314264005d6988ee9603000000055353006500ffffffff0470bda20500000000066aac6552ab5317f5630200000000045163006a6feab200000000000400526553965aed040000000000fda0c871", "5100", 3, 1150195827, "18b7681818ea167328210691d3216582726441b7905556a1fbc774e181ed1f48"], + ["cd690b86048f8dbefc18dfe0842f9382939b0044334b31995838eda6b84fd8b58359e006650000000001abffffffff3a290e21b0b75b9c98ff9a5d1dd3bf41a85c3dd52ceeba97e67dbf8206d2b1920200000005000000ab6affffffff6a2c8094afd2d01f0e9fdc6bb42cf5a8fdcce4fa0e8ad423011b1d0238078240020000000365656a2949ada13e49d14e02be3ba3b9f370b04008548d3656d373e279b0556f7636c8c505920a0000000005abab535200ffffffff034c23c802000000000852536551ab650000f112b7050000000005526a515151d597030100000000036aacacafe15f97", "53", 2, 2032599388, "2a4e8b1f477d9d904c25763ef7fd69808b20ed2ae6f462f5f8e6b3308580ac95"], + ["68f1e52504b0803f7e78877098df5c56a7064614be08a943f4c1cc0192f064d800a78083e50100000005530052005326b3582cbb78c14758c6a611f22076e4b651d236e6eb25aec352aeebb63d837deeff508100000000066553ab5265009876b2323efd713d991ae4b2923b09220eb68ad8287b60ea84cca7eb29667c5378c9a2400300000007635165636aabacffffffff6266de580356e26695d12d900738801c44a2ee865f5b71b17000b166272e08b101000000046563ab521f51f77504c842a2030000000005ac6365ac00ff71ea000000000009650065005365535263de7f52030000000009ab0065ac6a6553536a9562f90400000000065353526a005300000000", "6a63ab6363656a", 1, -373779219, "ec866a0928fb320231c98ca7005fb88830b3e3938b44dc0876e50711c941daf1"], + ["d4a48a48039ad9e8bfc28dbef67c4f11f63a91478c042131ab104383c8d34e256b15925a7b0000000002ab63ffffffffff44d0f47ca93a01a2ece8a8f54e027a39ef7561882a520488e8349734efff680000000007ab536351ac6a6a28fa8e4ea8292e34a68f0836b86aec6ceac3fd18ebdb16c18ef6b0b877b66201514750b90300000004abacab51726fbf48029e31d50400000000000cb5a8040000000002abac5be0509f", "53ac65ac", 0, -1505936645, "8b246f5543e9bbd8059fcf1eab1a9c45c19b04dc35b15d872f00679e89846c6c"], + ["2f8ac9400239fa76f2e3e74cfba98256dd7d465e98840b16c3e88740c9e2538d6c08802c5c010000000965abac0053ab0000acffffffff350dcb9d7d0e93a2db2c8e8fe66bfbe47898482e520e1a56e55528097de642300000000000ffffffff03d8d248020000000004ab53655348fa4e040000000001acc1b06b0500000000026300e4e1d2ee", "00ac6a53", 0, -179724854, "60f604928203ea29b0718308edd8fe772e4da02457a80194ee78298747fbf407"], + ["4757dc460381e4838ef5d3824f201a930004909824164fb4ee09d88c5c97047197d64e2ec7030000000151ffffffff6d67d2061d40b8d44a91384e0396050fd99b7f78f2494513b942cc19f3227b0e00000000090063526552ab636a65ffffffff8a73f8e33df20c6c6528889e362360389a20456481f5013e50ffd98e1d29469500000000066a6565ac0065ffffffff03ac26bd0200000000015389f2aa010000000003536565f00aae0000000000066352656552518bee6cd2", "6a526a65", 2, 229490931, "bbef5dc4cfca7cab709f02a473f38614e1c53bbcf812607948e4c7406dd0c3e0"], + ["a9dc413101ac66f30e1a4a8b470787a89928dd7f46bb06e0c22d17818b1d5b542034ed855e000000000651ab53ab00000ab44a0004e646b9000000000009ac515263ac6552abac71e39a020000000005ab63515252ab86700100000000000efc22030000000008536aac6363526551b19ce782", "5253515100656a52", 0, 1093398039, "b0f55270a70083688b6b741922814ebd381f280b228c2d68d2bdacbb33fbfcdb"], + ["d961213c03b956e344cc13c19bc8256ddd194bde4f3b9340ade2a6282816bf569e7244ca400200000000ffffffff9dac5dc8ece5290e16bbe039cb27cf3ec6a5471ed9d87e2cd95bb016b81987d003000000016556edf1954c57b377b8ea9b4d7dbbc77b3026e29e0ddf5aac28c0c4a065fc96ee1981dfeb0100000008ac536a6aacac636affffffff0434c268000000000001ac9cf4c5020000000008abac635153006353c6f4580000000000086a5152ab5351536a5331a605000000000952ab5165655251000000000000", "656565005153", 2, 732797312, "512a851563dabf0b97956e0c1d93f83cd583be8638b58ab8c3cf5750110e2221"], + ["36544d5c04e875caa86c395e68039b25694400eb4e9838ff63fb0242290fa6c5ef7483463b0000000005656353ac52f62b9baa706a6adc73fbc6804745d756ce57d6e972aa7e20ecd711e8cbfe83539dee9575010000000565ac63ab65d56b3844ed6406e75555695056988288fbe63d0b28f18c488fa03c08cd13c59942b7e195020000000600515263ab65ffffffffc84b19258a4465af8fccbdea1c54636ac3bf8767fa98430dada0dee0dd11bc26030000000565ab65ab51313349fa01eb0e55050000000004006553ab060e8ca7", "6aab6553", 2, -1661184931, "90734de9f49d99b3d239159c81bc54649235bc90e50aed91d84ceea053f84d22"], + ["9c1f338e0362151164a16bb28924b8c60854c4e1ec1de33638c53c71cadbd70d5e07603bfa010000000453acac539bef811a4223d97ba748f84a109b785dff0fee38c4835a3acb6f2dfbace13163bff11a4d0100000004ac5165006df04d3227d8f401aa0324de3455f83fec9a41311d70bf672957285817bef39a96d98d020000000002acabffffffff018d71600000000000085253516aac6a00658539e280", "ac5151636552", 2, -925930438, "92dae65729341a155cd34d8c2bcbceaffd7e6f92c45709ea6f49bb991556e300"], + ["c89d3717010ff81ae508a99beba62172e4363138e816f5e9f1d830140c6bef9d5ab985af490000000008526a51516a63ac00ffffffff010db5e00100000000036a65650208d15c", "53536500656a52ac52", 0, 842283111, "220f94b93e6b6e93989f33674c58b1181a85536132ec92268ae57002b82752b4"], + ["5d4a7d3204052ed72562777baa6c313532891aeaa7fb852334878605fc0e1f0596c2c6ea3102000000065252ab516351b14b4f1bdfe2e4e69ae2f5960b641c989994157572b5aff0254cc0f9cc6d73f22840a237020000000165fffffffff6292a91256c7f02c5472e4bb49fc33e257fe91e872260355765ca52fe7497e50300000006526a00516a63ffffffff5838299efea1e9fb2002d6c10ec35aa1843e83d367972c27f70ea655ec37cc1a00000000086aac53acac516365ac33f49301ddc80d050000000005ab0052005200000000", "6a5165ac5253", 0, -1330094534, "b1fec4729e80e56ce76b906def2e45ea9b566e811d62b7cde58b331f569e6665"], + ["8a39d291044a30fd96fb7bd8df9f0a24dca31b3fac4504d866b52846f7727d5146a46b4f020100000004acac5352ffffffff502a63742cf509ea315c6389be1a99811d4394c2de6ee88b546ec1e4651b419e020000000652536352536a876b1a5b4c98b4b0f1f773ae37202f04432218679e20c61c314022e439a1a65cb8ba9c9a0200000004515352acfffffffff5d9ecacd351c72032329c8caaee01299960f96f69adb45bae21222cef471e71030000000200658cb318ab03c4d825000000000004515353634e65240000000000070052ab656aac51b2917a02000000000363ac6a5cc17eee", "5152005365", 3, 17463076, "b9976af0bb98a2c278368cfe3e88f5d9ab9c3cc5eb39c460c2951219d55c5599"], + ["2128f9ad02ce25c3b9dedc04b285760c04645ddd84efdee575cfeade266630c6d04ec99ec00300000007636a0063acac0000b6cfe6ea1bbbd637f0279392e6f0add821269b2927fa4ea3d8758e29a80c59b3a1416e030000000663000051005221a0b71102ba75130400000000045151ab00a9e7490000000000046552630000000000", "51ac526300005263", 0, 1046892268, "27a46b57aa3ec67f322baa53b6faaa4b2fbf9af5e0f3c190a3c2d36fc7ec32e9"], + ["d2ab276a018cbb2311502fe9f1e97cd13368d0a1fa8a885751ce0090d9675fd8f14988d3e501000000075153ab6553ab51ffffffff049b0da6040000000006ac516a636a5103181c050000000004516a00006b440d0500000000025352b48df401000000000751ab00ab5263651bd70915", "", 0, 450081869, "f240317f2a8d1c369cf09a1d152fddf7f3bc102647568a4cbfddd67e4e74ffc1"], + ["76be9341010f2f0ba98fdbaf4c1fcc431e5ff1b0a680210a2383a9ea21c45ad02246f6e8c90300000006acac6a630051ffffffff01452aee030000000005ac5251535200000000", "5263ac51ab63", 0, -523519442, "463514ff0a21882b1ccefeb0436579db0a2da749ed44604f8dec71d0ebcd7474"], + ["f880067a0145f7670638d1e61e62b495dd42c4a0928493ac7c13e873414c1edd8ae9d4d800020000000500526aab51ffffffff0346b9cf02000000000752acab53ac636a296ee3010000000006526552656552eef301010000000003ac53ab00000000", "65abababac5100ac53", 0, -1209167827, "710afae6c80974955bdd58b6802aa76a320c3d4acc12ad4d47636f6118928fba"], + ["44f201a601ce3700eb259276016554c5cf76e427babbf42ae652f65f834965d02ad48b98880000000005525163005117518d5c02f8e8bf01000000000600ac5153ab65d81d820000000000056563536a5124c4c099", "535300536365ab6551", 0, 414028295, "b2c88ef3a804475fd87649c5b8764f908085762ced720197eedb28860d5eef1a"], + ["017270ae02d4b61eba021d0ea764a1766f97e6854f031d3eee2266b57afa71ac80eada1ce901000000036a65ac21de6e3a05ab4b5de9a9ce77fb30a5bf6a66586981d5eed396f54e0cc0ddf12eb4f761eb02000000066a526352ac651b20e6ba03e1304a00000000000352ab652e3293050000000007abacac006a6a00151ee20200000000096a6a526a63655253abc65bc052", "535253ac006500ac", 1, -555556817, "b9cf4b8c2bc932c29caa0fdced69b2c8fe20350ef2971eb443cd90c2971f27be"], + ["08484f12015fde6a782ebe952c79949eaadcef8d4688cd854183dae4d8fe2837b8cdf55a8b020000000900536aac6365ab6352ffffffff0192a36e050000000001ac00000000", "6aab63", 0, 1250751194, "92c4f55708d8a2d099c04e0cecde2f35385279fc620a13f2aeb2deee7686e44b"], + ["94d6af47013b14c07d6b3b2bb34a5b6273c35cd7780ecf1c7928f93444b4d5d68201565c7602000000056aab525251ffffffff0141f0cd02000000000300516af0826398", "abab53636a005153", 0, 768174418, "827e59c8d78159cf970111135c173cb6c7350e19d7555c7d1dfbfcef1771379a"], + ["9b76db4a03a9e95313ccb1bc0c01fce0f06e64829b382af48f2d1fabea1cd21fb82458b93b01000000066a6353535351ceef7c24a6c64202aa03c4d1101cfd281180870076c10b1f81c3c68480450da366320ade0300000005630051ab63f1f2fc2962fc41aa654c56a8e3935dddb4d0a91d1ba378bee7f579aba7392482b03b0cff01000000046300ac51ffffffff0459b6b40000000000086565536a65ac51525e3d61030000000001525fce5c0500000000026aaceca4100100000000065200acabab5100000000", "52acacacabacab", 2, 1445263100, "627cf1b1149905c6f9118a1c56d0cf56f1c985c674eaeeab2f0a8468114e6f62"], + ["0908592502e63a39c92a671fec1a1307df8fd84e36abc7e445b0303ee053e72c3abb03bbb8010000000452ab0000ffffffff110e3d7d1f5b6c3cc8d22a1d22ad088d18d3373b41c3881adf745f211224a87d020000000463636563e215beb6010f3c8c05000000000951526a00655263536af367ad45", "51ac", 1, 1810817318, "05f38b81e7b2f3c066575832b8a1e3bf5f7fbad6e9e5c6f6790cc5f909ff8a01"], + ["ada47d9504c3d20d6646216b0bc955c3554dc2a566e811a268963ddca88ba4ae3607067cea01000000095252ac5353ac535352ffffffffd4f97d7d0901ef809b7341417409e5d8a0087d299a468aa29c5fb238cd8135d1000000000651636aab6a65ffffffff98c6e30143cdb27b68d28e419e7f5607f59d5eac8f353818e8e1a36470f365450100000009abab00000051526500ffffffff21d8a8722a629f236b1118669954a04f372d13d8973cc89da0f05f5ea1bb9b2b020000000765ab0000636a6523fb898e014cfa02040000000005ab6563535300000000", "655353635200", 0, -1353544194, "f3b9e821ce17ad5421386a1c24a6d06f8ac3fdba7e211a64d334d026fb3044a8"], + ["11d55eea027db199bcd17ad67b4910666a60b548debd82256a2a0108ca1951be516a14cefb0100000002ab00ae47cb4e1e4c6b1d4d17563ad094046625d555254927190fffb35b44e0d9f6622f1cf0ff0000000009536a630065536a51520d8067a402558a870300000000076551ac52ab536a51f70e01000000000300535100000000", "6a", 1, 303561679, "c394a612be52c7bbccd6dc145534a6b7b3ddcbdea4bf15f9aacb922fadaa3bf5"], + ["ffe1386803b89a30604c45c72b6cbcfd335d54bd1ced6c184e0e9df7f624a52ccff596d9ac03000000096a53526a52ab6552639a5434a8b27eaa5242ba01023eaa89fa2c6e80b425e36d618476b2526cccbeeffeac859e00000000075253ac5151ab6affffffff23b2c5a9de982f80f9a6b4ca9a30db1525626337edff123a836220562e33da180100000002ab6a992f2f0504cd350c0000000000006d4563030000000008510065536353acabedc86d050000000007ab63ac6a515152cfe79502000000000000000000", "636553006a6a6a", 2, -823000614, "2b7366e8284b789e62c6f79e01bcc8039af1976a49ebea6f853a17a90c821e3c"], + ["195c6f8803e6fb609b60a38fc2edc4a62f6323ebb4c6b4d1ac6e5a833da2602e2f65c7cbdb0100000004630052abffffffff9dac8b1466dfde08d9639d4042c1e2626bab1993d4386d900f5fe293f934f1860000000000ffffffffb7a1fa94b5f91c4f6d1441e0e16c8960408b39b5527c9df5a98b4e410744544b0100000001ac70c96084023c94520100000000036a65ab0066b3020000000005ab6363515300000000", "ab0052", 0, 1260618296, "d0204ec91f25179c829ce7e200504c023ef2dd3095a0c91780f6dce69919343a"], + ["86f3f91903b0273d60793297f58c4977f5a2810c759717a470a379fc6d3876e2796c0fbf1503000000086a6552abab536365b8c2fc7a60a55ecf409711c6351fb1b59a64ef3a0db18ffa99d76642326f15a55652a10c0000000001abffffffff643b83d5ab81ef216dc75d0faa826d8470221cb99c8af5e98ca6a5dd1550b470010000000400ac6565e22f70f101aeee7b030000000008ab005300526aacab00a14918", "6a", 1, -1146076997, "aadcabe16ed1687c1f98d61c938c986bac6a944be5145176578858b0f32a92c2"], + ["9546fa0801e31a301fee8d01ed1aac151958e35dc1c19ff686e128179e608dd2aacc6f4328010000000163efd72a42020113840100000000066a00ac00ab51a7096903000000000565005151acc7ecfd62", "5300ac52", 0, 920611084, "871f39683c8b37267ceb0756ead6623c0ab98aff799943a3c9f581d1faa4da59"], + ["02accae2034abc6d7db953839bb9368a0d24fc240a4e7ce9282739d1ebb67edf3e5e904c81020000000951000053ac63510053ffffffffb9ac84ff7954ca80a53ca503296e3755ae1eeeb594dcb3cc6870c9dbb311869a030000000952006a52ac5252ac6affffffff5248be2fc85c9f61d4e86dfe5d66e9cdd83d1ec91ae44bb18f82e8a234d96216000000000800536500510051ac4d877b160490bad103000000000665ab636365634c6b750300000000066a6a53ab536365ccc003000000000263ac32630b00000000000953650052abab5263528876474b", "526a63ac6a6352ac", 0, -149875146, "7dde8ac286ddc8778c35558c319c9289da0b205edda6f76be638234e6a83bb0b"], + ["9de2338802612d7f70f41ed4f4503dbdf1477bdf2c01301a24b0927d4f79e8f9cea4649e400300000001511a7019c54d9a4df14ba9ce252392dd5e2ae94d4747a11492e1d9cd7d298eb719a710194e03000000016a18939f1501ae86980500000000025163263439b2", "00ab63", 0, 306019019, "b98fcc952ee92313a298c23ebebc42fedc701ec13cbb4daf72d53174288bd15c"], + ["f89e580501421003b1e1f57f6c70500b5fc8c621adef3c7f766370bb04fcbdc52d5e94a1f10200000006ab000053ab528161cd0704fa4d3b0500000000009da832030000000002515254550005000000000151e948d1020000000004ac63516300000000", "6aab", 0, 1621904960, "81658aba2873346edcf98bfdb9ac3e9f61266517471bc527345ac877384dce8b"], + ["12e1dfe9031b8118a9c95a2951ad583963be464674204a4deb5b58ce08cc2def70c0d580780200000004acab6aabffffffffc942ade555da68112f334a5b61a777c4e6d8da9905e46c751959dd9f5efc5ae90300000003ab6365ffffffff8c447ced5bb2e9d5e0d7b2c41ab676fe9c4386d1690ab5202b19268eb15e1e2c030000000900ac516a515365525275cbf62101b1283505000000000000000000", "ab5151ac00515252", 1, -1317716045, "200986d5729507bb794f721425772c77dadaf8f630504d04686c7c5677157186"], + ["80584584018f898ff7bd97afc04e18a7ccbf13b91ff1ba328aba744f3b7677e99bd7bec12501000000025300ffffffff017f98ac0200000000076352635252005100000000", "636a53636500", 0, 31736648, "2e42c761c39e2c2b5776feb0f05de4a26298d32a12cd7f583324caa46fbc887d"], + ["3660326a03dabf4a0d575d9d3c52d72aa6e13887d0d8b0378c27127daf215ada3cd06569a202000000086a5351ac5153006a63c8d0094496c7ea58d9fe8b7103a094b3f593790d151e9de5c17fb50523a1d2f1c9c3fd0000000000ffffffff281219a1e4aa8e129444fa036c6bceda9e8cb55829abab679225f123c4b160f403000000035152ab33efb0d8012ed64b0400000000035152ac00000000", "63ac51ac6351ac53", 0, -1616685428, "bb7b2d86e8af0994b288d1a10db55f3c8691620e315d163fb693c59becb45dde"], + ["8d247e4f039a387f22d35e0f468cc8c36693f1bb56608dae7a3e0a5a18d9e8f90aaab488ca0100000006656a536a6a6a40f06e69fe10947d5fa9d1efafda45cc18a75b6e13dfb844d5fdb7b3396e2f1e20e66526020000000453526352ffffffff78f2d790af39d75b5a9be05e806cbbe32314c8712f038dd72374958357eedce8000000000651636a525100ffffffff044853cf040000000009536500acab6553ab51d8c8830000000000096a65ab516363ab5253047ae50400000000036552ab4d849d0300000000056500acac51c5dbb46b", "abab656a6aac005151", 0, 88711608, "b08acd3a41668f983df865e0c012d931723f6b6db57e9d7440a99d5a8e717cdd"], + ["ba9e78ed037266ce132005633fd99b8d0c928ecd044d90ffd96e635991125da8380462c7920200000002ab633c5e3850daf4a862b82566132106699285b194bf480e87dd8c33450bc042716732b8755b00000000066353acac6aab9b236659d389ef43cf1f6429f1b274fa4781d9a4e650f6529d69c936c32ad63c961ef2b1030000000200634e7741ef037ab830020000000005ab006a6500b42ad1020000000008ac006365536363acad11e50300000000016500000000", "", 2, -726677808, "34fc098507817617010ebc5eff4540ffa3f5ef75ddc6bf21617ac0a11ea2e1f7"], + ["c02cde4703f319b578c3b631402cd64dfdd26f0ce0ee9b887d6b2cb132e39cf58d11d5e7fc0100000000cc44b7ca13892b9b0116c64f24402a7eeeb87c6dda13793a7e6a4bc02e71411cae77874e000000000300656a3a231f6a928734e11c356ccc3a377bc1a22acbb5a395b882a040b2d6fe4e35bfe56c3d2401000000020051fabd23b50261016a0500000000070000ac53636563311336030000000002520000000000", "ac0051530051", 1, 1581088363, "8bd88f6637ab964cf8cd1058250f2e7f7a91b565d754b200f21853d3672d3952"], + ["7a8657db02cecaebd4f534f1fe165cb1923532a120ec56b11f5dbc79efbe68a738d44170e703000000066351636aac639c953adfa9146b6b46b757116c52b5de7690a8a745f058bc30b8224a4e9246ea1e8831b402000000056aab51acab3491f7bc0343eac90200000000085363abac65655351369cd60200000000055263636351eeff81000000000007636aabab6a53ab00000000", "5152635251ab", 0, 151674896, "43f96ec6e85c6e6d716a8ce4e91640444320689d03468042367027c9cfe71361"], + ["94318b170441f246ec47d4335aad274540624811a4f1268cdb7f01cb00e2b90a652c18a9c10100000007525352ac655351ffffffffe36cdee41fc0c3f4effbbc1bc576bd1477ba552417e13c86c5d6a7114dae369603000000004579d4711b65775b290b4b0d47bfb2c1f65798166354c46f957668927daac3adaa27c60e0300000001530a95bb1d64862eaa458518b52830f1935b8c3c7c6ee04a1cc67d7f1b22366fb47d502f2a03000000050000ac63653cd0a84801989878010000000009ac6a6aab526553526ae1d2b1e1", "ab6a65ac65", 3, 1072101786, "358e2d4ad39c7e30f28c3cd5553ae416a28e9b1f55c247a93fa2b2b012b62a2f"], + ["ce7537fa0351db210c6447fc9002a779f5e45b4a07d8843d4ace8931d8bfffa60a5df35043030000000452ac51abfd25febb5ed9332ed7466c1a23f4d4dd00804e4aaf607d40d87ea046337c9a60e09342a80200000008ac53536a65ac6500ffffffff39ed35c5dc3f5d05f6277c5e3517d3d5c9d2702975ec3cad7888c829b1a757f9000000000863536a0063ac00abffffffff01f1de1a0200000000066a6300656a5129875dca", "63536aac5153", 2, 1970969116, "7c2bf5218051b7d046ff07ae0925a52c827d98318323160cb38f4f89b4ed35db"], + ["64819e9003a4c5b92df7f0174a1d93d6f9d7fd97059e7ce343fedce6f664a467e76e8d406d0300000001000085e32cf500524539d2229d68e9ec8a9e55160ac2f1b98709af9b5be9f14e438e8783550200000004ab655363547921fb6245741c12289180f4522a42237b5045d2f3342e0f64d7982d27524e4959f3190200000003516a51ffffffff040711880000000000076a6a53ab6365525d7dfc010000000005006565006a2dadf00500000000035252510cb8ae00000000000851abac5151ac53ace8c8b87a", "6a6aac63ab510053", 1, 671766321, "1a733669a23c834d04a89b34ff42e081e4e472ee2268e16e742c65f00770f088"], + ["f647624d016ebc93efe0c4edeb4ed99d4512944702c92ffaf27a498d09c9bfa5e1aa3dbf0401000000086a6a00536363525144b8d077015f65d0040000000005ac5252635228647b6b", "00ac51ac", 0, 637341690, "981e5613ded02bca59aa5e81201c946b0db278b4bdb3960d83ea1cc06b1901ee"], + ["f3596e8c02090780c55927bac4e0c5780da38796d2b2352506ea871db11a241f0b9c249c1f010000000463ac5200b0556890581cbb4aefd9ce1a8450eabe144c6056594e8d91d9762316c28df05cdedf8b9f02000000026552ffffffff04807a46040000000005acab6551ab071ed10100000000055300ac52630d67130200000000036551639953670500000000015200000000", "", 1, 926896618, "c04e304b4ec23c3f96e9f9518692fb02877f1df938f8d8d54ee19b8658d3caf1"], + ["d6240963046d64ed943278e270e7d92172071a96916a3acf7f3e2d3fd81f7425f47fb44f8b0100000004650052abffffffff590dd4b2b51bb7610cd4c6f1d86262d5b0ddd25e2e63a38aed74efa1bbc5e9f0020000000551abac6a003ad89721d29bc04d57eebbcfa34054dbdeec267e91d0784d42dc50cdc00deaf944e737b300000000096363636a6a635300accce17fb34c75c6d6c00062c8ae8ff9aab13818c616e4fbe363a5f8910e9cd24c6bbaf3d80000000003ab530020b1061901df2ea0050000000005ac515165ab7866ce4e", "516a00636500", 2, 1826234463, "f89d422a7f36554ffb0bdbeb4eddc16bc4d88ddc0069a13ec15eb7dd2a6b1368"], + ["bc1515320367aa979abeef99287f0f5f1e5dfe4fdbfcb00c6115620919b8cf4b1752f679b70300000002636aa159de9b2985b46f0ed4feffb5ae77d051fe59f98c2b406efa7cdc5b0a83c49837358d010000000009536a0051000065656ae94ff2a6f4f715ca84feba7c16231cbdb30ab2628af29eb3d2b0c716264a0ac59c6f431e01000000076aac536a00ac657abf158b0279b36902000000000653636a5153537fc3590500000000030051ab7775264f", "abacab6353", 1, 390564792, "7886ed3796f8fa6e8113444c25901c541a9f3f4b0b7928cc6dd68f62e4029ea9"], + ["5cfb7c9201d0ee8b42c6b26df77824719b8d33dea5cf2944f18eaede5d737bbe6a8bbebe92000000000951ab6aabac6a52ac51ffffffff015bf79001000000000000000000", "005200", 0, 1197810993, "a29c3226961a3d3a3252ca94cc403797626494093ec002723fbd52b9b92971e8"], + ["6d08f7740146b24683b6fa6932d19bfb4827747bae062dfca7978f8f9b525ae4bb1f7d044f020000000700ab6363536565ffffffff0489910103000000000018c0640200000000030051539284ce020000000009630053ab53535365ac063ad7020000000005656551000000000000", "5163", 0, 1529025775, "9afccd7757e53225305d41de4eef751038137e8225fcf72994432a8538947ca1"], + ["bcf0b1fb01eaac4ea098111d4663e260dace15046ca2c26dbdb03f90fe691ff1477c466bb0000000000200acffffffff02c24602010000000007536353536352510e5a4f03000000000852ac656a52520065bfe3f1a7", "52006a", 0, 928113781, "b7dad010c264f603315d234eb4fa0c23605df8f3dc65039ffa22f3509a573ee4"], + ["b5adc4ba04c8994bb0bd1bab6d75ed6c9a2b4daad057c26a689cb80586acc495c3ee0de94f030000000253abffffffff4278e91c99684e245751ed2a82aa060c502efdf98f38b34ca3f89a5b65532bd7020000000452656a00ffffffffeab22589a4d2fac9a0000f3d7f48dd856dfe32cf7926c9c51d68234e8e8f87030300000004ac63006a30f3a24de98d0bbb6a9bce54bd0618c4161f7d25ec816a4946031f9e32f37691795fc67900000000066a636563ac63ffffffff01f2af950000000000010000000000", "52535252530051", 1, 1909434390, "63cf446a7b987611640613c25745a03c85667c6acb809703ebb6669a8b619e1b"], + ["419911360447da8741044aa6b5e9fb0a1ba8ff0ef41cb196d1d4b05e180cfc75d3cfae4c1d01000000080053ab00656563511199d2aa25cb9a651034abde0a283e31d8c36536f3fb65bca7368651bba4848b5bad00eb0000000002ac53ffffffff95c3b0fb0fc4d3c43225b4f755a865e00f5052136707a539596f1f7fd49e04ef00000000085153536a6552635366f21d64e6ef6a9604dc7472b38c72570db67bf43f56a3061171597f9ec1025c8b92257101000000036a526abcec8694039cb97f05000000000451000051728b3104000000000252ab5683c8040000000003acacac00000000", "5300515263acab", 2, 301802306, "1692708b1c8c61f0e7d47a5607b99a5e84d65c912f076483caaf966adc488012"], + ["5416d4b803a11e91dc061d2d402155e7e563f527d514cba9023af5875ef2bd331f5b498b51000000000751ac53000051abffffffff5ca8210542eb0435153d0da4ad99d2052052d96890daeccaed44e509ea1a6d190000000002acacd8b320b5977d81944cb39698bdaf5b0a36a101ff902b676f3255cf583176b46eaf9e55d5000000000163709871b4041421ea01000000000900ab52abacabac5151dc2f340000000000076553ac656563000ec8c60100000000016374488d0200000000045300abab00000000", "6a6a515351", 1, -623746025, "9f43194bbdeb7443d5f0014c37bfe59c835760a5be2a1c0152efab41a8f9c3ac"], + ["7ff11db401c8c9377e106a304284d68d2d460a61b3540e3227fe6ea32d5ea08e1a5e208e5501000000085163526a53ab5153ffffffff013a120301000000000000000000", "ab0065650063ab", 0, 1876364498, "1d7ce3739742f436a81f687c65f0925c13d7f6657ddce0730aee99f7dfabbc50"], + ["2890b33501f6831c935773b0458d025e8a00ccf8759d5e69f9618d9ffd9568dd3a44afe6e70200000000b9271a0402454cc7050000000003abacabd4dd44030000000008ab006553ab52ac6a3122c1ac", "", 0, 345832207, "6d0db3105c166368224fa73f55500094228d23acbef439816f741d47d3bab88c"], + ["83eb401201663973346c03d7928e81e8ceb6f26904da5517d44b7c1d31648886e695f643dd00000000096a53ab00ac5352ac00ffffffff038a87f8010000000003536352a5295d01000000000251004ac196040000000008525165ab5151ab633d3a6c53", "656a6a", 0, 1080042896, "e41ff637da2f9c906b925dea32b5af7fb8a2adb6bd8e12d77d2c413f8f868ade"], + ["86933dde035eff71f070349af5260928b9cb98be8a48d343f9b28fbeea022a13d69be0420b0300000004516a6a53ceb6a53309975a01b88e285f14bcca9e50cb195c9871edc7b2943c908b7b184d60d7356e0100000000ffffffffff52c4308249b2d32b2e21f7cf4ac5ed5536cc12e87eb3d1e1b48e6df5583486010000000151dffa89d102d1a2b205000000000300abac987f4e0300000000056a51ac526a8966e847", "ac536365", 1, 728977214, "caef7b560c841464d7bff8a8b4b6eef461c253ecfd85a689ff12ffa72e00f9b9"], + ["ccfd91a303510e3649c4bdef83c81b6987513831d880fddb0d7b8516828a56d0d733bb36270200000008516a526551635151dd4f5bb626b1c613c1aba67e7a27a25c559529fcb7c3303fec1fe361337ded1cad654b900000000003ac63006433424c06a9ed9b898b7d86154e00b87151d6e249c0f3fe2be0fc4da1b8e4f961756644000000000152ffffffff02f9b5c402000000000965ab520063ab6500004f2c5c04000000000651acab6553521568fe9e", "ab51ac51526a5251", 1, 975843534, "0cebb37ba5c354db4815aa63b39605ba8a576aa3d91b694d5c2493de08736bc3"], + ["25ae52af0317526cccc6aecc8e535febc3faaa3d198663809c6685093b1b77c889c8bdc63b0200000000d9d029ba7e0bea3a25de17e7753a1c822327d59713afcbad04496e4685f06d31ae316f6401000000085152525351536352852dbc8aab5ea5d710d9947c63e34bf5b9ea9f7bb13ac811b1d023c971981925653f91690200000008635152536a6a0000ffffffff03f396a7050000000003ab6a537166e9000000000006ab65ac656a6339b8ba0200000000026a65dd577e42", "65006aac", 1, 254843586, "144d801aa759fc6a301a4f75569807470023ff1c1b1d9fb67ad64a135d8e1554"], + ["4563b03d0429b34b1c6c339790e50d0d1a5651abe8e5143b1d153a52f0da51dbc6547c640900000000075152acac6a51abffffffff97535c9ffd2015873d234bfea53c4616c1e80ea5ca6bd82e51985e36d62897c2000000000753006a00ac5253798a3685a797e6fe1bfa849a0bf5802bb742f4f84f65f004cc05878d7c1e307f13a2ee850200000005005200ab659305d1e53b0c9ab730c02083fad7bc376d0a13649663dd58bcca0a9698d481da6c22c5cd0200000009006a510000ac526aacffffffff035decc90100000000060063656565aca0cb03010000000002516a50e772050000000007ac6a526552636acf5e9bfb", "", 3, 1877343691, "9b664f0654eb1d6ddd152d83cdc2f6128f1eb20b4f811cc75a345f5e895ccfd8"], + ["8ba25aec04305ff5be53e1695b0ccbafa40eb73e2eb06727d64eea6fcfd8dadfc5193e29a10200000005515100636affffffffa2a5a10c19bbfda2bd18fb7981ab62a75269a8f376b9bde64c2953862ca6a56e000000000600636a6565acffffffff1e2242343e035bb9c0f13cbbf639e7f9ab5e820ba7da5895fa2fe4730265100f0000000005ab65516352ffffffffc6b39bc818bb9e7cf5e7f33d748ca40b82fc3c5f558c50d90178158b4bb4ebc7030000000363ab6546640703034b4c08040000000004ab00005233f281030000000004005352ab9582ee030000000007ac65ab526563659caf6b76", "", 2, 549167981, "a40a2eb837c03f8245ccb21fd6e3e9be804769be4b09693e0888a08a6558b16e"], + ["5e38687503aa9d4aba99918faed9a4ecd2845d0893d7b7682856038f9daf35022e9e86a7020200000005ac6352006a99a6ee6972cf7266995f4faf7e2696e85faac8396ac30e909c1e001680ea79cbb8c9a65403000000096aac53656351ab5363fffffffff000fceee77b7f33c29c193023de6a55d0e314436e395170bf3fdc580dec547700000000095352536aab0053ab6affffffff04579041000000000005526a63ab51aaf7c9000000000003536a53b396670300000000035300acfa234c05000000000153d14c561c", "6a6a53", 0, 1849901773, "aa81291f45556883b7f859eea7a6e59428673256b80146494cf69e4a374937d9"], + ["a3d805ce016e22a8c67ee310d17b49ccacfaee4b27fadfb32be00296266096acba9e87b91a02000000009b0c09f2016fa8b0020000000001ac1513720d", "6aacac", 0, -107131905, "42c2b3a844ac739a06bae0fafe013087a357305a6af13b731ef8cbd617459687"], + ["8afbf862030f86df7663be5b5f646fd018f8b9daa06b931aa5e8cda3344a292b14328f93c5000000000753510000000065ffffffff4db92fae93e2466e1d4477ddabffa022867f460bd5bebc1987d06b74154d742601000000086a6553ab6563acabffffffff48d8cbdb7d17dc3b1d71bb0556d36f0eb3c561df9cab20e0bd756f3f4b2641e800000000026a6373ff510d012fc8bd02000000000463635365e7c201f2", "acac516aacab", 2, 813382247, "f673ead5e1b6ced983d88d9a5b7574cc42ae53f35fffebae2b58bb1fddaf0a06"], + ["8b632baf02a4935a23e26ca9c15dac934d3833f40fcce8f8616f4afdfb3bae8748d9096b810200000000ffffffffe3b4d8ddfe44da11dbf8bbcf327efb14705a58471f63789cd48e3dce9a94182d00000000030065007e6713d002d60ecf000000000007525265abacab65673c4f010000000006ac6a6565520000000000", "535265ac5152", 0, -1122871432, "9fd2a2b3fcfb5448883298c18e7acc4629cb5987d61874032d1915ca1e39c270"], + ["d6ff42e904b846bb83d47b862f6a80a785328a86c89b300c76c8f31e6cb49cabebf6c3cf38030000000463526553d96b29bb1324952ff27c03071e7c4e5e5de761f4a589dd62685b51625a8f1e6a2f31967e02000000026a00ffffffffe2f2be0a438f284e80939637df19b657501da335916fc32f0820ec73a56e54b2000000000552abab6a6a000af748ba7ce8ca554881b5dc8b125c9051416640b7d57f4518fad0c20cb9fa0460021703000000076500ac6552ac00ffffffff04c6a0860500000000003f467d0500000000085151ac00655252652f7a04050000000008ab6aacab006563ab4dbc3705000000000665535265515200000000", "53515165ab5252", 1, 748768323, "ce1798aa03a5d438bdfca3598a636acb4f93dba167a86bae6bdb6a95658087ed"], + ["0fe2e74904c6a553c06b78732a1225d47f4fab449461d1c18d49ed1917fc33bdf35b6c096601000000086aabacac0052516ab7644984614d7be309e554141f864a3c7b137b9d9e28f594607e1f336e0fa1da2fda60340200000004ab516a519398631a92dd057332851d3130a994efb339baf6540d7dd89eb98a531524c3e659beb5ff0200000009006a65ac6553000065ffffffff7497eb326be55642bd4d15ae5acdf63522dc82ac204dc6dbf885d3ea8790146502000000086a536a6363535351ffffffff01547f1e0300000000015200000000", "006a63", 0, 991612258, "ded2707b8d2c682eeff887bd2a5c4d1ca0a0201fbec0f754d9f9d0aa487799bc"], + ["451613e6022c65fb487819cb840c84e0c9a7203ead2f87b8102361f6c1e4a612455b277b15010000000853ac51ab65655151ffffffff563baecad52173f47227680ee57d84796369d59c7f77cfc8f8204a4396b79ca300000000020000ffffffff012fce2d010000000008ab0065ac63acabacc4eb26c7", "510065ac", 0, 992679521, "e7373c57e072b9286f0c0dc8c65bb641054585210faad1ec88dc6488123366bd"], + ["407790810296e2bf2e0b4f0d3ea82dcccb2ee7350e844df4b811e419b44c9a4c5b09391799030000000353ab6a1276386ab57205150ad9b25b944aea2480fde231dd70ec96adaf6bc4ef45680e748077e8030000000153ffffffff0313abdb02000000000100d21a550300000000066a6a6a6a6a51e895a6020000000009525100acab5100ac51be7b0c4e", "6a00516a6300", 0, 1262869601, "5714b1372d64be2f11e56a1cc000cb766a8ecf8d385c5a32ced0777c6fbc4426"], + ["5243def8046c06ca6d93f5d55df07c8fc6244ac31d6df80ac9353423e5e8e9738958ec11730100000005ac6aabab63ffffffff946c6ba3484bc0436f0765f6f51ebd188684f4b23de2e39b568454a94c5c94d403000000036aac51ffffffff4b377945a7e188d76e0a7d4d6b6759ee910fd7f35bee1d3902efc17ebb36c985030000000253521411ebf79b07cb72549200208f5354d91246aeb39622060b2639f1f95d7a16e9e856d3a20000000006536365635365ffffffff029a4b74020000000008ac53acac6565acab8ed9360500000000065363abab630000000000", "acabab5163ab6a", 3, -1070762681, "d0579ba78038af20f78ee3826b543937fd516da21b9fef2168a4c286da28c821"], + ["adcab6e903e0668c739b7fdda8260709e12f7b22fc4ad7f6ca849f2d45b87a73054b028d3900000000045263ac6a99fdf958fcc051f8a6ea766b536bba17353fb2f771cec5a8ae7d74a2f4c41e4337af7ed800000000001b25a3ee6f308297fa3c6733fd7e6621dd320ef62a86f10376710a521bf373b1a028d9760300000003006a65ffffffff03cf67e9050000000006ac5353510063bf163a01000000000763510000ab00ab659c5c050000000006ab52536a65ab00000000", "ac65535265526a5253", 2, -1635762858, "082dc73fa30c20f9488b6c8e157925b2895cc85a07e168e6eb43966293e74da0"], + ["75f5f5280369d2b72cba641ba24bd34bc124fd70ad6340755f9283601ab7ff119d855f869301000000066a53636a65acfdaa55a91f014c4fca9f26ee10c4ba0cbbe5032d400de143029bb609ba5709f209d2c7600300000003006353ffffffff701c4bbeb2c54d37fc2f27a46936dc25c4394605f2091d057e0ff37f122bda2b0000000001ac3c8a5b0403e4824f020000000000846155050000000004ab52ac6517d0320000000000026a0016cccd54", "0065ac51", 0, -702879326, "ec8aaa1cfde80330e9d193f9ed0bdb4a8f6213ea997ad4f3c0624f42d12793de"], + ["5a8fa47304ec0a45d2680023a3187fc3f0fa76fb8d1b7871fa026f7138ac24a9db6b35aca1000000000563006500ac9b81718c1b8b085964f5cac6f27f438c3a316f20fbbbf2ce75d00c9a60e112f0aacd52de030000000153ffffffff07a3112f35c9503ea61d524d2b36d593614f74d6746fef20541b7d37bd76f3af0300000004635163531f0d54d4c804c9cf7490143ec1e669e651bf8b0f8e816a5db4715c35983d6695b942b6660100000008635165636aac5153ffffffff03cb65ac020000000005ab00ab5163bb8ae40400000000076a00ab5363ac00f43226000000000005535363000000000000", "0051ac", 1, -1709895138, "4282b1ab2c7cfa5e43fc5f7a830a66d927938c86e9b7744c5c2091a319004ab1"], + ["1f6ddbce01d66db2f9ebca4f7af1024caa4c9621141e66a9edf888389643ab38075e871ada02000000095263ab6a52ac635163ffffffff01a56841010000000000f58e9750", "6a52", 0, -1351764059, "c25153198b7aa6f0c18cbbe3acf09bfedbb7e4e8f3e58c9995a933c74245cdef"], + ["9b379b0903e6ff8b835a972a5340538b12d1f24f91fa6dbc0be80d5f91a49b9d8b2fda20410300000004acac005276b036e8db96fe88b54d6d9808f86a1edc39fcb47312757de9f9cbbadc74f7f333d1a0f20300000005ab52520051b7668917f57b9e2c09ec3208869f9ee5049a20e1c3b16fab44fc611eaece4368878aa2c80100000004636500ac8fc0e4c4017aaa63020000000007ab65006352ab5100000000", "51ac5100536a", 1, -1687383089, "db67b4ce42a83d13dae29d80a5d828340f6d0dbccfb71c3a44e0ea42a1cc79ac"], + ["d3131c0904fb396ad9051554cb4e50d26793f543c2a7be3a24e0fff7953fed0082a831e1170000000000c5992f27d21fab74bb9d47c8414a41620295dccadcb48809f98f708c6b1828e4c33c3c11030000000453ab6552715e312694b554b20b9a246bb087b7f667944d3622ff9f7d090b62223f7b14606cad20b00200000006ab00ab51536affffffff44a7c0246f4bcac9dff09609a053bc3be712d4210c7be3450e571df0563d94d90100000000ffffffff0327e06d0000000000056a00ac65637cef5702000000000153671ce30500000000045153650024100203", "00", 3, -1882209930, "0ca2c7e82443611548675d43bee44570059ffffbb7b785d6a42837c13da6019f"], + ["1f8ed51502746e6fa9dc1665112a1b144892f640c5c3ccd8885c68ecc572c1d633d589b96300000000026a6a9ce9ebf9f99e12d1d80a870d85f6d35abb4c54ecc82cf0153b869a9e4988a352e19d2d44010000000452530065ffffffff017d5f2f010000000009ab51ab00636300acaba5f9917c", "53526351ac5352", 1, -1508586144, "16efb660ca2b95042e7f7f5028e320b49acc16b6a17d3f2e20b7aab0f8926fd5"], + ["89f4758b049c9b5837566a6103a6b29b79d1890a5510b8a62476a7090ff27dc7b558c226f50300000007005163abac5165ffffffff427d35a75d9ab5286ba32b35bcadcf47f52c692f0b21c7ca6c130bff888709e9000000000851ab516a00ac51654ab76ba078dc4ef32e76ad3843fa563076df899ba46c432f6f1744c501147a072e1513580200000009006a6365636a006aabf8d349fbe324c5d681042ebb8c254e3e7557a760f38e6a74dd19a7413c7bc2fd5eb73fc70200000004acac5165ffffffff0339d9c60000000000065363006a656338ca5c030000000003515253516479040000000004ab6a005100000000", "5165", 3, 421125310, "464d08b632d6af319b80d5adfc1e374ed7f6d5f76345afd11ddb1cb0629220c5"], + ["90ef393004d00ae2c4d36a3cdbc50afa0558e991126e37e4050cc5ae5e1406aad6a8ac3b60020000000151ffffffffb2ee2592d1edc5856241048401382a94b226ee79c39fbe99302f63ea856c4556010000000900636353536353ab52ffffffff4bd2af9b8eeda7e7d901b91497dc9bf34ec4282a36d84e7d2711088f515c605a0200000008ac00acac6aacac6affffffff5743ba04ee0794a7ca99ddfdbb5fe39a5fefc1d4c85dd0c61892959c86ff83b40100000001ab9443449802d4d28e0500000000075363ac6a520053834ec205000000000365650000000000", "ab00ac", 0, 1967767470, "21bb52bbecd9e0418fd1a5fec8dc5633a778754e7a2a3f236eb254a780158727"], + ["a1dd1b8b047f8aa61871bbb37b0f5295eeaa62d49444882f3af58030ad547c983136c9588c010000000763acac6a516551ffffffff82bbcdfddf280717fba13467fa51d050623103c3d373eaee1de9f39fa7ce1d380100000008ab51ab00636351abfb92f61f89d83723e5d9e4bbf00b6ffb64121483542b9291ab916f31bc294de6bf781e040100000004acab0052ffffffffcd831a41f9d04c3454975733807932945398a68793887570e4c9f47e41e16d6f0000000000ffffffff024b830c040000000006abacacac52514540a50500000000086a5363005351ac0000000000", "51635163ac6352", 0, -406334105, "4475501c7680af28e19f06a1273915081552da13e9a2a6a2640eb7540ad225e1"], + ["7a05b96604e785f71eb7e93a1badba2b735ba8bc6628daa2abcfaefe097078d3b3ff8468a90200000009526aac6a6a53000065216d0048ee85020fd7e59110c47eaa556b1ae65c5d8328b4775831ac7bff237b00d4cc750200000003ab5152ffffffff389cf43969260bb2292cdedeed926d141b88b5655f837db4d4d3caf9a030ea89010000000465536552ffffffff020072a4abcbbccbe729bf214bd904675cc7ee3b69036a416885e7afed1e0db901000000086a526351ac515353d336b42b04f8d1840400000000036a65635ef40d0000000000085163655100ab516a969b32020000000009ac6351ab5152525200e02f830100000000026aab0423a23e", "5251", 1, -620988342, "0b763d25783ca8b0ce88c2d0bd022c6a29bc00b63313d83f9ec94a5679fc372b"], + ["3c36d0e003883874c02a90df85ea2243f78799247e3083ff73135d951b1b372f178b2b7eb603000000095263526551ab516352ffffffffd6471ff77f8d7f443ba0fe97f6f31307eed6aca3a165e32e6cdcc24bc4f262fa0000000006000065abacac4143288a75ec229d4dc2d388b1f7c13d431a6f50ba6094f2261612c5a3883c0dae39011e0100000001516b8c5874024c590905000000000653656a535251ea9b680000000000025263fd6397e7", "000000", 2, -574831416, "347267d9bf162c69e328c017f47fcb5bed22003a9f8b5ff4bf38fd36871203ed"], + ["22e9bcb90363e44a22d31545d3e8b10c5861563aef79f6a34983e8003af72aa85c83a2728c030000000463000000e2f4863eaaff2da5bb5778f6eff03b8f2b2c79b33409f9e7faddd8ad789564668124b5dd020000000352536a6604ca926ed51af2ef0a574e57b4645cae52bc62d2624a1f44fd61600e3642fb96aa08f70100000008636a525100ab536affffffff02d1f46b040000000003516a5215b1240400000000045163526369e0761a", "", 1, -509399590, "0771acc9b6e813daa9872971b23823cb86a4db95b8fa01f2172f4614dd5e4795"], + ["4f48278703854db3181c794bb7e33a3ef686d54e29022dfe6f2a73b9e0705c14f234655a5503000000055351006a65ffffffff60c1f0c5f0add5a66a096befc6a03f6c2b8371dc4c7f276d138134cd746fb47102000000026a63048964ca63936b903aec72fe6c6265dc7f0c3f004de434eb2e00081f46fa08fafdc5f3c801000000076a53ab51536365ffffffff02522a2e00000000000853515200005153abbfaf12000000000000456d7dbe", "53", 2, 1826477632, "2b49e5bc94a74961717adc9bf18a82c36974a1d341fe8ad61ca7f9dbdd4fbe4b"], + ["198f58d8022c0e5ba19baa2079dc3139e3757498a91bed86bfc77291586ea7391de04c1dfd020000000265529b7065770cf6d412a336debd887379dc09d2b6cd3d9a79e450f757beedc74105eb4678780200000007006a536353acabffffffff02955b8f0200000000076a6aacac656aac356d38020000000003006aacf7ced80f", "6a6352ab52006a6a53", 0, 29164949, "cd290cddea1f0b599b9f451841ada5073d84008dfae5d4b53f290d40570790a0"], + ["5904431a01ab7dfa2f8235c7a323833e02791de6c9066a4ff6003dc3911626bfe4c73cbe300200000009006a00516563ac53acffffffff011ed159030000000008536aac65635263519155fc13", "0053", 0, -695804032, "5a6138495588d2c83082ba32962889edb21ccfab5575be8a620dd174b36bb1f2"], + ["1e724b680419473a8a42527f922c01ca8a58fef7b70b5d45a286ad4468d176db251a4167ba0000000006ac52526aabacffffffff32a869ec8bd64c26b993f463eb3ed998a096d88d39df1e08a1412c0d831c778803000000066aac656500006de7c82e84e8dc2ca0a46bf2bc0b1e6f3be17e7709b7b53ddf40252a9eb082c799f7849500000000060065acac63651c5db09134d813632cee9fdcc62ac89bfb6e7c97032182450ae8a2569def093236e9962d0200000008650063acab51ac51ffffffff03c8b69a0400000000076a0063ab6353ab2debb901000000000463515300fc7c8c0200000000045351ac63ab9ac1d1", "65ac", 1, 284557248, "5b69efd4dd0d34979ae22d43f48852e24d935c1675449e624763d00bbbde3609"], + ["5c7d866e0386f11da5ac8b9302e0d12f6115d2470f2186429789b163ddd3e084daa1266b4e0300000001637df8f583dc2c6335570789d2299ee8d667d1d466bf89103d51cf84fcd7e8cb5ff8a4cd3c0300000005536a6a6a52ffffffff437066b8e386a9780b4a25b7257957d691cc0f16091b6b3a0ff72f37ddb807b2010000000263ace288034b04e1b915030000000002ab6a5a99a403000000000463536363de0ab70200000000036551acc1482f010000000001abe4e2e9ae", "ac", 0, 1679757941, "19baf2a57cfd7a444ab0b4dabe5de5a30dd60f4d9ae2c25493b7147d0b23ee6e"], + ["32cd17050198328f6a8e47ad1edfd26179bc3faec8dcc003f4074594bb90ee196c4bb3cc6603000000086a006aab00005300ffffffff04b2a527050000000006ac52635163ab370fcc020000000003515100bf38a1020000000003ab52517082c6040000000002636a00000000", "536a63ac65", 0, -126574044, "dc2ff2b4e90ed530408e067bcc0ae528188ec718d0dfdbe05a2c6da12fd96a46"], + ["e64f6c4f0296a2c8556eb55647a5f4a05f5d647c34094a4df88b0dc3e5faff58dd0494aa1c010000000263526593b3b09985a953157b4db28ab33233c6d7c0179a3deddaf968b9ef17d9322b5db763970000000001530a8489e90271e6fa030000000007ac6a65635363abb20c1205000000000152fd9f58ee", "ac0065ac52ac", 0, -1865376376, "8e749e2171d03e4dbc3210b4f88b6bff4c02666a4f4c0c7c1968546aebbbc945"], + ["477dc3b302be6746bc17f7d44bba0c360acf85a05061156234a5f83df9dd1204cfdbdb7411010000000351acabaa401a670ae6cba838fb5c20181b8b1e6961ad220c321829da66149e6db2a6980b81554d0200000000ffffffff01700919030000000003abab0000000000", "ab51", 0, 1048448812, "004568d902d4fb1661fb76daf455050dea592f1146aa2dee2cebea2da782f331"], + ["5eadcb3c027829f40cebd5869eba60852736345b0e22187d462eb68828bb72d9e07bfb57df02000000056a6353ac6ad33f375f7315f48f27a19b34b6925a1e6103385269eb3adfadf2dfe590a4fec5fe1ad860020000000965ac5353655251ac00d5af4c2b015a3d20050000000006ac6553006351fb2b716b", "6aac", 1, -965254654, "468cd995279ac79c9a86374a7879461603ca47d5c4b341125adf5d8b88415f4c"], + ["9bc8c171040b006f9acd94f44086d006204771c92dbedfe2cda86eb87a44df427de3719e0f03000000076a650065acabac9b90cddd12a6d4ffb8e9909c0523ad5571606b05b94ab941bb90b8458fb47f5ee24a0607020000000751ab6a65515163ffffffffd901da7d6f392da1279af6badb5bbaa9238d772336a906c8f0b45f3b800b5c18020000000400636a65ffffffff6edd0fd5022b9227a75062b1cccadec581e380790041da76b2fc3375aa2cc8b101000000066551636a6565782a764102787e87020000000005abacac53510212c305000000000465656a6300000000", "ab5100ac526a006a65", 3, -444767306, "d7de300bf660420cd977b13a4a5077414c8fefccb11afba97b20fa7e5acf7590"], + ["e4651f2d015a410cd80ce40888cec0e9253dd60601d30dd7fc9e3e1062dd11be84c86e5391020000000900525363ac5200ac521312bf9001bfbd78020000000009acac52ac6551ab635100000000", "ac656551530065", 0, 918032454, "57c1abdfaaec64f6fb7fd5b8577a5ca08f5e490e263dbd4e10384cac8245ace2"], + ["e24b82c104c5a22fbcb5d18d42b07f3b05fb4265d9bc07bc3a8624ba1fd8ced5ce49e094730200000000ffffffff07d6a4ad55a2bc42ebca45da7887a159405aaa1a0b08b20f9c45f2d0618fc66903000000046aabababffffffff07e4ebb4631edeb9e4229b13636c09437e982a0bd52f1cb1928c97fd122732e70100000002ac51ffffffff042e233fe3e442dd19c2e74d193ef83712b49591235e18b204cd9324f895170a010000000963535253ac526aab52ffffffff01944432030000000007656a6551635353339e8a39", "5200526300", 1, -279491109, "b1770d83c1e6ab93382fd9448b3a8824229b7e89456aa49cf967957f7c4e3c3a"], + ["8262a4cb030354717307965cac1c56c9bd140b77dfa17d1753bdc279a1157fac455225b15402000000086aab51acab6500acffffffff702b7f756a177c2bd690cdb4cc06e958696e9e49ce66714db165c6e4a00c7b06020000000038fee5106ad304b65f65ff3a7fbd6f917ca5e91b87c25082924891fd912ea92053405ce60100000006656353ac63510f213f510459f5600200000000056500ab52ab154047040000000004ac63006338154f0500000000055263ab53522f843a05000000000352abab9b23ecb4", "65acac6a00", 2, 256501958, "48ccd730b388aea23cdb0b2bf36999445e125fa124092d838cb6b52264f838b1"], + ["819b71b603b98665b591422a39068b771f9dff3a24e2c8d0cfd713ccfa4f08ecb02c9cf2c701000000055165656a6accbbee53d66efbeaf58728a6efe2a1fae508652cd67d430a9d777600200390c36cef41060000000009ac5100acac6a63ab654c7b2d9b467aa0447a22947c748c018df55f9b407451c186f48352fea6ad3cfbe36f7e810300000006535252ac6a65ffffffff0221e9ce03000000000653acab526a53fbe21e03000000000851006563ab6a005200000000", "656a", 1, -369650049, "11c356529e955c0133acfc45ac158b574c3bef3d2131c9babf3b1e604d9f5500"], + ["eefbdd13044ad171aa0907900883e0858b315c083ef666b1dc11dcfd53f5335fe0e3d1b77e0100000001acd24df7341de0f98aec3e87805d03e8d96434d5e9a7dec5f1a300654dac353c4a1ec0f5f0030000000953abab6551636a5200f97287efbba68afd5f33d94d7b5400bd6731113d0bcd3a6b9e2f0cab2bdeaf466b52085302000000010071fb6cbbf81cfbcecf301ecec1f1f9c45c0b2bbd7e5fc2acd8f5081d5b451dbb0563641403000000025363e6348c49023235b2030000000001ab55b26900000000000852655152ab53535214ac24f3", "51", 2, -234395607, "2f6f07f7c6dfa002b2df1f96e5fd838ac4cc106b4c3a42882ba81ab0b0a7cc19"], + ["c96a0960049b5f83d8eda5951cb09427935471eff9c0dae404422edf320ff291f1e517be090200000009516353636563656a65e6af85e5fb057359bf8d95f7c1106609ac52ecf1f41a38dc856650608da6e420b1d575050200000003516363ffffffffd78c214dbe2a153192d3d8dfb329d7f82edd87ef949c90605d63ebad95b596920300000009535200515151ac6563ffffffffab6b1fd7665d3616604d58031d17c5b2fe0670809bf2d31b50ba5924622c380601000000095352acabac65ab5100ffffffff03956bc8050000000001ab5d3d9f000000000002006a35ba2d020000000006ab52526a51ac4facad38", "", 3, 141565323, "b0ab44fbdc5ece7aa2c774eac389d6c5b4452e4170e5aa2d70a233d86b479b55"], + ["e213eefe048fcfda3934dd4f58dfd43210af6072dd25a92f94bd863ff52d3a31fb10c8842f0300000003655152ffffffffc1114101b6051156bd281fc05a9844e6c681d6e4c32d55a81296b0abdb567482030000000651ab6aab6aabffffffff7e8519519acbd42500a0ca802669cd16a510d294c22ed7dec979955af146d9d402000000096563535165ab6a536affffffff2cf42c8332b3451dcda9a91889fc1e4d0a91ef09bed5cf596585080beb7778dc010000000153ffffffff01bc06610000000000096a5152635251ab65ac00000000", "65", 2, -591773087, "6ef688c6b7a9c76a647f8e591d249e748592948cf684f6339a87b25e54c768d2"], + ["2c06203f02cda77349f964333a1ba8e82ac28995429ca5a2e3f463491a8b40539aa4354174020000000265acda59171e9f681fba73036b85dbc46236ff22bd03a8e6fe71096cb6fe913898d05660304e020000000353ab52ffffffff01184490040000000001512096d039", "53", 1, 1648733089, "4b702620ac3e57f5d72c7c29f0dd8e6be26bc7914c5d2f86efcfd3856d2f09fa"], + ["981c9d7d0407828508e0c50c2a01a317946139d3587f9f829e82e80d29039e777cd04b89f8010000000965ac53ab53ab525100ffffffff27050d3b6c4ecdb774ae791902c47a7778ed51900e13ca313558f002d7d1b0770100000004ac63510081c23504a7077bec3231ad2da4250b87a76682d8c8e3abc3c4daef7c42834b90bbf4417900000000086aac6a0063656a65fffffffff17f6fff67a321361a62515b1b388d3e97fafdd4084b9d220a2ab5c9e7947b420200000004535365ac694af0ba0336542e0400000000096a6563636500ab5353fbcc8405000000000600006aac526aa644980000000000035265ac0222aee0", "ac53ab6a6a6aac6563", 2, -269281807, "6954f50c07ddbb446c9165bcb4261824489400b0084ca92124dc0d5451148453"], + ["567006cb017cecb04ee9e2cdf8812a27538172e7b7679bdb151f035f27afbecc9ba1325d250300000008516a6a53ab52ab65ffffffff0219626e000000000002ab6ace27ec0400000000076aab51ababac52410b3235", "ab63", 0, 2105794009, "f209d147dc3762a61bcce5a1317ded46ac795678409d3872e82bea3ca86ad98a"], + ["4d942bcf011bd361917ea0bb386c9eb2cc755448e99d0c2cd571be5556b4aec0f48bc5e24f0000000003656a00ffffffff03994ef2020000000000011aca030000000008ab6a535263656a526ee2ee00000000000763ab6a636a6a5300000000", "", 0, -218108718, "fcf76ddfa0b73dc99b8a9e81fb42e64845b634e3344d9e8bb2cef80624012c8f"], + ["dc0b5d9d01815fc1a0e892028e4ed2ed633c80419f5ba90de17cf9118e66dab59909c60aff000000000765acabac63536affffffff019d48ee040000000001ab00000000", "5152", 0, 18980549, "d4c3afdce0f34eee8c0920a0230ef2f62629b2b675e2b121615e47470cd4f1e9"] +] diff --git a/src/test/data/tx_invalid.json b/src/test/data/tx_invalid.json index faf40ef23..638a705f9 100644 --- a/src/test/data/tx_invalid.json +++ b/src/test/data/tx_invalid.json @@ -2,79 +2,106 @@ ["The following are deserialized transactions which are invalid."], ["They are in the form"], ["[[[prevout hash, prevout index, prevout scriptPubKey], [input 2], ...],"], -["serializedTransaction, enforceP2SH]"], +["serializedTransaction, verifyFlags]"], ["Objects that are only a single string (like this one) are ignored"], ["0e1b5688cf179cd9f7cbda1fac0090f6e684bbf8cd946660120197c3f3681809 but with extra junk appended to the end of the scriptPubKey"], [[["6ca7ec7b1847f6bdbd737176050e6a08d66ccd55bb94ad24f4018024107a5827", 0, "0x41 0x043b640e983c9690a14c039a2037ecc3467b27a0dcd58f19d76c7bc118d09fec45adc5370a1c5bf8067ca9f5557a4cf885fdb0fe0dcc9c3a7137226106fbc779a5 CHECKSIG VERIFY 1"]], -"010000000127587a10248001f424ad94bb55cd6cd6086a0e05767173bdbdf647187beca76c000000004948304502201b822ad10d6adc1a341ae8835be3f70a25201bbff31f59cbb9c5353a5f0eca18022100ea7b2f7074e9aa9cf70aa8d0ffee13e6b45dddabf1ab961bda378bcdb778fa4701ffffffff0100f2052a010000001976a914fc50c5907d86fed474ba5ce8b12a66e0a4c139d888ac00000000", true], +"010000000127587a10248001f424ad94bb55cd6cd6086a0e05767173bdbdf647187beca76c000000004948304502201b822ad10d6adc1a341ae8835be3f70a25201bbff31f59cbb9c5353a5f0eca18022100ea7b2f7074e9aa9cf70aa8d0ffee13e6b45dddabf1ab961bda378bcdb778fa4701ffffffff0100f2052a010000001976a914fc50c5907d86fed474ba5ce8b12a66e0a4c139d888ac00000000", "P2SH"], ["This is the nearly-standard transaction with CHECKSIGVERIFY 1 instead of CHECKSIG from tx_valid.json"], ["but with the signature duplicated in the scriptPubKey with a non-standard pushdata prefix"], ["See FindAndDelete, which will only remove if it uses the same pushdata prefix as is standard"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "DUP HASH160 0x14 0x5b6462475454710f3c22f5fdf0b40704c92f25c3 EQUALVERIFY CHECKSIGVERIFY 1 0x4c 0x47 0x3044022067288ea50aa799543a536ff9306f8e1cba05b9c6b10951175b924f96732555ed022026d7b5265f38d21541519e4a1e55044d5b9e17e15cdbaf29ae3792e99e883e7a01"]], -"01000000010001000000000000000000000000000000000000000000000000000000000000000000006a473044022067288ea50aa799543a536ff9306f8e1cba05b9c6b10951175b924f96732555ed022026d7b5265f38d21541519e4a1e55044d5b9e17e15cdbaf29ae3792e99e883e7a012103ba8c8b86dea131c22ab967e6dd99bdae8eff7a1f75a2c35f1f944109e3fe5e22ffffffff010000000000000000015100000000", true], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000006a473044022067288ea50aa799543a536ff9306f8e1cba05b9c6b10951175b924f96732555ed022026d7b5265f38d21541519e4a1e55044d5b9e17e15cdbaf29ae3792e99e883e7a012103ba8c8b86dea131c22ab967e6dd99bdae8eff7a1f75a2c35f1f944109e3fe5e22ffffffff010000000000000000015100000000", "P2SH"], ["Same as above, but with the sig in the scriptSig also pushed with the same non-standard OP_PUSHDATA"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "DUP HASH160 0x14 0x5b6462475454710f3c22f5fdf0b40704c92f25c3 EQUALVERIFY CHECKSIGVERIFY 1 0x4c 0x47 0x3044022067288ea50aa799543a536ff9306f8e1cba05b9c6b10951175b924f96732555ed022026d7b5265f38d21541519e4a1e55044d5b9e17e15cdbaf29ae3792e99e883e7a01"]], -"01000000010001000000000000000000000000000000000000000000000000000000000000000000006b4c473044022067288ea50aa799543a536ff9306f8e1cba05b9c6b10951175b924f96732555ed022026d7b5265f38d21541519e4a1e55044d5b9e17e15cdbaf29ae3792e99e883e7a012103ba8c8b86dea131c22ab967e6dd99bdae8eff7a1f75a2c35f1f944109e3fe5e22ffffffff010000000000000000015100000000", true], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000006b4c473044022067288ea50aa799543a536ff9306f8e1cba05b9c6b10951175b924f96732555ed022026d7b5265f38d21541519e4a1e55044d5b9e17e15cdbaf29ae3792e99e883e7a012103ba8c8b86dea131c22ab967e6dd99bdae8eff7a1f75a2c35f1f944109e3fe5e22ffffffff010000000000000000015100000000", "P2SH"], ["An invalid P2SH Transaction"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "HASH160 0x14 0x7a052c840ba73af26755de42cf01cc9e0a49fef0 EQUAL"]], -"010000000100010000000000000000000000000000000000000000000000000000000000000000000009085768617420697320ffffffff010000000000000000015100000000", true], +"010000000100010000000000000000000000000000000000000000000000000000000000000000000009085768617420697320ffffffff010000000000000000015100000000", "P2SH"], ["Tests for CheckTransaction()"], ["No inputs"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "HASH160 0x14 0x7a052c840ba73af26755de42cf01cc9e0a49fef0 EQUAL"]], -"0100000000010000000000000000015100000000", true], +"0100000000010000000000000000015100000000", "P2SH"], ["No outputs"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "HASH160 0x14 0x05ab9e14d983742513f0f451e105ffb4198d1dd4 EQUAL"]], -"01000000010001000000000000000000000000000000000000000000000000000000000000000000006d483045022100f16703104aab4e4088317c862daec83440242411b039d14280e03dd33b487ab802201318a7be236672c5c56083eb7a5a195bc57a40af7923ff8545016cd3b571e2a601232103c40e5d339df3f30bf753e7e04450ae4ef76c9e45587d1d993bdc4cd06f0651c7acffffffff0000000000", true], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000006d483045022100f16703104aab4e4088317c862daec83440242411b039d14280e03dd33b487ab802201318a7be236672c5c56083eb7a5a195bc57a40af7923ff8545016cd3b571e2a601232103c40e5d339df3f30bf753e7e04450ae4ef76c9e45587d1d993bdc4cd06f0651c7acffffffff0000000000", "P2SH"], ["Negative output"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "HASH160 0x14 0xae609aca8061d77c5e111f6bb62501a6bbe2bfdb EQUAL"]], -"01000000010001000000000000000000000000000000000000000000000000000000000000000000006d4830450220063222cbb128731fc09de0d7323746539166544d6c1df84d867ccea84bcc8903022100bf568e8552844de664cd41648a031554327aa8844af34b4f27397c65b92c04de0123210243ec37dee0e2e053a9c976f43147e79bc7d9dc606ea51010af1ac80db6b069e1acffffffff01ffffffffffffffff015100000000", true], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000006d4830450220063222cbb128731fc09de0d7323746539166544d6c1df84d867ccea84bcc8903022100bf568e8552844de664cd41648a031554327aa8844af34b4f27397c65b92c04de0123210243ec37dee0e2e053a9c976f43147e79bc7d9dc606ea51010af1ac80db6b069e1acffffffff01ffffffffffffffff015100000000", "P2SH"], ["MAX_MONEY + 1 output"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "HASH160 0x14 0x32afac281462b822adbec5094b8d4d337dd5bd6a EQUAL"]], -"01000000010001000000000000000000000000000000000000000000000000000000000000000000006e493046022100e1eadba00d9296c743cb6ecc703fd9ddc9b3cd12906176a226ae4c18d6b00796022100a71aef7d2874deff681ba6080f1b278bac7bb99c61b08a85f4311970ffe7f63f012321030c0588dc44d92bdcbf8e72093466766fdc265ead8db64517b0c542275b70fffbacffffffff010140075af0750700015100000000", true], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000006e493046022100e1eadba00d9296c743cb6ecc703fd9ddc9b3cd12906176a226ae4c18d6b00796022100a71aef7d2874deff681ba6080f1b278bac7bb99c61b08a85f4311970ffe7f63f012321030c0588dc44d92bdcbf8e72093466766fdc265ead8db64517b0c542275b70fffbacffffffff010140075af0750700015100000000", "P2SH"], ["MAX_MONEY output + 1 output"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "HASH160 0x14 0xb558cbf4930954aa6a344363a15668d7477ae716 EQUAL"]], -"01000000010001000000000000000000000000000000000000000000000000000000000000000000006d483045022027deccc14aa6668e78a8c9da3484fbcd4f9dcc9bb7d1b85146314b21b9ae4d86022100d0b43dece8cfb07348de0ca8bc5b86276fa88f7f2138381128b7c36ab2e42264012321029bb13463ddd5d2cc05da6e84e37536cb9525703cfd8f43afdb414988987a92f6acffffffff020040075af075070001510001000000000000015100000000", true], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000006d483045022027deccc14aa6668e78a8c9da3484fbcd4f9dcc9bb7d1b85146314b21b9ae4d86022100d0b43dece8cfb07348de0ca8bc5b86276fa88f7f2138381128b7c36ab2e42264012321029bb13463ddd5d2cc05da6e84e37536cb9525703cfd8f43afdb414988987a92f6acffffffff020040075af075070001510001000000000000015100000000", "P2SH"], ["Duplicate inputs"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "HASH160 0x14 0x236d0639db62b0773fd8ac34dc85ae19e9aba80a EQUAL"]], -"01000000020001000000000000000000000000000000000000000000000000000000000000000000006c47304402204bb1197053d0d7799bf1b30cd503c44b58d6240cccbdc85b6fe76d087980208f02204beeed78200178ffc6c74237bb74b3f276bbb4098b5605d814304fe128bf1431012321039e8815e15952a7c3fada1905f8cf55419837133bd7756c0ef14fc8dfe50c0deaacffffffff0001000000000000000000000000000000000000000000000000000000000000000000006c47304402202306489afef52a6f62e90bf750bbcdf40c06f5c6b138286e6b6b86176bb9341802200dba98486ea68380f47ebb19a7df173b99e6bc9c681d6ccf3bde31465d1f16b3012321039e8815e15952a7c3fada1905f8cf55419837133bd7756c0ef14fc8dfe50c0deaacffffffff010000000000000000015100000000", true], +"01000000020001000000000000000000000000000000000000000000000000000000000000000000006c47304402204bb1197053d0d7799bf1b30cd503c44b58d6240cccbdc85b6fe76d087980208f02204beeed78200178ffc6c74237bb74b3f276bbb4098b5605d814304fe128bf1431012321039e8815e15952a7c3fada1905f8cf55419837133bd7756c0ef14fc8dfe50c0deaacffffffff0001000000000000000000000000000000000000000000000000000000000000000000006c47304402202306489afef52a6f62e90bf750bbcdf40c06f5c6b138286e6b6b86176bb9341802200dba98486ea68380f47ebb19a7df173b99e6bc9c681d6ccf3bde31465d1f16b3012321039e8815e15952a7c3fada1905f8cf55419837133bd7756c0ef14fc8dfe50c0deaacffffffff010000000000000000015100000000", "P2SH"], ["Coinbase of size 1"], ["Note the input is just required to make the tester happy"], [[["0000000000000000000000000000000000000000000000000000000000000000", -1, "1"]], -"01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff0151ffffffff010000000000000000015100000000", true], +"01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff0151ffffffff010000000000000000015100000000", "P2SH"], ["Coinbase of size 101"], ["Note the input is just required to make the tester happy"], [[["0000000000000000000000000000000000000000000000000000000000000000", -1, "1"]], -"01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff655151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151ffffffff010000000000000000015100000000", true], +"01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff655151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151ffffffff010000000000000000015100000000", "P2SH"], ["Null txin"], [[["0000000000000000000000000000000000000000000000000000000000000000", -1, "HASH160 0x14 0x02dae7dbbda56097959cba59b1989dd3e47937bf EQUAL"]], -"01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff6e49304602210086f39e028e46dafa8e1e3be63906465f4cf038fbe5ed6403dc3e74ae876e6431022100c4625c675cfc5c7e3a0e0d7eaec92ac24da20c73a88eb40d09253e51ac6def5201232103a183ddc41e84753aca47723c965d1b5c8b0e2b537963518355e6dd6cf8415e50acffffffff010000000000000000015100000000", true], +"01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff6e49304602210086f39e028e46dafa8e1e3be63906465f4cf038fbe5ed6403dc3e74ae876e6431022100c4625c675cfc5c7e3a0e0d7eaec92ac24da20c73a88eb40d09253e51ac6def5201232103a183ddc41e84753aca47723c965d1b5c8b0e2b537963518355e6dd6cf8415e50acffffffff010000000000000000015100000000", "P2SH"], ["Same as the transactions in valid with one input SIGHASH_ALL and one SIGHASH_ANYONECANPAY, but we set the _ANYONECANPAY sequence number, invalidating the SIGHASH_ALL signature"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "0x21 0x035e7f0d4d0841bcd56c39337ed086b1a633ee770c1ffdd94ac552a95ac2ce0efc CHECKSIG"], ["0000000000000000000000000000000000000000000000000000000000000200", 0, "0x21 0x035e7f0d4d0841bcd56c39337ed086b1a633ee770c1ffdd94ac552a95ac2ce0efc CHECKSIG"]], - "01000000020001000000000000000000000000000000000000000000000000000000000000000000004948304502203a0f5f0e1f2bdbcd04db3061d18f3af70e07f4f467cbc1b8116f267025f5360b022100c792b6e215afc5afc721a351ec413e714305cb749aae3d7fee76621313418df10101000000000200000000000000000000000000000000000000000000000000000000000000000000484730440220201dc2d030e380e8f9cfb41b442d930fa5a685bb2c8db5906671f865507d0670022018d9e7a8d4c8d86a73c2a724ee38ef983ec249827e0e464841735955c707ece98101000000010100000000000000015100000000", true], + "01000000020001000000000000000000000000000000000000000000000000000000000000000000004948304502203a0f5f0e1f2bdbcd04db3061d18f3af70e07f4f467cbc1b8116f267025f5360b022100c792b6e215afc5afc721a351ec413e714305cb749aae3d7fee76621313418df10101000000000200000000000000000000000000000000000000000000000000000000000000000000484730440220201dc2d030e380e8f9cfb41b442d930fa5a685bb2c8db5906671f865507d0670022018d9e7a8d4c8d86a73c2a724ee38ef983ec249827e0e464841735955c707ece98101000000010100000000000000015100000000", "P2SH"], -["Incorrect signature order"], +["CHECKMULTISIG with incorrect signature order"], ["Note the input is just required to make the tester happy"], [[["b3da01dd4aae683c7aee4d5d8b52a540a508e1115f77cd7fa9a291243f501223", 0, "HASH160 0x14 0xb1ce99298d5f07364b57b1e5c9cc00be0b04a954 EQUAL"]], -"01000000012312503f2491a2a97fcd775f11e108a540a5528b5d4dee7a3c68ae4add01dab300000000fdfe000048304502207aacee820e08b0b174e248abd8d7a34ed63b5da3abedb99934df9fddd65c05c4022100dfe87896ab5ee3df476c2655f9fbe5bd089dccbef3e4ea05b5d121169fe7f5f401483045022100f6649b0eddfdfd4ad55426663385090d51ee86c3481bdc6b0c18ea6c0ece2c0b0220561c315b07cffa6f7dd9df96dbae9200c2dee09bf93cc35ca05e6cdf613340aa014c695221031d11db38972b712a9fe1fc023577c7ae3ddb4a3004187d41c45121eecfdbb5b7210207ec36911b6ad2382860d32989c7b8728e9489d7bbc94a6b5509ef0029be128821024ea9fac06f666a4adc3fc1357b7bec1fd0bdece2b9d08579226a8ebde53058e453aeffffffff0180380100000000001976a914c9b99cddf847d10685a4fabaa0baf505f7c3dfab88ac00000000", true], +"01000000012312503f2491a2a97fcd775f11e108a540a5528b5d4dee7a3c68ae4add01dab300000000fdfe000048304502207aacee820e08b0b174e248abd8d7a34ed63b5da3abedb99934df9fddd65c05c4022100dfe87896ab5ee3df476c2655f9fbe5bd089dccbef3e4ea05b5d121169fe7f5f401483045022100f6649b0eddfdfd4ad55426663385090d51ee86c3481bdc6b0c18ea6c0ece2c0b0220561c315b07cffa6f7dd9df96dbae9200c2dee09bf93cc35ca05e6cdf613340aa014c695221031d11db38972b712a9fe1fc023577c7ae3ddb4a3004187d41c45121eecfdbb5b7210207ec36911b6ad2382860d32989c7b8728e9489d7bbc94a6b5509ef0029be128821024ea9fac06f666a4adc3fc1357b7bec1fd0bdece2b9d08579226a8ebde53058e453aeffffffff0180380100000000001976a914c9b99cddf847d10685a4fabaa0baf505f7c3dfab88ac00000000", "P2SH"], + + +["The following is a tweaked form of 23b397edccd3740a74adb603c9756370fafcde9bcc4483eb271ecad09a94dd63"], +["It is an OP_CHECKMULTISIG with the dummy value missing"], +[[["60a20bd93aa49ab4b28d514ec10b06e1829ce6818ec06cd3aabd013ebcdc4bb1", 0, "1 0x41 0x04cc71eb30d653c0c3163990c47b976f3fb3f37cccdcbedb169a1dfef58bbfbfaff7d8a473e7e2e6d317b87bafe8bde97e3cf8f065dec022b51d11fcdd0d348ac4 0x41 0x0461cbdcc5409fb4b4d42b51d33381354d80e550078cb532a34bfa2fcfdeb7d76519aecc62770f5b0e4ef8551946d8a540911abe3e7854a26f39f58b25c15342af 2 OP_CHECKMULTISIG"]], +"0100000001b14bdcbc3e01bdaad36cc08e81e69c82e1060bc14e518db2b49aa43ad90ba260000000004847304402203f16c6f40162ab686621ef3000b04e75418a0c0cb2d8aebeac894ae360ac1e780220ddc15ecdfc3507ac48e1681a33eb60996631bf6bf5bc0a0682c4db743ce7ca2b01ffffffff0140420f00000000001976a914660d4ef3a743e3e696ad990364e555c271ad504b88ac00000000", "P2SH"], + + +["CHECKMULTISIG SCRIPT_VERIFY_NULLDUMMY tests:"], + +["The following is a tweaked form of 23b397edccd3740a74adb603c9756370fafcde9bcc4483eb271ecad09a94dd63"], +["It is an OP_CHECKMULTISIG with the dummy value set to something other than an empty string"], +[[["60a20bd93aa49ab4b28d514ec10b06e1829ce6818ec06cd3aabd013ebcdc4bb1", 0, "1 0x41 0x04cc71eb30d653c0c3163990c47b976f3fb3f37cccdcbedb169a1dfef58bbfbfaff7d8a473e7e2e6d317b87bafe8bde97e3cf8f065dec022b51d11fcdd0d348ac4 0x41 0x0461cbdcc5409fb4b4d42b51d33381354d80e550078cb532a34bfa2fcfdeb7d76519aecc62770f5b0e4ef8551946d8a540911abe3e7854a26f39f58b25c15342af 2 OP_CHECKMULTISIG"]], +"0100000001b14bdcbc3e01bdaad36cc08e81e69c82e1060bc14e518db2b49aa43ad90ba260000000004a010047304402203f16c6f40162ab686621ef3000b04e75418a0c0cb2d8aebeac894ae360ac1e780220ddc15ecdfc3507ac48e1681a33eb60996631bf6bf5bc0a0682c4db743ce7ca2b01ffffffff0140420f00000000001976a914660d4ef3a743e3e696ad990364e555c271ad504b88ac00000000", "P2SH,NULLDUMMY"], + +["As above, but using a OP_1"], +[[["60a20bd93aa49ab4b28d514ec10b06e1829ce6818ec06cd3aabd013ebcdc4bb1", 0, "1 0x41 0x04cc71eb30d653c0c3163990c47b976f3fb3f37cccdcbedb169a1dfef58bbfbfaff7d8a473e7e2e6d317b87bafe8bde97e3cf8f065dec022b51d11fcdd0d348ac4 0x41 0x0461cbdcc5409fb4b4d42b51d33381354d80e550078cb532a34bfa2fcfdeb7d76519aecc62770f5b0e4ef8551946d8a540911abe3e7854a26f39f58b25c15342af 2 OP_CHECKMULTISIG"]], +"0100000001b14bdcbc3e01bdaad36cc08e81e69c82e1060bc14e518db2b49aa43ad90ba26000000000495147304402203f16c6f40162ab686621ef3000b04e75418a0c0cb2d8aebeac894ae360ac1e780220ddc15ecdfc3507ac48e1681a33eb60996631bf6bf5bc0a0682c4db743ce7ca2b01ffffffff0140420f00000000001976a914660d4ef3a743e3e696ad990364e555c271ad504b88ac00000000", "P2SH,NULLDUMMY"], + +["As above, but using a OP_1NEGATE"], +[[["60a20bd93aa49ab4b28d514ec10b06e1829ce6818ec06cd3aabd013ebcdc4bb1", 0, "1 0x41 0x04cc71eb30d653c0c3163990c47b976f3fb3f37cccdcbedb169a1dfef58bbfbfaff7d8a473e7e2e6d317b87bafe8bde97e3cf8f065dec022b51d11fcdd0d348ac4 0x41 0x0461cbdcc5409fb4b4d42b51d33381354d80e550078cb532a34bfa2fcfdeb7d76519aecc62770f5b0e4ef8551946d8a540911abe3e7854a26f39f58b25c15342af 2 OP_CHECKMULTISIG"]], +"0100000001b14bdcbc3e01bdaad36cc08e81e69c82e1060bc14e518db2b49aa43ad90ba26000000000494f47304402203f16c6f40162ab686621ef3000b04e75418a0c0cb2d8aebeac894ae360ac1e780220ddc15ecdfc3507ac48e1681a33eb60996631bf6bf5bc0a0682c4db743ce7ca2b01ffffffff0140420f00000000001976a914660d4ef3a743e3e696ad990364e555c271ad504b88ac00000000", "P2SH,NULLDUMMY"], + +["As above, but with the dummy byte missing"], +[[["60a20bd93aa49ab4b28d514ec10b06e1829ce6818ec06cd3aabd013ebcdc4bb1", 0, "1 0x41 0x04cc71eb30d653c0c3163990c47b976f3fb3f37cccdcbedb169a1dfef58bbfbfaff7d8a473e7e2e6d317b87bafe8bde97e3cf8f065dec022b51d11fcdd0d348ac4 0x41 0x0461cbdcc5409fb4b4d42b51d33381354d80e550078cb532a34bfa2fcfdeb7d76519aecc62770f5b0e4ef8551946d8a540911abe3e7854a26f39f58b25c15342af 2 OP_CHECKMULTISIG"]], +"0100000001b14bdcbc3e01bdaad36cc08e81e69c82e1060bc14e518db2b49aa43ad90ba260000000004847304402203f16c6f40162ab686621ef3000b04e75418a0c0cb2d8aebeac894ae360ac1e780220ddc15ecdfc3507ac48e1681a33eb60996631bf6bf5bc0a0682c4db743ce7ca2b01ffffffff0140420f00000000001976a914660d4ef3a743e3e696ad990364e555c271ad504b88ac00000000", "P2SH,NULLDUMMY"], + ["Empty stack when we try to run CHECKSIG"], [[["ad503f72c18df5801ee64d76090afe4c607fb2b822e9b7b63c5826c50e22fc3b", 0, "0x21 0x027c3a97665bf283a102a587a62a30a0c102d4d3b141015e2cae6f64e2543113e5 CHECKSIG NOT"]], -"01000000013bfc220ec526583cb6b7e922b8b27f604cfe0a09764de61e80f58dc1723f50ad0000000000ffffffff0101000000000000002321027c3a97665bf283a102a587a62a30a0c102d4d3b141015e2cae6f64e2543113e5ac00000000", true], +"01000000013bfc220ec526583cb6b7e922b8b27f604cfe0a09764de61e80f58dc1723f50ad0000000000ffffffff0101000000000000002321027c3a97665bf283a102a587a62a30a0c102d4d3b141015e2cae6f64e2543113e5ac00000000", "P2SH"], ["Make diffs cleaner by leaving a comment here without comma at the end"] ] diff --git a/src/test/data/tx_valid.json b/src/test/data/tx_valid.json index c206f7a72..1f51d3ce5 100644 --- a/src/test/data/tx_valid.json +++ b/src/test/data/tx_valid.json @@ -2,7 +2,7 @@ ["The following are deserialized transactions which are valid."], ["They are in the form"], ["[[[prevout hash, prevout index, prevout scriptPubKey], [input 2], ...],"], -["serializedTransaction, enforceP2SH]"], +["serializedTransaction, verifyFlags]"], ["Objects that are only a single string (like this one) are ignored"], ["The following is 23b397edccd3740a74adb603c9756370fafcde9bcc4483eb271ecad09a94dd63"], @@ -10,113 +10,127 @@ ["See http://r6.ca/blog/20111119T211504Z.html"], ["It is also the first OP_CHECKMULTISIG transaction in standard form"], [[["60a20bd93aa49ab4b28d514ec10b06e1829ce6818ec06cd3aabd013ebcdc4bb1", 0, "1 0x41 0x04cc71eb30d653c0c3163990c47b976f3fb3f37cccdcbedb169a1dfef58bbfbfaff7d8a473e7e2e6d317b87bafe8bde97e3cf8f065dec022b51d11fcdd0d348ac4 0x41 0x0461cbdcc5409fb4b4d42b51d33381354d80e550078cb532a34bfa2fcfdeb7d76519aecc62770f5b0e4ef8551946d8a540911abe3e7854a26f39f58b25c15342af 2 OP_CHECKMULTISIG"]], -"0100000001b14bdcbc3e01bdaad36cc08e81e69c82e1060bc14e518db2b49aa43ad90ba26000000000490047304402203f16c6f40162ab686621ef3000b04e75418a0c0cb2d8aebeac894ae360ac1e780220ddc15ecdfc3507ac48e1681a33eb60996631bf6bf5bc0a0682c4db743ce7ca2b01ffffffff0140420f00000000001976a914660d4ef3a743e3e696ad990364e555c271ad504b88ac00000000", true], +"0100000001b14bdcbc3e01bdaad36cc08e81e69c82e1060bc14e518db2b49aa43ad90ba26000000000490047304402203f16c6f40162ab686621ef3000b04e75418a0c0cb2d8aebeac894ae360ac1e780220ddc15ecdfc3507ac48e1681a33eb60996631bf6bf5bc0a0682c4db743ce7ca2b01ffffffff0140420f00000000001976a914660d4ef3a743e3e696ad990364e555c271ad504b88ac00000000", "P2SH"], ["The following is a tweaked form of 23b397edccd3740a74adb603c9756370fafcde9bcc4483eb271ecad09a94dd63"], -["It has an arbitrary extra byte stuffed into the signature at pos length - 2"], +["It is an OP_CHECKMULTISIG with an arbitrary extra byte stuffed into the signature at pos length - 2"], +["The dummy byte is fine however, so the NULLDUMMY flag should be happy"], [[["60a20bd93aa49ab4b28d514ec10b06e1829ce6818ec06cd3aabd013ebcdc4bb1", 0, "1 0x41 0x04cc71eb30d653c0c3163990c47b976f3fb3f37cccdcbedb169a1dfef58bbfbfaff7d8a473e7e2e6d317b87bafe8bde97e3cf8f065dec022b51d11fcdd0d348ac4 0x41 0x0461cbdcc5409fb4b4d42b51d33381354d80e550078cb532a34bfa2fcfdeb7d76519aecc62770f5b0e4ef8551946d8a540911abe3e7854a26f39f58b25c15342af 2 OP_CHECKMULTISIG"]], -"0100000001b14bdcbc3e01bdaad36cc08e81e69c82e1060bc14e518db2b49aa43ad90ba260000000004A0048304402203f16c6f40162ab686621ef3000b04e75418a0c0cb2d8aebeac894ae360ac1e780220ddc15ecdfc3507ac48e1681a33eb60996631bf6bf5bc0a0682c4db743ce7ca2bab01ffffffff0140420f00000000001976a914660d4ef3a743e3e696ad990364e555c271ad504b88ac00000000", true], +"0100000001b14bdcbc3e01bdaad36cc08e81e69c82e1060bc14e518db2b49aa43ad90ba260000000004A0048304402203f16c6f40162ab686621ef3000b04e75418a0c0cb2d8aebeac894ae360ac1e780220ddc15ecdfc3507ac48e1681a33eb60996631bf6bf5bc0a0682c4db743ce7ca2bab01ffffffff0140420f00000000001976a914660d4ef3a743e3e696ad990364e555c271ad504b88ac00000000", "P2SH,NULLDUMMY"], + +["The following is a tweaked form of 23b397edccd3740a74adb603c9756370fafcde9bcc4483eb271ecad09a94dd63"], +["It is an OP_CHECKMULTISIG with the dummy value set to something other than an empty string"], +[[["60a20bd93aa49ab4b28d514ec10b06e1829ce6818ec06cd3aabd013ebcdc4bb1", 0, "1 0x41 0x04cc71eb30d653c0c3163990c47b976f3fb3f37cccdcbedb169a1dfef58bbfbfaff7d8a473e7e2e6d317b87bafe8bde97e3cf8f065dec022b51d11fcdd0d348ac4 0x41 0x0461cbdcc5409fb4b4d42b51d33381354d80e550078cb532a34bfa2fcfdeb7d76519aecc62770f5b0e4ef8551946d8a540911abe3e7854a26f39f58b25c15342af 2 OP_CHECKMULTISIG"]], +"0100000001b14bdcbc3e01bdaad36cc08e81e69c82e1060bc14e518db2b49aa43ad90ba260000000004a01ff47304402203f16c6f40162ab686621ef3000b04e75418a0c0cb2d8aebeac894ae360ac1e780220ddc15ecdfc3507ac48e1681a33eb60996631bf6bf5bc0a0682c4db743ce7ca2b01ffffffff0140420f00000000001976a914660d4ef3a743e3e696ad990364e555c271ad504b88ac00000000", "P2SH"], + +["As above, but using a OP_1"], +[[["60a20bd93aa49ab4b28d514ec10b06e1829ce6818ec06cd3aabd013ebcdc4bb1", 0, "1 0x41 0x04cc71eb30d653c0c3163990c47b976f3fb3f37cccdcbedb169a1dfef58bbfbfaff7d8a473e7e2e6d317b87bafe8bde97e3cf8f065dec022b51d11fcdd0d348ac4 0x41 0x0461cbdcc5409fb4b4d42b51d33381354d80e550078cb532a34bfa2fcfdeb7d76519aecc62770f5b0e4ef8551946d8a540911abe3e7854a26f39f58b25c15342af 2 OP_CHECKMULTISIG"]], +"0100000001b14bdcbc3e01bdaad36cc08e81e69c82e1060bc14e518db2b49aa43ad90ba26000000000495147304402203f16c6f40162ab686621ef3000b04e75418a0c0cb2d8aebeac894ae360ac1e780220ddc15ecdfc3507ac48e1681a33eb60996631bf6bf5bc0a0682c4db743ce7ca2b01ffffffff0140420f00000000001976a914660d4ef3a743e3e696ad990364e555c271ad504b88ac00000000", "P2SH"], + +["As above, but using a OP_1NEGATE"], +[[["60a20bd93aa49ab4b28d514ec10b06e1829ce6818ec06cd3aabd013ebcdc4bb1", 0, "1 0x41 0x04cc71eb30d653c0c3163990c47b976f3fb3f37cccdcbedb169a1dfef58bbfbfaff7d8a473e7e2e6d317b87bafe8bde97e3cf8f065dec022b51d11fcdd0d348ac4 0x41 0x0461cbdcc5409fb4b4d42b51d33381354d80e550078cb532a34bfa2fcfdeb7d76519aecc62770f5b0e4ef8551946d8a540911abe3e7854a26f39f58b25c15342af 2 OP_CHECKMULTISIG"]], +"0100000001b14bdcbc3e01bdaad36cc08e81e69c82e1060bc14e518db2b49aa43ad90ba26000000000494f47304402203f16c6f40162ab686621ef3000b04e75418a0c0cb2d8aebeac894ae360ac1e780220ddc15ecdfc3507ac48e1681a33eb60996631bf6bf5bc0a0682c4db743ce7ca2b01ffffffff0140420f00000000001976a914660d4ef3a743e3e696ad990364e555c271ad504b88ac00000000", "P2SH"], ["The following is c99c49da4c38af669dea436d3e73780dfdb6c1ecf9958baa52960e8baee30e73"], ["It is of interest because it contains a 0-sequence as well as a signature of SIGHASH type 0 (which is not a real type)"], [[["406b2b06bcd34d3c8733e6b79f7a394c8a431fbf4ff5ac705c93f4076bb77602", 0, "DUP HASH160 0x14 0xdc44b1164188067c3a32d4780f5996fa14a4f2d9 EQUALVERIFY CHECKSIG"]], -"01000000010276b76b07f4935c70acf54fbf1f438a4c397a9fb7e633873c4dd3bc062b6b40000000008c493046022100d23459d03ed7e9511a47d13292d3430a04627de6235b6e51a40f9cd386f2abe3022100e7d25b080f0bb8d8d5f878bba7d54ad2fda650ea8d158a33ee3cbd11768191fd004104b0e2c879e4daf7b9ab68350228c159766676a14f5815084ba166432aab46198d4cca98fa3e9981d0a90b2effc514b76279476550ba3663fdcaff94c38420e9d5000000000100093d00000000001976a9149a7b0f3b80c6baaeedce0a0842553800f832ba1f88ac00000000", true], +"01000000010276b76b07f4935c70acf54fbf1f438a4c397a9fb7e633873c4dd3bc062b6b40000000008c493046022100d23459d03ed7e9511a47d13292d3430a04627de6235b6e51a40f9cd386f2abe3022100e7d25b080f0bb8d8d5f878bba7d54ad2fda650ea8d158a33ee3cbd11768191fd004104b0e2c879e4daf7b9ab68350228c159766676a14f5815084ba166432aab46198d4cca98fa3e9981d0a90b2effc514b76279476550ba3663fdcaff94c38420e9d5000000000100093d00000000001976a9149a7b0f3b80c6baaeedce0a0842553800f832ba1f88ac00000000", "P2SH"], ["A nearly-standard transaction with CHECKSIGVERIFY 1 instead of CHECKSIG"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "DUP HASH160 0x14 0x5b6462475454710f3c22f5fdf0b40704c92f25c3 EQUALVERIFY CHECKSIGVERIFY 1"]], -"01000000010001000000000000000000000000000000000000000000000000000000000000000000006a473044022067288ea50aa799543a536ff9306f8e1cba05b9c6b10951175b924f96732555ed022026d7b5265f38d21541519e4a1e55044d5b9e17e15cdbaf29ae3792e99e883e7a012103ba8c8b86dea131c22ab967e6dd99bdae8eff7a1f75a2c35f1f944109e3fe5e22ffffffff010000000000000000015100000000", true], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000006a473044022067288ea50aa799543a536ff9306f8e1cba05b9c6b10951175b924f96732555ed022026d7b5265f38d21541519e4a1e55044d5b9e17e15cdbaf29ae3792e99e883e7a012103ba8c8b86dea131c22ab967e6dd99bdae8eff7a1f75a2c35f1f944109e3fe5e22ffffffff010000000000000000015100000000", "P2SH"], ["Same as above, but with the signature duplicated in the scriptPubKey with the proper pushdata prefix"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "DUP HASH160 0x14 0x5b6462475454710f3c22f5fdf0b40704c92f25c3 EQUALVERIFY CHECKSIGVERIFY 1 0x47 0x3044022067288ea50aa799543a536ff9306f8e1cba05b9c6b10951175b924f96732555ed022026d7b5265f38d21541519e4a1e55044d5b9e17e15cdbaf29ae3792e99e883e7a01"]], -"01000000010001000000000000000000000000000000000000000000000000000000000000000000006a473044022067288ea50aa799543a536ff9306f8e1cba05b9c6b10951175b924f96732555ed022026d7b5265f38d21541519e4a1e55044d5b9e17e15cdbaf29ae3792e99e883e7a012103ba8c8b86dea131c22ab967e6dd99bdae8eff7a1f75a2c35f1f944109e3fe5e22ffffffff010000000000000000015100000000", true], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000006a473044022067288ea50aa799543a536ff9306f8e1cba05b9c6b10951175b924f96732555ed022026d7b5265f38d21541519e4a1e55044d5b9e17e15cdbaf29ae3792e99e883e7a012103ba8c8b86dea131c22ab967e6dd99bdae8eff7a1f75a2c35f1f944109e3fe5e22ffffffff010000000000000000015100000000", "P2SH"], ["The following is f7fdd091fa6d8f5e7a8c2458f5c38faffff2d3f1406b6e4fe2c99dcc0d2d1cbb"], ["It caught a bug in the workaround for 23b397edccd3740a74adb603c9756370fafcde9bcc4483eb271ecad09a94dd63 in an overly simple implementation"], [[["b464e85df2a238416f8bdae11d120add610380ea07f4ef19c5f9dfd472f96c3d", 0, "DUP HASH160 0x14 0xbef80ecf3a44500fda1bc92176e442891662aed2 EQUALVERIFY CHECKSIG"], ["b7978cc96e59a8b13e0865d3f95657561a7f725be952438637475920bac9eb21", 1, "DUP HASH160 0x14 0xbef80ecf3a44500fda1bc92176e442891662aed2 EQUALVERIFY CHECKSIG"]], -"01000000023d6cf972d4dff9c519eff407ea800361dd0a121de1da8b6f4138a2f25de864b4000000008a4730440220ffda47bfc776bcd269da4832626ac332adfca6dd835e8ecd83cd1ebe7d709b0e022049cffa1cdc102a0b56e0e04913606c70af702a1149dc3b305ab9439288fee090014104266abb36d66eb4218a6dd31f09bb92cf3cfa803c7ea72c1fc80a50f919273e613f895b855fb7465ccbc8919ad1bd4a306c783f22cd3227327694c4fa4c1c439affffffff21ebc9ba20594737864352e95b727f1a565756f9d365083eb1a8596ec98c97b7010000008a4730440220503ff10e9f1e0de731407a4a245531c9ff17676eda461f8ceeb8c06049fa2c810220c008ac34694510298fa60b3f000df01caa244f165b727d4896eb84f81e46bcc4014104266abb36d66eb4218a6dd31f09bb92cf3cfa803c7ea72c1fc80a50f919273e613f895b855fb7465ccbc8919ad1bd4a306c783f22cd3227327694c4fa4c1c439affffffff01f0da5200000000001976a914857ccd42dded6df32949d4646dfa10a92458cfaa88ac00000000", true], +"01000000023d6cf972d4dff9c519eff407ea800361dd0a121de1da8b6f4138a2f25de864b4000000008a4730440220ffda47bfc776bcd269da4832626ac332adfca6dd835e8ecd83cd1ebe7d709b0e022049cffa1cdc102a0b56e0e04913606c70af702a1149dc3b305ab9439288fee090014104266abb36d66eb4218a6dd31f09bb92cf3cfa803c7ea72c1fc80a50f919273e613f895b855fb7465ccbc8919ad1bd4a306c783f22cd3227327694c4fa4c1c439affffffff21ebc9ba20594737864352e95b727f1a565756f9d365083eb1a8596ec98c97b7010000008a4730440220503ff10e9f1e0de731407a4a245531c9ff17676eda461f8ceeb8c06049fa2c810220c008ac34694510298fa60b3f000df01caa244f165b727d4896eb84f81e46bcc4014104266abb36d66eb4218a6dd31f09bb92cf3cfa803c7ea72c1fc80a50f919273e613f895b855fb7465ccbc8919ad1bd4a306c783f22cd3227327694c4fa4c1c439affffffff01f0da5200000000001976a914857ccd42dded6df32949d4646dfa10a92458cfaa88ac00000000", "P2SH"], ["The following tests for the presence of a bug in the handling of SIGHASH_SINGLE"], ["It results in signing the constant 1, instead of something generated based on the transaction,"], ["when the input doing the signing has an index greater than the maximum output index"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "DUP HASH160 0x14 0xe52b482f2faa8ecbf0db344f93c84ac908557f33 EQUALVERIFY CHECKSIG"], ["0000000000000000000000000000000000000000000000000000000000000200", 0, "1"]], -"01000000020002000000000000000000000000000000000000000000000000000000000000000000000151ffffffff0001000000000000000000000000000000000000000000000000000000000000000000006b483045022100c9cdd08798a28af9d1baf44a6c77bcc7e279f47dc487c8c899911bc48feaffcc0220503c5c50ae3998a733263c5c0f7061b483e2b56c4c41b456e7d2f5a78a74c077032102d5c25adb51b61339d2b05315791e21bbe80ea470a49db0135720983c905aace0ffffffff010000000000000000015100000000", true], +"01000000020002000000000000000000000000000000000000000000000000000000000000000000000151ffffffff0001000000000000000000000000000000000000000000000000000000000000000000006b483045022100c9cdd08798a28af9d1baf44a6c77bcc7e279f47dc487c8c899911bc48feaffcc0220503c5c50ae3998a733263c5c0f7061b483e2b56c4c41b456e7d2f5a78a74c077032102d5c25adb51b61339d2b05315791e21bbe80ea470a49db0135720983c905aace0ffffffff010000000000000000015100000000", "P2SH"], ["An invalid P2SH Transaction"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "HASH160 0x14 0x7a052c840ba73af26755de42cf01cc9e0a49fef0 EQUAL"]], -"010000000100010000000000000000000000000000000000000000000000000000000000000000000009085768617420697320ffffffff010000000000000000015100000000", false], +"010000000100010000000000000000000000000000000000000000000000000000000000000000000009085768617420697320ffffffff010000000000000000015100000000", "NONE"], ["A valid P2SH Transaction using the standard transaction type put forth in BIP 16"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "HASH160 0x14 0x8febbed40483661de6958d957412f82deed8e2f7 EQUAL"]], -"01000000010001000000000000000000000000000000000000000000000000000000000000000000006e493046022100c66c9cdf4c43609586d15424c54707156e316d88b0a1534c9e6b0d4f311406310221009c0fe51dbc9c4ab7cc25d3fdbeccf6679fe6827f08edf2b4a9f16ee3eb0e438a0123210338e8034509af564c62644c07691942e0c056752008a173c89f60ab2a88ac2ebfacffffffff010000000000000000015100000000", true], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000006e493046022100c66c9cdf4c43609586d15424c54707156e316d88b0a1534c9e6b0d4f311406310221009c0fe51dbc9c4ab7cc25d3fdbeccf6679fe6827f08edf2b4a9f16ee3eb0e438a0123210338e8034509af564c62644c07691942e0c056752008a173c89f60ab2a88ac2ebfacffffffff010000000000000000015100000000", "P2SH"], ["Tests for CheckTransaction()"], ["MAX_MONEY output"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "HASH160 0x14 0x32afac281462b822adbec5094b8d4d337dd5bd6a EQUAL"]], -"01000000010001000000000000000000000000000000000000000000000000000000000000000000006e493046022100e1eadba00d9296c743cb6ecc703fd9ddc9b3cd12906176a226ae4c18d6b00796022100a71aef7d2874deff681ba6080f1b278bac7bb99c61b08a85f4311970ffe7f63f012321030c0588dc44d92bdcbf8e72093466766fdc265ead8db64517b0c542275b70fffbacffffffff010040075af0750700015100000000", true], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000006e493046022100e1eadba00d9296c743cb6ecc703fd9ddc9b3cd12906176a226ae4c18d6b00796022100a71aef7d2874deff681ba6080f1b278bac7bb99c61b08a85f4311970ffe7f63f012321030c0588dc44d92bdcbf8e72093466766fdc265ead8db64517b0c542275b70fffbacffffffff010040075af0750700015100000000", "P2SH"], ["MAX_MONEY output + 0 output"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "HASH160 0x14 0xb558cbf4930954aa6a344363a15668d7477ae716 EQUAL"]], -"01000000010001000000000000000000000000000000000000000000000000000000000000000000006d483045022027deccc14aa6668e78a8c9da3484fbcd4f9dcc9bb7d1b85146314b21b9ae4d86022100d0b43dece8cfb07348de0ca8bc5b86276fa88f7f2138381128b7c36ab2e42264012321029bb13463ddd5d2cc05da6e84e37536cb9525703cfd8f43afdb414988987a92f6acffffffff020040075af075070001510000000000000000015100000000", true], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000006d483045022027deccc14aa6668e78a8c9da3484fbcd4f9dcc9bb7d1b85146314b21b9ae4d86022100d0b43dece8cfb07348de0ca8bc5b86276fa88f7f2138381128b7c36ab2e42264012321029bb13463ddd5d2cc05da6e84e37536cb9525703cfd8f43afdb414988987a92f6acffffffff020040075af075070001510000000000000000015100000000", "P2SH"], ["Coinbase of size 2"], ["Note the input is just required to make the tester happy"], [[["0000000000000000000000000000000000000000000000000000000000000000", -1, "1"]], -"01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff025151ffffffff010000000000000000015100000000", true], +"01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff025151ffffffff010000000000000000015100000000", "P2SH"], ["Coinbase of size 100"], ["Note the input is just required to make the tester happy"], [[["0000000000000000000000000000000000000000000000000000000000000000", -1, "1"]], -"01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff6451515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151ffffffff010000000000000000015100000000", true], +"01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff6451515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151ffffffff010000000000000000015100000000", "P2SH"], ["Simple transaction with first input is signed with SIGHASH_ALL, second with SIGHASH_ANYONECANPAY"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "0x21 0x035e7f0d4d0841bcd56c39337ed086b1a633ee770c1ffdd94ac552a95ac2ce0efc CHECKSIG"], ["0000000000000000000000000000000000000000000000000000000000000200", 0, "0x21 0x035e7f0d4d0841bcd56c39337ed086b1a633ee770c1ffdd94ac552a95ac2ce0efc CHECKSIG"]], - "010000000200010000000000000000000000000000000000000000000000000000000000000000000049483045022100d180fd2eb9140aeb4210c9204d3f358766eb53842b2a9473db687fa24b12a3cc022079781799cd4f038b85135bbe49ec2b57f306b2bb17101b17f71f000fcab2b6fb01ffffffff0002000000000000000000000000000000000000000000000000000000000000000000004847304402205f7530653eea9b38699e476320ab135b74771e1c48b81a5d041e2ca84b9be7a802200ac8d1f40fb026674fe5a5edd3dea715c27baa9baca51ed45ea750ac9dc0a55e81ffffffff010100000000000000015100000000", true], + "010000000200010000000000000000000000000000000000000000000000000000000000000000000049483045022100d180fd2eb9140aeb4210c9204d3f358766eb53842b2a9473db687fa24b12a3cc022079781799cd4f038b85135bbe49ec2b57f306b2bb17101b17f71f000fcab2b6fb01ffffffff0002000000000000000000000000000000000000000000000000000000000000000000004847304402205f7530653eea9b38699e476320ab135b74771e1c48b81a5d041e2ca84b9be7a802200ac8d1f40fb026674fe5a5edd3dea715c27baa9baca51ed45ea750ac9dc0a55e81ffffffff010100000000000000015100000000", "P2SH"], ["Same as above, but we change the sequence number of the first input to check that SIGHASH_ANYONECANPAY is being followed"], [[["0000000000000000000000000000000000000000000000000000000000000100", 0, "0x21 0x035e7f0d4d0841bcd56c39337ed086b1a633ee770c1ffdd94ac552a95ac2ce0efc CHECKSIG"], ["0000000000000000000000000000000000000000000000000000000000000200", 0, "0x21 0x035e7f0d4d0841bcd56c39337ed086b1a633ee770c1ffdd94ac552a95ac2ce0efc CHECKSIG"]], - "01000000020001000000000000000000000000000000000000000000000000000000000000000000004948304502203a0f5f0e1f2bdbcd04db3061d18f3af70e07f4f467cbc1b8116f267025f5360b022100c792b6e215afc5afc721a351ec413e714305cb749aae3d7fee76621313418df101010000000002000000000000000000000000000000000000000000000000000000000000000000004847304402205f7530653eea9b38699e476320ab135b74771e1c48b81a5d041e2ca84b9be7a802200ac8d1f40fb026674fe5a5edd3dea715c27baa9baca51ed45ea750ac9dc0a55e81ffffffff010100000000000000015100000000", true], + "01000000020001000000000000000000000000000000000000000000000000000000000000000000004948304502203a0f5f0e1f2bdbcd04db3061d18f3af70e07f4f467cbc1b8116f267025f5360b022100c792b6e215afc5afc721a351ec413e714305cb749aae3d7fee76621313418df101010000000002000000000000000000000000000000000000000000000000000000000000000000004847304402205f7530653eea9b38699e476320ab135b74771e1c48b81a5d041e2ca84b9be7a802200ac8d1f40fb026674fe5a5edd3dea715c27baa9baca51ed45ea750ac9dc0a55e81ffffffff010100000000000000015100000000", "P2SH"], ["afd9c17f8913577ec3509520bd6e5d63e9c0fd2a5f70c787993b097ba6ca9fae which has several SIGHASH_SINGLE signatures"], [[["63cfa5a09dc540bf63e53713b82d9ea3692ca97cd608c384f2aa88e51a0aac70", 0, "DUP HASH160 0x14 0xdcf72c4fd02f5a987cf9b02f2fabfcac3341a87d EQUALVERIFY CHECKSIG"], ["04e8d0fcf3846c6734477b98f0f3d4badfb78f020ee097a0be5fe347645b817d", 1, "DUP HASH160 0x14 0xdcf72c4fd02f5a987cf9b02f2fabfcac3341a87d EQUALVERIFY CHECKSIG"], ["ee1377aff5d0579909e11782e1d2f5f7b84d26537be7f5516dd4e43373091f3f", 1, "DUP HASH160 0x14 0xdcf72c4fd02f5a987cf9b02f2fabfcac3341a87d EQUALVERIFY CHECKSIG"]], - "010000000370ac0a1ae588aaf284c308d67ca92c69a39e2db81337e563bf40c59da0a5cf63000000006a4730440220360d20baff382059040ba9be98947fd678fb08aab2bb0c172efa996fd8ece9b702201b4fb0de67f015c90e7ac8a193aeab486a1f587e0f54d0fb9552ef7f5ce6caec032103579ca2e6d107522f012cd00b52b9a65fb46f0c57b9b8b6e377c48f526a44741affffffff7d815b6447e35fbea097e00e028fb7dfbad4f3f0987b4734676c84f3fcd0e804010000006b483045022100c714310be1e3a9ff1c5f7cacc65c2d8e781fc3a88ceb063c6153bf950650802102200b2d0979c76e12bb480da635f192cc8dc6f905380dd4ac1ff35a4f68f462fffd032103579ca2e6d107522f012cd00b52b9a65fb46f0c57b9b8b6e377c48f526a44741affffffff3f1f097333e4d46d51f5e77b53264db8f7f5d2e18217e1099957d0f5af7713ee010000006c493046022100b663499ef73273a3788dea342717c2640ac43c5a1cf862c9e09b206fcb3f6bb8022100b09972e75972d9148f2bdd462e5cb69b57c1214b88fc55ca638676c07cfc10d8032103579ca2e6d107522f012cd00b52b9a65fb46f0c57b9b8b6e377c48f526a44741affffffff0380841e00000000001976a914bfb282c70c4191f45b5a6665cad1682f2c9cfdfb88ac80841e00000000001976a9149857cc07bed33a5cf12b9c5e0500b675d500c81188ace0fd1c00000000001976a91443c52850606c872403c0601e69fa34b26f62db4a88ac00000000", true], + "010000000370ac0a1ae588aaf284c308d67ca92c69a39e2db81337e563bf40c59da0a5cf63000000006a4730440220360d20baff382059040ba9be98947fd678fb08aab2bb0c172efa996fd8ece9b702201b4fb0de67f015c90e7ac8a193aeab486a1f587e0f54d0fb9552ef7f5ce6caec032103579ca2e6d107522f012cd00b52b9a65fb46f0c57b9b8b6e377c48f526a44741affffffff7d815b6447e35fbea097e00e028fb7dfbad4f3f0987b4734676c84f3fcd0e804010000006b483045022100c714310be1e3a9ff1c5f7cacc65c2d8e781fc3a88ceb063c6153bf950650802102200b2d0979c76e12bb480da635f192cc8dc6f905380dd4ac1ff35a4f68f462fffd032103579ca2e6d107522f012cd00b52b9a65fb46f0c57b9b8b6e377c48f526a44741affffffff3f1f097333e4d46d51f5e77b53264db8f7f5d2e18217e1099957d0f5af7713ee010000006c493046022100b663499ef73273a3788dea342717c2640ac43c5a1cf862c9e09b206fcb3f6bb8022100b09972e75972d9148f2bdd462e5cb69b57c1214b88fc55ca638676c07cfc10d8032103579ca2e6d107522f012cd00b52b9a65fb46f0c57b9b8b6e377c48f526a44741affffffff0380841e00000000001976a914bfb282c70c4191f45b5a6665cad1682f2c9cfdfb88ac80841e00000000001976a9149857cc07bed33a5cf12b9c5e0500b675d500c81188ace0fd1c00000000001976a91443c52850606c872403c0601e69fa34b26f62db4a88ac00000000", "P2SH"], ["ddc454a1c0c35c188c98976b17670f69e586d9c0f3593ea879928332f0a069e7, which spends an input that pushes using a PUSHDATA1 that is negative when read as signed"], [[["c5510a5dd97a25f43175af1fe649b707b1df8e1a41489bac33a23087027a2f48", 0, "0x4c 0xae 0x606563686f2022553246736447566b58312b5a536e587574356542793066794778625456415675534a6c376a6a334878416945325364667657734f53474f36633338584d7439435c6e543249584967306a486956304f376e775236644546673d3d22203e20743b206f70656e73736c20656e63202d7061737320706173733a5b314a564d7751432d707269766b65792d6865785d202d64202d6165732d3235362d636263202d61202d696e207460 DROP DUP HASH160 0x14 0xbfd7436b6265aa9de506f8a994f881ff08cc2872 EQUALVERIFY CHECKSIG"]], - "0100000001482f7a028730a233ac9b48411a8edfb107b749e61faf7531f4257ad95d0a51c5000000008b483045022100bf0bbae9bde51ad2b222e87fbf67530fbafc25c903519a1e5dcc52a32ff5844e022028c4d9ad49b006dd59974372a54291d5764be541574bb0c4dc208ec51f80b7190141049dd4aad62741dc27d5f267f7b70682eee22e7e9c1923b9c0957bdae0b96374569b460eb8d5b40d972e8c7c0ad441de3d94c4a29864b212d56050acb980b72b2bffffffff0180969800000000001976a914e336d0017a9d28de99d16472f6ca6d5a3a8ebc9988ac00000000", true], + "0100000001482f7a028730a233ac9b48411a8edfb107b749e61faf7531f4257ad95d0a51c5000000008b483045022100bf0bbae9bde51ad2b222e87fbf67530fbafc25c903519a1e5dcc52a32ff5844e022028c4d9ad49b006dd59974372a54291d5764be541574bb0c4dc208ec51f80b7190141049dd4aad62741dc27d5f267f7b70682eee22e7e9c1923b9c0957bdae0b96374569b460eb8d5b40d972e8c7c0ad441de3d94c4a29864b212d56050acb980b72b2bffffffff0180969800000000001976a914e336d0017a9d28de99d16472f6ca6d5a3a8ebc9988ac00000000", "P2SH"], ["Correct signature order"], ["Note the input is just required to make the tester happy"], [[["b3da01dd4aae683c7aee4d5d8b52a540a508e1115f77cd7fa9a291243f501223", 0, "HASH160 0x14 0xb1ce99298d5f07364b57b1e5c9cc00be0b04a954 EQUAL"]], -"01000000012312503f2491a2a97fcd775f11e108a540a5528b5d4dee7a3c68ae4add01dab300000000fdfe0000483045022100f6649b0eddfdfd4ad55426663385090d51ee86c3481bdc6b0c18ea6c0ece2c0b0220561c315b07cffa6f7dd9df96dbae9200c2dee09bf93cc35ca05e6cdf613340aa0148304502207aacee820e08b0b174e248abd8d7a34ed63b5da3abedb99934df9fddd65c05c4022100dfe87896ab5ee3df476c2655f9fbe5bd089dccbef3e4ea05b5d121169fe7f5f4014c695221031d11db38972b712a9fe1fc023577c7ae3ddb4a3004187d41c45121eecfdbb5b7210207ec36911b6ad2382860d32989c7b8728e9489d7bbc94a6b5509ef0029be128821024ea9fac06f666a4adc3fc1357b7bec1fd0bdece2b9d08579226a8ebde53058e453aeffffffff0180380100000000001976a914c9b99cddf847d10685a4fabaa0baf505f7c3dfab88ac00000000", true], +"01000000012312503f2491a2a97fcd775f11e108a540a5528b5d4dee7a3c68ae4add01dab300000000fdfe0000483045022100f6649b0eddfdfd4ad55426663385090d51ee86c3481bdc6b0c18ea6c0ece2c0b0220561c315b07cffa6f7dd9df96dbae9200c2dee09bf93cc35ca05e6cdf613340aa0148304502207aacee820e08b0b174e248abd8d7a34ed63b5da3abedb99934df9fddd65c05c4022100dfe87896ab5ee3df476c2655f9fbe5bd089dccbef3e4ea05b5d121169fe7f5f4014c695221031d11db38972b712a9fe1fc023577c7ae3ddb4a3004187d41c45121eecfdbb5b7210207ec36911b6ad2382860d32989c7b8728e9489d7bbc94a6b5509ef0029be128821024ea9fac06f666a4adc3fc1357b7bec1fd0bdece2b9d08579226a8ebde53058e453aeffffffff0180380100000000001976a914c9b99cddf847d10685a4fabaa0baf505f7c3dfab88ac00000000", "P2SH"], ["cc60b1f899ec0a69b7c3f25ddf32c4524096a9c5b01cbd84c6d0312a0c478984, which is a fairly strange transaction which relies on OP_CHECKSIG returning 0 when checking a completely invalid sig of length 0"], [[["cbebc4da731e8995fe97f6fadcd731b36ad40e5ecb31e38e904f6e5982fa09f7", 0, "0x2102085c6600657566acc2d6382a47bc3f324008d2aa10940dd7705a48aa2a5a5e33ac7c2103f5d0fb955f95dd6be6115ce85661db412ec6a08abcbfce7da0ba8297c6cc0ec4ac7c5379a820d68df9e32a147cffa36193c6f7c43a1c8c69cda530e1c6db354bfabdcfefaf3c875379a820f531f3041d3136701ea09067c53e7159c8f9b2746a56c3d82966c54bbc553226879a5479827701200122a59a5379827701200122a59a6353798277537982778779679a68"]], -"0100000001f709fa82596e4f908ee331cb5e0ed46ab331d7dcfaf697fe95891e73dac4ebcb000000008c20ca42095840735e89283fec298e62ac2ddea9b5f34a8cbb7097ad965b87568100201b1b01dc829177da4a14551d2fc96a9db00c6501edfa12f22cd9cefd335c227f483045022100a9df60536df5733dd0de6bc921fab0b3eee6426501b43a228afa2c90072eb5ca02201c78b74266fac7d1db5deff080d8a403743203f109fbcabf6d5a760bf87386d20100ffffffff01c075790000000000232103611f9a45c18f28f06f19076ad571c344c82ce8fcfe34464cf8085217a2d294a6ac00000000", true], +"0100000001f709fa82596e4f908ee331cb5e0ed46ab331d7dcfaf697fe95891e73dac4ebcb000000008c20ca42095840735e89283fec298e62ac2ddea9b5f34a8cbb7097ad965b87568100201b1b01dc829177da4a14551d2fc96a9db00c6501edfa12f22cd9cefd335c227f483045022100a9df60536df5733dd0de6bc921fab0b3eee6426501b43a228afa2c90072eb5ca02201c78b74266fac7d1db5deff080d8a403743203f109fbcabf6d5a760bf87386d20100ffffffff01c075790000000000232103611f9a45c18f28f06f19076ad571c344c82ce8fcfe34464cf8085217a2d294a6ac00000000", "P2SH"], ["Empty pubkey"], [[["229257c295e7f555421c1bfec8538dd30a4b5c37c1c8810bbe83cafa7811652c", 0, "0x00 CHECKSIG NOT"]], -"01000000012c651178faca83be0b81c8c1375c4b0ad38d53c8fe1b1c4255f5e795c25792220000000049483045022100d6044562284ac76c985018fc4a90127847708c9edb280996c507b28babdc4b2a02203d74eca3f1a4d1eea7ff77b528fde6d5dc324ec2dbfdb964ba885f643b9704cd01ffffffff010100000000000000232102c2410f8891ae918cab4ffc4bb4a3b0881be67c7a1e7faa8b5acf9ab8932ec30cac00000000", true], +"01000000012c651178faca83be0b81c8c1375c4b0ad38d53c8fe1b1c4255f5e795c25792220000000049483045022100d6044562284ac76c985018fc4a90127847708c9edb280996c507b28babdc4b2a02203d74eca3f1a4d1eea7ff77b528fde6d5dc324ec2dbfdb964ba885f643b9704cd01ffffffff010100000000000000232102c2410f8891ae918cab4ffc4bb4a3b0881be67c7a1e7faa8b5acf9ab8932ec30cac00000000", "P2SH"], ["Empty signature"], [[["9ca93cfd8e3806b9d9e2ba1cf64e3cc6946ee0119670b1796a09928d14ea25f7", 0, "0x21 0x028a1d66975dbdf97897e3a4aef450ebeb5b5293e4a0b4a6d3a2daaa0b2b110e02 CHECKSIG NOT"]], -"0100000001f725ea148d92096a79b1709611e06e94c63c4ef61cbae2d9b906388efd3ca99c000000000100ffffffff0101000000000000002321028a1d66975dbdf97897e3a4aef450ebeb5b5293e4a0b4a6d3a2daaa0b2b110e02ac00000000", true], +"0100000001f725ea148d92096a79b1709611e06e94c63c4ef61cbae2d9b906388efd3ca99c000000000100ffffffff0101000000000000002321028a1d66975dbdf97897e3a4aef450ebeb5b5293e4a0b4a6d3a2daaa0b2b110e02ac00000000", "P2SH"], [[["444e00ed7840d41f20ecd9c11d3f91982326c731a02f3c05748414a4fa9e59be", 0, "1 0x00 0x21 0x02136b04758b0b6e363e7a6fbe83aaf527a153db2b060d36cc29f7f8309ba6e458 2 CHECKMULTISIG"]], -"0100000001be599efaa4148474053c2fa031c7262398913f1dc1d9ec201fd44078ed004e44000000004900473044022022b29706cb2ed9ef0cb3c97b72677ca2dfd7b4160f7b4beb3ba806aa856c401502202d1e52582412eba2ed474f1f437a427640306fd3838725fab173ade7fe4eae4a01ffffffff010100000000000000232103ac4bba7e7ca3e873eea49e08132ad30c7f03640b6539e9b59903cf14fd016bbbac00000000", true], +"0100000001be599efaa4148474053c2fa031c7262398913f1dc1d9ec201fd44078ed004e44000000004900473044022022b29706cb2ed9ef0cb3c97b72677ca2dfd7b4160f7b4beb3ba806aa856c401502202d1e52582412eba2ed474f1f437a427640306fd3838725fab173ade7fe4eae4a01ffffffff010100000000000000232103ac4bba7e7ca3e873eea49e08132ad30c7f03640b6539e9b59903cf14fd016bbbac00000000", "P2SH"], [[["e16abbe80bf30c080f63830c8dbf669deaef08957446e95940227d8c5e6db612", 0, "1 0x21 0x03905380c7013e36e6e19d305311c1b81fce6581f5ee1c86ef0627c68c9362fc9f 0x00 2 CHECKMULTISIG"]], -"010000000112b66d5e8c7d224059e946749508efea9d66bf8d0c83630f080cf30be8bb6ae100000000490047304402206ffe3f14caf38ad5c1544428e99da76ffa5455675ec8d9780fac215ca17953520220779502985e194d84baa36b9bd40a0dbd981163fa191eb884ae83fc5bd1c86b1101ffffffff010100000000000000232103905380c7013e36e6e19d305311c1b81fce6581f5ee1c86ef0627c68c9362fc9fac00000000", true], +"010000000112b66d5e8c7d224059e946749508efea9d66bf8d0c83630f080cf30be8bb6ae100000000490047304402206ffe3f14caf38ad5c1544428e99da76ffa5455675ec8d9780fac215ca17953520220779502985e194d84baa36b9bd40a0dbd981163fa191eb884ae83fc5bd1c86b1101ffffffff010100000000000000232103905380c7013e36e6e19d305311c1b81fce6581f5ee1c86ef0627c68c9362fc9fac00000000", "P2SH"], [[["ebbcf4bfce13292bd791d6a65a2a858d59adbf737e387e40370d4e64cc70efb0", 0, "2 0x21 0x033bcaa0a602f0d44cc9d5637c6e515b0471db514c020883830b7cefd73af04194 0x21 0x03a88b326f8767f4f192ce252afe33c94d25ab1d24f27f159b3cb3aa691ffe1423 2 CHECKMULTISIG NOT"]], -"0100000001b0ef70cc644e0d37407e387e73bfad598d852a5aa6d691d72b2913cebff4bceb000000004a00473044022068cd4851fc7f9a892ab910df7a24e616f293bcb5c5fbdfbc304a194b26b60fba022078e6da13d8cb881a22939b952c24f88b97afd06b4c47a47d7f804c9a352a6d6d0100ffffffff0101000000000000002321033bcaa0a602f0d44cc9d5637c6e515b0471db514c020883830b7cefd73af04194ac00000000", true], +"0100000001b0ef70cc644e0d37407e387e73bfad598d852a5aa6d691d72b2913cebff4bceb000000004a00473044022068cd4851fc7f9a892ab910df7a24e616f293bcb5c5fbdfbc304a194b26b60fba022078e6da13d8cb881a22939b952c24f88b97afd06b4c47a47d7f804c9a352a6d6d0100ffffffff0101000000000000002321033bcaa0a602f0d44cc9d5637c6e515b0471db514c020883830b7cefd73af04194ac00000000", "P2SH"], [[["ba4cd7ae2ad4d4d13ebfc8ab1d93a63e4a6563f25089a18bf0fc68f282aa88c1", 0, "2 0x21 0x037c615d761e71d38903609bf4f46847266edc2fb37532047d747ba47eaae5ffe1 0x21 0x02edc823cd634f2c4033d94f5755207cb6b60c4b1f1f056ad7471c47de5f2e4d50 2 CHECKMULTISIG NOT"]], -"0100000001c188aa82f268fcf08ba18950f263654a3ea6931dabc8bf3ed1d4d42aaed74cba000000004b0000483045022100940378576e069aca261a6b26fb38344e4497ca6751bb10905c76bb689f4222b002204833806b014c26fd801727b792b1260003c55710f87c5adbd7a9cb57446dbc9801ffffffff0101000000000000002321037c615d761e71d38903609bf4f46847266edc2fb37532047d747ba47eaae5ffe1ac00000000", true], +"0100000001c188aa82f268fcf08ba18950f263654a3ea6931dabc8bf3ed1d4d42aaed74cba000000004b0000483045022100940378576e069aca261a6b26fb38344e4497ca6751bb10905c76bb689f4222b002204833806b014c26fd801727b792b1260003c55710f87c5adbd7a9cb57446dbc9801ffffffff0101000000000000002321037c615d761e71d38903609bf4f46847266edc2fb37532047d747ba47eaae5ffe1ac00000000", "P2SH"], ["Make diffs cleaner by leaving a comment here without comma at the end"] ] diff --git a/src/test/getarg_tests.cpp b/src/test/getarg_tests.cpp index d76124885..8cadcdd71 100644 --- a/src/test/getarg_tests.cpp +++ b/src/test/getarg_tests.cpp @@ -1,4 +1,6 @@ - +// Copyright (c) 2012-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "util.h" diff --git a/src/test/hash_tests.cpp b/src/test/hash_tests.cpp index 28410f0fe..4568c8769 100644 --- a/src/test/hash_tests.cpp +++ b/src/test/hash_tests.cpp @@ -1,4 +1,6 @@ - +// Copyright (c) 2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "hash.h" #include "util.h" diff --git a/src/test/hmac_tests.cpp b/src/test/hmac_tests.cpp index 68868866a..780ce480c 100644 --- a/src/test/hmac_tests.cpp +++ b/src/test/hmac_tests.cpp @@ -1,4 +1,6 @@ - +// Copyright (c) 2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "hash.h" #include "util.h" diff --git a/src/test/key_tests.cpp b/src/test/key_tests.cpp index e4caab8f0..c378ce6c5 100644 --- a/src/test/key_tests.cpp +++ b/src/test/key_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2012-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "key.h" #include "base58.h" diff --git a/src/test/main_tests.cpp b/src/test/main_tests.cpp index 794ff5290..99ce271e9 100644 --- a/src/test/main_tests.cpp +++ b/src/test/main_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2014 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "core.h" #include "main.h" #include "uint256.h" @@ -210,7 +214,7 @@ BOOST_AUTO_TEST_CASE(GetMinFee_relayfree_test) BOOST_CHECK(GetMinFee(tx, MAX_STANDARD_TX_SIZE, true, GMF_RELAY) == (1+(MAX_STANDARD_TX_SIZE/1000))*CTransaction::nMinRelayTxFee); } -BOOST_AUTO_TEST_CASE(GetMinFee_createFree_test) +BOOST_AUTO_TEST_CASE(GetMinFee_createNoFree_test) { uint64_t value = 1000 * COIN; @@ -221,9 +225,12 @@ BOOST_AUTO_TEST_CASE(GetMinFee_createFree_test) if(CTransaction::nMinTxFee == CTransaction::nMinRelayTxFee) CTransaction::nMinTxFee++; - BOOST_CHECK(GetMinFee(tx, 100, true, GMF_SEND) == 0); - BOOST_CHECK(GetMinFee(tx, 1000, true, GMF_SEND) == 0); - BOOST_CHECK(GetMinFee(tx, 25999, true, GMF_SEND) == 0); + BOOST_CHECK(GetMinFee(tx, 100, true, GMF_SEND) > 0); + BOOST_CHECK(GetMinFee(tx, 100, true, GMF_SEND) == GetMinFee(tx, 100, false, GMF_SEND)); + BOOST_CHECK(GetMinFee(tx, 1000, true, GMF_SEND) > 0); + BOOST_CHECK(GetMinFee(tx, 1000, true, GMF_SEND) == GetMinFee(tx, 1000, false, GMF_SEND)); + BOOST_CHECK(GetMinFee(tx, 25999, true, GMF_SEND) > 0); + BOOST_CHECK(GetMinFee(tx, 25999, true, GMF_SEND) == GetMinFee(tx, 25999, false, GMF_SEND)); BOOST_CHECK(GetMinFee(tx, 26000, true, GMF_SEND) > 0); BOOST_CHECK(GetMinFee(tx, 26000, true, GMF_SEND) == GetMinFee(tx, 26000, false, GMF_SEND)); diff --git a/src/test/miner_tests.cpp b/src/test/miner_tests.cpp index b0ed3b09a..b16b9758e 100644 --- a/src/test/miner_tests.cpp +++ b/src/test/miner_tests.cpp @@ -1,4 +1,6 @@ - +// Copyright (c) 2011-2014 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "main.h" #include "miner.h" diff --git a/src/test/mruset_tests.cpp b/src/test/mruset_tests.cpp index 638c88fab..60f11c147 100644 --- a/src/test/mruset_tests.cpp +++ b/src/test/mruset_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2012-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "mruset.h" #include "util.h" diff --git a/src/test/multisig_tests.cpp b/src/test/multisig_tests.cpp index 772217b88..3775abd63 100644 --- a/src/test/multisig_tests.cpp +++ b/src/test/multisig_tests.cpp @@ -1,4 +1,6 @@ - +// Copyright (c) 2011-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "key.h" #include "keystore.h" diff --git a/src/test/netbase_tests.cpp b/src/test/netbase_tests.cpp index 412ba0491..c26e73838 100644 --- a/src/test/netbase_tests.cpp +++ b/src/test/netbase_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2012-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "netbase.h" #include @@ -89,7 +93,7 @@ BOOST_AUTO_TEST_CASE(netbase_lookupnumeric) BOOST_AUTO_TEST_CASE(onioncat_test) { - // values from http://www.cypherpunk.at/onioncat/wiki/OnionCat + // values from https://web.archive.org/web/20121122003543/http://www.cypherpunk.at/onioncat/wiki/OnionCat CNetAddr addr1("5wyqrzbvrdsumnok.onion"); CNetAddr addr2("FD87:D87E:EB43:edb1:8e4:3588:e546:35ca"); BOOST_CHECK(addr1 == addr2); @@ -98,4 +102,41 @@ BOOST_AUTO_TEST_CASE(onioncat_test) BOOST_CHECK(addr1.IsRoutable()); } +BOOST_AUTO_TEST_CASE(subnet_test) +{ + BOOST_CHECK(CSubNet("1.2.3.0/24") == CSubNet("1.2.3.0/255.255.255.0")); + BOOST_CHECK(CSubNet("1.2.3.0/24") != CSubNet("1.2.4.0/255.255.255.0")); + BOOST_CHECK(CSubNet("1.2.3.0/24").Match(CNetAddr("1.2.3.4"))); + BOOST_CHECK(!CSubNet("1.2.2.0/24").Match(CNetAddr("1.2.3.4"))); + BOOST_CHECK(CSubNet("1.2.3.4").Match(CNetAddr("1.2.3.4"))); + BOOST_CHECK(CSubNet("1.2.3.4/32").Match(CNetAddr("1.2.3.4"))); + BOOST_CHECK(!CSubNet("1.2.3.4").Match(CNetAddr("5.6.7.8"))); + BOOST_CHECK(!CSubNet("1.2.3.4/32").Match(CNetAddr("5.6.7.8"))); + BOOST_CHECK(CSubNet("::ffff:127.0.0.1").Match(CNetAddr("127.0.0.1"))); + BOOST_CHECK(CSubNet("1:2:3:4:5:6:7:8").Match(CNetAddr("1:2:3:4:5:6:7:8"))); + BOOST_CHECK(!CSubNet("1:2:3:4:5:6:7:8").Match(CNetAddr("1:2:3:4:5:6:7:9"))); + BOOST_CHECK(CSubNet("1:2:3:4:5:6:7:0/112").Match(CNetAddr("1:2:3:4:5:6:7:1234"))); + // All-Matching IPv6 Matches arbitrary IPv4 and IPv6 + BOOST_CHECK(CSubNet("::/0").Match(CNetAddr("1:2:3:4:5:6:7:1234"))); + BOOST_CHECK(CSubNet("::/0").Match(CNetAddr("1.2.3.4"))); + // All-Matching IPv4 does not Match IPv6 + BOOST_CHECK(!CSubNet("0.0.0.0/0").Match(CNetAddr("1:2:3:4:5:6:7:1234"))); + // Invalid subnets Match nothing (not even invalid addresses) + BOOST_CHECK(!CSubNet().Match(CNetAddr("1.2.3.4"))); + BOOST_CHECK(!CSubNet("").Match(CNetAddr("4.5.6.7"))); + BOOST_CHECK(!CSubNet("bloop").Match(CNetAddr("0.0.0.0"))); + BOOST_CHECK(!CSubNet("bloop").Match(CNetAddr("hab"))); + // Check valid/invalid + BOOST_CHECK(CSubNet("1.2.3.0/0").IsValid()); + BOOST_CHECK(!CSubNet("1.2.3.0/-1").IsValid()); + BOOST_CHECK(CSubNet("1.2.3.0/32").IsValid()); + BOOST_CHECK(!CSubNet("1.2.3.0/33").IsValid()); + BOOST_CHECK(CSubNet("1:2:3:4:5:6:7:8/0").IsValid()); + BOOST_CHECK(CSubNet("1:2:3:4:5:6:7:8/33").IsValid()); + BOOST_CHECK(!CSubNet("1:2:3:4:5:6:7:8/-1").IsValid()); + BOOST_CHECK(CSubNet("1:2:3:4:5:6:7:8/128").IsValid()); + BOOST_CHECK(!CSubNet("1:2:3:4:5:6:7:8/129").IsValid()); + BOOST_CHECK(!CSubNet("fuzzy").IsValid()); +} + BOOST_AUTO_TEST_SUITE_END() diff --git a/src/test/pmt_tests.cpp b/src/test/pmt_tests.cpp index dea5e1b82..7d7e6681d 100644 --- a/src/test/pmt_tests.cpp +++ b/src/test/pmt_tests.cpp @@ -1,4 +1,6 @@ - +// Copyright (c) 2012-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "main.h" #include "serialize.h" diff --git a/src/test/rpc_tests.cpp b/src/test/rpc_tests.cpp index 21e476cee..273548018 100644 --- a/src/test/rpc_tests.cpp +++ b/src/test/rpc_tests.cpp @@ -1,7 +1,12 @@ +// Copyright (c) 2012-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "rpcserver.h" #include "rpcclient.h" #include "base58.h" +#include "netbase.h" #include #include @@ -135,4 +140,19 @@ BOOST_AUTO_TEST_CASE(rpc_parse_monetary_values) BOOST_CHECK(AmountFromValue(ValueFromString("20999999.99999999")) == 2099999999999999LL); } +BOOST_AUTO_TEST_CASE(rpc_boostasiotocnetaddr) +{ + // Check IPv4 addresses + BOOST_CHECK_EQUAL(BoostAsioToCNetAddr(boost::asio::ip::address::from_string("1.2.3.4")).ToString(), "1.2.3.4"); + BOOST_CHECK_EQUAL(BoostAsioToCNetAddr(boost::asio::ip::address::from_string("127.0.0.1")).ToString(), "127.0.0.1"); + // Check IPv6 addresses + BOOST_CHECK_EQUAL(BoostAsioToCNetAddr(boost::asio::ip::address::from_string("::1")).ToString(), "::1"); + BOOST_CHECK_EQUAL(BoostAsioToCNetAddr(boost::asio::ip::address::from_string("123:4567:89ab:cdef:123:4567:89ab:cdef")).ToString(), + "123:4567:89ab:cdef:123:4567:89ab:cdef"); + // v4 compatible must be interpreted as IPv4 + BOOST_CHECK_EQUAL(BoostAsioToCNetAddr(boost::asio::ip::address::from_string("::0:127.0.0.1")).ToString(), "127.0.0.1"); + // v4 mapped must be interpreted as IPv4 + BOOST_CHECK_EQUAL(BoostAsioToCNetAddr(boost::asio::ip::address::from_string("::ffff:127.0.0.1")).ToString(), "127.0.0.1"); +} + BOOST_AUTO_TEST_SUITE_END() diff --git a/src/test/rpc_wallet_tests.cpp b/src/test/rpc_wallet_tests.cpp index 628ba9506..eea249b11 100644 --- a/src/test/rpc_wallet_tests.cpp +++ b/src/test/rpc_wallet_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2013-2014 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "rpcserver.h" #include "rpcclient.h" @@ -61,7 +65,7 @@ BOOST_AUTO_TEST_CASE(rpc_wallet) // Test RPC calls for various wallet statistics Value r; - LOCK(pwalletMain->cs_wallet); + LOCK2(cs_main, pwalletMain->cs_wallet); BOOST_CHECK_NO_THROW(CallRPC("listunspent")); BOOST_CHECK_THROW(CallRPC("listunspent string"), runtime_error); diff --git a/src/test/script_P2SH_tests.cpp b/src/test/script_P2SH_tests.cpp index e57dc9bbb..9b1290e0e 100644 --- a/src/test/script_P2SH_tests.cpp +++ b/src/test/script_P2SH_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2012-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "script.h" #include "key.h" @@ -46,6 +50,7 @@ BOOST_AUTO_TEST_SUITE(script_P2SH_tests) BOOST_AUTO_TEST_CASE(sign) { + LOCK(cs_main); // Pay-to-script-hash looks like this: // scriptSig: // scriptPubKey: HASH160 EQUAL @@ -143,6 +148,7 @@ BOOST_AUTO_TEST_CASE(norecurse) BOOST_AUTO_TEST_CASE(set) { + LOCK(cs_main); // Test the CScript::Set* methods CBasicKeyStore keystore; CKey key[4]; @@ -246,6 +252,7 @@ BOOST_AUTO_TEST_CASE(switchover) BOOST_AUTO_TEST_CASE(AreInputsStandard) { + LOCK(cs_main); CCoinsView coinsDummy; CCoinsViewCache coins(coinsDummy); CBasicKeyStore keystore; diff --git a/src/test/script_tests.cpp b/src/test/script_tests.cpp index dd1b61304..29d518d70 100644 --- a/src/test/script_tests.cpp +++ b/src/test/script_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2011-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "script.h" #include "data/script_invalid.json.h" @@ -63,7 +67,11 @@ ParseScript(string s) BOOST_FOREACH(string w, words) { - if (all(w, is_digit()) || + if (w.size() == 0) + { + // Empty string, ignore. (boost::split given '' will return one word) + } + else if (all(w, is_digit()) || (starts_with(w, "-") && all(string(w.begin()+1, w.end()), is_digit()))) { // Number diff --git a/src/test/scriptnum_tests.cpp b/src/test/scriptnum_tests.cpp new file mode 100644 index 000000000..cd194cc4d --- /dev/null +++ b/src/test/scriptnum_tests.cpp @@ -0,0 +1,196 @@ +// Copyright (c) 2012-2014 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#include "bignum.h" +#include "script.h" +#include +#include +#include +BOOST_AUTO_TEST_SUITE(scriptnum_tests) + +static const int64_t values[] = \ +{ 0, 1, CHAR_MIN, CHAR_MAX, UCHAR_MAX, SHRT_MIN, USHRT_MAX, INT_MIN, INT_MAX, UINT_MAX, LONG_MIN, LONG_MAX }; +static const int64_t offsets[] = { 1, 0x79, 0x80, 0x81, 0xFF, 0x7FFF, 0x8000, 0xFFFF, 0x10000}; + +static bool verify(const CBigNum& bignum, const CScriptNum& scriptnum) +{ + return bignum.getvch() == scriptnum.getvch() && bignum.getint() == scriptnum.getint(); +} + +static void CheckCreateVch(const int64_t& num) +{ + CBigNum bignum(num); + CScriptNum scriptnum(num); + BOOST_CHECK(verify(bignum, scriptnum)); + + CBigNum bignum2(bignum.getvch()); + CScriptNum scriptnum2(scriptnum.getvch()); + BOOST_CHECK(verify(bignum2, scriptnum2)); + + CBigNum bignum3(scriptnum2.getvch()); + CScriptNum scriptnum3(bignum2.getvch()); + BOOST_CHECK(verify(bignum3, scriptnum3)); +} + +static void CheckCreateInt(const int64_t& num) +{ + CBigNum bignum(num); + CScriptNum scriptnum(num); + BOOST_CHECK(verify(bignum, scriptnum)); + BOOST_CHECK(verify(bignum.getint(), CScriptNum(scriptnum.getint()))); + BOOST_CHECK(verify(scriptnum.getint(), CScriptNum(bignum.getint()))); + BOOST_CHECK(verify(CBigNum(scriptnum.getint()).getint(), CScriptNum(CScriptNum(bignum.getint()).getint()))); +} + + +static void CheckAdd(const int64_t& num1, const int64_t& num2) +{ + const CBigNum bignum1(num1); + const CBigNum bignum2(num2); + const CScriptNum scriptnum1(num1); + const CScriptNum scriptnum2(num2); + CBigNum bignum3(num1); + CBigNum bignum4(num1); + CScriptNum scriptnum3(num1); + CScriptNum scriptnum4(num1); + + // int64_t overflow is undefined. + bool invalid = (((num2 > 0) && (num1 > (std::numeric_limits::max() - num2))) || + ((num2 < 0) && (num1 < (std::numeric_limits::min() - num2)))); + if (!invalid) + { + BOOST_CHECK(verify(bignum1 + bignum2, scriptnum1 + scriptnum2)); + BOOST_CHECK(verify(bignum1 + bignum2, scriptnum1 + num2)); + BOOST_CHECK(verify(bignum1 + bignum2, scriptnum2 + num1)); + } +} + +static void CheckNegate(const int64_t& num) +{ + const CBigNum bignum(num); + const CScriptNum scriptnum(num); + + // -INT64_MIN is undefined + if (num != std::numeric_limits::min()) + BOOST_CHECK(verify(-bignum, -scriptnum)); +} + +static void CheckSubtract(const int64_t& num1, const int64_t& num2) +{ + const CBigNum bignum1(num1); + const CBigNum bignum2(num2); + const CScriptNum scriptnum1(num1); + const CScriptNum scriptnum2(num2); + bool invalid = false; + + // int64_t overflow is undefined. + invalid = ((num2 > 0 && num1 < std::numeric_limits::min() + num2) || + (num2 < 0 && num1 > std::numeric_limits::max() + num2)); + if (!invalid) + { + BOOST_CHECK(verify(bignum1 - bignum2, scriptnum1 - scriptnum2)); + BOOST_CHECK(verify(bignum1 - bignum2, scriptnum1 - num2)); + } + + invalid = ((num1 > 0 && num2 < std::numeric_limits::min() + num1) || + (num1 < 0 && num2 > std::numeric_limits::max() + num1)); + if (!invalid) + { + BOOST_CHECK(verify(bignum2 - bignum1, scriptnum2 - scriptnum1)); + BOOST_CHECK(verify(bignum2 - bignum1, scriptnum2 - num1)); + } +} + +static void CheckCompare(const int64_t& num1, const int64_t& num2) +{ + const CBigNum bignum1(num1); + const CBigNum bignum2(num2); + const CScriptNum scriptnum1(num1); + const CScriptNum scriptnum2(num2); + + BOOST_CHECK((bignum1 == bignum1) == (scriptnum1 == scriptnum1)); + BOOST_CHECK((bignum1 != bignum1) == (scriptnum1 != scriptnum1)); + BOOST_CHECK((bignum1 < bignum1) == (scriptnum1 < scriptnum1)); + BOOST_CHECK((bignum1 > bignum1) == (scriptnum1 > scriptnum1)); + BOOST_CHECK((bignum1 >= bignum1) == (scriptnum1 >= scriptnum1)); + BOOST_CHECK((bignum1 <= bignum1) == (scriptnum1 <= scriptnum1)); + + BOOST_CHECK((bignum1 == bignum1) == (scriptnum1 == num1)); + BOOST_CHECK((bignum1 != bignum1) == (scriptnum1 != num1)); + BOOST_CHECK((bignum1 < bignum1) == (scriptnum1 < num1)); + BOOST_CHECK((bignum1 > bignum1) == (scriptnum1 > num1)); + BOOST_CHECK((bignum1 >= bignum1) == (scriptnum1 >= num1)); + BOOST_CHECK((bignum1 <= bignum1) == (scriptnum1 <= num1)); + + BOOST_CHECK((bignum1 == bignum2) == (scriptnum1 == scriptnum2)); + BOOST_CHECK((bignum1 != bignum2) == (scriptnum1 != scriptnum2)); + BOOST_CHECK((bignum1 < bignum2) == (scriptnum1 < scriptnum2)); + BOOST_CHECK((bignum1 > bignum2) == (scriptnum1 > scriptnum2)); + BOOST_CHECK((bignum1 >= bignum2) == (scriptnum1 >= scriptnum2)); + BOOST_CHECK((bignum1 <= bignum2) == (scriptnum1 <= scriptnum2)); + + BOOST_CHECK((bignum1 == bignum2) == (scriptnum1 == num2)); + BOOST_CHECK((bignum1 != bignum2) == (scriptnum1 != num2)); + BOOST_CHECK((bignum1 < bignum2) == (scriptnum1 < num2)); + BOOST_CHECK((bignum1 > bignum2) == (scriptnum1 > num2)); + BOOST_CHECK((bignum1 >= bignum2) == (scriptnum1 >= num2)); + BOOST_CHECK((bignum1 <= bignum2) == (scriptnum1 <= num2)); +} + +static void RunCreate(const int64_t& num) +{ + CheckCreateInt(num); + CScriptNum scriptnum(num); + if (scriptnum.getvch().size() <= CScriptNum::nMaxNumSize) + CheckCreateVch(num); + else + { + BOOST_CHECK_THROW (CheckCreateVch(num), scriptnum_error); + } +} + +static void RunOperators(const int64_t& num1, const int64_t& num2) +{ + CheckAdd(num1, num2); + CheckSubtract(num1, num2); + CheckNegate(num1); + CheckCompare(num1, num2); +} + +BOOST_AUTO_TEST_CASE(creation) +{ + for(size_t i = 0; i < sizeof(values) / sizeof(values[0]); ++i) + { + for(size_t j = 0; j < sizeof(offsets) / sizeof(offsets[0]); ++j) + { + RunCreate(values[i]); + RunCreate(values[i] + offsets[j]); + RunCreate(values[i] - offsets[j]); + } + } +} + +BOOST_AUTO_TEST_CASE(operators) +{ + for(size_t i = 0; i < sizeof(values) / sizeof(values[0]); ++i) + { + for(size_t j = 0; j < sizeof(offsets) / sizeof(offsets[0]); ++j) + { + RunOperators(values[i], values[i]); + RunOperators(values[i], -values[i]); + RunOperators(values[i], values[j]); + RunOperators(values[i], -values[j]); + RunOperators(values[i] + values[j], values[j]); + RunOperators(values[i] + values[j], -values[j]); + RunOperators(values[i] - values[j], values[j]); + RunOperators(values[i] - values[j], -values[j]); + RunOperators(values[i] + values[j], values[i] + values[j]); + RunOperators(values[i] + values[j], values[i] - values[j]); + RunOperators(values[i] - values[j], values[i] + values[j]); + RunOperators(values[i] - values[j], values[i] - values[j]); + } + } +} + +BOOST_AUTO_TEST_SUITE_END() diff --git a/src/test/serialize_tests.cpp b/src/test/serialize_tests.cpp index 415f95781..867a7df88 100644 --- a/src/test/serialize_tests.cpp +++ b/src/test/serialize_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2012-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "serialize.h" #include diff --git a/src/test/sighash_tests.cpp b/src/test/sighash_tests.cpp index f098d4618..9985ad692 100644 --- a/src/test/sighash_tests.cpp +++ b/src/test/sighash_tests.cpp @@ -1,7 +1,22 @@ +// Copyright (c) 2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include +#include #include "main.h" #include "util.h" +#include "serialize.h" +#include "version.h" +#include "data/sighash.json.h" + +#include "json/json_spirit_reader_template.h" +#include "json/json_spirit_utils.h" +#include "json/json_spirit_writer_template.h" + +using namespace json_spirit; +extern Array read_json(const std::string& jsondata); extern uint256 SignatureHash(const CScript &scriptCode, const CTransaction& txTo, unsigned int nIn, int nHashType); @@ -103,18 +118,88 @@ BOOST_AUTO_TEST_SUITE(sighash_tests) BOOST_AUTO_TEST_CASE(sighash_test) { seed_insecure_rand(false); + + #if defined(PRINT_SIGHASH_JSON) + std::cout << "[\n"; + std::cout << "\t[\"raw_transaction, script, input_index, hashType, signature_hash (result)\"],\n"; + #endif + int nRandomTests = 50000; - for (int i=0; i<50000; i++) { + #if defined(PRINT_SIGHASH_JSON) + nRandomTests = 500; + #endif + for (int i=0; i> tx; + + CValidationState state; + BOOST_CHECK_MESSAGE(CheckTransaction(tx, state), strTest); + BOOST_CHECK(state.IsValid()); + + CScript scriptCode = CScript(); + std::vector raw = ParseHex(raw_script); + scriptCode.insert(scriptCode.end(), raw.begin(), raw.end()); + + sh = SignatureHash(scriptCode, tx, nIn, nHashType); + + BOOST_CHECK_MESSAGE(sh.GetHex() == sigHashHex, strTest); + } +} BOOST_AUTO_TEST_SUITE_END() diff --git a/src/test/sigopcount_tests.cpp b/src/test/sigopcount_tests.cpp index 96f663cce..722f14a98 100644 --- a/src/test/sigopcount_tests.cpp +++ b/src/test/sigopcount_tests.cpp @@ -1,4 +1,6 @@ - +// Copyright (c) 2012-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "key.h" #include "script.h" diff --git a/src/test/test_dogecoin.cpp b/src/test/test_dogecoin.cpp index 96d071240..2d993e24d 100644 --- a/src/test/test_dogecoin.cpp +++ b/src/test/test_dogecoin.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2011-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #define BOOST_TEST_MODULE Bitcoin Test Suite @@ -80,3 +84,8 @@ void StartShutdown() exit(0); } +bool ShutdownRequested() +{ + return false; +} + diff --git a/src/test/transaction_tests.cpp b/src/test/transaction_tests.cpp index e30c322cc..84860c1e0 100644 --- a/src/test/transaction_tests.cpp +++ b/src/test/transaction_tests.cpp @@ -1,4 +1,6 @@ - +// Copyright (c) 2011-2014 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "data/tx_invalid.json.h" #include "data/tx_valid.json.h" @@ -11,16 +13,45 @@ #include #include +#include +#include #include #include "json/json_spirit_writer_template.h" using namespace std; using namespace json_spirit; +using namespace boost::algorithm; // In script_tests.cpp extern Array read_json(const std::string& jsondata); extern CScript ParseScript(string s); +unsigned int ParseFlags(string strFlags){ + unsigned int flags = 0; + vector words; + split(words, strFlags, is_any_of(",")); + + // Note how NOCACHE is not included as it is a runtime-only flag. + static map mapFlagNames; + if (mapFlagNames.size() == 0) + { + mapFlagNames["NONE"] = SCRIPT_VERIFY_NONE; + mapFlagNames["P2SH"] = SCRIPT_VERIFY_P2SH; + mapFlagNames["STRICTENC"] = SCRIPT_VERIFY_STRICTENC; + mapFlagNames["LOW_S"] = SCRIPT_VERIFY_LOW_S; + mapFlagNames["NULLDUMMY"] = SCRIPT_VERIFY_NULLDUMMY; + } + + BOOST_FOREACH(string word, words) + { + if (!mapFlagNames.count(word)) + BOOST_ERROR("Bad test: unknown verification flag '" << word << "'"); + flags |= mapFlagNames[word]; + } + + return flags; +} + BOOST_AUTO_TEST_SUITE(transaction_tests) BOOST_AUTO_TEST_CASE(tx_valid) @@ -28,8 +59,10 @@ BOOST_AUTO_TEST_CASE(tx_valid) // Read tests from test/data/tx_valid.json // Format is an array of arrays // Inner arrays are either [ "comment" ] - // or [[[prevout hash, prevout index, prevout scriptPubKey], [input 2], ...],"], serializedTransaction, enforceP2SH + // or [[[prevout hash, prevout index, prevout scriptPubKey], [input 2], ...],"], serializedTransaction, verifyFlags // ... where all scripts are stringified scripts. + // + // verifyFlags is a comma separated list of script verification flags to apply, or "NONE" Array tests = read_json(std::string(json_tests::tx_valid, json_tests::tx_valid + sizeof(json_tests::tx_valid))); BOOST_FOREACH(Value& tv, tests) @@ -38,7 +71,7 @@ BOOST_AUTO_TEST_CASE(tx_valid) string strTest = write_string(tv, false); if (test[0].type() == array_type) { - if (test.size() != 3 || test[1].type() != str_type || test[2].type() != bool_type) + if (test.size() != 3 || test[1].type() != str_type || test[2].type() != str_type) { BOOST_ERROR("Bad test: " << strTest); continue; @@ -86,7 +119,10 @@ BOOST_AUTO_TEST_CASE(tx_valid) break; } - BOOST_CHECK_MESSAGE(VerifyScript(tx.vin[i].scriptSig, mapprevOutScriptPubKeys[tx.vin[i].prevout], tx, i, test[2].get_bool() ? SCRIPT_VERIFY_P2SH : SCRIPT_VERIFY_NONE, 0), strTest); + unsigned int verify_flags = ParseFlags(test[2].get_str()); + BOOST_CHECK_MESSAGE(VerifyScript(tx.vin[i].scriptSig, mapprevOutScriptPubKeys[tx.vin[i].prevout], + tx, i, verify_flags, 0), + strTest); } } } @@ -97,8 +133,10 @@ BOOST_AUTO_TEST_CASE(tx_invalid) // Read tests from test/data/tx_invalid.json // Format is an array of arrays // Inner arrays are either [ "comment" ] - // or [[[prevout hash, prevout index, prevout scriptPubKey], [input 2], ...],"], serializedTransaction, enforceP2SH + // or [[[prevout hash, prevout index, prevout scriptPubKey], [input 2], ...],"], serializedTransaction, verifyFlags // ... where all scripts are stringified scripts. + // + // verifyFlags is a comma separated list of script verification flags to apply, or "NONE" Array tests = read_json(std::string(json_tests::tx_invalid, json_tests::tx_invalid + sizeof(json_tests::tx_invalid))); BOOST_FOREACH(Value& tv, tests) @@ -107,7 +145,7 @@ BOOST_AUTO_TEST_CASE(tx_invalid) string strTest = write_string(tv, false); if (test[0].type() == array_type) { - if (test.size() != 3 || test[1].type() != str_type || test[2].type() != bool_type) + if (test.size() != 3 || test[1].type() != str_type || test[2].type() != str_type) { BOOST_ERROR("Bad test: " << strTest); continue; @@ -154,7 +192,9 @@ BOOST_AUTO_TEST_CASE(tx_invalid) break; } - fValid = VerifyScript(tx.vin[i].scriptSig, mapprevOutScriptPubKeys[tx.vin[i].prevout], tx, i, test[2].get_bool() ? SCRIPT_VERIFY_P2SH : SCRIPT_VERIFY_NONE, 0); + unsigned int verify_flags = ParseFlags(test[2].get_str()); + fValid = VerifyScript(tx.vin[i].scriptSig, mapprevOutScriptPubKeys[tx.vin[i].prevout], + tx, i, verify_flags, 0); } BOOST_CHECK_MESSAGE(!fValid, strTest); @@ -252,6 +292,7 @@ BOOST_AUTO_TEST_CASE(test_Get) BOOST_AUTO_TEST_CASE(test_IsStandard) { + LOCK(cs_main); CBasicKeyStore keystore; CCoinsView coinsDummy; CCoinsViewCache coins(coinsDummy); diff --git a/src/test/uint256_tests.cpp b/src/test/uint256_tests.cpp index 368484fdf..226d737de 100644 --- a/src/test/uint256_tests.cpp +++ b/src/test/uint256_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2011-2013 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include #include #include @@ -156,11 +160,11 @@ BOOST_AUTO_TEST_CASE( basics ) // constructors, equality, inequality tmpS = ~R2S; BOOST_CHECK(tmpS == ~R2S); tmpS = ~MaxS; BOOST_CHECK(tmpS == ~MaxS); - // Wrong length must give 0 - BOOST_CHECK(uint256(std::vector(OneArray,OneArray+31)) == 0); - BOOST_CHECK(uint256(std::vector(OneArray,OneArray+20)) == 0); - BOOST_CHECK(uint160(std::vector(OneArray,OneArray+32)) == 0); - BOOST_CHECK(uint160(std::vector(OneArray,OneArray+19)) == 0); + // Wrong length must throw exception. + BOOST_CHECK_THROW(uint256(std::vector(OneArray,OneArray+31)), uint_error); + BOOST_CHECK_THROW(uint256(std::vector(OneArray,OneArray+20)), uint_error); + BOOST_CHECK_THROW(uint160(std::vector(OneArray,OneArray+32)), uint_error); + BOOST_CHECK_THROW(uint160(std::vector(OneArray,OneArray+19)), uint_error); } void shiftArrayRight(unsigned char* to, const unsigned char* from, unsigned int arrayLength, unsigned int bitsToShift) @@ -478,6 +482,77 @@ BOOST_AUTO_TEST_CASE( plusMinus ) } +BOOST_AUTO_TEST_CASE( multiply ) +{ + BOOST_CHECK((R1L * R1L).ToString() == "62a38c0486f01e45879d7910a7761bf30d5237e9873f9bff3642a732c4d84f10"); + BOOST_CHECK((R1L * R2L).ToString() == "de37805e9986996cfba76ff6ba51c008df851987d9dd323f0e5de07760529c40"); + BOOST_CHECK((R1L * ZeroL) == ZeroL); + BOOST_CHECK((R1L * OneL) == R1L); + BOOST_CHECK((R1L * MaxL) == -R1L); + BOOST_CHECK((R2L * R1L) == (R1L * R2L)); + BOOST_CHECK((R2L * R2L).ToString() == "ac8c010096767d3cae5005dec28bb2b45a1d85ab7996ccd3e102a650f74ff100"); + BOOST_CHECK((R2L * ZeroL) == ZeroL); + BOOST_CHECK((R2L * OneL) == R2L); + BOOST_CHECK((R2L * MaxL) == -R2L); + + BOOST_CHECK((R1S * R1S).ToString() == "a7761bf30d5237e9873f9bff3642a732c4d84f10"); + BOOST_CHECK((R1S * R2S).ToString() == "ba51c008df851987d9dd323f0e5de07760529c40"); + BOOST_CHECK((R1S * ZeroS) == ZeroS); + BOOST_CHECK((R1S * OneS) == R1S); + BOOST_CHECK((R1S * MaxS) == -R1S); + BOOST_CHECK((R2S * R1S) == (R1S * R2S)); + BOOST_CHECK((R2S * R2S).ToString() == "c28bb2b45a1d85ab7996ccd3e102a650f74ff100"); + BOOST_CHECK((R2S * ZeroS) == ZeroS); + BOOST_CHECK((R2S * OneS) == R2S); + BOOST_CHECK((R2S * MaxS) == -R2S); + + BOOST_CHECK(MaxL * MaxL == OneL); + BOOST_CHECK(MaxS * MaxS == OneS); + + BOOST_CHECK((R1L * 0) == 0); + BOOST_CHECK((R1L * 1) == R1L); + BOOST_CHECK((R1L * 3).ToString() == "7759b1c0ed14047f961ad09b20ff83687876a0181a367b813634046f91def7d4"); + BOOST_CHECK((R2L * 0x87654321UL).ToString() == "23f7816e30c4ae2017257b7a0fa64d60402f5234d46e746b61c960d09a26d070"); + BOOST_CHECK((R1S * 0) == 0); + BOOST_CHECK((R1S * 1) == R1S); + BOOST_CHECK((R1S * 7).ToString() == "f7a987f3c3bf758d927f202d7e795faeff084244"); + BOOST_CHECK((R2S * 0xFFFFFFFFUL).ToString() == "1c6f6c930353e17f7d6127213bb18d2883e2cd90"); +} + +BOOST_AUTO_TEST_CASE( divide ) +{ + uint256 D1L("AD7133AC1977FA2B7"); + uint256 D2L("ECD751716"); + BOOST_CHECK((R1L / D1L).ToString() == "00000000000000000b8ac01106981635d9ed112290f8895545a7654dde28fb3a"); + BOOST_CHECK((R1L / D2L).ToString() == "000000000873ce8efec5b67150bad3aa8c5fcb70e947586153bf2cec7c37c57a"); + BOOST_CHECK(R1L / OneL == R1L); + BOOST_CHECK(R1L / MaxL == ZeroL); + BOOST_CHECK(MaxL / R1L == 2); + BOOST_CHECK_THROW(R1L / ZeroL, uint_error); + BOOST_CHECK((R2L / D1L).ToString() == "000000000000000013e1665895a1cc981de6d93670105a6b3ec3b73141b3a3c5"); + BOOST_CHECK((R2L / D2L).ToString() == "000000000e8f0abe753bb0afe2e9437ee85d280be60882cf0bd1aaf7fa3cc2c4"); + BOOST_CHECK(R2L / OneL == R2L); + BOOST_CHECK(R2L / MaxL == ZeroL); + BOOST_CHECK(MaxL / R2L == 1); + BOOST_CHECK_THROW(R2L / ZeroL, uint_error); + + uint160 D1S("D3C5EDCDEA54EB92679F0A4B4"); + uint160 D2S("13037"); + BOOST_CHECK((R1S / D1S).ToString() == "0000000000000000000000000db9af3beade6c02"); + BOOST_CHECK((R1S / D2S).ToString() == "000098dfb6cc40ca592bf74366794f298ada205c"); + BOOST_CHECK(R1S / OneS == R1S); + BOOST_CHECK(R1S / MaxS == ZeroS); + BOOST_CHECK(MaxS / R1S == 1); + BOOST_CHECK_THROW(R1S / ZeroS, uint_error); + BOOST_CHECK((R2S / D1S).ToString() == "0000000000000000000000000c5608e781182047"); + BOOST_CHECK((R2S / D2S).ToString() == "00008966751b7187c3c67c1fda5cea7db2c1c069"); + BOOST_CHECK(R2S / OneS == R2S); + BOOST_CHECK(R2S / MaxS == ZeroS); + BOOST_CHECK(MaxS / R2S == 1); + BOOST_CHECK_THROW(R2S / ZeroS, uint_error); +} + + bool almostEqual(double d1, double d2) { return fabs(d1-d2) <= 4*fabs(d1)*std::numeric_limits::epsilon(); diff --git a/src/test/util_tests.cpp b/src/test/util_tests.cpp index 706737b11..092d48063 100644 --- a/src/test/util_tests.cpp +++ b/src/test/util_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2011-2014 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "util.h" #include "sync.h" @@ -104,13 +108,11 @@ BOOST_AUTO_TEST_CASE(util_HexStr) BOOST_AUTO_TEST_CASE(util_DateTimeStrFormat) { -/*These are platform-dependant and thus removed to avoid useless test failures BOOST_CHECK_EQUAL(DateTimeStrFormat("%Y-%m-%d %H:%M:%S", 0), "1970-01-01 00:00:00"); BOOST_CHECK_EQUAL(DateTimeStrFormat("%Y-%m-%d %H:%M:%S", 0x7FFFFFFF), "2038-01-19 03:14:07"); - // Formats used within Bitcoin BOOST_CHECK_EQUAL(DateTimeStrFormat("%Y-%m-%d %H:%M:%S", 1317425777), "2011-09-30 23:36:17"); BOOST_CHECK_EQUAL(DateTimeStrFormat("%Y-%m-%d %H:%M", 1317425777), "2011-09-30 23:36"); -*/ + BOOST_CHECK_EQUAL(DateTimeStrFormat("%a, %d %b %Y %H:%M:%S +0000", 1317425777), "Fri, 30 Sep 2011 23:36:17 +0000"); } BOOST_AUTO_TEST_CASE(util_ParseParameters) @@ -161,17 +163,6 @@ BOOST_AUTO_TEST_CASE(util_GetArg) BOOST_CHECK_EQUAL(GetBoolArg("booltest4", false), true); } -BOOST_AUTO_TEST_CASE(util_WildcardMatch) -{ - BOOST_CHECK(WildcardMatch("127.0.0.1", "*")); - BOOST_CHECK(WildcardMatch("127.0.0.1", "127.*")); - BOOST_CHECK(WildcardMatch("abcdef", "a?cde?")); - BOOST_CHECK(!WildcardMatch("abcdef", "a?cde??")); - BOOST_CHECK(WildcardMatch("abcdef", "a*f")); - BOOST_CHECK(!WildcardMatch("abcdef", "a*x")); - BOOST_CHECK(WildcardMatch("", "*")); -} - BOOST_AUTO_TEST_CASE(util_FormatMoney) { BOOST_CHECK_EQUAL(FormatMoney(0, false), "0.00"); @@ -338,4 +329,26 @@ BOOST_AUTO_TEST_CASE(gettime) BOOST_CHECK((GetTime() & ~0xFFFFFFFFLL) == 0); } +BOOST_AUTO_TEST_CASE(test_ParseInt32) +{ + int32_t n; + // Valid values + BOOST_CHECK(ParseInt32("1234", NULL)); + BOOST_CHECK(ParseInt32("0", &n) && n == 0); + BOOST_CHECK(ParseInt32("1234", &n) && n == 1234); + BOOST_CHECK(ParseInt32("01234", &n) && n == 1234); // no octal + BOOST_CHECK(ParseInt32("2147483647", &n) && n == 2147483647); + BOOST_CHECK(ParseInt32("-2147483648", &n) && n == -2147483648); + BOOST_CHECK(ParseInt32("-1234", &n) && n == -1234); + // Invalid values + BOOST_CHECK(!ParseInt32("1a", &n)); + BOOST_CHECK(!ParseInt32("aap", &n)); + BOOST_CHECK(!ParseInt32("0x1", &n)); // no hex + // Overflow and underflow + BOOST_CHECK(!ParseInt32("-2147483649", NULL)); + BOOST_CHECK(!ParseInt32("2147483648", NULL)); + BOOST_CHECK(!ParseInt32("-32482348723847471234", NULL)); + BOOST_CHECK(!ParseInt32("32482348723847471234", NULL)); +} + BOOST_AUTO_TEST_SUITE_END() diff --git a/src/test/wallet_tests.cpp b/src/test/wallet_tests.cpp index b32daba99..59a958005 100644 --- a/src/test/wallet_tests.cpp +++ b/src/test/wallet_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2012-2014 The Bitcoin Core developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "wallet.h" #include diff --git a/src/txdb.cpp b/src/txdb.cpp index d06639a11..e8be63f7a 100644 --- a/src/txdb.cpp +++ b/src/txdb.cpp @@ -7,6 +7,7 @@ #include "core.h" #include "uint256.h" +#include "auxpow.h" #include @@ -68,9 +69,19 @@ bool CCoinsViewDB::BatchWrite(const std::map &mapCoins, const u CBlockTreeDB::CBlockTreeDB(size_t nCacheSize, bool fMemory, bool fWipe) : CLevelDBWrapper(GetDataDir() / "blocks" / "index", nCacheSize, fMemory, fWipe) { } -bool CBlockTreeDB::WriteBlockIndex(const CDiskBlockIndex& blockindex) +bool CBlockTreeDB::WriteDiskBlockIndex(const CDiskBlockIndex& diskblockindex) { - return Write(make_pair('b', blockindex.GetBlockHash()), blockindex); + return Write(boost::tuples::make_tuple('b', *diskblockindex.phashBlock, 'a'), diskblockindex); +} + +bool CBlockTreeDB::WriteBlockIndex(const CBlockIndex& blockindex) +{ + return Write(boost::tuples::make_tuple('b', blockindex.GetBlockHash(), 'b'), blockindex); +} + +bool CBlockTreeDB::ReadDiskBlockIndex(const uint256 &blkid, CDiskBlockIndex &diskblockindex) +{ + return Read(boost::tuples::make_tuple('b', blkid, 'a'), diskblockindex); } bool CBlockTreeDB::WriteBestInvalidWork(const CBigNum& bnBestInvalidWork) @@ -108,7 +119,7 @@ bool CBlockTreeDB::ReadLastBlockFile(int &nFile) { } bool CCoinsViewDB::GetStats(CCoinsStats &stats) { - leveldb::Iterator *pcursor = db.NewIterator(); + boost::scoped_ptr pcursor(db.NewIterator()); pcursor->SeekToFirst(); CHashWriter ss(SER_GETHASH, PROTOCOL_VERSION); @@ -148,10 +159,10 @@ bool CCoinsViewDB::GetStats(CCoinsStats &stats) { } pcursor->Next(); } catch (std::exception &e) { - return error("%s : Deserialize or I/O error - %s", __PRETTY_FUNCTION__, e.what()); + return error("%s : Deserialize or I/O error - %s", __func__, e.what()); } } - delete pcursor; + stats.nHeight = mapBlockIndex.find(GetBestBlock())->second->nHeight; stats.hashSerialized = ss.GetHash(); stats.nTotalAmount = nTotalAmount; @@ -183,10 +194,11 @@ bool CBlockTreeDB::ReadFlag(const std::string &name, bool &fValue) { bool CBlockTreeDB::LoadBlockIndexGuts() { - leveldb::Iterator *pcursor = NewIterator(); + boost::scoped_ptr pcursor(NewIterator()); CDataStream ssKeySet(SER_DISK, CLIENT_VERSION); - ssKeySet << make_pair('b', uint256(0)); + uint256 hash; + ssKeySet << boost::tuples::make_tuple('b', uint256(0), 'a'); // 'b' is the prefix for BlockIndex, 'a' signifies the first part pcursor->Seek(ssKeySet.str()); // Load mapBlockIndex @@ -198,13 +210,22 @@ bool CBlockTreeDB::LoadBlockIndexGuts() char chType; ssKey >> chType; if (chType == 'b') { - leveldb::Slice slValue = pcursor->value(); - CDataStream ssValue(slValue.data(), slValue.data()+slValue.size(), SER_DISK, CLIENT_VERSION); - CDiskBlockIndex diskindex; - ssValue >> diskindex; + // Detect pre-1.8 keys in the database and abort if found + if (slKey.size() < ssKeySet.size()) { + return error("Database key size is %d expected %d, require reindex to upgrade.", slKey.size(), ssKeySet.size()); + } + + ssKey >> hash; + + leveldb::Slice slValue = pcursor->value(); + CDataStream ssValue_immutable(slValue.data(), slValue.data()+slValue.size(), SER_DISK, CLIENT_VERSION); + CDiskBlockIndex diskindex; + ssValue_immutable >> diskindex; // read all immutable data + + // Construct immutable parts of block index objecty + CBlockIndex* pindexNew = InsertBlockIndex(hash); + assert(diskindex.GetBlockHash() == *pindexNew->phashBlock); // paranoia check - // Construct block index object - CBlockIndex* pindexNew = InsertBlockIndex(diskindex.GetBlockHash()); pindexNew->pprev = InsertBlockIndex(diskindex.hashPrev); pindexNew->nHeight = diskindex.nHeight; pindexNew->nFile = diskindex.nFile; @@ -218,18 +239,27 @@ bool CBlockTreeDB::LoadBlockIndexGuts() pindexNew->nStatus = diskindex.nStatus; pindexNew->nTx = diskindex.nTx; - if (!pindexNew->CheckIndex()) + // CheckIndex need phashBlock to be set + diskindex.phashBlock = pindexNew->phashBlock; + if (!diskindex.CheckIndex()) return error("LoadBlockIndex() : CheckIndex failed: %s", pindexNew->ToString()); + pcursor->Next(); // now we should be on the 'b' subkey + + assert(pcursor->Valid()); + + slValue = pcursor->value(); + CDataStream ssValue_mutable(slValue.data(), slValue.data()+slValue.size(), SER_DISK, CLIENT_VERSION); + ssValue_mutable >> *pindexNew; // read all mutable data + pcursor->Next(); } else { break; // if shutdown requested or finished loading block index } } catch (std::exception &e) { - return error("%s : Deserialize or I/O error - %s", __PRETTY_FUNCTION__, e.what()); + return error("%s : Deserialize or I/O error - %s", __func__, e.what()); } } - delete pcursor; return true; } diff --git a/src/txdb.h b/src/txdb.h index 5eb5731db..1f0f70d2f 100644 --- a/src/txdb.h +++ b/src/txdb.h @@ -51,7 +51,9 @@ private: CBlockTreeDB(const CBlockTreeDB&); void operator=(const CBlockTreeDB&); public: - bool WriteBlockIndex(const CDiskBlockIndex& blockindex); + bool WriteDiskBlockIndex(const CDiskBlockIndex& diskblockindex); + bool WriteBlockIndex(const CBlockIndex& blockindex); + bool ReadDiskBlockIndex(const uint256 &blkid, CDiskBlockIndex& diskblockindex); bool WriteBestInvalidWork(const CBigNum& bnBestInvalidWork); bool ReadBlockFileInfo(int nFile, CBlockFileInfo &fileinfo); bool WriteBlockFileInfo(int nFile, const CBlockFileInfo &fileinfo); diff --git a/src/ui_interface.h b/src/ui_interface.h index 677d097fa..7b655ac95 100644 --- a/src/ui_interface.h +++ b/src/ui_interface.h @@ -91,6 +91,9 @@ public: * @note called with lock cs_mapAlerts held. */ boost::signals2::signal NotifyAlertChanged; + + /** A wallet has been loaded. */ + boost::signals2::signal LoadWallet; }; extern CClientUIInterface uiInterface; diff --git a/src/uint256.h b/src/uint256.h index ba903bc8f..7b17694eb 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -1,11 +1,13 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2009-2013 The Bitcoin developers +// Copyright (c) 2009-2014 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_UINT256_H #define BITCOIN_UINT256_H +#include +#include #include #include #include @@ -19,17 +21,59 @@ inline signed char HexDigit(char c) return p_util_hexdigit[(unsigned char)c]; } -/** Base class without constructors for uint256 and uint160. - * This makes the compiler let you use it in a union. - */ +class uint_error : public std::runtime_error { +public: + explicit uint_error(const std::string& str) : std::runtime_error(str) {} +}; + +/** Template base class for unsigned big integers. */ template class base_uint { -protected: +private: enum { WIDTH=BITS/32 }; uint32_t pn[WIDTH]; public: + base_uint() + { + for (int i = 0; i < WIDTH; i++) + pn[i] = 0; + } + + base_uint(const base_uint& b) + { + for (int i = 0; i < WIDTH; i++) + pn[i] = b.pn[i]; + } + + base_uint& operator=(const base_uint& b) + { + for (int i = 0; i < WIDTH; i++) + pn[i] = b.pn[i]; + return *this; + } + + base_uint(uint64_t b) + { + pn[0] = (unsigned int)b; + pn[1] = (unsigned int)(b >> 32); + for (int i = 2; i < WIDTH; i++) + pn[i] = 0; + } + + explicit base_uint(const std::string& str) + { + SetHex(str); + } + + explicit base_uint(const std::vector& vch) + { + if (vch.size() != sizeof(pn)) + throw uint_error("Converting vector of wrong size to base_uint"); + memcpy(pn, &vch[0], sizeof(pn)); + } + bool operator!() const { for (int i = 0; i < WIDTH; i++) @@ -178,6 +222,57 @@ public: return *this; } + base_uint& operator*=(uint32_t b32) + { + uint64_t carry = 0; + for (int i = 0; i < WIDTH; i++) + { + uint64_t n = carry + (uint64_t)b32 * pn[i]; + pn[i] = n & 0xffffffff; + carry = n >> 32; + } + return *this; + } + + base_uint& operator*=(const base_uint& b) + { + base_uint a = *this; + *this = 0; + for (int j = 0; j < WIDTH; j++) { + uint64_t carry = 0; + for (int i = 0; i + j < WIDTH; i++) { + uint64_t n = carry + pn[i + j] + (uint64_t)a.pn[j] * b.pn[i]; + pn[i + j] = n & 0xffffffff; + carry = n >> 32; + } + } + return *this; + } + + base_uint& operator/=(const base_uint& b) + { + base_uint div = b; // make a copy, so we can shift. + base_uint num = *this; // make a copy, so we can subtract. + *this = 0; // the quotient. + int num_bits = num.bits(); + int div_bits = div.bits(); + if (div_bits == 0) + throw uint_error("Division by zero"); + if (div_bits > num_bits) // the result is certainly 0. + return *this; + int shift = num_bits - div_bits; + div <<= shift; // shift so that div and nun align. + while (shift >= 0) { + if (num >= div) { + num -= div; + pn[shift / 32] |= (1 << (shift & 31)); // set a bit of the result. + } + div >>= 1; // shift back. + shift--; + } + // num now contains the remainder of the division. + return *this; + } base_uint& operator++() { @@ -292,7 +387,16 @@ public: return (!(a == b)); } - + friend inline const base_uint operator+(const base_uint& a, const base_uint& b) { return base_uint(a) += b; } + friend inline const base_uint operator-(const base_uint& a, const base_uint& b) { return base_uint(a) -= b; } + friend inline const base_uint operator*(const base_uint& a, const base_uint& b) { return base_uint(a) *= b; } + friend inline const base_uint operator/(const base_uint& a, const base_uint& b) { return base_uint(a) /= b; } + friend inline const base_uint operator|(const base_uint& a, const base_uint& b) { return base_uint(a) |= b; } + friend inline const base_uint operator&(const base_uint& a, const base_uint& b) { return base_uint(a) &= b; } + friend inline const base_uint operator^(const base_uint& a, const base_uint& b) { return base_uint(a) ^= b; } + friend inline const base_uint operator>>(const base_uint& a, int shift) { return base_uint(a) >>= shift; } + friend inline const base_uint operator<<(const base_uint& a, int shift) { return base_uint(a) <<= shift; } + friend inline const base_uint operator*(const base_uint& a, uint32_t b) { return base_uint(a) *= b; } std::string GetHex() const { @@ -367,269 +471,64 @@ public: return sizeof(pn); } + // Returns the position of the highest bit set plus one, or zero if the + // value is zero. + unsigned int bits() const + { + for (int pos = WIDTH-1; pos >= 0; pos--) { + if (pn[pos]) { + for (int bits = 31; bits > 0; bits--) { + if (pn[pos] & 1<= 2); return pn[0] | (uint64_t)pn[1] << 32; } -// unsigned int GetSerializeSize(int nType=0, int nVersion=PROTOCOL_VERSION) const unsigned int GetSerializeSize(int nType, int nVersion) const { return sizeof(pn); } template -// void Serialize(Stream& s, int nType=0, int nVersion=PROTOCOL_VERSION) const void Serialize(Stream& s, int nType, int nVersion) const { s.write((char*)pn, sizeof(pn)); } template -// void Unserialize(Stream& s, int nType=0, int nVersion=PROTOCOL_VERSION) void Unserialize(Stream& s, int nType, int nVersion) { s.read((char*)pn, sizeof(pn)); } - - - friend class uint160; - friend class uint256; }; -typedef base_uint<160> base_uint160; -typedef base_uint<256> base_uint256; - - - -// -// uint160 and uint256 could be implemented as templates, but to keep -// compile errors and debugging cleaner, they're copy and pasted. -// - - - -////////////////////////////////////////////////////////////////////////////// -// -// uint160 -// - -/** 160-bit unsigned integer */ -class uint160 : public base_uint160 -{ +/** 160-bit unsigned big integer. */ +class uint160 : public base_uint<160> { public: - typedef base_uint160 basetype; - - uint160() - { - for (int i = 0; i < WIDTH; i++) - pn[i] = 0; - } - - uint160(const basetype& b) - { - for (int i = 0; i < WIDTH; i++) - pn[i] = b.pn[i]; - } - - uint160& operator=(const basetype& b) - { - for (int i = 0; i < WIDTH; i++) - pn[i] = b.pn[i]; - return *this; - } - - uint160(uint64_t b) - { - pn[0] = (unsigned int)b; - pn[1] = (unsigned int)(b >> 32); - for (int i = 2; i < WIDTH; i++) - pn[i] = 0; - } - - uint160& operator=(uint64_t b) - { - pn[0] = (unsigned int)b; - pn[1] = (unsigned int)(b >> 32); - for (int i = 2; i < WIDTH; i++) - pn[i] = 0; - return *this; - } - - explicit uint160(const std::string& str) - { - SetHex(str); - } - - explicit uint160(const std::vector& vch) - { - if (vch.size() == sizeof(pn)) - memcpy(pn, &vch[0], sizeof(pn)); - else - *this = 0; - } + uint160() {} + uint160(const base_uint<160>& b) : base_uint<160>(b) {} + uint160(uint64_t b) : base_uint<160>(b) {} + explicit uint160(const std::string& str) : base_uint<160>(str) {} + explicit uint160(const std::vector& vch) : base_uint<160>(vch) {} }; -inline bool operator==(const uint160& a, uint64_t b) { return (base_uint160)a == b; } -inline bool operator!=(const uint160& a, uint64_t b) { return (base_uint160)a != b; } -inline const uint160 operator<<(const base_uint160& a, unsigned int shift) { return uint160(a) <<= shift; } -inline const uint160 operator>>(const base_uint160& a, unsigned int shift) { return uint160(a) >>= shift; } -inline const uint160 operator<<(const uint160& a, unsigned int shift) { return uint160(a) <<= shift; } -inline const uint160 operator>>(const uint160& a, unsigned int shift) { return uint160(a) >>= shift; } - -inline const uint160 operator^(const base_uint160& a, const base_uint160& b) { return uint160(a) ^= b; } -inline const uint160 operator&(const base_uint160& a, const base_uint160& b) { return uint160(a) &= b; } -inline const uint160 operator|(const base_uint160& a, const base_uint160& b) { return uint160(a) |= b; } -inline const uint160 operator+(const base_uint160& a, const base_uint160& b) { return uint160(a) += b; } -inline const uint160 operator-(const base_uint160& a, const base_uint160& b) { return uint160(a) -= b; } - -inline bool operator<(const base_uint160& a, const uint160& b) { return (base_uint160)a < (base_uint160)b; } -inline bool operator<=(const base_uint160& a, const uint160& b) { return (base_uint160)a <= (base_uint160)b; } -inline bool operator>(const base_uint160& a, const uint160& b) { return (base_uint160)a > (base_uint160)b; } -inline bool operator>=(const base_uint160& a, const uint160& b) { return (base_uint160)a >= (base_uint160)b; } -inline bool operator==(const base_uint160& a, const uint160& b) { return (base_uint160)a == (base_uint160)b; } -inline bool operator!=(const base_uint160& a, const uint160& b) { return (base_uint160)a != (base_uint160)b; } -inline const uint160 operator^(const base_uint160& a, const uint160& b) { return (base_uint160)a ^ (base_uint160)b; } -inline const uint160 operator&(const base_uint160& a, const uint160& b) { return (base_uint160)a & (base_uint160)b; } -inline const uint160 operator|(const base_uint160& a, const uint160& b) { return (base_uint160)a | (base_uint160)b; } -inline const uint160 operator+(const base_uint160& a, const uint160& b) { return (base_uint160)a + (base_uint160)b; } -inline const uint160 operator-(const base_uint160& a, const uint160& b) { return (base_uint160)a - (base_uint160)b; } - -inline bool operator<(const uint160& a, const base_uint160& b) { return (base_uint160)a < (base_uint160)b; } -inline bool operator<=(const uint160& a, const base_uint160& b) { return (base_uint160)a <= (base_uint160)b; } -inline bool operator>(const uint160& a, const base_uint160& b) { return (base_uint160)a > (base_uint160)b; } -inline bool operator>=(const uint160& a, const base_uint160& b) { return (base_uint160)a >= (base_uint160)b; } -inline bool operator==(const uint160& a, const base_uint160& b) { return (base_uint160)a == (base_uint160)b; } -inline bool operator!=(const uint160& a, const base_uint160& b) { return (base_uint160)a != (base_uint160)b; } -inline const uint160 operator^(const uint160& a, const base_uint160& b) { return (base_uint160)a ^ (base_uint160)b; } -inline const uint160 operator&(const uint160& a, const base_uint160& b) { return (base_uint160)a & (base_uint160)b; } -inline const uint160 operator|(const uint160& a, const base_uint160& b) { return (base_uint160)a | (base_uint160)b; } -inline const uint160 operator+(const uint160& a, const base_uint160& b) { return (base_uint160)a + (base_uint160)b; } -inline const uint160 operator-(const uint160& a, const base_uint160& b) { return (base_uint160)a - (base_uint160)b; } - -inline bool operator<(const uint160& a, const uint160& b) { return (base_uint160)a < (base_uint160)b; } -inline bool operator<=(const uint160& a, const uint160& b) { return (base_uint160)a <= (base_uint160)b; } -inline bool operator>(const uint160& a, const uint160& b) { return (base_uint160)a > (base_uint160)b; } -inline bool operator>=(const uint160& a, const uint160& b) { return (base_uint160)a >= (base_uint160)b; } -inline bool operator==(const uint160& a, const uint160& b) { return (base_uint160)a == (base_uint160)b; } -inline bool operator!=(const uint160& a, const uint160& b) { return (base_uint160)a != (base_uint160)b; } -inline const uint160 operator^(const uint160& a, const uint160& b) { return (base_uint160)a ^ (base_uint160)b; } -inline const uint160 operator&(const uint160& a, const uint160& b) { return (base_uint160)a & (base_uint160)b; } -inline const uint160 operator|(const uint160& a, const uint160& b) { return (base_uint160)a | (base_uint160)b; } -inline const uint160 operator+(const uint160& a, const uint160& b) { return (base_uint160)a + (base_uint160)b; } -inline const uint160 operator-(const uint160& a, const uint160& b) { return (base_uint160)a - (base_uint160)b; } - - - -////////////////////////////////////////////////////////////////////////////// -// -// uint256 -// - -/** 256-bit unsigned integer */ -class uint256 : public base_uint256 -{ +/** 256-bit unsigned big integer. */ +class uint256 : public base_uint<256> { public: - typedef base_uint256 basetype; - - uint256() - { - for (int i = 0; i < WIDTH; i++) - pn[i] = 0; - } - - uint256(const basetype& b) - { - for (int i = 0; i < WIDTH; i++) - pn[i] = b.pn[i]; - } - - uint256& operator=(const basetype& b) - { - for (int i = 0; i < WIDTH; i++) - pn[i] = b.pn[i]; - return *this; - } - - uint256(uint64_t b) - { - pn[0] = (unsigned int)b; - pn[1] = (unsigned int)(b >> 32); - for (int i = 2; i < WIDTH; i++) - pn[i] = 0; - } - - uint256& operator=(uint64_t b) - { - pn[0] = (unsigned int)b; - pn[1] = (unsigned int)(b >> 32); - for (int i = 2; i < WIDTH; i++) - pn[i] = 0; - return *this; - } - - explicit uint256(const std::string& str) - { - SetHex(str); - } - - explicit uint256(const std::vector& vch) - { - if (vch.size() == sizeof(pn)) - memcpy(pn, &vch[0], sizeof(pn)); - else - *this = 0; - } + uint256() {} + uint256(const base_uint<256>& b) : base_uint<256>(b) {} + uint256(uint64_t b) : base_uint<256>(b) {} + explicit uint256(const std::string& str) : base_uint<256>(str) {} + explicit uint256(const std::vector& vch) : base_uint<256>(vch) {} }; -inline bool operator==(const uint256& a, uint64_t b) { return (base_uint256)a == b; } -inline bool operator!=(const uint256& a, uint64_t b) { return (base_uint256)a != b; } -inline const uint256 operator<<(const base_uint256& a, unsigned int shift) { return uint256(a) <<= shift; } -inline const uint256 operator>>(const base_uint256& a, unsigned int shift) { return uint256(a) >>= shift; } -inline const uint256 operator<<(const uint256& a, unsigned int shift) { return uint256(a) <<= shift; } -inline const uint256 operator>>(const uint256& a, unsigned int shift) { return uint256(a) >>= shift; } - -inline const uint256 operator^(const base_uint256& a, const base_uint256& b) { return uint256(a) ^= b; } -inline const uint256 operator&(const base_uint256& a, const base_uint256& b) { return uint256(a) &= b; } -inline const uint256 operator|(const base_uint256& a, const base_uint256& b) { return uint256(a) |= b; } -inline const uint256 operator+(const base_uint256& a, const base_uint256& b) { return uint256(a) += b; } -inline const uint256 operator-(const base_uint256& a, const base_uint256& b) { return uint256(a) -= b; } - -inline bool operator<(const base_uint256& a, const uint256& b) { return (base_uint256)a < (base_uint256)b; } -inline bool operator<=(const base_uint256& a, const uint256& b) { return (base_uint256)a <= (base_uint256)b; } -inline bool operator>(const base_uint256& a, const uint256& b) { return (base_uint256)a > (base_uint256)b; } -inline bool operator>=(const base_uint256& a, const uint256& b) { return (base_uint256)a >= (base_uint256)b; } -inline bool operator==(const base_uint256& a, const uint256& b) { return (base_uint256)a == (base_uint256)b; } -inline bool operator!=(const base_uint256& a, const uint256& b) { return (base_uint256)a != (base_uint256)b; } -inline const uint256 operator^(const base_uint256& a, const uint256& b) { return (base_uint256)a ^ (base_uint256)b; } -inline const uint256 operator&(const base_uint256& a, const uint256& b) { return (base_uint256)a & (base_uint256)b; } -inline const uint256 operator|(const base_uint256& a, const uint256& b) { return (base_uint256)a | (base_uint256)b; } -inline const uint256 operator+(const base_uint256& a, const uint256& b) { return (base_uint256)a + (base_uint256)b; } -inline const uint256 operator-(const base_uint256& a, const uint256& b) { return (base_uint256)a - (base_uint256)b; } - -inline bool operator<(const uint256& a, const base_uint256& b) { return (base_uint256)a < (base_uint256)b; } -inline bool operator<=(const uint256& a, const base_uint256& b) { return (base_uint256)a <= (base_uint256)b; } -inline bool operator>(const uint256& a, const base_uint256& b) { return (base_uint256)a > (base_uint256)b; } -inline bool operator>=(const uint256& a, const base_uint256& b) { return (base_uint256)a >= (base_uint256)b; } -inline bool operator==(const uint256& a, const base_uint256& b) { return (base_uint256)a == (base_uint256)b; } -inline bool operator!=(const uint256& a, const base_uint256& b) { return (base_uint256)a != (base_uint256)b; } -inline const uint256 operator^(const uint256& a, const base_uint256& b) { return (base_uint256)a ^ (base_uint256)b; } -inline const uint256 operator&(const uint256& a, const base_uint256& b) { return (base_uint256)a & (base_uint256)b; } -inline const uint256 operator|(const uint256& a, const base_uint256& b) { return (base_uint256)a | (base_uint256)b; } -inline const uint256 operator+(const uint256& a, const base_uint256& b) { return (base_uint256)a + (base_uint256)b; } -inline const uint256 operator-(const uint256& a, const base_uint256& b) { return (base_uint256)a - (base_uint256)b; } - -inline bool operator<(const uint256& a, const uint256& b) { return (base_uint256)a < (base_uint256)b; } -inline bool operator<=(const uint256& a, const uint256& b) { return (base_uint256)a <= (base_uint256)b; } -inline bool operator>(const uint256& a, const uint256& b) { return (base_uint256)a > (base_uint256)b; } -inline bool operator>=(const uint256& a, const uint256& b) { return (base_uint256)a >= (base_uint256)b; } -inline bool operator==(const uint256& a, const uint256& b) { return (base_uint256)a == (base_uint256)b; } -inline bool operator!=(const uint256& a, const uint256& b) { return (base_uint256)a != (base_uint256)b; } -inline const uint256 operator^(const uint256& a, const uint256& b) { return (base_uint256)a ^ (base_uint256)b; } -inline const uint256 operator&(const uint256& a, const uint256& b) { return (base_uint256)a & (base_uint256)b; } -inline const uint256 operator|(const uint256& a, const uint256& b) { return (base_uint256)a | (base_uint256)b; } -inline const uint256 operator+(const uint256& a, const uint256& b) { return (base_uint256)a + (base_uint256)b; } -inline const uint256 operator-(const uint256& a, const uint256& b) { return (base_uint256)a - (base_uint256)b; } - #endif diff --git a/src/util.cpp b/src/util.cpp index 31110f799..d1f76f6a5 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -16,6 +16,8 @@ #include +#include + #ifndef WIN32 // for posix_fallocate #ifdef __linux_ @@ -306,26 +308,6 @@ int LogPrintStr(const std::string &str) return ret; } -void ParseString(const string& str, char c, vector& v) -{ - if (str.empty()) - return; - string::size_type i1 = 0; - string::size_type i2; - while (true) - { - i2 = str.find(c, i1); - if (i2 == str.npos) - { - v.push_back(str.substr(i1)); - return; - } - v.push_back(str.substr(i1, i2-i1)); - i1 = i2+1; - } -} - - string FormatMoney(int64_t n, bool fPlus) { // Note: not using straight sprintf here because we do NOT want @@ -892,43 +874,6 @@ string DecodeBase32(const string& str) return string((const char*)&vchRet[0], vchRet.size()); } - -bool WildcardMatch(const char* psz, const char* mask) -{ - while (true) - { - switch (*mask) - { - case '\0': - return (*psz == '\0'); - case '*': - return WildcardMatch(psz, mask+1) || (*psz && WildcardMatch(psz+1, mask)); - case '?': - if (*psz == '\0') - return false; - break; - default: - if (*psz != *mask) - return false; - break; - } - psz++; - mask++; - } -} - -bool WildcardMatch(const string& str, const string& mask) -{ - return WildcardMatch(str.c_str(), mask.c_str()); -} - - - - - - - - static std::string FormatException(std::exception* pex, const char* pszThread) { #ifdef WIN32 @@ -979,7 +924,7 @@ boost::filesystem::path GetDefaultDataDir() #ifdef MAC_OSX // Mac pathRet /= "Library/Application Support"; - fs::create_directory(pathRet); + TryCreateDirectory(pathRet); return pathRet / "Dogecoin"; #else // Unix @@ -1093,6 +1038,23 @@ bool RenameOver(boost::filesystem::path src, boost::filesystem::path dest) #endif /* WIN32 */ } + +// Ignores exceptions thrown by boost's create_directory if the requested directory exists. +// Specifically handles case where path p exists, but it wasn't possible for the user to write to the parent directory. +bool TryCreateDirectory(const boost::filesystem::path& p) +{ + try + { + return boost::filesystem::create_directory(p); + } catch (boost::filesystem::filesystem_error) { + if (!boost::filesystem::exists(p) || !boost::filesystem::is_directory(p)) + throw; + } + + // create_directory didn't create the directory, it had to have existed already + return false; +} + void FileCommit(FILE *fileout) { fflush(fileout); // harmless if redundantly called @@ -1110,16 +1072,6 @@ void FileCommit(FILE *fileout) #endif } -int GetFilesize(FILE* file) -{ - int nSavePos = ftell(file); - int nFilesize = -1; - if (fseek(file, 0, SEEK_END) == 0) - nFilesize = ftell(file); - fseek(file, nSavePos, SEEK_SET); - return nFilesize; -} - bool TruncateFile(FILE *file, unsigned int length) { #if defined(WIN32) return _chsize(_fileno(file), length) == 0; @@ -1198,7 +1150,7 @@ void ShrinkDebugFile() // Scroll debug.log if it's getting too big boost::filesystem::path pathLog = GetDataDir() / "debug.log"; FILE* file = fopen(pathLog.string().c_str(), "r"); - if (file && GetFilesize(file) > 10 * 1000000) + if (file && boost::filesystem::file_size(pathLog) > 10 * 1000000) { // Restart the file with some of the end char pch[200000]; @@ -1217,13 +1169,6 @@ void ShrinkDebugFile() fclose(file); } - - - - - - - // // "Never go to sea with two chronometers; take one or three." // Our three time sources are: @@ -1472,3 +1417,42 @@ void RenameThread(const char* name) #endif } +bool ParseInt32(const std::string& str, int32_t *out) +{ + char *endp = NULL; + errno = 0; // strtol will not set errno if valid + long int n = strtol(str.c_str(), &endp, 10); + if(out) *out = (int)n; + // Note that strtol returns a *long int*, so even if strtol doesn't report a over/underflow + // we still have to check that the returned value is within the range of an *int32_t*. On 64-bit + // platforms the size of these types may be different. + return endp && *endp == 0 && !errno && + n >= std::numeric_limits::min() && + n <= std::numeric_limits::max(); +} +void SetupEnvironment() +{ + #ifndef WIN32 + try + { + #if BOOST_FILESYSTEM_VERSION == 3 + boost::filesystem::path::codecvt(); // Raises runtime error if current locale is invalid + #else // boost filesystem v2 + std::locale(); // Raises runtime error if current locale is invalid + #endif + } catch(std::runtime_error &e) + { + setenv("LC_ALL", "C", 1); // Force C locale + } + #endif +} + +std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime) +{ + // std::locale takes ownership of the pointer + std::locale loc(std::locale::classic(), new boost::posix_time::time_facet(pszFormat)); + std::stringstream ss; + ss.imbue(loc); + ss << boost::posix_time::from_time_t(nTime); + return ss.str(); +} diff --git a/src/util.h b/src/util.h index da5ff97a9..002946149 100644 --- a/src/util.h +++ b/src/util.h @@ -121,6 +121,7 @@ extern volatile bool fReopenDebugLog; void RandAddSeed(); void RandAddSeedPerfmon(); +void SetupEnvironment(); /* Return true if log accepts specified category */ bool LogAcceptCategory(const char* category); @@ -168,7 +169,6 @@ static inline bool error(const char* format) void LogException(std::exception* pex, const char* pszThread); void PrintExceptionContinue(std::exception* pex, const char* pszThread); -void ParseString(const std::string& str, char c, std::vector& v); std::string FormatMoney(int64_t n, bool fPlus=false); bool ParseMoney(const std::string& str, int64_t& nRet); bool ParseMoney(const char* pszIn, int64_t& nRet); @@ -185,14 +185,12 @@ std::string DecodeBase32(const std::string& str); std::string EncodeBase32(const unsigned char* pch, size_t len); std::string EncodeBase32(const std::string& str); void ParseParameters(int argc, const char*const argv[]); -bool WildcardMatch(const char* psz, const char* mask); -bool WildcardMatch(const std::string& str, const std::string& mask); void FileCommit(FILE *fileout); -int GetFilesize(FILE* file); bool TruncateFile(FILE *file, unsigned int length); int RaiseFileDescriptorLimit(int nMinFD); void AllocateFileRange(FILE *file, unsigned int offset, unsigned int length); bool RenameOver(boost::filesystem::path src, boost::filesystem::path dest); +bool TryCreateDirectory(const boost::filesystem::path& p); boost::filesystem::path GetDefaultDataDir(); const boost::filesystem::path &GetDataDir(bool fNetSpecific = true); boost::filesystem::path GetConfigFile(); @@ -260,6 +258,13 @@ inline int atoi(const std::string& str) return atoi(str.c_str()); } +/** + * Convert string to signed 32-bit integer with strict parse error feedback. + * @returns true if the entire string could be parsed as valid integer, + * false if not the entire string could be parsed or when overflow or underflow occured. + */ +bool ParseInt32(const std::string& str, int32_t *out); + inline int roundint(double d) { return (int)(d > 0 ? d + 0.5 : d - 0.5); @@ -336,21 +341,7 @@ inline int64_t GetTimeMicros() boost::posix_time::ptime(boost::gregorian::date(1970,1,1))).total_microseconds(); } -inline std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime) -{ - time_t n = nTime; - struct tm* ptmTime = gmtime(&n); - char pszTime[200]; - strftime(pszTime, sizeof(pszTime), pszFormat, ptmTime); - return pszTime; -} - -template -void skipspaces(T& it) -{ - while (isspace(*it)) - ++it; -} +std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime); inline bool IsSwitchChar(char c) { diff --git a/src/version.cpp b/src/version.cpp index 5c8c29d23..be13b9152 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -41,6 +41,9 @@ const std::string CLIENT_NAME("Shibetoshi"); # define GIT_COMMIT_DATE "$Format:%cD$" #endif +#define BUILD_DESC_WITH_SUFFIX(maj,min,rev,build,suffix) \ + "v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) "-" DO_STRINGIZE(suffix) + #define BUILD_DESC_FROM_COMMIT(maj,min,rev,build,commit) \ "v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) "-g" commit @@ -48,7 +51,9 @@ const std::string CLIENT_NAME("Shibetoshi"); "v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) "-unk" #ifndef BUILD_DESC -# ifdef GIT_COMMIT_ID +# ifdef BUILD_SUFFIX +# define BUILD_DESC BUILD_DESC_WITH_SUFFIX(CLIENT_VERSION_MAJOR, CLIENT_VERSION_MINOR, CLIENT_VERSION_REVISION, CLIENT_VERSION_BUILD, BUILD_SUFFIX) +# elif defined(GIT_COMMIT_ID) # define BUILD_DESC BUILD_DESC_FROM_COMMIT(CLIENT_VERSION_MAJOR, CLIENT_VERSION_MINOR, CLIENT_VERSION_REVISION, CLIENT_VERSION_BUILD, GIT_COMMIT_ID) # else # define BUILD_DESC BUILD_DESC_FROM_UNKNOWN(CLIENT_VERSION_MAJOR, CLIENT_VERSION_MINOR, CLIENT_VERSION_REVISION, CLIENT_VERSION_BUILD) diff --git a/src/version.h b/src/version.h index adddb2d36..f117d2f05 100644 --- a/src/version.h +++ b/src/version.h @@ -27,13 +27,13 @@ extern const std::string CLIENT_DATE; // network protocol versioning // -static const int PROTOCOL_VERSION = 70002; +static const int PROTOCOL_VERSION = 70003; // intial proto version, to be increased after version/verack negotiation static const int INIT_PROTO_VERSION = 209; // disconnect from peers older than this proto version -static const int MIN_PEER_PROTO_VERSION = 70001; +static const int MIN_PEER_PROTO_VERSION = 70002; // nTime field added to CAddress, starting with this version; // if possible, avoid requesting addresses nodes older than this diff --git a/src/wallet.cpp b/src/wallet.cpp index feeee86ce..56b0d183d 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -7,9 +7,9 @@ #include "wallet.h" #include "base58.h" +#include "checkpoints.h" #include "coincontrol.h" #include "net.h" -#include "checkpoints.h" #include #include @@ -17,7 +17,7 @@ using namespace std; // Settings -int64_t nTransactionFee = 0; +int64_t nTransactionFee = DEFAULT_TRANSACTION_FEE; bool bSpendZeroConfChange = true; static std::vector vChangeAddresses; @@ -473,6 +473,7 @@ bool CWallet::AddToWallet(const CWalletTx& wtxIn, bool fFromLoadWallet) if (fFromLoadWallet) { mapWallet[hash] = wtxIn; + mapWallet[hash].BindWallet(this); AddToSpends(hash); } else @@ -591,7 +592,7 @@ bool CWallet::AddToWallet(const CWalletTx& wtxIn, bool fFromLoadWallet) bool CWallet::AddToWalletIfInvolvingMe(const uint256 &hash, const CTransaction& tx, const CBlock* pblock, bool fUpdate) { { - LOCK(cs_wallet); + AssertLockHeld(cs_wallet); bool fExisted = mapWallet.count(hash); if (fExisted && !fUpdate) return false; if (fExisted || IsMine(tx) || IsFromMe(tx)) @@ -608,9 +609,8 @@ bool CWallet::AddToWalletIfInvolvingMe(const uint256 &hash, const CTransaction& void CWallet::SyncTransaction(const uint256 &hash, const CTransaction& tx, const CBlock* pblock) { - AddToWalletIfInvolvingMe(hash, tx, pblock, true); - - if (mapWallet.count(hash) == 0) + LOCK2(cs_main, cs_wallet); + if (!AddToWalletIfInvolvingMe(hash, tx, pblock, true)) return; // Not one of ours // If a transaction changes 'conflicted' state, that changes the balance @@ -947,15 +947,20 @@ int CWallet::ScanForWalletTransactions(CBlockIndex* pindexStart, bool fUpdate) CBlockIndex* pindex = pindexStart; { - LOCK(cs_wallet); + LOCK2(cs_main, cs_wallet); + + // no need to read and scan block, if block was created before + // our wallet birthday (as adjusted for block time variability) + while (pindex && nTimeFirstKey && (pindex->nTime < (nTimeFirstKey - 7200))) + pindex = chainActive.Next(pindex); + + ShowProgress(_("Rescanning..."), 0); // show rescan progress in GUI as dialog or on splashscreen, if -rescan on startup + double dProgressStart = Checkpoints::GuessVerificationProgress(pindex, false); + double dProgressTip = Checkpoints::GuessVerificationProgress(chainActive.Tip(), false); while (pindex) { - // no need to read and scan block, if block was created before - // our wallet birthday (as adjusted for block time variability) - if (nTimeFirstKey && (pindex->nTime < (nTimeFirstKey - 7200))) { - pindex = chainActive.Next(pindex); - continue; - } + if (pindex->nHeight % 100 == 0 && dProgressTip - dProgressStart > 0.0) + ShowProgress(_("Rescanning..."), std::max(1, std::min(99, (int)((Checkpoints::GuessVerificationProgress(pindex, false) - dProgressStart) / (dProgressTip - dProgressStart) * 100)))); CBlock block; ReadBlockFromDisk(block, pindex); @@ -970,13 +975,14 @@ int CWallet::ScanForWalletTransactions(CBlockIndex* pindexStart, bool fUpdate) LogPrintf("Still rescanning. At block %d. Progress=%f\n", pindex->nHeight, Checkpoints::GuessVerificationProgress(pindex)); } } + ShowProgress(_("Rescanning..."), 100); // hide progress dialog in GUI } return ret; } void CWallet::ReacceptWalletTransactions() { - LOCK(cs_wallet); + LOCK2(cs_main, cs_wallet); BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet) { const uint256& wtxid = item.first; @@ -1071,7 +1077,7 @@ int64_t CWallet::GetBalance() const { int64_t nTotal = 0; { - LOCK(cs_wallet); + LOCK2(cs_main, cs_wallet); for (map::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { const CWalletTx* pcoin = &(*it).second; @@ -1087,7 +1093,7 @@ int64_t CWallet::GetUnconfirmedBalance() const { int64_t nTotal = 0; { - LOCK(cs_wallet); + LOCK2(cs_main, cs_wallet); for (map::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { const CWalletTx* pcoin = &(*it).second; @@ -1102,7 +1108,7 @@ int64_t CWallet::GetImmatureBalance() const { int64_t nTotal = 0; { - LOCK(cs_wallet); + LOCK2(cs_main, cs_wallet); for (map::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { const CWalletTx* pcoin = &(*it).second; @@ -1618,6 +1624,8 @@ DBErrors CWallet::LoadWallet(bool& fFirstRunRet) return nLoadWalletRet; fFirstRunRet = !vchDefaultKey.IsValid(); + uiInterface.LoadWallet(this); + return DB_LOAD_OK; } diff --git a/src/wallet.h b/src/wallet.h index a9fa811e3..3f2b9fbf1 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -28,6 +28,11 @@ extern int64_t nTransactionFee; extern bool bSpendZeroConfChange; +// -paytxfee default +static const int64_t DEFAULT_TRANSACTION_FEE = 0; +// -paytxfee will warn if called with a higher fee than this amount (in satoshis) per KB +static const int nHighTransactionFeeWarning = 25 * COIN; + class CAccountingEntry; class CCoinControl; class COutput; @@ -324,6 +329,17 @@ public: unsigned int nMasterKeyMaxID; CWallet() + { + SetNull(); + } + CWallet(std::string strWalletFileIn) + { + SetNull(); + + strWalletFile = strWalletFileIn; + fFileBacked = true; + } + void SetNull() { nWalletVersion = FEATURE_BASE; nWalletMaxVersion = FEATURE_BASE; @@ -333,18 +349,7 @@ public: nOrderPosNext = 0; nNextResend = 0; nLastResend = 0; - } - CWallet(std::string strWalletFileIn) - { - nWalletVersion = FEATURE_BASE; - nWalletMaxVersion = FEATURE_BASE; - strWalletFile = strWalletFileIn; - fFileBacked = true; - nMasterKeyMaxID = 0; - pwalletdbEncryption = NULL; - nOrderPosNext = 0; - nNextResend = 0; - nLastResend = 0; + nTimeFirstKey = 0; } std::map mapWallet; @@ -575,6 +580,9 @@ public: */ boost::signals2::signal NotifyTransactionChanged; + + /** Show progress e.g. for rescan */ + boost::signals2::signal ShowProgress; }; /** A key allocated from the key pool. */ diff --git a/src/walletdb.cpp b/src/walletdb.cpp index d7991634b..d5f4ea733 100644 --- a/src/walletdb.cpp +++ b/src/walletdb.cpp @@ -352,9 +352,7 @@ ReadKeyValue(CWallet* pwallet, CDataStream& ssKey, CDataStream& ssValue, CWalletTx wtx; ssValue >> wtx; CValidationState state; - if (CheckTransaction(wtx, state) && (wtx.GetHash() == hash) && state.IsValid()) - wtx.BindWallet(pwallet); - else + if (!(CheckTransaction(wtx, state) && (wtx.GetHash() == hash) && state.IsValid())) return false; if (wtx.nOrderPos == -1)